diff --git a/.github/workflows/ci-build-unstable.yml b/.github/workflows/ci-build-unstable.yml
index 8f0b2eed66..808931f3d7 100644
--- a/.github/workflows/ci-build-unstable.yml
+++ b/.github/workflows/ci-build-unstable.yml
@@ -13,11 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Set up JDK 17
+ - name: Set up JDK 11
uses: actions/setup-java@v4
with:
- java-version: '17.0.10+7'
- distribution: 'temurin'
+ java-version: '11'
+ distribution: 'adopt'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew clean assemble --info --stacktrace --no-daemon
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1bd8938507..49522646a4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+## [0.8.1] - 2024-06-10
+
+### Added
+ - Identified URLs are now added in the TEI output #1099
+ - Added DL models for patent processing #1082
+ - Copyright and licence identification models #1078
+ - Add research infrastructure recognition for funding processing #1085
+
+### Changed
+ - Improved the recognition of URLs using (when available) PDF annotations, such as clickable links
+ - Updated TEI schema #1084
+ - Review patent process #1082
+ - Add Kotlin language to support development and testing #1096
+
+### Fixed
+ - Sentence segmentation avoids to split sentences with an URL in the middle #1097
+ - Sentence segmentation is now applied to funding and acknowledgement #1106
+ - Docker image was optimized to reduce the needed space #1088
+ - Fixed OOBE when processing large quantities of notes #1075
+ - Corrected `
` coordinate attribute name #1070
+ - Fix missing coordinates in paragraph continuation #1076
+ - Fixed JSON log output
+
## [0.8.0] - 2023-11-19
### Added
diff --git a/Readme.md b/Readme.md
index 0547371813..66b4dd6791 100644
--- a/Readme.md
+++ b/Readme.md
@@ -105,11 +105,10 @@ Detailed end-to-end [benchmarking](https://grobid.readthedocs.io/en/latest/Bench
A series of additional modules have been developed for performing __structure aware__ text mining directly on scholar PDF, reusing GROBID's PDF processing and sequence labelling weaponry:
- [software-mention](https://github.com/ourresearch/software-mentions): recognition of software mentions and associated attributes in scientific literature
-- [datastet](https://github.com/kermitt2/datastet): identification of named and implicit research datasets and associated attributes in scientific articles
+- [datastet](https://github.com/kermitt2/datastet): identification of sections and sentences introducing datasets in a scientific article, identification of dataset names and attributes (implict and named datasets) and classification of the type of datasets
- [grobid-quantities](https://github.com/kermitt2/grobid-quantities): recognition and normalization of physical quantities/measurements
- [grobid-superconductors](https://github.com/lfoppiano/grobid-superconductors): recognition of superconductor material and properties in scientific literature
- [entity-fishing](https://github.com/kermitt2/entity-fishing), a tool for extracting Wikidata entities from text and document, which can also use Grobid to pre-process scientific articles in PDF, leading to more precise and relevant entity extraction and the capacity to annotate the PDF with interactive layout
-- [datastet](https://github.com/kermitt2/datastet): identification of sections and sentences introducing datasets in a scientific article, identification of dataset names (implict and named datasets) and classification of the type of these datasets
- [grobid-ner](https://github.com/kermitt2/grobid-ner): named entity recognition
- [grobid-astro](https://github.com/kermitt2/grobid-astro): recognition of astronomical entities in scientific papers
- [grobid-bio](https://github.com/kermitt2/grobid-bio): a toy bio-entity tagger using BioNLP/NLPBA 2004 dataset
diff --git a/build.gradle b/build.gradle
index 89546fb8ac..db0c478a9b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -64,12 +64,12 @@ subprojects {
// targetCompatibility = 1.11
kotlin {
- jvmToolchain(17)
+ jvmToolchain(11)
}
java {
toolchain {
- languageVersion.set(JavaLanguageVersion.of(17))
+ languageVersion.set(JavaLanguageVersion.of(11))
}
}
@@ -490,20 +490,29 @@ project(":grobid-trainer") {
"train_name_header" : "org.grobid.trainer.NameHeaderTrainer",
"train_name_citation" : "org.grobid.trainer.NameCitationTrainer",
"train_affiliation_address" : "org.grobid.trainer.AffiliationAddressTrainer",
- "train_header" : "org.grobid.trainer.HeaderTrainer",
+// "train_header" : "org.grobid.trainer.HeaderTrainer",
"train_fulltext" : "org.grobid.trainer.FulltextTrainer",
"train_shorttext" : "org.grobid.trainer.ShorttextTrainer",
"train_figure" : "org.grobid.trainer.FigureTrainer",
"train_table" : "org.grobid.trainer.TableTrainer",
"train_citation" : "org.grobid.trainer.CitationTrainer",
"train_date" : "org.grobid.trainer.DateTrainer",
- "train_segmentation" : "org.grobid.trainer.SegmentationTrainer",
+// "train_segmentation" : "org.grobid.trainer.SegmentationTrainer",
"train_reference_segmentation": "org.grobid.trainer.ReferenceSegmenterTrainer",
"train_ebook_model" : "org.grobid.trainer.EbookTrainer",
"train_patent_citation" : "org.grobid.trainer.PatentParserTrainer",
"train_funding_acknowledgement" : "org.grobid.trainer.FundingAcknowledgementTrainer"
]
+ def complexTrainerTasks = [
+ "train_header" : ["org.grobid.trainer.HeaderTrainer", ""],
+ "train_header_light" : ["org.grobid.trainer.HeaderTrainer", "light"],
+ "train_header_ietf" : ["org.grobid.trainer.HeaderTrainer", "ietf"],
+ "train_segmentation" : ["org.grobid.trainer.SegmentationTrainer", ""],
+ "train_segmentation_light" : ["org.grobid.trainer.SegmentationTrainer", "light"],
+ "train_segmentation_ietf" : ["org.grobid.trainer.SegmentationTrainer", "ietf"]
+ ]
+
def libraries = ""
if (Os.isFamily(Os.FAMILY_MAC)) {
if (Os.OS_ARCH.equals("aarch64")) {
@@ -528,6 +537,18 @@ project(":grobid-trainer") {
}
}
+ complexTrainerTasks.each { taskName, mainClassNameAndArgs ->
+ tasks.create(name: taskName, type: JavaExec, group: 'modeltraining') {
+ main = mainClassNameAndArgs[0]
+ classpath = sourceSets.main.runtimeClasspath
+ if (JavaVersion.current().compareTo(JavaVersion.VERSION_1_8) > 0)
+ jvmArgs '-Xmx3072m', "--add-opens", "java.base/java.lang=ALL-UNNAMED"
+ if (JavaVersion.current().compareTo(JavaVersion.VERSION_1_8) > 0)
+ jvmArgs '-Xmx3072m', "--add-opens", "java.base/java.lang=ALL-UNNAMED"
+ args mainClassNameAndArgs[1]
+ }
+ }
+
// evaluation tasks
ext.getArg = { propName, defaultVal ->
return project.hasProperty(propName) ? project.getProperty(propName) : defaultVal;
diff --git a/doc/Configuration.md b/doc/Configuration.md
index 8ea092594b..342b7778b2 100644
--- a/doc/Configuration.md
+++ b/doc/Configuration.md
@@ -85,7 +85,7 @@ CORS for the GROBID web API service can be configurated by the following yaml pa
GROBID uses external implementation for recognizing the language used in a publication and for performing sentence disambiguation.
-There is currently only one possible language recognition implementation possible (Cybozu Language Detector) and two possible sentence segmenters (OpenNLP, default and the Pragmatic Segmenter).
+There is currently only one possible language recognition implementation possible (Cybozu Language Detector) and two possible sentence segmenters (OpenNLP (default) and the Pragmatic Segmenter).
```yml
# the actual implementation for language recognition to be used
@@ -95,6 +95,7 @@ There is currently only one possible language recognition implementation possibl
#sentenceDetectorFactory: "org.grobid.core.lang.impl.PragmaticSentenceDetectorFactory"
sentenceDetectorFactory: "org.grobid.core.lang.impl.OpenNLPSentenceDetectorFactory"
```
+**NOTE**: While OpenNLP is 60 time faster than the Pragmatic Segmenter, it performs "slightly" worst. The pragmatic segmenter runs with the JRuby Interpreter.
### Service configuration
@@ -121,7 +122,7 @@ When executing the service, models can be loaded in a lazy manner (if you plan t
modelPreload: true
```
-Finally the following part specifies the port to be used by the GROBID web service:
+Finally, the following part specifies the port to be used by the GROBID web service:
```yml
server:
diff --git a/doc/Deep-Learning-models.md b/doc/Deep-Learning-models.md
index 335e3d3d4f..c3db143110 100644
--- a/doc/Deep-Learning-models.md
+++ b/doc/Deep-Learning-models.md
@@ -20,7 +20,7 @@ Current neural models can be up to 50 times slower than CRF, depending on the ar
By default, only CRF models are used by Grobid. You need to select the Deep Learning models you would like to use in the GROBID configuration yaml file (`grobid/grobid-home/config/grobid.yaml`). See [here](https://grobid.readthedocs.io/en/latest/Configuration/#configuring-the-models) for more details on how to select these models. The most convenient way to use the Deep Learning models is to use the full GROBID Docker image and pass a configuration file at launch of the container describing the selected models to be used instead of the default CRF ones. Note that the full GROBID Docker image is already configured to use Deep Learning models for bibliographical reference and affiliation-address parsing.
-For current GROBID version 0.8.0, we recommend considering the usage of the following Deep Learning models:
+For current GROBID version 0.8.1, we recommend considering the usage of the following Deep Learning models:
- `citation` model: for bibliographical parsing, the `BidLSTM_CRF_FEATURES` architecture provides currently the best accuracy, significantly better than CRF (+3 to +5 points in F1-Score). With a GPU, there is normally no runtime impact by selecting this model. SciBERT fine-tuned model performs currently at lower accuracy.
@@ -57,7 +57,7 @@ DeLFT version `0.3.2` has been tested successfully with Python 3.7 and 3.8. For
```shell
cd deflt/
-python3 grobidTagger.py delft/applications/citation tag --architecture BidLSTM_CRF
+python -m delft.applications.grobidTagger citation tag --architecture BidLSTM_CRF
```
If it works (you see some annotations in JSON format), you are sure to have a working DeLFT environment for **all** GROBID models. The next steps address the native bridge between DeLFT and the JVM running GROBID.
@@ -98,7 +98,7 @@ If you are using a Python environment for the DeLFT installation, you can set th
```yaml
delft:
- python_virtualEnv: /where/my/damned/python/virtualenv/is/
+ python_virtualEnv: /where/my/damned/python/virtualenv/is/
```
Normally by setting the Python environment path in the config file (e.g. `pythonVirtualEnv: "../delft/env"`), you will not need to launch GROBID in the same activated environment.
diff --git a/doc/Frequently-asked-questions.md b/doc/Frequently-asked-questions.md
index 809d98dff0..6fdc5850d9 100644
--- a/doc/Frequently-asked-questions.md
+++ b/doc/Frequently-asked-questions.md
@@ -56,7 +56,7 @@ In addition, consider more RAM memory when running Deep Learning model on CPU, e
You will get the embedded images converted into `.png` by using the normal batch command. For instance:
```console
-java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn ~/test/in/ -dOut ~/test/out -exe processFullText
+java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn ~/test/in/ -dOut ~/test/out -exe processFullText
```
There is a web service doing the same, returning everything in a big zip file, `processFulltextAssetDocument`, still usable but deprecated.
diff --git a/doc/Grobid-batch.md b/doc/Grobid-batch.md
index bd936935ea..d856126eab 100644
--- a/doc/Grobid-batch.md
+++ b/doc/Grobid-batch.md
@@ -20,7 +20,7 @@ The following command display some help for the batch commands:
Be sure to replace `` with the current version of GROBID that you have installed and built. For example:
```bash
-> java -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -h
+> java -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -h
```
The available batch commands are listed bellow. For those commands, at least `-Xmx1G` is used to set the JVM memory to avoid *OutOfMemoryException* given the current size of the Grobid models and the crazyness of some PDF. For complete fulltext processing, which involve all the GROBID models, `-Xmx4G` is recommended (although allocating less memory is usually fine).
@@ -42,7 +42,7 @@ The needed parameters for that command are:
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processHeader
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processHeader
```
WARNING: the expected extension of the PDF files to be processed is .pdf
@@ -68,7 +68,7 @@ WARNING: the expected extension of the PDF files to be processed is .pdf
Example:
```bash
-> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processFullText
+> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processFullText
```
WARNING: the expected extension of the PDF files to be processed is .pdf
@@ -82,7 +82,7 @@ WARNING: the expected extension of the PDF files to be processed is .pdf
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processDate -s "some date to extract and format"
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processDate -s "some date to extract and format"
```
### processAuthorsHeader
@@ -94,7 +94,7 @@ Example:
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAuthorsHeader -s "some authors"
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAuthorsHeader -s "some authors"
```
### processAuthorsCitation
@@ -106,7 +106,7 @@ Example:
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAuthorsCitation -s "some authors"
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAuthorsCitation -s "some authors"
```
### processAffiliation
@@ -118,7 +118,7 @@ Example:
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processAffiliation -s "some affiliation"
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processAffiliation -s "some affiliation"
```
### processRawReference
@@ -130,7 +130,7 @@ Example:
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -exe processRawReference -s "a reference string"
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -exe processRawReference -s "a reference string"
```
### processReferences
@@ -146,7 +146,7 @@ Example:
Example:
```bash
-> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processReferences
+> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processReferences
```
WARNING: the expected extension of the PDF files to be processed is `.pdf`
@@ -162,7 +162,7 @@ WARNING: the expected extension of the PDF files to be processed is `.pdf`
Example:
```bash
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentST36
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentST36
```
WARNING: extension of the ST.36 files to be processed must be `.xml`
@@ -178,7 +178,7 @@ WARNING: extension of the ST.36 files to be processed must be `.xml`
Example:
```
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentTXT
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentTXT
```
WARNING: extension of the text files to be processed must be `.txt`, and expected encoding is `UTF-8`
@@ -194,7 +194,7 @@ WARNING: extension of the text files to be processed must be `.txt`, and expecte
Example:
```
-> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentPDF
+> java -Xmx1G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe processCitationPatentPDF
```
WARNING: extension of the text files to be processed must be `.pdf`
@@ -210,7 +210,7 @@ WARNING: extension of the text files to be processed must be `.pdf`
Example:
```bash
-> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTraining
+> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTraining
```
WARNING: the expected extension of the PDF files to be processed is `.pdf`
@@ -226,7 +226,7 @@ WARNING: the expected extension of the PDF files to be processed is `.pdf`
Example:
```bash
-> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTrainingBlank
+> java -Xmx4G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -exe createTrainingBlank
```
WARNING: the expected extension of the PDF files to be processed is `.pdf`
@@ -244,7 +244,7 @@ The needed parameters for that command are:
Example:
```bash
-> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.0-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processPDFAnnotation
+> java -Xmx2G -Djava.library.path=grobid-home/lib/lin-64:grobid-home/lib/lin-64/jep -jar grobid-core/build/libs/grobid-core-0.8.1-onejar.jar -gH grobid-home -dIn /path/to/input/directory -dOut /path/to/output/directory -r -exe processPDFAnnotation
```
WARNING: extension of the text files to be processed must be `.pdf`
diff --git a/doc/Grobid-docker.md b/doc/Grobid-docker.md
index fd839dc6fb..7b447a0cec 100644
--- a/doc/Grobid-docker.md
+++ b/doc/Grobid-docker.md
@@ -26,13 +26,13 @@ The process for retrieving and running the image is as follow:
Current latest version:
```bash
-> docker pull grobid/grobid:0.8.0
+> docker pull grobid/grobid:0.8.1
```
- Run the container:
```bash
-> docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.0
+> docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.1
```
The image will automatically uses the GPU and CUDA version available on your host machine, but only on Linux. GPU usage via a container on Windows and MacOS machine is currently not supported by Docker. If no GPU are available, CPU will be used.
@@ -88,7 +88,7 @@ The process for retrieving and running the image is as follow:
Latest version:
```bash
-> docker pull lfoppiano/grobid:0.8.0
+> docker pull lfoppiano/grobid:0.8.1
```
- Run the container:
@@ -100,7 +100,7 @@ Latest version:
Latest version:
```bash
-> docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.0
+> docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.1
```
Note the default version is running on port `8070`, however it can be mapped on the more traditional port `8080` of your host with the following command:
@@ -121,7 +121,7 @@ Grobid web services are then available as described in the [service documentatio
The simplest way to pass a modified configuration to the docker image is to mount the yaml GROBID config file `grobid.yaml` when running the image. Modify the config file `grobid/grobid-home/config/grobid.yaml` according to your requirements on the host machine and mount it when running the image as follow:
```bash
-docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.0
+docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.1
```
You need to use an absolute path to specify your modified `grobid.yaml` file.
@@ -222,25 +222,25 @@ Without this requirement, the image might default to CPU, even if GPU are availa
For being able to use both CRF and Deep Learningmodels, use the dockerfile `./Dockerfile.delft`. The only important information then is the version which will be checked out from the tags.
```bash
-> docker build -t grobid/grobid:0.8.0 --build-arg GROBID_VERSION=0.8.0 --file Dockerfile.delft .
+> docker build -t grobid/grobid:0.8.1 --build-arg GROBID_VERSION=0.8.1 --file Dockerfile.delft .
```
Similarly, if you want to create a docker image from the current master, development version:
```bash
-docker build -t grobid/grobid:0.8.1-SNAPSHOT --build-arg GROBID_VERSION=0.8.1-SNAPSHOT --file Dockerfile.delft .
+docker build -t grobid/grobid:0.8.2-SNAPSHOT --build-arg GROBID_VERSION=0.8.2-SNAPSHOT --file Dockerfile.delft .
```
-In order to run the container of the newly created image, for example for the development version `0.8.1-SNAPSHOT`, using all GPU available:
+In order to run the container of the newly created image, for example for the development version `0.8.2-SNAPSHOT`, using all GPU available:
```bash
-> docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.1-SNAPSHOT
+> docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.2-SNAPSHOT
```
In practice, you need to indicate which models should use a Deep Learning model implementation and which ones can remain with a faster CRF model implementation, which is done currently in the `grobid.yaml` file. Modify the config file `grobid/grobid-home/config/grobid.yaml` accordingly on the host machine and mount it when running the image as follow:
```bash
-docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.1-SNAPSHOT
+docker run --rm --gpus all --init --ulimit core=0 -p 8080:8070 -p 8081:8071 -v /home/lopez/grobid/grobid-home/config/grobid.yaml:/opt/grobid/grobid-home/config/grobid.yaml:ro grobid/grobid:0.8.2-SNAPSHOT
```
You need to use an absolute path to specify your modified `grobid.yaml` file.
@@ -262,19 +262,19 @@ The container name is given by the command:
For building a CRF-only image, the dockerfile to be used is `./Dockerfile.crf`. The only important information then is the version which will be checked out from the tags.
```bash
-> docker build -t grobid/grobid:0.8.0 --build-arg GROBID_VERSION=0.8.0 --file Dockerfile.crf .
+> docker build -t grobid/grobid:0.8.1 --build-arg GROBID_VERSION=0.8.1 --file Dockerfile.crf .
```
Similarly, if you want to create a docker image from the current master, development version:
```bash
-> docker build -t grobid/grobid:0.8.1-SNAPSHOT --build-arg GROBID_VERSION=0.8.1-SNAPSHOT --file Dockerfile.crf .
+> docker build -t grobid/grobid:0.8.2-SNAPSHOT --build-arg GROBID_VERSION=0.8.2-SNAPSHOT --file Dockerfile.crf .
```
-In order to run the container of the newly created image, for example for version `0.8.1`:
+In order to run the container of the newly created image, for example for version `0.8.2-SNAPSHOT`:
```bash
-> docker run --rm --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.1
+> docker run --rm --init --ulimit core=0 -p 8080:8070 -p 8081:8071 grobid/grobid:0.8.2-SNAPSHOT
```
For testing or debugging purposes, you can connect to the container with a bash shell (logs are under `/opt/grobid/logs/`):
diff --git a/doc/Grobid-java-library.md b/doc/Grobid-java-library.md
index 7c2e99f535..1e3ea74c52 100644
--- a/doc/Grobid-java-library.md
+++ b/doc/Grobid-java-library.md
@@ -9,7 +9,7 @@ The second option is of course to build yourself Grobid and to use the generated
## Using maven
-The Java artefacts of the latest GROBID release (0.8.0) are uploaded on a DIY repository.
+The Java artefacts of the latest GROBID release (0.8.1) are uploaded on a DIY repository.
You need to add the following snippet in your `pom.xml` in order to configure it:
@@ -29,19 +29,19 @@ Here an example of `grobid-core` dependency:
org.grobid
grobid-core
- 0.8.0
+ 0.8.1
```
-If you want to work on a SNAPSHOT development version, you need to download and build the current master yourself, and include in your pom file the path to the local snapshot Grobid jar file, for instance as follow (if necessary replace `0.8.1-SNAPSHOT` by the valid ``):
+If you want to work on a SNAPSHOT development version, you need to download and build the current master yourself, and include in your pom file the path to the local snapshot Grobid jar file, for instance as follow (if necessary replace `0.8.2-SNAPSHOT` by the valid ``):
```xml
org.grobid
grobid-core
- 0.8.1-SNAPSHOT
+ 0.8.2-SNAPSHOT
system
- ${project.basedir}/lib/grobid-core-0.8.1-SNAPSHOT.jar
+ ${project.basedir}/lib/grobid-core-0.8.2-SNAPSHOT.jar
```
@@ -59,8 +59,8 @@ Add the following snippet in your gradle.build file:
and add the Grobid dependency as well:
```
- implement 'org.grobid:grobid-core:0.8.0'
- implement 'org.grobid:grobid-trainer:0.8.0'
+ implement 'org.grobid:grobid-core:0.8.1'
+ implement 'org.grobid:grobid-trainer:0.8.1'
```
## API call
diff --git a/doc/Grobid-service.md b/doc/Grobid-service.md
index 10913e7534..4b3f4129cc 100644
--- a/doc/Grobid-service.md
+++ b/doc/Grobid-service.md
@@ -27,9 +27,9 @@ From a development installation, you can also build and install the service as a
cd ..
mkdir grobid-installation
cd grobid-installation
-unzip ../grobid/grobid-service/build/distributions/grobid-service-0.8.0.zip
-mv grobid-service-0.8.0 grobid-service
-unzip ../grobid/grobid-home/build/distributions/grobid-home-0.8.0.zip
+unzip ../grobid/grobid-service/build/distributions/grobid-service-0.8.1.zip
+mv grobid-service-0.8.1 grobid-service
+unzip ../grobid/grobid-home/build/distributions/grobid-home-0.8.1.zip
./grobid-service/bin/grobid-service
```
@@ -125,13 +125,15 @@ The consolidation parameters (`consolidateHeader`, `consolidateCitations`, `cons
* `1`, means consolidation against CrossRef/biblio-glutton and update of metadata: when we have a DOI match, the publisher metadata are combined with the metadata extracted from the PDF, possibly correcting them
* `2`, means consolidation against CrossRef/biblio-glutton and, if matching, addition of the DOI only
+The consolidation for header can use a fourth value (`3`), restricting the consolidation to the usage of DOI only, if a DOI has been extracted in the header section.
+
### PDF to TEI conversion services
#### /api/processHeaderDocument
Extract the header of the input PDF document, normalize it and convert it into a TEI XML or [BibTeX] format.
-`consolidateHeader` is a string of value `0` (no consolidation), `1` (consolidate and inject all extra metadata, default value), or `2` (consolidate the header metadata and inject DOI only).
+`consolidateHeader` is a string of value `0` (no consolidation), `1` (consolidate and inject all extra metadata, default value), `2` (consolidate the header metadata and inject DOI only) or `3` (consolidate using only extracted DOI, if extracted, and do not try to consolidate using any other metadata).
| method | request type | response type | parameters | requirement | description |
|------------|-----------------------|---------------------|--------------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/doc/Install-Grobid.md b/doc/Install-Grobid.md
index 01d2da98ef..1f85aff34e 100644
--- a/doc/Install-Grobid.md
+++ b/doc/Install-Grobid.md
@@ -8,17 +8,17 @@ Note: Java/JDK 8 is not supported anymore from Grobid version `0.8.0` and the mi
### Latest stable release
-The [latest stable release](https://github.com/kermitt2/grobid#latest-version) of GROBID is version ```0.8.0``` which can be downloaded as follow:
+The [latest stable release](https://github.com/kermitt2/grobid#latest-version) of GROBID is version ```0.8.1``` which can be downloaded as follow:
```bash
-> wget https://github.com/kermitt2/grobid/archive/0.8.0.zip
-> unzip 0.8.0.zip
+> wget https://github.com/kermitt2/grobid/archive/0.8.1.zip
+> unzip 0.8.1.zip
```
or using the [docker](Grobid-docker.md) container.
### Current development version
-The current development version is ```0.8.1-SNAPSHOT```, which can be downloaded from GitHub and built as follow:
+The current development version is ```0.8.2-SNAPSHOT```, which can be downloaded from GitHub and built as follow:
Clone source code from github:
```bash
diff --git a/doc/Notes-grobid-developers.md b/doc/Notes-grobid-developers.md
index 151d17ffd5..c5b642c1cb 100644
--- a/doc/Notes-grobid-developers.md
+++ b/doc/Notes-grobid-developers.md
@@ -9,16 +9,16 @@ The idea anyway is that people will use Grobid with the Docker image, the servic
In order to make a new release:
-+ tag the project branch to be releases, for instance a version `0.8.0`:
++ tag the project branch to be releases, for instance a version `0.8.1`:
```
-> git tag 0.8.0
-> git push origin 0.8.0
+> git tag 0.8.1
+> git push origin 0.8.1
```
+ create a github release: the easiest is to use the GitHub web interface
-+ do something to publish the Java artefacts... currrently just uploading them on AWS S3
++ do something to publish the Java artefacts... currently just uploading them on AWS S3
+ you're not done, you need to update the documentation, `Readme.md`, `CHANGELOG.md` and end-to-end benchmarking (PMC and bioRxiv sets).
@@ -35,7 +35,7 @@ In order to make a new release:
```
dependencies {
- implementation 'org.grobid:grobid-core:0.7.3'
+ implementation 'org.grobid:grobid-core:0.8.1'
}
```
@@ -55,7 +55,7 @@ for maven projects:
org.grobid
grobid-core
- 0.8.0
+ 0.8.1
```
diff --git a/doc/References.md b/doc/References.md
index 26887cd3f2..dfee440ee1 100644
--- a/doc/References.md
+++ b/doc/References.md
@@ -3,7 +3,7 @@
If you want to cite this work, please simply refer to the github project:
```
-GROBID (2008-2022)
+GROBID (2008-2024)
```
Please do not include a particular person name to emphasize the project and the tool !
@@ -17,7 +17,7 @@ Here's a BibTeX entry using the [Software Heritage](https://www.softwareheritage
title = {GROBID},
howpublished = {\url{https://github.com/kermitt2/grobid}},
publisher = {GitHub},
- year = {2008--2023},
+ year = {2008--2024},
archivePrefix = {swh},
eprint = {1:dir:dab86b296e3c3216e2241968f0d63b68e8209d3c}
}
diff --git a/doc/Run-Grobid.md b/doc/Run-Grobid.md
index 673a2c20c5..2f095fedcb 100644
--- a/doc/Run-Grobid.md
+++ b/doc/Run-Grobid.md
@@ -9,13 +9,13 @@ For convenience, we provide two docker images:
- the **full** image provides the best accuracy, because it includes all the required python and TensorFlow libraries, GPU support and all Deep Learning model resources. However it requires more resources, ideally a GPU (it will be automatically detected on Linux). If you have a limited amount of PDF, a good machine, and prioritize accuracy, use this Grobid flavor. To run this version of Grobid, the command is:
```console
-docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.0
+docker run --rm --gpus all --init --ulimit core=0 -p 8070:8070 grobid/grobid:0.8.1
```
- the **lightweight** image offers best runtime performance, memory usage and Docker image size. However, it does not use some of the best performing models in term of accuracy. If you have a lot of PDF to process, a low resource system, and accuracy is not so important, use this flavor:
```console
-docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.0
+docker run --rm --init --ulimit core=0 -p 8070:8070 lfoppiano/grobid:0.8.1
```
More documentation on the Docker images can be found [here](Grobid-docker.md).
diff --git a/gradle.properties b/gradle.properties
index 35b314eaff..7b3c318651 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
-version=0.8.1-SNAPSHOT
+version=0.8.1
# Set workers to 1 that even for parallel builds it works. (I guess the shadow plugin makes some trouble)
org.gradle.workers.max=1
org.gradle.caching = true
diff --git a/grobid-core/doc/Annotations/ActivityDiagram.png b/grobid-core/doc/Annotations/ActivityDiagram.png
deleted file mode 100644
index 346b80e565..0000000000
Binary files a/grobid-core/doc/Annotations/ActivityDiagram.png and /dev/null differ
diff --git a/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo b/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo
deleted file mode 100644
index 5a9f0edb40..0000000000
Binary files a/grobid-core/doc/Annotations/ArgoUMLFiles/ActivityDiagram.zargo and /dev/null differ
diff --git a/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo b/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo
deleted file mode 100644
index 60c5e2b6aa..0000000000
Binary files a/grobid-core/doc/Annotations/ArgoUMLFiles/ClassDiagram.zargo and /dev/null differ
diff --git a/grobid-core/doc/Annotations/ClassDiagram.png b/grobid-core/doc/Annotations/ClassDiagram.png
deleted file mode 100644
index f863ce24af..0000000000
Binary files a/grobid-core/doc/Annotations/ClassDiagram.png and /dev/null differ
diff --git a/grobid-core/doc/licenseAgreemet.txt b/grobid-core/doc/licenseAgreemet.txt
deleted file mode 100755
index f23f82aab2..0000000000
--- a/grobid-core/doc/licenseAgreemet.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-This document has been created to keep track about the exchange between grobid team and pdf2xml team about license agreement.
-
-------------------------------------------------
-Request sent to pdf2xml team on 22nd of August :
-Hello,
-
- I am part of a project named grobid (hosted on source forge) under Apache license. Pdf2xml is under gpl license. For license compatibility, the tool pdf2xml is not distributed with grobid and has to be installed manually by the user/developer.
- We thought that a good idea would be to deploy pdf2xml on a public maven repository, so that is will be disponible to use it. To respect the license with pdf2xml, it is possible to add a specific profile for the maven build of grobid (if you specify that specific profile it will download it else not). So if you add that profile in your build it means you accept the license agreement.
- For information the archive would be a simple zip of that structure :
-pdf2xml
- |_win-32
- |_pdftoxml.exe
- |_zlib1.dll
- |_mac-64
- |_pdf2xml (build on and for mac-64 platfom)
- |_lin-32
- |_pdf2xml (build on and for lin-32 platfom)
- |_lin-64
- |_pdf2xml (build on and for mac-32 platfom)
-
-We would like to know your opinion on the subject.
-
-Thank you in advance for the answer to your request.
-
-Regards,
-
-
-Damien ridereau
-------------------------------------------------
-
-
------------------------------------
-Answer recieved on 29th of August :
-Hello,
-
-It shouldn't be a problem. Pdf2xml is under gpl since it's
-based on xpdf, but I don't care much about the licence.
-
-Hervé
------------------------------------
-
diff --git a/grobid-core/src/main/java/org/grobid/core/GrobidModels.java b/grobid-core/src/main/java/org/grobid/core/GrobidModels.java
index 374552e55a..7fe5cbcb76 100755
--- a/grobid-core/src/main/java/org/grobid/core/GrobidModels.java
+++ b/grobid-core/src/main/java/org/grobid/core/GrobidModels.java
@@ -20,6 +20,9 @@ public enum GrobidModels implements GrobidModel {
AFFILIATION_ADDRESS("affiliation-address"),
SEGMENTATION("segmentation"),
+ SEGMENTATION_LIGHT("segmentation/light"),
+ SEGMENTATION_SDO_IETF("segmentation/sdo/ietf"),
+ SEGMENTATION_SDO_3GPP("segmentation/sdo/3gpp"),
CITATION("citation"),
REFERENCE_SEGMENTER("reference-segmenter"),
DATE("date"),
@@ -33,6 +36,9 @@ public enum GrobidModels implements GrobidModel {
FIGURE("figure"),
TABLE("table"),
HEADER("header"),
+ HEADER_LIGHT("header/light"),
+ HEADER_SDO_3GPP("header/sdo/3gpp"),
+ HEADER_SDO_IETF("header/sdo/ietf"),
NAMES_CITATION("name/citation"),
NAMES_HEADER("name/header"),
PATENT_PATENT("patent/patent"),
@@ -62,20 +68,32 @@ public enum GrobidModels implements GrobidModel {
// This is used in particular for scientific or technical documents like standards (SDO)
// which have a particular overall zoning and/or header, while the rest of the content
// is similar to other general technical and scientific document
- public enum Collection {
+ public enum Flavor {
+ LIGHT("light"),
+ _3GPP("sdo/3gpp"),
IETF("sdo/ietf");
public final String label;
- private Collection(String label) {
+ private Flavor(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
+
+ public static Flavor fromLabel(String text) {
+ for (Flavor f : Flavor.values()) {
+ if (f.label.equalsIgnoreCase(text)) {
+ return f;
+ }
+ }
+ return null;
+ }
};
+
/**
* Absolute path to the model.
*/
@@ -124,6 +142,13 @@ public String toString() {
return folderName;
}
+ public static GrobidModel getModelFlavor(GrobidModel model, Flavor flavor) {
+ if (flavor == null) {
+ return model;
+ } else
+ return modelFor(model.toString() + "/" + flavor.getLabel().toLowerCase());
+ }
+
public static GrobidModel modelFor(final String name) {
if (models.isEmpty()) {
for (GrobidModel model : values())
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/Engine.java b/grobid-core/src/main/java/org/grobid/core/engines/Engine.java
index 296b685114..974ff50ed1 100755
--- a/grobid-core/src/main/java/org/grobid/core/engines/Engine.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/Engine.java
@@ -557,7 +557,13 @@ public void createTraining(File inputFile, String pathRaw, String pathTEI, int i
*/
public String fullTextToTEI(File inputFile,
GrobidAnalysisConfig config) throws Exception {
- return fullTextToTEIDoc(inputFile, null, config).getTei();
+ return fullTextToTEIDoc(inputFile, null,null, config).getTei();
+ }
+
+ public String fullTextToTEI(File inputFile,
+ String flavor,
+ GrobidAnalysisConfig config) throws Exception {
+ return fullTextToTEIDoc(inputFile, flavor, null, config).getTei();
}
/**
@@ -573,19 +579,21 @@ public String fullTextToTEI(File inputFile,
* @return the resulting structured document as a TEI string.
*/
public String fullTextToTEI(File inputFile,
+ String flavor,
String md5Str,
GrobidAnalysisConfig config) throws Exception {
- return fullTextToTEIDoc(inputFile, md5Str, config).getTei();
+ return fullTextToTEIDoc(inputFile, flavor, md5Str, config).getTei();
}
public Document fullTextToTEIDoc(File inputFile,
- String md5Str,
- GrobidAnalysisConfig config) throws Exception {
+ String flavor,
+ String md5Str,
+ GrobidAnalysisConfig config) throws Exception {
FullTextParser fullTextParser = parsers.getFullTextParser();
Document resultDoc;
LOGGER.debug("Starting processing fullTextToTEI on " + inputFile);
long time = System.currentTimeMillis();
- resultDoc = fullTextParser.processing(inputFile, md5Str, config);
+ resultDoc = fullTextParser.processing(inputFile, flavor, md5Str, config);
LOGGER.debug("Ending processing fullTextToTEI on " + inputFile + ". Time to process: "
+ (System.currentTimeMillis() - time) + "ms");
return resultDoc;
@@ -593,16 +601,17 @@ public Document fullTextToTEIDoc(File inputFile,
public Document fullTextToTEIDoc(File inputFile,
GrobidAnalysisConfig config) throws Exception {
- return fullTextToTEIDoc(inputFile, null, config);
+ return fullTextToTEIDoc(inputFile, null, null, config);
}
public Document fullTextToTEIDoc(DocumentSource documentSource,
- GrobidAnalysisConfig config) throws Exception {
+ String flavor,
+ GrobidAnalysisConfig config) throws Exception {
FullTextParser fullTextParser = parsers.getFullTextParser();
Document resultDoc;
LOGGER.debug("Starting processing fullTextToTEI on " + documentSource);
long time = System.currentTimeMillis();
- resultDoc = fullTextParser.processing(documentSource, config);
+ resultDoc = fullTextParser.processing(documentSource, flavor, config);
LOGGER.debug("Ending processing fullTextToTEI on " + documentSource + ". Time to process: "
+ (System.currentTimeMillis() - time) + "ms");
return resultDoc;
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java b/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java
index 0ff94aaef6..2a07073e89 100644
--- a/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/EngineParsers.java
@@ -2,11 +2,15 @@
import org.grobid.core.engines.entities.ChemicalParser;
import org.grobid.core.engines.patent.ReferenceExtractor;
+import org.grobid.core.GrobidModels.Flavor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Closeable;
import java.io.IOException;
+import java.util.Map;
+import java.util.HashMap;
+import java.util.EnumMap;
public class EngineParsers implements Closeable {
public static final Logger LOGGER = LoggerFactory.getLogger(EngineParsers.class);
@@ -14,12 +18,14 @@ public class EngineParsers implements Closeable {
private AuthorParser authorParser = null;
private AffiliationAddressParser affiliationAddressParser = null;
private HeaderParser headerParser = null;
+ private Map headerParsers = null;
private DateParser dateParser = null;
private CitationParser citationParser = null;
private FullTextParser fullTextParser = null;
private ReferenceExtractor referenceExtractor = null;
private ChemicalParser chemicalParser = null;
private Segmentation segmentationParser = null;
+ private Map segmentationParsers = null;
private ReferenceSegmenterParser referenceSegmenterParser = null;
private FigureParser figureParser = null;
private TableParser tableParser = null;
@@ -49,14 +55,30 @@ public AuthorParser getAuthorParser() {
}
public HeaderParser getHeaderParser() {
- if (headerParser == null) {
+ return getHeaderParser(null);
+ }
+
+ public HeaderParser getHeaderParser(Flavor flavor) {
+ if (flavor == null) {
+ if (headerParser == null) {
+ synchronized (this) {
+ if (headerParser == null) {
+ headerParser = new HeaderParser(this);
+ }
+ }
+ }
+ return headerParser;
+ } else {
synchronized (this) {
- if (headerParser == null) {
- headerParser = new HeaderParser(this);
+ if (headerParsers == null || headerParsers.get(flavor) == null) {
+ HeaderParser localHeaderParser = new HeaderParser(this, flavor);
+ if (headerParsers == null)
+ headerParsers = new EnumMap<>(Flavor.class);
+ headerParsers.put(flavor, localHeaderParser);
}
}
+ return headerParsers.get(flavor);
}
- return headerParser;
}
public DateParser getDateParser() {
@@ -95,14 +117,30 @@ public FullTextParser getFullTextParser() {
}
public Segmentation getSegmentationParser() {
- if (segmentationParser == null) {
+ return getSegmentationParser(null);
+ }
+
+ public Segmentation getSegmentationParser(Flavor flavor) {
+ if (flavor == null) {
+ if (segmentationParser == null) {
+ synchronized (this) {
+ if (segmentationParser == null) {
+ segmentationParser = new Segmentation();
+ }
+ }
+ }
+ return segmentationParser;
+ } {
synchronized (this) {
- if (segmentationParser == null) {
- segmentationParser = new Segmentation();
+ if (segmentationParsers == null || segmentationParsers.get(flavor) == null) {
+ Segmentation localSegmentationParser = new Segmentation(flavor);
+ if (segmentationParsers == null)
+ segmentationParsers = new EnumMap<>(Flavor.class);
+ segmentationParsers.put(flavor, localSegmentationParser);
}
}
+ return segmentationParsers.get(flavor);
}
- return segmentationParser;
}
public ReferenceExtractor getReferenceExtractor() {
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java b/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java
index 953d92f8b1..588371659d 100755
--- a/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/FullTextParser.java
@@ -47,6 +47,7 @@
import org.grobid.core.utilities.matching.EntityMatcherException;
import org.grobid.core.engines.citations.CalloutAnalyzer;
import org.grobid.core.engines.citations.CalloutAnalyzer.MarkerType;
+import org.grobid.core.GrobidModels.Flavor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -98,11 +99,17 @@ public FullTextParser(EngineParsers parsers) {
public Document processing(File inputPdf,
GrobidAnalysisConfig config) throws Exception {
+ return processing(inputPdf, null, config);
+ }
+
+ /*public Document processing(File inputPdf,
+ String flavor,
+ GrobidAnalysisConfig config) throws Exception {
DocumentSource documentSource =
DocumentSource.fromPdf(inputPdf, config.getStartPage(), config.getEndPage(),
config.getPdfAssetPath() != null, true, false);
- return processing(documentSource, config);
- }
+ return processing(documentSource, flavor, config);
+ }*/
public Document processingHeaderFunding(File inputPdf,
GrobidAnalysisConfig config) throws Exception {
@@ -112,14 +119,21 @@ public Document processingHeaderFunding(File inputPdf,
return processingHeaderFunding(documentSource, config);
}
+ public Document processing(File inputPdf,
+ String md5Str,
+ GrobidAnalysisConfig config) throws Exception {
+ return processing(inputPdf, null, md5Str, config);
+ }
+
public Document processing(File inputPdf,
+ String flavor,
String md5Str,
GrobidAnalysisConfig config) throws Exception {
DocumentSource documentSource =
DocumentSource.fromPdf(inputPdf, config.getStartPage(), config.getEndPage(),
config.getPdfAssetPath() != null, true, false);
documentSource.setMD5(md5Str);
- return processing(documentSource, config);
+ return processing(documentSource, flavor, config);
}
public Document processingHeaderFunding(File inputPdf,
@@ -141,6 +155,20 @@ public Document processingHeaderFunding(File inputPdf,
*/
public Document processing(DocumentSource documentSource,
GrobidAnalysisConfig config) {
+ return processing(documentSource, null, config);
+ }
+
+ /**
+ * Machine-learning recognition of the complete full text structures.
+ *
+ * @param documentSource input
+ * @param flavor optional model flavor
+ * @param config config
+ * @return the document object with built TEI
+ */
+ public Document processing(DocumentSource documentSource,
+ String flavor,
+ GrobidAnalysisConfig config) {
if (tmpPath == null) {
throw new GrobidResourceException("Cannot process pdf file, because temp path is null.");
}
@@ -148,9 +176,13 @@ public Document processing(DocumentSource documentSource,
throw new GrobidResourceException("Cannot process pdf file, because temp path '" +
tmpPath.getAbsolutePath() + "' does not exists.");
}
+
+ Flavor flavorObject = null;
+ if (flavor != null && flavor.length()>0)
+ flavorObject = Flavor.fromLabel(flavor);
try {
// general segmentation
- Document doc = parsers.getSegmentationParser().processing(documentSource, config);
+ Document doc = parsers.getSegmentationParser(flavorObject).processing(documentSource, config);
SortedSet documentBodyParts = doc.getDocumentPart(SegmentationLabels.BODY);
// header processing
@@ -158,7 +190,7 @@ public Document processing(DocumentSource documentSource,
Pair featSeg = null;
// using the segmentation model to identify the header zones
- parsers.getHeaderParser().processingHeaderSection(config, doc, resHeader, false);
+ parsers.getHeaderParser(flavorObject).processingHeaderSection(config, doc, resHeader, false);
// The commented part below makes use of the PDF embedded metadata (the so-called XMP) if available
// as fall back to set author and title if they have not been found.
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java b/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java
index cfeef3637f..fca9efacb9 100644
--- a/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/FundingAcknowledgementParser.java
@@ -190,7 +190,10 @@ public MutablePair,List,List annotations = localResult.left;
FundingAcknowledgmentParse localEntities = localResult.right;
- List annotationsPositionTokens = annotations.stream().map(AnnotatedXMLElement::getOffsetPosition).toList();
+ List annotationsPositionTokens = annotations.stream()
+ .map(AnnotatedXMLElement::getOffsetPosition)
+ .collect(Collectors.toList());
+
List annotationsPositionText = TextUtilities.matchTokenAndString(tokenizationFunding, paragraphText, annotationsPositionTokens);
List annotationsWithPosRefToText = new ArrayList<>();
for (int i = 0; i < annotationsPositionText.size(); i++) {
@@ -250,20 +253,21 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List correctedOffsetPositions = SentenceUtilities.correctSentencePositions(sentencePositions, annotations
.stream()
- .map(AnnotatedXMLElement::getOffsetPosition).toList());
+ .map(AnnotatedXMLElement::getOffsetPosition)
+ .collect(Collectors.toList()));
List toRemove = new ArrayList<>();
for (OffsetPosition correctedOffsetPosition : correctedOffsetPositions) {
List originalSentences = sentencePositions.stream()
.filter(a -> a.start >= correctedOffsetPosition.start && a.end <= correctedOffsetPosition.end)
- .toList();
+ .collect(Collectors.toList());
// if for each "corrected sentences offset" there are more than one original sentence that
// falls into it, it means we need to merge
if (originalSentences.size() > 1) {
List toMerge = originalSentences.stream()
.map(sentencePositions::indexOf)
- .toList();
+ .collect(Collectors.toList());
Element destination = (Element) sentences.get(toMerge.get(0));
boolean needToMergeCoordinates = config.isGenerateTeiCoordinates("s");
@@ -291,7 +295,7 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List postMergeBoxes = new ArrayList<>();
@@ -301,7 +305,7 @@ private static Nodes mergeSentencesFallingOnAnnotations(Nodes sentences, List annotationsInThisChunk = annotations.stream()
.filter(a -> a.getOffsetPosition().start >= finalPos && a.getOffsetPosition().end <= finalPos + text.length())
- .toList();
+ .collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(annotationsInThisChunk)) {
List nodes = getNodesAnnotationsInTextNode(currentNode, annotationsInThisChunk, pos);
@@ -407,7 +411,7 @@ private static void updateSentencesNodesWithAnnotations(Nodes sentences, List annotationsInThisChunk = annotations.stream()
.filter(a -> a.getOffsetPosition().start >= finalPos && a.getOffsetPosition().end <= finalPos + text.length())
- .toList();
+ .collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(annotationsInThisChunk)) {
List nodes = getNodesAnnotationsInTextNode(currentNode, annotationsInThisChunk, pos);
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java b/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java
index 185f3714d5..7362594096 100755
--- a/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/HeaderParser.java
@@ -24,6 +24,7 @@
import org.grobid.core.tokenization.LabeledTokensContainer;
import org.grobid.core.tokenization.TaggingTokenCluster;
import org.grobid.core.tokenization.TaggingTokenClusteror;
+import org.grobid.core.GrobidModels.Flavor;
import org.grobid.core.utilities.*;
import org.grobid.core.utilities.counters.CntManager;
import org.slf4j.Logger;
@@ -71,6 +72,18 @@ public HeaderParser(EngineParsers parsers) {
GrobidProperties.getInstance();
}
+ public HeaderParser(EngineParsers parsers, CntManager cntManager, Flavor flavor) {
+ super(GrobidModels.getModelFlavor(GrobidModels.HEADER, flavor), cntManager);
+ this.parsers = parsers;
+ GrobidProperties.getInstance();
+ }
+
+ public HeaderParser(EngineParsers parsers, Flavor flavor) {
+ super(GrobidModels.getModelFlavor(GrobidModels.HEADER, flavor));
+ this.parsers = parsers;
+ GrobidProperties.getInstance();
+ }
+
/**
* Processing with application of the segmentation model
*/
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java b/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java
index 435948ee44..2bb6cea15d 100644
--- a/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/ProcessEngine.java
@@ -581,7 +581,7 @@ public void processPDFAnnotation(final GrobidMainArgs pGbdArgs) throws Exception
.generateTeiCoordinates(elementWithCoords)
.build();
- Document teiDoc = getEngine().fullTextToTEIDoc(currPDF, null, config);
+ Document teiDoc = getEngine().fullTextToTEIDoc(currPDF, null, null, config);
document = PDDocument.load(currPDF);
//If no pages, skip the document
if (document.getNumberOfPages() > 0) {
diff --git a/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java b/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java
index 9f66865576..6fbffed03d 100644
--- a/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java
+++ b/grobid-core/src/main/java/org/grobid/core/engines/Segmentation.java
@@ -15,6 +15,7 @@
import org.grobid.core.utilities.GrobidProperties;
import org.grobid.core.utilities.LanguageUtilities;
import org.grobid.core.utilities.TextUtilities;
+import org.grobid.core.GrobidModels.Flavor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -79,6 +80,10 @@ public class Segmentation extends AbstractParser {
public Segmentation() {
super(GrobidModels.SEGMENTATION);
}
+
+ public Segmentation(Flavor flavor) {
+ super(GrobidModels.getModelFlavor(GrobidModels.SEGMENTATION, flavor));
+ }
/**
* Segment a PDF document into high level zones: cover page, document header,
diff --git a/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java b/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java
index c1a3781366..7254d81d98 100644
--- a/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java
+++ b/grobid-core/src/main/java/org/grobid/core/jni/PythonEnvironmentConfig.java
@@ -100,14 +100,14 @@ public static PythonEnvironmentConfig getInstanceForVirtualEnv(String virtualEnv
.stream()
.map(path -> FilenameUtils.getName(path.getFileName().toString())
.replace("libpython", "").replace("python", ""))
- .filter(version -> version.contains("3.7") || version.contains("3.8") || version.contains("3.9"))
+ .filter(version -> version.contains("3.7") || version.contains("3.8") || version.contains("3.9") || version.contains("3.10") || version.contains("3.11") || version.contains("3.12"))
.distinct()
.sorted()
.collect(Collectors.toList());
if (CollectionUtils.isEmpty(pythonVersions)) {
throw new GrobidException(
- "Cannot find a suitable version (3.7, 3.8 or 3.9) of python in your virtual environment: " +
+ "Cannot find a suitable version (3.7 to 3.12) of python in your virtual environment: " +
virtualEnv
);
}
diff --git a/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java b/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java
index c32739a43f..46ca43691b 100644
--- a/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java
+++ b/grobid-core/src/main/java/org/grobid/core/utilities/GrobidProperties.java
@@ -588,13 +588,28 @@ public static File getPdfaltoPath() {
return pathToPdfalto;
}
+ public static ModelParameters getGrobidModelParameters(final String modelName) {
+ ModelParameters param = modelMap.get(modelName);
+ // if we have a flvor of the model, we can fall back to the configuration
+ // of the parent model
+ String fallBackModelName = modelName;
+ while(param == null) {
+ LOGGER.debug("No configuration parameter defined for model " + modelName);
+ int ind = fallBackModelName.lastIndexOf("-");
+ if (ind != -1) {
+ fallBackModelName = modelName.substring(0,ind);
+ } else {
+ return null;
+ }
+ param = modelMap.get(fallBackModelName);
+ }
+ return param;
+ }
public static String getGrobidEngineName(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
- if (param == null) {
- LOGGER.debug("No configuration parameter defined for model " + modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
+ if (param == null)
return null;
- }
return param.engine;
}
@@ -612,8 +627,14 @@ public static GrobidCRFEngine getGrobidEngine(final GrobidModel model) {
public static File getModelPath(final GrobidModel model) {
if (modelMap.get(model.getModelName()) == null) {
- // model is not specified in the config, ignoring
- return null;
+ // model is either:
+ // - a flavor without config, but that should fallback to the parent model config
+ // if no specific config exists. If it is the case, the model path is infered
+ // from the flavor model name
+ // - a normal model not specified in the config, so returning null
+
+ if (getGrobidModelParameters(model.getModelName()) == null)
+ return null;
}
String extension = getGrobidEngine(model).getExt();
return new File(getGrobidHome(), FOLDER_NAME_MODELS + File.separator
@@ -626,10 +647,10 @@ public static File getModelPath() {
}
public static File getTemplatePath(final File resourcesDir, final GrobidModel model) {
- if (modelMap.get(model.getModelName()) == null) {
- // model is not specified in the config, ignoring
+ ModelParameters param = getGrobidModelParameters(model.getModelName());
+ if (param == null)
return null;
- }
+
File theFile = new File(resourcesDir, "dataset/" + model.getFolderName()
+ "/crfpp-templates/" + model.getTemplateName());
if (!theFile.exists()) {
@@ -727,7 +748,7 @@ public static void setPythonVirtualEnv(String pythonVirtualEnv) {
}
public static int getWindow(final GrobidModel model) {
- ModelParameters parameters = modelMap.get(model.getModelName());
+ ModelParameters parameters = getGrobidModelParameters(model.getModelName());
if (parameters != null && parameters.wapiti != null)
return parameters.wapiti.window;
else
@@ -735,7 +756,7 @@ public static int getWindow(final GrobidModel model) {
}
public static double getEpsilon(final GrobidModel model) {
- ModelParameters parameters = modelMap.get(model.getModelName());
+ ModelParameters parameters = getGrobidModelParameters(model.getModelName());
if (parameters != null && parameters.wapiti != null)
return parameters.wapiti.epsilon;
else
@@ -743,7 +764,7 @@ public static double getEpsilon(final GrobidModel model) {
}
public static int getNbMaxIterations(final GrobidModel model) {
- ModelParameters parameters = modelMap.get(model.getModelName());
+ ModelParameters parameters = getGrobidModelParameters(model.getModelName());
if (parameters != null && parameters.wapiti != null)
return parameters.wapiti.nbMaxIterations;
else
@@ -751,7 +772,7 @@ public static int getNbMaxIterations(final GrobidModel model) {
}
public static boolean useELMo(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return false;
@@ -765,7 +786,7 @@ public static boolean useELMo(final String modelName) {
}
public static String getDelftArchitecture(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return null;
@@ -779,7 +800,7 @@ public static String getDelftArchitecture(final String modelName) {
}
public static String getDelftEmbeddingsName(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return null;
@@ -793,7 +814,7 @@ public static String getDelftEmbeddingsName(final String modelName) {
}
public static String getDelftTranformer(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return null;
@@ -810,7 +831,7 @@ public static String getDelftTranformer(final String modelName) {
* Return -1 if not set in the configuration and the default DeLFT value will be used in this case.
*/
public static int getDelftTrainingMaxSequenceLength(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return -1;
@@ -833,7 +854,7 @@ public static int getDelftTrainingMaxSequenceLength(final String modelName) {
* Return -1 if not set in the configuration and the default DeLFT value will be used in this case.
*/
public static int getDelftRuntimeMaxSequenceLength(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return -1;
@@ -856,7 +877,7 @@ public static int getDelftRuntimeMaxSequenceLength(final String modelName) {
* Return -1 if not set in the configuration and the default DeLFT value will be used in this case.
*/
public static int getDelftTrainingBatchSize(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return -1;
@@ -879,7 +900,7 @@ public static int getDelftTrainingBatchSize(final String modelName) {
* Return -1 if not set in the configuration and the default DeLFT value will be used in this case.
*/
public static int getDelftRuntimeBatchSize(final String modelName) {
- ModelParameters param = modelMap.get(modelName);
+ ModelParameters param = getGrobidModelParameters(modelName);
if (param == null) {
LOGGER.debug("No configuration parameter defined for model " + modelName);
return -1;
diff --git a/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java b/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java
index 4e773cc1be..86dcefc91f 100644
--- a/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java
+++ b/grobid-core/src/main/java/org/grobid/core/visualization/FigureTableVisualizer.java
@@ -99,7 +99,7 @@ private static void processPdfFile(File input, File outputFolder) throws Excepti
blacklistedPages = getVectorGraphicPages(pdfaltoDirectory);
- Document teiDoc = engine.fullTextToTEIDoc(documentSource, config);
+ Document teiDoc = engine.fullTextToTEIDoc(documentSource, null, config);
PDDocument out = annotateFigureAndTables(
document, copiedFile, teiDoc,
diff --git a/grobid-home/models/header/sdo/ietf/model.wapiti b/grobid-home/models/header/sdo/ietf/model.wapiti
new file mode 100644
index 0000000000..ef30d79f23
--- /dev/null
+++ b/grobid-home/models/header/sdo/ietf/model.wapiti
@@ -0,0 +1,34104 @@
+#mdl#2#880
+#rdr#86/29/0
+12:u00:%x[-4,0],
+12:u01:%x[-3,0],
+12:u02:%x[-2,0],
+12:u03:%x[-1,0],
+11:u04:%x[0,0],
+11:u05:%x[1,0],
+11:u06:%x[2,0],
+11:u07:%x[3,0],
+11:u08:%x[4,0],
+20:u09:%x[-1,0]/%x[0,0],
+19:u0A:%x[0,0]/%x[1,0],
+19:u0B:%x[1,0]/%x[2,0],
+21:u0C:%x[-2,0]/%x[-1,0],
+21:u0D:%x[0,0]/%x[-1,28],
+12:u10:%x[-2,1],
+12:u11:%x[-1,1],
+11:u12:%x[0,1],
+11:u13:%x[1,1],
+11:u14:%x[2,1],
+11:u20:%x[0,2],
+11:u21:%x[0,3],
+11:u22:%x[0,4],
+11:u23:%x[0,5],
+11:u30:%x[0,6],
+11:u31:%x[0,7],
+11:u32:%x[0,8],
+11:u33:%x[0,9],
+13:u40:%x[-1,10],
+12:u41:%x[0,10],
+12:u42:%x[1,10],
+13:u50:%x[-1,11],
+12:u51:%x[0,11],
+12:u52:%x[1,11],
+13:u60:%x[-1,12],
+12:u61:%x[0,12],
+12:u62:%x[1,12],
+13:u60:%x[-1,13],
+12:u61:%x[0,13],
+12:u62:%x[1,13],
+13:u70:%x[-1,14],
+12:u71:%x[0,14],
+12:u72:%x[1,14],
+13:u80:%x[-1,15],
+12:u81:%x[0,15],
+12:u82:%x[1,15],
+13:u90:%x[-1,16],
+12:u91:%x[0,16],
+12:u92:%x[1,16],
+12:uA0:%x[0,17],
+12:uA1:%x[1,17],
+13:uA2:%x[-1,17],
+21:uA3:%x[0,17]/%x[1,17],
+22:uA4:%x[-1,17]/%x[0,17],
+12:uB0:%x[0,18],
+13:uB1:%x[-1,18],
+12:uB2:%x[1,18],
+12:uC0:%x[0,19],
+13:uC1:%x[-1,19],
+12:uC2:%x[1,19],
+12:uD0:%x[0,19],
+12:uD1:%x[0,20],
+12:uD2:%x[0,21],
+12:uD3:%x[0,22],
+12:uD4:%x[0,23],
+12:uD5:%x[0,24],
+12:uD6:%x[0,25],
+12:uD7:%x[0,26],
+12:uD8:%x[0,27],
+12:uDI:%x[1,19],
+12:uDJ:%x[1,20],
+12:uDK:%x[1,21],
+12:uDL:%x[1,22],
+12:uDM:%x[1,23],
+12:uDN:%x[1,24],
+12:uDO:%x[1,25],
+12:uDP:%x[1,26],
+12:uDQ:%x[1,27],
+12:uE0:%x[0,28],
+13:uE1:%x[-1,28],
+13:uE2:%x[-2,28],
+12:uE3:%x[1,28],
+12:uE4:%x[2,28],
+13:uF0:%x[-1,29],
+12:uF1:%x[0,29],
+12:uF2:%x[1,29],
+1:b,
+#qrk#24
+8:I-,
+6:,
+9:I-,
+7:,
+11:I-,
+9:,
+10:I-,
+8:,
+9:I-,
+7:,
+12:I-,
+10:,
+13:I-,
+11:,
+13:,
+9:,
+7:,
+9:I-,
+9:I-,
+7:,
+10:I-,
+8:,
+15:I-,
+11:I-,
+#qrk#33110
+8:u00:_x-4,
+8:u01:_x-3,
+8:u02:_x-2,
+8:u03:_x-1,
+10:u04:server,
+8:u05:date,
+12:u06:20190710,
+5:u07:;,
+14:u08:downloaded,
+15:u09:_x-1/server,
+15:u0A:server/date,
+17:u0B:date/20190710,
+13:u0C:_x-2/_x-1,
+15:u0D:server/_x-1,
+8:u10:_x-2,
+8:u11:_x-1,
+10:u12:server,
+8:u13:date,
+12:u14:20190710,
+5:u20:s,
+6:u21:se,
+7:u22:ser,
+8:u23:serv,
+5:u30:r,
+6:u31:er,
+7:u32:ver,
+8:u33:rver,
+8:u40:_x-1,
+14:u41:BLOCKSTART,
+11:u42:BLOCKIN,
+8:u50:_x-1,
+13:u51:LINESTART,
+10:u52:LINEIN,
+8:u60:_x-1,
+11:u61:NEWFONT,
+12:u62:SAMEFONT,
+14:u61:HIGHERFONT,
+16:u62:SAMEFONTSIZE,
+8:u70:_x-1,
+5:u71:1,
+5:u72:1,
+8:u80:_x-1,
+5:u81:0,
+5:u82:0,
+8:u90:_x-1,
+5:u91:0,
+5:u92:0,
+10:uA0:NOCAPS,
+10:uA1:NOCAPS,
+8:uA2:_x-1,
+17:uA3:NOCAPS/NOCAPS,
+15:uA4:_x-1/NOCAPS,
+11:uB0:NODIGIT,
+8:uB1:_x-1,
+11:uB2:NODIGIT,
+5:uC0:0,
+8:uC1:_x-1,
+5:uC2:0,
+5:uD0:0,
+5:uD1:0,
+5:uD2:0,
+5:uD3:0,
+5:uD4:0,
+5:uD5:0,
+5:uD6:0,
+5:uD7:0,
+5:uD8:0,
+5:uDI:0,
+5:uDJ:0,
+5:uDK:1,
+5:uDL:0,
+5:uDM:0,
+5:uDN:0,
+5:uDO:0,
+5:uDP:0,
+5:uDQ:0,
+5:uE0:0,
+8:uE1:_x-1,
+8:uE2:_x-2,
+5:uE3:0,
+5:uE4:0,
+8:uF0:_x-1,
+11:uF1:NOPUNCT,
+11:uF2:NOPUNCT,
+1:b,
+8:u00:_x-3,
+8:u01:_x-2,
+8:u02:_x-1,
+10:u03:server,
+8:u04:date,
+12:u05:20190710,
+5:u06:;,
+14:u07:downloaded,
+6:u08:by,
+15:u09:server/date,
+17:u0A:date/20190710,
+14:u0B:20190710/;,
+15:u0C:_x-1/server,
+10:u0D:date/0,
+8:u10:_x-1,
+10:u11:server,
+8:u12:date,
+12:u13:20190710,
+5:u14:;,
+5:u20:d,
+6:u21:da,
+7:u22:dat,
+8:u23:date,
+5:u30:e,
+6:u31:te,
+7:u32:ate,
+8:u33:date,
+14:u40:BLOCKSTART,
+11:u41:BLOCKIN,
+13:u50:LINESTART,
+10:u51:LINEIN,
+11:u60:NEWFONT,
+12:u61:SAMEFONT,
+14:u60:HIGHERFONT,
+16:u61:SAMEFONTSIZE,
+5:u70:1,
+5:u80:0,
+5:u90:0,
+10:uA2:NOCAPS,
+17:uA4:NOCAPS/NOCAPS,
+11:uB1:NODIGIT,
+12:uB2:ALLDIGIT,
+5:uC1:0,
+5:uD2:1,
+5:uDK:0,
+5:uDN:1,
+5:uE1:0,
+8:uE2:_x-1,
+11:uF0:NOPUNCT,
+8:u00:_x-2,
+8:u01:_x-1,
+10:u02:server,
+8:u03:date,
+12:u04:20190710,
+5:u05:;,
+14:u06:downloaded,
+6:u07:by,
+7:u08:EPO,
+17:u09:date/20190710,
+14:u0A:20190710/;,
+16:u0B:;/downloaded,
+15:u0C:server/date,
+14:u0D:20190710/0,
+10:u10:server,
+8:u11:date,
+12:u12:20190710,
+5:u13:;,
+14:u14:downloaded,
+5:u20:2,
+6:u21:20,
+7:u22:201,
+8:u23:2019,
+5:u30:0,
+6:u31:10,
+7:u32:710,
+8:u33:0710,
+11:u40:BLOCKIN,
+10:u50:LINEIN,
+12:u60:SAMEFONT,
+16:u60:SAMEFONTSIZE,
+10:uA1:ALLCAP,
+17:uA3:NOCAPS/ALLCAP,
+12:uB0:ALLDIGIT,
+5:uC2:1,
+5:uD5:1,
+5:uDI:1,
+5:uE2:0,
+9:uF2:PUNCT,
+8:u00:_x-1,
+10:u01:server,
+8:u02:date,
+12:u03:20190710,
+5:u04:;,
+14:u05:downloaded,
+6:u06:by,
+7:u07:EPO,
+6:u08:on,
+14:u09:20190710/;,
+16:u0A:;/downloaded,
+17:u0B:downloaded/by,
+17:u0C:date/20190710,
+7:u0D:;/0,
+8:u10:date,
+12:u11:20190710,
+5:u12:;,
+14:u13:downloaded,
+6:u14:by,
+5:u20:;,
+5:u21:;,
+5:u22:;,
+5:u23:;,
+5:u30:;,
+5:u31:;,
+5:u32:;,
+5:u33:;,
+10:uA0:ALLCAP,
+17:uA3:ALLCAP/NOCAPS,
+17:uA4:NOCAPS/ALLCAP,
+12:uB1:ALLDIGIT,
+5:uC0:1,
+5:uD0:1,
+9:uF1:PUNCT,
+10:u00:server,
+8:u01:date,
+12:u02:20190710,
+5:u03:;,
+14:u04:downloaded,
+6:u05:by,
+7:u06:EPO,
+6:u07:on,
+12:u08:20190711,
+16:u09:;/downloaded,
+17:u0A:downloaded/by,
+10:u0B:by/EPO,
+14:u0C:20190710/;,
+16:u0D:downloaded/0,
+12:u10:20190710,
+5:u11:;,
+14:u12:downloaded,
+6:u13:by,
+7:u14:epo,
+6:u21:do,
+7:u22:dow,
+8:u23:down,
+5:u30:d,
+6:u31:ed,
+7:u32:ded,
+8:u33:aded,
+10:uA2:ALLCAP,
+17:uA4:ALLCAP/NOCAPS,
+5:uC1:1,
+9:uF0:PUNCT,
+8:u00:date,
+12:u01:20190710,
+5:u02:;,
+14:u03:downloaded,
+6:u04:by,
+7:u05:EPO,
+6:u06:on,
+12:u07:20190711,
+12:u08:Internet,
+17:u09:downloaded/by,
+10:u0A:by/EPO,
+10:u0B:EPO/on,
+16:u0C:;/downloaded,
+8:u0D:by/0,
+5:u10:;,
+14:u11:downloaded,
+6:u12:by,
+7:u13:epo,
+6:u14:on,
+5:u20:b,
+6:u21:by,
+6:u22:by,
+6:u23:by,
+5:u30:y,
+6:u31:by,
+6:u32:by,
+6:u33:by,
+12:u00:20190710,
+5:u01:;,
+14:u02:downloaded,
+6:u03:by,
+7:u04:EPO,
+6:u05:on,
+12:u06:20190711,
+12:u07:Internet,
+12:u08:Research,
+10:u09:by/EPO,
+10:u0A:EPO/on,
+15:u0B:on/20190711,
+17:u0C:downloaded/by,
+9:u0D:EPO/0,
+14:u10:downloaded,
+6:u11:by,
+7:u12:epo,
+6:u13:on,
+12:u14:20190711,
+5:u20:E,
+6:u21:EP,
+7:u22:EPO,
+7:u23:EPO,
+5:u30:O,
+6:u31:PO,
+7:u32:EPO,
+7:u33:EPO,
+5:u00:;,
+14:u01:downloaded,
+6:u02:by,
+7:u03:EPO,
+6:u04:on,
+12:u05:20190711,
+12:u06:Internet,
+12:u07:Research,
+8:u08:Task,
+10:u09:EPO/on,
+15:u0A:on/20190711,
+21:u0B:20190711/Internet,
+10:u0C:by/EPO,
+8:u0D:on/0,
+6:u10:by,
+7:u11:epo,
+6:u12:on,
+12:u13:20190711,
+12:u14:internet,
+5:u20:o,
+6:u21:on,
+6:u22:on,
+6:u23:on,
+5:u30:n,
+6:u31:on,
+6:u32:on,
+6:u33:on,
+11:u52:LINEEND,
+14:u00:downloaded,
+6:u01:by,
+7:u02:EPO,
+6:u03:on,
+12:u04:20190711,
+12:u05:Internet,
+12:u06:Research,
+8:u07:Task,
+9:u08:Force,
+15:u09:on/20190711,
+21:u0A:20190711/Internet,
+21:u0B:Internet/Research,
+10:u0C:EPO/on,
+14:u0D:20190711/0,
+7:u10:epo,
+6:u11:on,
+12:u12:20190711,
+12:u13:internet,
+12:u14:research,
+5:u30:1,
+6:u31:11,
+7:u32:711,
+8:u33:0711,
+14:u42:BLOCKSTART,
+11:u51:LINEEND,
+13:u52:LINESTART,
+11:u62:NEWFONT,
+14:u62:HIGHERFONT,
+11:uA1:INITCAP,
+18:uA3:NOCAPS/INITCAP,
+6:u00:by,
+7:u01:EPO,
+6:u02:on,
+12:u03:20190711,
+12:u04:Internet,
+12:u05:Research,
+8:u06:Task,
+9:u07:Force,
+5:u08:(,
+21:u09:20190711/Internet,
+21:u0A:Internet/Research,
+17:u0B:Research/Task,
+15:u0C:on/20190711,
+14:u0D:Internet/0,
+6:u10:on,
+12:u11:20190711,
+12:u12:internet,
+12:u13:research,
+8:u14:task,
+5:u20:I,
+6:u21:In,
+7:u22:Int,
+8:u23:Inte,
+5:u30:t,
+6:u31:et,
+7:u32:net,
+8:u33:rnet,
+11:u50:LINEEND,
+11:uA0:INITCAP,
+19:uA3:INITCAP/INITCAP,
+18:uA4:NOCAPS/INITCAP,
+5:uDJ:1,
+7:u00:EPO,
+6:u01:on,
+12:u02:20190711,
+12:u03:Internet,
+12:u04:Research,
+8:u05:Task,
+9:u06:Force,
+5:u07:(,
+8:u08:IRTF,
+21:u09:Internet/Research,
+17:u0A:Research/Task,
+14:u0B:Task/Force,
+21:u0C:20190711/Internet,
+14:u0D:Research/0,
+12:u10:20190711,
+12:u11:internet,
+12:u12:research,
+8:u13:task,
+9:u14:force,
+5:u20:R,
+6:u21:Re,
+7:u22:Res,
+8:u23:Rese,
+5:u30:h,
+6:u31:ch,
+7:u32:rch,
+8:u33:arch,
+11:uA2:INITCAP,
+19:uA4:INITCAP/INITCAP,
+5:uD1:1,
+6:u00:on,
+12:u01:20190711,
+12:u02:Internet,
+12:u03:Research,
+8:u04:Task,
+9:u05:Force,
+5:u06:(,
+8:u07:IRTF,
+5:u08:),
+17:u09:Research/Task,
+14:u0A:Task/Force,
+11:u0B:Force/(,
+21:u0C:Internet/Research,
+10:u0D:Task/0,
+12:u10:internet,
+12:u11:research,
+8:u12:task,
+9:u13:force,
+5:u14:(,
+5:u20:T,
+6:u21:Ta,
+7:u22:Tas,
+8:u23:Task,
+5:u30:k,
+6:u31:sk,
+7:u32:ask,
+8:u33:Task,
+12:u00:20190711,
+12:u01:Internet,
+12:u02:Research,
+8:u03:Task,
+9:u04:Force,
+5:u05:(,
+8:u06:IRTF,
+5:u07:),
+5:u08:M,
+14:u09:Task/Force,
+11:u0A:Force/(,
+10:u0B:(/IRTF,
+17:u0C:Research/Task,
+11:u0D:Force/0,
+12:u10:research,
+8:u11:task,
+9:u12:force,
+5:u13:(,
+8:u14:irtf,
+5:u20:F,
+6:u21:Fo,
+7:u22:For,
+8:u23:Forc,
+6:u31:ce,
+7:u32:rce,
+8:u33:orce,
+18:uA3:INITCAP/ALLCAP,
+15:uF2:OPENBRACKET,
+12:u00:Internet,
+12:u01:Research,
+8:u02:Task,
+9:u03:Force,
+5:u04:(,
+8:u05:IRTF,
+5:u06:),
+5:u07:M,
+5:u08:.,
+11:u09:Force/(,
+10:u0A:(/IRTF,
+10:u0B:IRTF/),
+14:u0C:Task/Force,
+7:u0D:(/0,
+8:u10:task,
+9:u11:force,
+5:u12:(,
+8:u13:irtf,
+5:u14:),
+5:u20:(,
+5:u21:(,
+5:u22:(,
+5:u23:(,
+5:u30:(,
+5:u31:(,
+5:u32:(,
+5:u33:(,
+17:uA3:ALLCAP/ALLCAP,
+18:uA4:INITCAP/ALLCAP,
+15:uF1:OPENBRACKET,
+12:u00:Research,
+8:u01:Task,
+9:u02:Force,
+5:u03:(,
+8:u04:IRTF,
+5:u05:),
+5:u06:M,
+5:u07:.,
+9:u08:Mosko,
+10:u09:(/IRTF,
+10:u0A:IRTF/),
+7:u0B:)/M,
+11:u0C:Force/(,
+10:u0D:IRTF/0,
+9:u10:force,
+5:u11:(,
+8:u12:irtf,
+5:u13:),
+5:u14:m,
+6:u21:IR,
+7:u22:IRT,
+8:u23:IRTF,
+5:u30:F,
+6:u31:TF,
+7:u32:RTF,
+8:u33:IRTF,
+17:uA4:ALLCAP/ALLCAP,
+15:uF0:OPENBRACKET,
+14:uF2:ENDBRACKET,
+8:u00:Task,
+9:u01:Force,
+5:u02:(,
+8:u03:IRTF,
+5:u04:),
+5:u05:M,
+5:u06:.,
+9:u07:Mosko,
+11:u08:Request,
+10:u09:IRTF/),
+7:u0A:)/M,
+7:u0B:M/.,
+10:u0C:(/IRTF,
+7:u0D:)/0,
+5:u10:(,
+8:u11:irtf,
+5:u12:),
+5:u13:m,
+5:u14:.,
+5:u20:),
+5:u21:),
+5:u22:),
+5:u23:),
+5:u30:),
+5:u31:),
+5:u32:),
+5:u33:),
+14:uF1:ENDBRACKET,
+9:u00:Force,
+5:u01:(,
+8:u02:IRTF,
+5:u03:),
+5:u04:M,
+5:u05:.,
+9:u06:Mosko,
+11:u07:Request,
+7:u08:for,
+7:u09:)/M,
+7:u0A:M/.,
+11:u0B:./Mosko,
+10:u0C:IRTF/),
+7:u0D:M/0,
+8:u10:irtf,
+5:u11:),
+5:u12:m,
+5:u13:.,
+9:u14:mosko,
+5:u20:M,
+5:u21:M,
+5:u22:M,
+5:u23:M,
+5:u30:M,
+5:u31:M,
+5:u32:M,
+5:u33:M,
+14:uF0:ENDBRACKET,
+7:uF2:DOT,
+5:u00:(,
+8:u01:IRTF,
+5:u02:),
+5:u03:M,
+5:u04:.,
+9:u05:Mosko,
+11:u06:Request,
+7:u07:for,
+12:u08:Comments,
+7:u09:M/.,
+11:u0A:./Mosko,
+17:u0B:Mosko/Request,
+7:u0C:)/M,
+7:u0D:./0,
+5:u10:),
+5:u11:m,
+5:u12:.,
+9:u13:mosko,
+11:u14:request,
+5:u20:.,
+5:u21:.,
+5:u22:.,
+5:u23:.,
+5:u30:.,
+5:u31:.,
+5:u32:.,
+5:u33:.,
+18:uA3:ALLCAP/INITCAP,
+7:uF1:DOT,
+8:u00:IRTF,
+5:u01:),
+5:u02:M,
+5:u03:.,
+9:u04:Mosko,
+11:u05:Request,
+7:u06:for,
+12:u07:Comments,
+5:u08::,
+11:u09:./Mosko,
+17:u0A:Mosko/Request,
+15:u0B:Request/for,
+7:u0C:M/.,
+11:u0D:Mosko/0,
+5:u10:m,
+5:u11:.,
+9:u12:mosko,
+11:u13:request,
+7:u14:for,
+6:u21:Mo,
+7:u22:Mos,
+8:u23:Mosk,
+5:u30:o,
+6:u31:ko,
+7:u32:sko,
+8:u33:osko,
+18:uA4:ALLCAP/INITCAP,
+7:uF0:DOT,
+5:u00:),
+5:u01:M,
+5:u02:.,
+9:u03:Mosko,
+11:u04:Request,
+7:u05:for,
+12:u06:Comments,
+5:u07::,
+8:u08:8609,
+17:u09:Mosko/Request,
+15:u0A:Request/for,
+16:u0B:for/Comments,
+11:u0C:./Mosko,
+13:u0D:Request/0,
+5:u10:.,
+9:u11:mosko,
+11:u12:request,
+7:u13:for,
+12:u14:comments,
+7:u22:Req,
+8:u23:Requ,
+6:u31:st,
+7:u32:est,
+8:u33:uest,
+18:uA3:INITCAP/NOCAPS,
+5:u00:M,
+5:u01:.,
+9:u02:Mosko,
+11:u03:Request,
+7:u04:for,
+12:u05:Comments,
+5:u06::,
+8:u07:8609,
+8:u08:PARC,
+15:u09:Request/for,
+16:u0A:for/Comments,
+14:u0B:Comments/:,
+17:u0C:Mosko/Request,
+9:u0D:for/0,
+9:u10:mosko,
+11:u11:request,
+7:u12:for,
+12:u13:comments,
+5:u14::,
+5:u20:f,
+6:u21:fo,
+7:u22:for,
+7:u23:for,
+6:u31:or,
+7:u32:for,
+7:u33:for,
+18:uA4:INITCAP/NOCAPS,
+5:u00:.,
+9:u01:Mosko,
+11:u02:Request,
+7:u03:for,
+12:u04:Comments,
+5:u05::,
+8:u06:8609,
+8:u07:PARC,
+5:u08:,,
+16:u09:for/Comments,
+14:u0A:Comments/:,
+10:u0B::/8609,
+15:u0C:Request/for,
+14:u0D:Comments/0,
+11:u10:request,
+7:u11:for,
+12:u12:comments,
+5:u13::,
+8:u14:8609,
+5:u20:C,
+6:u21:Co,
+7:u22:Com,
+8:u23:Comm,
+5:u30:s,
+6:u31:ts,
+7:u32:nts,
+8:u33:ents,
+9:u00:Mosko,
+11:u01:Request,
+7:u02:for,
+12:u03:Comments,
+5:u04::,
+8:u05:8609,
+8:u06:PARC,
+5:u07:,,
+7:u08:Inc,
+14:u09:Comments/:,
+10:u0A::/8609,
+13:u0B:8609/PARC,
+16:u0C:for/Comments,
+7:u0D::/0,
+7:u10:for,
+12:u11:comments,
+5:u12::,
+8:u13:8609,
+8:u14:parc,
+5:u20::,
+5:u21::,
+5:u22::,
+5:u23::,
+5:u30::,
+5:u31::,
+5:u32::,
+5:u33::,
+11:u00:Request,
+7:u01:for,
+12:u02:Comments,
+5:u03::,
+8:u04:8609,
+8:u05:PARC,
+5:u06:,,
+7:u07:Inc,
+10:u09::/8609,
+13:u0A:8609/PARC,
+10:u0B:PARC/,,
+14:u0C:Comments/:,
+10:u0D:8609/0,
+12:u10:comments,
+5:u11::,
+8:u12:8609,
+8:u13:parc,
+5:u14:,,
+5:u20:8,
+6:u21:86,
+7:u22:860,
+8:u23:8609,
+5:u30:9,
+6:u31:09,
+7:u32:609,
+8:u33:8609,
+7:u00:for,
+12:u01:Comments,
+5:u02::,
+8:u03:8609,
+8:u04:PARC,
+5:u05:,,
+7:u06:Inc,
+12:u08:Category,
+13:u09:8609/PARC,
+10:u0A:PARC/,,
+9:u0B:,/Inc,
+10:u0C::/8609,
+10:u0D:PARC/0,
+5:u10::,
+8:u11:8609,
+8:u12:parc,
+5:u13:,,
+7:u14:inc,
+5:u20:P,
+6:u21:PA,
+7:u22:PAR,
+8:u23:PARC,
+5:u30:C,
+6:u31:RC,
+7:u32:ARC,
+8:u33:PARC,
+9:uF2:COMMA,
+12:u00:Comments,
+5:u01::,
+8:u02:8609,
+8:u03:PARC,
+5:u04:,,
+7:u05:Inc,
+12:u07:Category,
+10:u09:PARC/,,
+9:u0A:,/Inc,
+9:u0B:Inc/.,
+13:u0C:8609/PARC,
+7:u0D:,/0,
+8:u10:8609,
+8:u11:parc,
+5:u12:,,
+7:u13:inc,
+5:u20:,,
+5:u21:,,
+5:u22:,,
+5:u23:,,
+5:u30:,,
+5:u31:,,
+5:u32:,,
+5:u33:,,
+9:uF1:COMMA,
+5:u00::,
+8:u01:8609,
+8:u02:PARC,
+5:u03:,,
+7:u04:Inc,
+12:u06:Category,
+16:u08:Experimental,
+9:u09:,/Inc,
+9:u0A:Inc/.,
+14:u0B:./Category,
+10:u0C:PARC/,,
+9:u0D:Inc/0,
+8:u10:parc,
+5:u11:,,
+7:u12:inc,
+12:u14:category,
+7:u22:Inc,
+7:u23:Inc,
+5:u30:c,
+6:u31:nc,
+7:u32:Inc,
+7:u33:Inc,
+9:uF0:COMMA,
+8:u00:8609,
+8:u01:PARC,
+5:u02:,,
+7:u03:Inc,
+12:u05:Category,
+16:u07:Experimental,
+5:u08:I,
+9:u09:Inc/.,
+14:u0A:./Category,
+14:u0B:Category/:,
+9:u0C:,/Inc,
+5:u10:,,
+7:u11:inc,
+12:u13:category,
+8:u00:PARC,
+5:u01:,,
+7:u02:Inc,
+12:u04:Category,
+16:u06:Experimental,
+5:u07:I,
+14:u09:./Category,
+14:u0A:Category/:,
+18:u0B::/Experimental,
+9:u0C:Inc/.,
+14:u0D:Category/0,
+7:u10:inc,
+12:u12:category,
+16:u14:experimental,
+6:u21:Ca,
+7:u22:Cat,
+8:u23:Cate,
+6:u31:ry,
+7:u32:ory,
+8:u33:gory,
+5:u00:,,
+7:u01:Inc,
+12:u03:Category,
+16:u05:Experimental,
+5:u06:I,
+9:u08:Solis,
+14:u09:Category/:,
+18:u0A::/Experimental,
+18:u0B:Experimental/I,
+14:u0C:./Category,
+12:u11:category,
+16:u13:experimental,
+5:u14:i,
+7:u00:Inc,
+12:u02:Category,
+16:u04:Experimental,
+5:u05:I,
+9:u07:Solis,
+8:u08:ISSN,
+18:u09::/Experimental,
+18:u0A:Experimental/I,
+7:u0B:I/.,
+14:u0C:Category/:,
+18:u0D:Experimental/0,
+12:u10:category,
+16:u12:experimental,
+5:u13:i,
+6:u21:Ex,
+7:u22:Exp,
+8:u23:Expe,
+5:u30:l,
+6:u31:al,
+7:u32:tal,
+8:u33:ntal,
+12:u01:Category,
+16:u03:Experimental,
+5:u04:I,
+9:u06:Solis,
+8:u07:ISSN,
+18:u09:Experimental/I,
+7:u0A:I/.,
+11:u0B:./Solis,
+18:u0C::/Experimental,
+7:u0D:I/0,
+16:u11:experimental,
+5:u12:i,
+9:u14:solis,
+5:u21:I,
+5:u22:I,
+5:u23:I,
+5:u30:I,
+5:u31:I,
+5:u32:I,
+5:u33:I,
+12:u00:Category,
+16:u02:Experimental,
+5:u03:I,
+9:u05:Solis,
+8:u06:ISSN,
+8:u08:2070,
+7:u09:I/.,
+11:u0A:./Solis,
+14:u0B:Solis/ISSN,
+18:u0C:Experimental/I,
+16:u10:experimental,
+5:u11:i,
+9:u13:solis,
+8:u14:issn,
+16:u01:Experimental,
+5:u02:I,
+9:u04:Solis,
+8:u05:ISSN,
+8:u07:2070,
+5:u08:-,
+11:u09:./Solis,
+14:u0A:Solis/ISSN,
+10:u0B:ISSN/:,
+7:u0C:I/.,
+11:u0D:Solis/0,
+5:u10:i,
+9:u12:solis,
+8:u13:issn,
+5:u20:S,
+6:u21:So,
+7:u22:Sol,
+8:u23:Soli,
+6:u31:is,
+7:u32:lis,
+8:u33:olis,
+16:u00:Experimental,
+5:u01:I,
+9:u03:Solis,
+8:u04:ISSN,
+8:u06:2070,
+5:u07:-,
+8:u08:1721,
+14:u09:Solis/ISSN,
+10:u0A:ISSN/:,
+10:u0B::/2070,
+11:u0C:./Solis,
+10:u0D:ISSN/0,
+9:u11:solis,
+8:u12:issn,
+8:u14:2070,
+6:u21:IS,
+7:u22:ISS,
+8:u23:ISSN,
+5:u30:N,
+6:u31:SN,
+7:u32:SSN,
+8:u33:ISSN,
+5:u00:I,
+9:u02:Solis,
+8:u03:ISSN,
+8:u05:2070,
+5:u06:-,
+8:u07:1721,
+12:u08:LinkedIn,
+10:u09:ISSN/:,
+10:u0A::/2070,
+10:u0B:2070/-,
+14:u0C:Solis/ISSN,
+9:u10:solis,
+8:u11:issn,
+8:u13:2070,
+5:u14:-,
+5:uE4:1,
+9:u01:Solis,
+8:u02:ISSN,
+8:u04:2070,
+5:u05:-,
+8:u06:1721,
+12:u07:LinkedIn,
+5:u08:C,
+10:u09::/2070,
+10:u0A:2070/-,
+10:u0B:-/1721,
+10:u0C:ISSN/:,
+10:u0D:2070/0,
+8:u10:issn,
+8:u12:2070,
+5:u13:-,
+8:u14:1721,
+7:u22:207,
+8:u23:2070,
+6:u31:70,
+7:u32:070,
+8:u33:2070,
+5:uE3:1,
+10:uF2:HYPHEN,
+9:u00:Solis,
+8:u01:ISSN,
+8:u03:2070,
+5:u04:-,
+8:u05:1721,
+12:u06:LinkedIn,
+5:u07:C,
+10:u09:2070/-,
+10:u0A:-/1721,
+17:u0B:1721/LinkedIn,
+10:u0C::/2070,
+7:u0D:-/0,
+8:u11:2070,
+5:u12:-,
+8:u13:1721,
+12:u14:linkedin,
+5:u20:-,
+5:u21:-,
+5:u22:-,
+5:u23:-,
+5:u30:-,
+5:u31:-,
+5:u32:-,
+5:u33:-,
+5:uE0:1,
+10:uF1:HYPHEN,
+8:u00:ISSN,
+8:u02:2070,
+5:u03:-,
+8:u04:1721,
+12:u05:LinkedIn,
+5:u06:C,
+8:u08:Wood,
+10:u09:-/1721,
+17:u0A:1721/LinkedIn,
+14:u0B:LinkedIn/C,
+10:u0C:2070/-,
+10:u0D:1721/1,
+8:u10:2070,
+5:u11:-,
+8:u12:1721,
+12:u13:linkedin,
+5:u14:c,
+5:u20:1,
+6:u21:17,
+7:u22:172,
+8:u23:1721,
+6:u31:21,
+7:u32:721,
+8:u33:1721,
+5:uE1:1,
+10:uF0:HYPHEN,
+8:u01:2070,
+5:u02:-,
+8:u03:1721,
+12:u04:LinkedIn,
+5:u05:C,
+8:u07:Wood,
+14:u08:University,
+17:u09:1721/LinkedIn,
+14:u0A:LinkedIn/C,
+7:u0B:C/.,
+10:u0C:-/1721,
+14:u0D:LinkedIn/0,
+5:u10:-,
+8:u11:1721,
+12:u12:linkedin,
+5:u13:c,
+5:u20:L,
+6:u21:Li,
+7:u22:Lin,
+8:u23:Link,
+6:u31:In,
+7:u32:dIn,
+8:u33:edIn,
+5:uE2:1,
+8:u00:2070,
+5:u01:-,
+8:u02:1721,
+12:u03:LinkedIn,
+5:u04:C,
+8:u06:Wood,
+14:u07:University,
+6:u08:of,
+14:u09:LinkedIn/C,
+7:u0A:C/.,
+10:u0B:./Wood,
+17:u0C:1721/LinkedIn,
+7:u0D:C/0,
+8:u10:1721,
+12:u11:linkedin,
+5:u12:c,
+8:u14:wood,
+5:u21:C,
+5:u22:C,
+5:u23:C,
+5:u31:C,
+5:u32:C,
+5:u33:C,
+5:u00:-,
+8:u01:1721,
+12:u02:LinkedIn,
+5:u03:C,
+8:u05:Wood,
+14:u06:University,
+6:u07:of,
+14:u08:California,
+7:u09:C/.,
+10:u0A:./Wood,
+19:u0B:Wood/University,
+14:u0C:LinkedIn/C,
+12:u10:linkedin,
+5:u11:c,
+8:u13:wood,
+14:u14:university,
+8:u00:1721,
+12:u01:LinkedIn,
+5:u02:C,
+8:u04:Wood,
+14:u05:University,
+6:u06:of,
+14:u07:California,
+10:u08:Irvine,
+10:u09:./Wood,
+19:u0A:Wood/University,
+17:u0B:University/of,
+7:u0C:C/.,
+10:u0D:Wood/0,
+5:u10:c,
+8:u12:wood,
+14:u13:university,
+6:u14:of,
+5:u20:W,
+6:u21:Wo,
+7:u22:Woo,
+8:u23:Wood,
+6:u31:od,
+7:u32:ood,
+8:u33:Wood,
+12:u00:LinkedIn,
+5:u01:C,
+8:u03:Wood,
+14:u04:University,
+6:u05:of,
+14:u06:California,
+10:u07:Irvine,
+8:u08:July,
+19:u09:Wood/University,
+17:u0A:University/of,
+17:u0B:of/California,
+10:u0C:./Wood,
+16:u0D:University/0,
+8:u11:wood,
+14:u12:university,
+6:u13:of,
+14:u14:california,
+5:u20:U,
+6:u21:Un,
+7:u22:Uni,
+8:u23:Univ,
+6:u31:ty,
+7:u32:ity,
+8:u33:sity,
+5:u00:C,
+8:u02:Wood,
+14:u03:University,
+6:u04:of,
+14:u05:California,
+10:u06:Irvine,
+8:u07:July,
+8:u08:2019,
+17:u09:University/of,
+17:u0A:of/California,
+21:u0B:California/Irvine,
+19:u0C:Wood/University,
+8:u0D:of/0,
+8:u10:wood,
+14:u11:university,
+6:u12:of,
+14:u13:california,
+10:u14:irvine,
+6:u21:of,
+6:u22:of,
+6:u23:of,
+5:u30:f,
+6:u31:of,
+6:u32:of,
+6:u33:of,
+8:u01:Wood,
+14:u02:University,
+6:u03:of,
+14:u04:California,
+10:u05:Irvine,
+8:u06:July,
+8:u07:2019,
+11:u08:Content,
+17:u09:of/California,
+21:u0A:California/Irvine,
+15:u0B:Irvine/July,
+17:u0C:University/of,
+16:u0D:California/0,
+14:u10:university,
+6:u11:of,
+14:u12:california,
+10:u13:irvine,
+8:u14:july,
+7:u22:Cal,
+8:u23:Cali,
+5:u30:a,
+6:u31:ia,
+7:u32:nia,
+8:u33:rnia,
+8:u00:Wood,
+14:u01:University,
+6:u02:of,
+14:u03:California,
+10:u04:Irvine,
+8:u05:July,
+8:u06:2019,
+11:u07:Content,
+21:u09:California/Irvine,
+15:u0A:Irvine/July,
+13:u0B:July/2019,
+17:u0C:of/California,
+12:u0D:Irvine/0,
+6:u10:of,
+14:u11:california,
+10:u12:irvine,
+8:u13:july,
+8:u14:2019,
+6:u21:Ir,
+7:u22:Irv,
+8:u23:Irvi,
+6:u31:ne,
+7:u32:ine,
+8:u33:vine,
+5:uDO:1,
+14:u00:University,
+6:u01:of,
+14:u02:California,
+10:u03:Irvine,
+8:u04:July,
+8:u05:2019,
+11:u06:Content,
+11:u08:Centric,
+15:u09:Irvine/July,
+13:u0A:July/2019,
+16:u0B:2019/Content,
+21:u0C:California/Irvine,
+10:u0D:July/0,
+14:u10:california,
+10:u11:irvine,
+8:u12:july,
+8:u13:2019,
+11:u14:content,
+5:u20:J,
+6:u21:Ju,
+7:u22:Jul,
+8:u23:July,
+6:u31:ly,
+7:u32:uly,
+8:u33:July,
+5:uD6:1,
+6:u00:of,
+14:u01:California,
+10:u02:Irvine,
+8:u03:July,
+8:u04:2019,
+11:u05:Content,
+11:u07:Centric,
+14:u08:Networking,
+13:u09:July/2019,
+16:u0A:2019/Content,
+13:u0B:Content/-,
+15:u0C:Irvine/July,
+10:u0D:2019/0,
+10:u10:irvine,
+8:u11:july,
+8:u12:2019,
+11:u13:content,
+6:u31:19,
+7:u32:019,
+8:u33:2019,
+14:u00:California,
+10:u01:Irvine,
+8:u02:July,
+8:u03:2019,
+11:u04:Content,
+11:u06:Centric,
+14:u07:Networking,
+16:u09:2019/Content,
+13:u0A:Content/-,
+13:u0B:-/Centric,
+13:u0C:July/2019,
+13:u0D:Content/0,
+8:u10:july,
+8:u11:2019,
+11:u12:content,
+11:u14:centric,
+7:u22:Con,
+8:u23:Cont,
+6:u31:nt,
+7:u32:ent,
+8:u33:tent,
+10:u00:Irvine,
+8:u01:July,
+8:u02:2019,
+11:u03:Content,
+11:u05:Centric,
+14:u06:Networking,
+8:u08:CCNx,
+13:u09:Content/-,
+13:u0A:-/Centric,
+22:u0B:Centric/Networking,
+16:u0C:2019/Content,
+8:u10:2019,
+11:u11:content,
+11:u13:centric,
+14:u14:networking,
+8:u00:July,
+8:u01:2019,
+11:u02:Content,
+11:u04:Centric,
+14:u05:Networking,
+8:u07:CCNx,
+13:u09:-/Centric,
+22:u0A:Centric/Networking,
+16:u0B:Networking/(,
+13:u0C:Content/-,
+13:u0D:Centric/1,
+11:u10:content,
+11:u12:centric,
+14:u13:networking,
+6:u21:Ce,
+7:u22:Cen,
+8:u23:Cent,
+6:u31:ic,
+7:u32:ric,
+8:u33:tric,
+8:u00:2019,
+11:u01:Content,
+11:u03:Centric,
+14:u04:Networking,
+8:u06:CCNx,
+12:u08:Messages,
+22:u09:Centric/Networking,
+16:u0A:Networking/(,
+10:u0B:(/CCNx,
+13:u0C:-/Centric,
+16:u0D:Networking/0,
+11:u11:centric,
+14:u12:networking,
+8:u14:ccnx,
+5:u20:N,
+6:u21:Ne,
+7:u22:Net,
+8:u23:Netw,
+5:u30:g,
+6:u31:ng,
+7:u32:ing,
+8:u33:king,
+11:u00:Content,
+11:u02:Centric,
+14:u03:Networking,
+8:u05:CCNx,
+12:u07:Messages,
+6:u08:in,
+16:u09:Networking/(,
+10:u0A:(/CCNx,
+10:u0B:CCNx/),
+22:u0C:Centric/Networking,
+11:u10:centric,
+14:u11:networking,
+8:u13:ccnx,
+11:u01:Centric,
+14:u02:Networking,
+8:u04:CCNx,
+12:u06:Messages,
+6:u07:in,
+7:u08:TLV,
+10:u09:(/CCNx,
+10:u0A:CCNx/),
+14:u0B:)/Messages,
+16:u0C:Networking/(,
+10:u0D:CCNx/0,
+14:u10:networking,
+8:u12:ccnx,
+12:u14:messages,
+6:u21:CC,
+7:u22:CCN,
+8:u23:CCNx,
+5:u30:x,
+6:u31:Nx,
+7:u32:CNx,
+8:u33:CCNx,
+11:u00:Centric,
+14:u01:Networking,
+8:u03:CCNx,
+12:u05:Messages,
+6:u06:in,
+7:u07:TLV,
+10:u08:Format,
+10:u09:CCNx/),
+14:u0A:)/Messages,
+15:u0B:Messages/in,
+10:u0C:(/CCNx,
+8:u11:ccnx,
+12:u13:messages,
+6:u14:in,
+14:u00:Networking,
+8:u02:CCNx,
+12:u04:Messages,
+6:u05:in,
+7:u06:TLV,
+10:u07:Format,
+12:u08:Abstract,
+14:u09:)/Messages,
+15:u0A:Messages/in,
+10:u0B:in/TLV,
+10:u0C:CCNx/),
+14:u0D:Messages/0,
+8:u10:ccnx,
+12:u12:messages,
+6:u13:in,
+7:u14:tlv,
+6:u21:Me,
+7:u22:Mes,
+8:u23:Mess,
+6:u31:es,
+7:u32:ges,
+8:u33:ages,
+8:u01:CCNx,
+12:u03:Messages,
+6:u04:in,
+7:u05:TLV,
+10:u06:Format,
+12:u07:Abstract,
+15:u09:Messages/in,
+10:u0A:in/TLV,
+14:u0B:TLV/Format,
+14:u0C:)/Messages,
+8:u0D:in/0,
+12:u11:messages,
+6:u12:in,
+7:u13:tlv,
+10:u14:format,
+5:u20:i,
+6:u21:in,
+6:u22:in,
+6:u23:in,
+6:u31:in,
+6:u32:in,
+6:u33:in,
+8:u00:CCNx,
+12:u02:Messages,
+6:u03:in,
+7:u04:TLV,
+10:u05:Format,
+12:u06:Abstract,
+10:u09:in/TLV,
+14:u0A:TLV/Format,
+19:u0B:Format/Abstract,
+15:u0C:Messages/in,
+9:u0D:TLV/0,
+12:u10:messages,
+6:u11:in,
+7:u12:tlv,
+10:u13:format,
+12:u14:abstract,
+6:u21:TL,
+7:u22:TLV,
+7:u23:TLV,
+5:u30:V,
+6:u31:LV,
+7:u32:TLV,
+7:u33:TLV,
+12:u01:Messages,
+6:u02:in,
+7:u03:TLV,
+10:u04:Format,
+12:u05:Abstract,
+14:u09:TLV/Format,
+19:u0A:Format/Abstract,
+20:u0B:Abstract/Content,
+10:u0C:in/TLV,
+12:u0D:Format/0,
+6:u10:in,
+7:u11:tlv,
+10:u12:format,
+12:u13:abstract,
+8:u23:Form,
+6:u31:at,
+7:u32:mat,
+8:u33:rmat,
+12:u00:Messages,
+6:u01:in,
+7:u02:TLV,
+10:u03:Format,
+12:u04:Abstract,
+19:u09:Format/Abstract,
+20:u0A:Abstract/Content,
+14:u0C:TLV/Format,
+14:u0D:Abstract/0,
+7:u10:tlv,
+10:u11:format,
+12:u12:abstract,
+5:u20:A,
+6:u21:Ab,
+7:u22:Abs,
+8:u23:Abst,
+6:u31:ct,
+7:u32:act,
+8:u33:ract,
+6:u00:in,
+7:u01:TLV,
+10:u02:Format,
+12:u03:Abstract,
+20:u09:Abstract/Content,
+19:u0C:Format/Abstract,
+10:u10:format,
+12:u11:abstract,
+7:u00:TLV,
+10:u01:Format,
+12:u02:Abstract,
+20:u0C:Abstract/Content,
+12:u10:abstract,
+10:u00:Format,
+12:u01:Abstract,
+12:u00:Abstract,
+6:u08:is,
+6:u07:is,
+5:u08:a,
+6:u06:is,
+5:u07:a,
+11:u08:network,
+8:u0B:)/is,
+6:u14:is,
+6:u05:is,
+5:u06:a,
+11:u07:network,
+12:u08:protocol,
+8:u0A:)/is,
+8:u0B:is/a,
+6:u13:is,
+5:u14:a,
+6:u04:is,
+5:u05:a,
+11:u06:network,
+12:u07:protocol,
+8:u08:that,
+8:u09:)/is,
+8:u0A:is/a,
+13:u0B:a/network,
+8:u0D:is/0,
+6:u12:is,
+5:u13:a,
+11:u14:network,
+6:u21:is,
+6:u22:is,
+6:u23:is,
+6:u32:is,
+6:u33:is,
+6:u03:is,
+5:u04:a,
+11:u05:network,
+12:u06:protocol,
+8:u07:that,
+8:u08:uses,
+8:u09:is/a,
+13:u0A:a/network,
+20:u0B:network/protocol,
+8:u0C:)/is,
+7:u0D:a/0,
+6:u11:is,
+5:u12:a,
+11:u13:network,
+12:u14:protocol,
+5:u20:a,
+5:u21:a,
+5:u22:a,
+5:u23:a,
+5:u31:a,
+5:u32:a,
+5:u33:a,
+6:u02:is,
+5:u03:a,
+11:u04:network,
+12:u05:protocol,
+8:u06:that,
+8:u07:uses,
+13:u09:a/network,
+20:u0A:network/protocol,
+17:u0B:protocol/that,
+8:u0C:is/a,
+13:u0D:network/0,
+6:u10:is,
+5:u11:a,
+11:u12:network,
+12:u13:protocol,
+8:u14:that,
+5:u20:n,
+6:u21:ne,
+7:u22:net,
+8:u23:netw,
+6:u31:rk,
+7:u32:ork,
+8:u33:work,
+6:u01:is,
+5:u02:a,
+11:u03:network,
+12:u04:protocol,
+8:u05:that,
+8:u06:uses,
+16:u08:hierarchical,
+20:u09:network/protocol,
+17:u0A:protocol/that,
+13:u0B:that/uses,
+13:u0C:a/network,
+14:u0D:protocol/0,
+5:u10:a,
+11:u11:network,
+12:u12:protocol,
+8:u13:that,
+8:u14:uses,
+5:u20:p,
+6:u21:pr,
+7:u22:pro,
+8:u23:prot,
+6:u31:ol,
+7:u32:col,
+8:u33:ocol,
+6:u00:is,
+5:u01:a,
+11:u02:network,
+12:u03:protocol,
+8:u04:that,
+8:u05:uses,
+16:u07:hierarchical,
+8:u08:name,
+17:u09:protocol/that,
+13:u0A:that/uses,
+10:u0B:uses/a,
+20:u0C:network/protocol,
+10:u0D:that/0,
+11:u10:network,
+12:u11:protocol,
+8:u12:that,
+8:u13:uses,
+5:u20:t,
+6:u21:th,
+7:u22:tha,
+8:u23:that,
+7:u32:hat,
+8:u33:that,
+5:u00:a,
+11:u01:network,
+12:u02:protocol,
+8:u03:that,
+8:u04:uses,
+16:u06:hierarchical,
+8:u07:name,
+6:u08:to,
+13:u09:that/uses,
+10:u0A:uses/a,
+18:u0B:a/hierarchical,
+17:u0C:protocol/that,
+10:u0D:uses/0,
+12:u10:protocol,
+8:u11:that,
+8:u12:uses,
+16:u14:hierarchical,
+5:u20:u,
+6:u21:us,
+7:u22:use,
+8:u23:uses,
+7:u32:ses,
+8:u33:uses,
+11:u00:network,
+12:u01:protocol,
+8:u02:that,
+8:u03:uses,
+16:u05:hierarchical,
+8:u06:name,
+6:u07:to,
+11:u08:forward,
+10:u09:uses/a,
+18:u0A:a/hierarchical,
+21:u0B:hierarchical/name,
+13:u0C:that/uses,
+8:u10:that,
+8:u11:uses,
+16:u13:hierarchical,
+8:u14:name,
+12:u00:protocol,
+8:u01:that,
+8:u02:uses,
+16:u04:hierarchical,
+8:u05:name,
+6:u06:to,
+11:u07:forward,
+12:u08:requests,
+18:u09:a/hierarchical,
+21:u0A:hierarchical/name,
+11:u0B:name/to,
+10:u0C:uses/a,
+18:u0D:hierarchical/0,
+8:u10:uses,
+16:u12:hierarchical,
+8:u13:name,
+6:u14:to,
+5:u20:h,
+6:u21:hi,
+7:u22:hie,
+8:u23:hier,
+7:u32:cal,
+8:u33:ical,
+8:u00:that,
+8:u01:uses,
+16:u03:hierarchical,
+8:u04:name,
+6:u05:to,
+11:u06:forward,
+12:u07:requests,
+7:u08:and,
+21:u09:hierarchical/name,
+11:u0A:name/to,
+14:u0B:to/forward,
+18:u0C:a/hierarchical,
+10:u0D:name/0,
+16:u11:hierarchical,
+8:u12:name,
+6:u13:to,
+11:u14:forward,
+6:u21:na,
+7:u22:nam,
+8:u23:name,
+6:u31:me,
+7:u32:ame,
+8:u33:name,
+8:u00:uses,
+16:u02:hierarchical,
+8:u03:name,
+6:u04:to,
+11:u05:forward,
+12:u06:requests,
+7:u07:and,
+11:u09:name/to,
+14:u0A:to/forward,
+20:u0B:forward/requests,
+21:u0C:hierarchical/name,
+8:u0D:to/0,
+16:u10:hierarchical,
+8:u11:name,
+6:u12:to,
+11:u13:forward,
+12:u14:requests,
+6:u21:to,
+6:u22:to,
+6:u23:to,
+6:u31:to,
+6:u32:to,
+6:u33:to,
+16:u01:hierarchical,
+8:u02:name,
+6:u03:to,
+11:u04:forward,
+12:u05:requests,
+7:u06:and,
+9:u08:match,
+14:u09:to/forward,
+20:u0A:forward/requests,
+16:u0B:requests/and,
+11:u0C:name/to,
+13:u0D:forward/0,
+8:u10:name,
+6:u11:to,
+11:u12:forward,
+12:u13:requests,
+7:u14:and,
+8:u23:forw,
+6:u31:rd,
+7:u32:ard,
+8:u33:ward,
+16:u00:hierarchical,
+8:u01:name,
+6:u02:to,
+11:u03:forward,
+12:u04:requests,
+7:u05:and,
+9:u07:match,
+13:u08:responses,
+20:u09:forward/requests,
+16:u0A:requests/and,
+10:u0B:and/to,
+14:u0C:to/forward,
+14:u0D:requests/0,
+6:u10:to,
+11:u11:forward,
+12:u12:requests,
+7:u13:and,
+5:u20:r,
+6:u21:re,
+7:u22:req,
+8:u23:requ,
+7:u32:sts,
+8:u33:ests,
+8:u00:name,
+6:u01:to,
+11:u02:forward,
+12:u03:requests,
+7:u04:and,
+9:u06:match,
+13:u07:responses,
+16:u09:requests/and,
+10:u0A:and/to,
+12:u0B:to/match,
+20:u0C:forward/requests,
+9:u0D:and/0,
+11:u10:forward,
+12:u11:requests,
+7:u12:and,
+9:u14:match,
+6:u21:an,
+7:u22:and,
+7:u23:and,
+6:u31:nd,
+7:u32:and,
+7:u33:and,
+6:u00:to,
+11:u01:forward,
+12:u02:requests,
+7:u03:and,
+9:u05:match,
+13:u06:responses,
+10:u09:and/to,
+12:u0A:to/match,
+19:u0B:match/responses,
+16:u0C:requests/and,
+12:u10:requests,
+7:u11:and,
+9:u13:match,
+13:u14:responses,
+11:u00:forward,
+12:u01:requests,
+7:u02:and,
+9:u04:match,
+13:u05:responses,
+12:u09:to/match,
+19:u0A:match/responses,
+16:u0B:responses/to,
+10:u0C:and/to,
+11:u0D:match/0,
+7:u10:and,
+9:u12:match,
+13:u13:responses,
+5:u20:m,
+6:u21:ma,
+7:u22:mat,
+8:u23:matc,
+7:u32:tch,
+8:u33:atch,
+12:u00:requests,
+7:u01:and,
+9:u03:match,
+13:u04:responses,
+8:u08:This,
+19:u09:match/responses,
+16:u0A:responses/to,
+15:u0B:to/requests,
+12:u0C:to/match,
+15:u0D:responses/0,
+9:u11:match,
+13:u12:responses,
+7:u22:res,
+8:u23:resp,
+8:u33:nses,
+7:u00:and,
+9:u02:match,
+13:u03:responses,
+8:u07:This,
+12:u08:document,
+16:u09:responses/to,
+15:u0A:to/requests,
+14:u0B:requests/.,
+19:u0C:match/responses,
+9:u10:match,
+13:u11:responses,
+9:u01:match,
+13:u02:responses,
+8:u06:This,
+12:u07:document,
+13:u08:specifies,
+15:u09:to/requests,
+14:u0A:requests/.,
+10:u0B:./This,
+16:u0C:responses/to,
+13:u10:responses,
+8:u14:this,
+9:u00:match,
+13:u01:responses,
+8:u05:This,
+12:u06:document,
+13:u07:specifies,
+7:u08:the,
+14:u09:requests/.,
+10:u0A:./This,
+17:u0B:This/document,
+15:u0C:to/requests,
+8:u13:this,
+12:u14:document,
+13:u00:responses,
+8:u04:This,
+12:u05:document,
+13:u06:specifies,
+7:u07:the,
+12:u08:encoding,
+10:u09:./This,
+17:u0A:This/document,
+22:u0B:document/specifies,
+14:u0C:requests/.,
+10:u0D:This/0,
+8:u12:this,
+12:u13:document,
+13:u14:specifies,
+6:u21:Th,
+7:u22:Thi,
+8:u23:This,
+7:u32:his,
+8:u33:This,
+8:u03:This,
+12:u04:document,
+13:u05:specifies,
+7:u06:the,
+12:u07:encoding,
+17:u09:This/document,
+22:u0A:document/specifies,
+17:u0B:specifies/the,
+10:u0C:./This,
+14:u0D:document/0,
+8:u11:this,
+12:u12:document,
+13:u13:specifies,
+7:u14:the,
+7:u22:doc,
+8:u23:docu,
+8:u33:ment,
+8:u02:This,
+12:u03:document,
+13:u04:specifies,
+7:u05:the,
+12:u06:encoding,
+22:u09:document/specifies,
+17:u0A:specifies/the,
+16:u0B:the/encoding,
+17:u0C:This/document,
+15:u0D:specifies/0,
+8:u10:this,
+12:u11:document,
+13:u12:specifies,
+7:u13:the,
+12:u14:encoding,
+6:u21:sp,
+7:u22:spe,
+8:u23:spec,
+7:u32:ies,
+8:u33:fies,
+8:u01:This,
+12:u02:document,
+13:u03:specifies,
+7:u04:the,
+12:u05:encoding,
+12:u08:messages,
+17:u09:specifies/the,
+16:u0A:the/encoding,
+15:u0B:encoding/of,
+22:u0C:document/specifies,
+9:u0D:the/0,
+12:u10:document,
+13:u11:specifies,
+7:u12:the,
+12:u13:encoding,
+7:u22:the,
+7:u23:the,
+6:u31:he,
+7:u32:the,
+7:u33:the,
+8:u00:This,
+12:u01:document,
+13:u02:specifies,
+7:u03:the,
+12:u04:encoding,
+12:u07:messages,
+16:u09:the/encoding,
+15:u0A:encoding/of,
+11:u0B:of/CCNx,
+17:u0C:specifies/the,
+14:u0D:encoding/0,
+13:u10:specifies,
+7:u11:the,
+12:u12:encoding,
+5:u20:e,
+6:u21:en,
+7:u22:enc,
+8:u23:enco,
+8:u33:ding,
+12:u00:document,
+13:u01:specifies,
+7:u02:the,
+12:u03:encoding,
+12:u06:messages,
+15:u09:encoding/of,
+11:u0A:of/CCNx,
+17:u0B:CCNx/messages,
+16:u0C:the/encoding,
+7:u10:the,
+12:u11:encoding,
+13:u00:specifies,
+7:u01:the,
+12:u02:encoding,
+12:u05:messages,
+11:u09:of/CCNx,
+17:u0A:CCNx/messages,
+15:u0B:messages/in,
+15:u0C:encoding/of,
+12:u10:encoding,
+7:u00:the,
+12:u01:encoding,
+12:u04:messages,
+10:u08:packet,
+17:u09:CCNx/messages,
+15:u0A:messages/in,
+8:u0B:in/a,
+11:u0C:of/CCNx,
+14:u0D:messages/0,
+6:u21:me,
+7:u22:mes,
+8:u23:mess,
+12:u00:encoding,
+12:u03:messages,
+10:u07:packet,
+10:u08:format,
+15:u09:messages/in,
+8:u0A:in/a,
+9:u0B:a/TLV,
+17:u0C:CCNx/messages,
+12:u02:messages,
+10:u06:packet,
+10:u07:format,
+8:u09:in/a,
+9:u0A:a/TLV,
+14:u0B:TLV/packet,
+15:u0C:messages/in,
+10:u14:packet,
+12:u01:messages,
+10:u05:packet,
+10:u06:format,
+13:u08:including,
+9:u09:a/TLV,
+14:u0A:TLV/packet,
+17:u0B:packet/format,
+8:u0C:in/a,
+10:u13:packet,
+12:u00:messages,
+10:u04:packet,
+10:u05:format,
+13:u07:including,
+14:u09:TLV/packet,
+17:u0A:packet/format,
+12:u0B:format/,,
+9:u0C:a/TLV,
+12:u0D:packet/0,
+10:u12:packet,
+6:u21:pa,
+7:u22:pac,
+8:u23:pack,
+7:u32:ket,
+8:u33:cket,
+10:u03:packet,
+10:u04:format,
+13:u06:including,
+17:u09:packet/format,
+12:u0A:format/,,
+15:u0B:,/including,
+14:u0C:TLV/packet,
+12:u0D:format/0,
+10:u11:packet,
+13:u14:including,
+8:u23:form,
+10:u02:packet,
+10:u03:format,
+13:u05:including,
+9:u08:types,
+12:u09:format/,,
+15:u0A:,/including,
+17:u0B:including/the,
+17:u0C:packet/format,
+10:u10:packet,
+13:u13:including,
+10:u01:packet,
+10:u02:format,
+13:u04:including,
+9:u07:types,
+8:u08:used,
+15:u09:,/including,
+17:u0A:including/the,
+11:u0B:the/TLV,
+12:u0C:format/,,
+15:u0D:including/0,
+13:u12:including,
+7:u22:inc,
+8:u23:incl,
+10:u00:packet,
+10:u01:format,
+13:u03:including,
+9:u06:types,
+8:u07:used,
+17:u09:including/the,
+11:u0A:the/TLV,
+13:u0B:TLV/types,
+15:u0C:,/including,
+13:u11:including,
+9:u14:types,
+10:u00:format,
+13:u02:including,
+9:u05:types,
+8:u06:used,
+8:u08:each,
+11:u09:the/TLV,
+13:u0A:TLV/types,
+14:u0B:types/used,
+17:u0C:including/the,
+13:u10:including,
+9:u13:types,
+8:u14:used,
+13:u01:including,
+9:u04:types,
+8:u05:used,
+8:u07:each,
+11:u08:message,
+13:u09:TLV/types,
+14:u0A:types/used,
+11:u0B:used/by,
+11:u0C:the/TLV,
+11:u0D:types/0,
+9:u12:types,
+8:u13:used,
+6:u21:ty,
+7:u22:typ,
+8:u23:type,
+7:u32:pes,
+8:u33:ypes,
+13:u00:including,
+9:u03:types,
+8:u04:used,
+8:u06:each,
+11:u07:message,
+11:u08:element,
+14:u09:types/used,
+11:u0A:used/by,
+11:u0B:by/each,
+13:u0C:TLV/types,
+10:u0D:used/0,
+9:u11:types,
+8:u12:used,
+8:u14:each,
+8:u23:used,
+7:u32:sed,
+8:u33:used,
+9:u02:types,
+8:u03:used,
+8:u05:each,
+11:u06:message,
+11:u07:element,
+11:u09:used/by,
+11:u0A:by/each,
+16:u0B:each/message,
+14:u0C:types/used,
+9:u10:types,
+8:u11:used,
+8:u13:each,
+11:u14:message,
+9:u01:types,
+8:u02:used,
+8:u04:each,
+11:u05:message,
+11:u06:element,
+11:u09:by/each,
+16:u0A:each/message,
+19:u0B:message/element,
+11:u0C:used/by,
+10:u0D:each/0,
+8:u10:used,
+8:u12:each,
+11:u13:message,
+11:u14:element,
+6:u21:ea,
+7:u22:eac,
+8:u23:each,
+7:u32:ach,
+8:u33:each,
+9:u00:types,
+8:u01:used,
+8:u03:each,
+11:u04:message,
+11:u05:element,
+16:u09:each/message,
+19:u0A:message/element,
+15:u0B:element/and,
+11:u0C:by/each,
+13:u0D:message/0,
+8:u11:each,
+11:u12:message,
+11:u13:element,
+6:u31:ge,
+7:u32:age,
+8:u33:sage,
+8:u00:used,
+8:u02:each,
+11:u03:message,
+11:u04:element,
+19:u09:message/element,
+15:u0A:element/and,
+11:u0B:and/the,
+16:u0C:each/message,
+13:u0D:element/0,
+8:u10:each,
+11:u11:message,
+11:u12:element,
+6:u21:el,
+7:u22:ele,
+8:u23:elem,
+8:u01:each,
+11:u02:message,
+11:u03:element,
+15:u09:element/and,
+11:u0A:and/the,
+19:u0C:message/element,
+11:u10:message,
+11:u11:element,
+8:u00:each,
+11:u01:message,
+11:u02:element,
+9:u08:value,
+11:u09:and/the,
+15:u0C:element/and,
+11:u10:element,
+11:u00:message,
+11:u01:element,
+9:u07:value,
+11:u0B:of/each,
+11:u0C:and/the,
+11:u00:element,
+9:u06:value,
+7:u08:The,
+11:u0A:of/each,
+14:u0B:each/value,
+9:u14:value,
+9:u05:value,
+7:u07:The,
+13:u08:semantics,
+11:u09:of/each,
+14:u0A:each/value,
+11:u0B:value/.,
+9:u13:value,
+9:u04:value,
+7:u06:The,
+13:u07:semantics,
+14:u09:each/value,
+11:u0A:value/.,
+9:u0B:./The,
+11:u0C:of/each,
+11:u0D:value/0,
+9:u12:value,
+5:u20:v,
+6:u21:va,
+7:u22:val,
+8:u23:valu,
+6:u31:ue,
+7:u32:lue,
+8:u33:alue,
+9:u03:value,
+7:u05:The,
+13:u06:semantics,
+11:u09:value/.,
+9:u0A:./The,
+17:u0B:The/semantics,
+14:u0C:each/value,
+9:u11:value,
+13:u14:semantics,
+9:u02:value,
+7:u04:The,
+13:u05:semantics,
+9:u09:./The,
+17:u0A:The/semantics,
+16:u0B:semantics/of,
+11:u0C:value/.,
+9:u0D:The/0,
+9:u10:value,
+13:u13:semantics,
+7:u22:The,
+7:u23:The,
+7:u32:The,
+7:u33:The,
+9:u01:value,
+7:u03:The,
+13:u04:semantics,
+10:u08:follow,
+17:u09:The/semantics,
+16:u0A:semantics/of,
+9:u0C:./The,
+15:u0D:semantics/0,
+13:u12:semantics,
+7:u22:sem,
+8:u23:sema,
+6:u31:cs,
+7:u32:ics,
+8:u33:tics,
+9:u00:value,
+7:u02:The,
+13:u03:semantics,
+10:u07:follow,
+16:u09:semantics/of,
+17:u0C:The/semantics,
+13:u11:semantics,
+7:u01:The,
+13:u02:semantics,
+10:u06:follow,
+19:u0B:messages/follow,
+16:u0C:semantics/of,
+13:u10:semantics,
+10:u14:follow,
+7:u00:The,
+13:u01:semantics,
+10:u05:follow,
+19:u0A:messages/follow,
+14:u0B:follow/the,
+10:u13:follow,
+13:u00:semantics,
+10:u04:follow,
+15:u08:independent,
+19:u09:messages/follow,
+14:u0A:follow/the,
+12:u0D:follow/0,
+10:u12:follow,
+7:u22:fol,
+8:u23:foll,
+5:u30:w,
+6:u31:ow,
+7:u32:low,
+8:u33:llow,
+10:u03:follow,
+15:u07:independent,
+14:u09:follow/the,
+14:u0B:encoding/-,
+19:u0C:messages/follow,
+10:u11:follow,
+10:u02:follow,
+15:u06:independent,
+13:u08:Semantics,
+14:u0A:encoding/-,
+17:u0B:-/independent,
+14:u0C:follow/the,
+10:u10:follow,
+15:u14:independent,
+10:u01:follow,
+15:u05:independent,
+13:u07:Semantics,
+17:u08:specification,
+14:u09:encoding/-,
+17:u0A:-/independent,
+20:u0B:independent/CCNx,
+15:u13:independent,
+10:u00:follow,
+15:u04:independent,
+13:u06:Semantics,
+17:u07:specification,
+17:u09:-/independent,
+20:u0A:independent/CCNx,
+18:u0B:CCNx/Semantics,
+14:u0C:encoding/-,
+17:u0D:independent/1,
+15:u12:independent,
+7:u22:ind,
+8:u23:inde,
+8:u33:dent,
+15:u03:independent,
+13:u05:Semantics,
+17:u06:specification,
+20:u09:independent/CCNx,
+18:u0A:CCNx/Semantics,
+27:u0B:Semantics/specification,
+17:u0C:-/independent,
+15:u11:independent,
+17:u14:specification,
+15:u02:independent,
+13:u04:Semantics,
+17:u05:specification,
+18:u09:CCNx/Semantics,
+27:u0A:Semantics/specification,
+19:u0B:specification/.,
+20:u0C:independent/CCNx,
+15:u0D:Semantics/0,
+15:u10:independent,
+17:u13:specification,
+6:u21:Se,
+7:u22:Sem,
+8:u23:Sema,
+15:u01:independent,
+13:u03:Semantics,
+17:u04:specification,
+27:u09:Semantics/specification,
+19:u0A:specification/.,
+18:u0C:CCNx/Semantics,
+19:u0D:specification/0,
+17:u12:specification,
+7:u32:ion,
+8:u33:tion,
+15:u00:independent,
+13:u02:Semantics,
+17:u03:specification,
+19:u09:specification/.,
+27:u0C:Semantics/specification,
+17:u11:specification,
+13:u01:Semantics,
+17:u02:specification,
+11:u08:product,
+15:u0B:document/is,
+19:u0C:specification/.,
+17:u10:specification,
+13:u00:Semantics,
+17:u01:specification,
+11:u07:product,
+15:u0A:document/is,
+17:u00:specification,
+11:u06:product,
+15:u09:document/is,
+13:u0B:a/product,
+11:u14:product,
+11:u05:product,
+15:u08:Information,
+13:u0A:a/product,
+14:u0B:product/of,
+15:u0C:document/is,
+11:u13:product,
+11:u04:product,
+15:u07:Information,
+13:u09:a/product,
+14:u0A:product/of,
+10:u0B:of/the,
+13:u0D:product/0,
+11:u12:product,
+8:u23:prod,
+7:u32:uct,
+8:u33:duct,
+11:u03:product,
+15:u06:Information,
+14:u09:product/of,
+10:u0A:of/the,
+19:u0B:the/Information,
+13:u0C:a/product,
+11:u11:product,
+15:u14:information,
+11:u02:product,
+15:u05:Information,
+12:u08:research,
+10:u09:of/the,
+19:u0A:the/Information,
+23:u0B:Information/Centric,
+14:u0C:product/of,
+11:u10:product,
+15:u13:information,
+11:u01:product,
+15:u04:Information,
+12:u07:research,
+9:u08:group,
+19:u09:the/Information,
+23:u0A:Information/Centric,
+10:u0C:of/the,
+17:u0D:Information/0,
+15:u12:information,
+7:u22:Inf,
+8:u23:Info,
+11:u00:product,
+15:u03:Information,
+12:u06:research,
+9:u07:group,
+23:u09:Information/Centric,
+23:u0B:Networking/research,
+19:u0C:the/Information,
+13:u0D:Centric/0,
+15:u11:information,
+15:u02:Information,
+12:u05:research,
+9:u06:group,
+9:u08:ICNRG,
+23:u0A:Networking/research,
+18:u0B:research/group,
+23:u0C:Information/Centric,
+15:u10:information,
+9:u14:group,
+15:u01:Information,
+12:u04:research,
+9:u05:group,
+9:u07:ICNRG,
+23:u09:Networking/research,
+18:u0A:research/group,
+11:u0B:group/(,
+14:u0D:research/0,
+9:u13:group,
+8:u23:rese,
+15:u00:Information,
+12:u03:research,
+9:u04:group,
+9:u06:ICNRG,
+18:u09:research/group,
+11:u0A:group/(,
+11:u0B:(/ICNRG,
+23:u0C:Networking/research,
+11:u0D:group/0,
+9:u12:group,
+9:u14:icnrg,
+5:u20:g,
+6:u21:gr,
+7:u22:gro,
+8:u23:grou,
+5:u30:p,
+6:u31:up,
+7:u32:oup,
+8:u33:roup,
+12:u02:research,
+9:u03:group,
+9:u05:ICNRG,
+11:u09:group/(,
+11:u0A:(/ICNRG,
+11:u0B:ICNRG/),
+18:u0C:research/group,
+9:u11:group,
+9:u13:icnrg,
+12:u01:research,
+9:u02:group,
+9:u04:ICNRG,
+11:u09:(/ICNRG,
+11:u0A:ICNRG/),
+7:u0B:)/.,
+11:u0C:group/(,
+11:u0D:ICNRG/0,
+9:u10:group,
+9:u12:icnrg,
+6:u21:IC,
+7:u22:ICN,
+8:u23:ICNR,
+5:u30:G,
+6:u31:RG,
+7:u32:NRG,
+8:u33:CNRG,
+12:u00:research,
+9:u01:group,
+9:u03:ICNRG,
+12:u08:received,
+11:u09:ICNRG/),
+7:u0A:)/.,
+11:u0C:(/ICNRG,
+9:u11:icnrg,
+9:u00:group,
+9:u02:ICNRG,
+12:u07:received,
+8:u08:wide,
+7:u09:)/.,
+16:u0B:The/document,
+11:u0C:ICNRG/),
+9:u10:icnrg,
+9:u01:ICNRG,
+12:u06:received,
+8:u07:wide,
+10:u08:review,
+16:u0A:The/document,
+21:u0B:document/received,
+7:u0C:)/.,
+12:u14:received,
+9:u00:ICNRG,
+12:u05:received,
+8:u06:wide,
+10:u07:review,
+9:u08:among,
+16:u09:The/document,
+21:u0A:document/received,
+17:u0B:received/wide,
+12:u13:received,
+8:u14:wide,
+12:u04:received,
+8:u05:wide,
+10:u06:review,
+9:u07:among,
+21:u09:document/received,
+17:u0A:received/wide,
+15:u0B:wide/review,
+16:u0C:The/document,
+14:u0D:received/0,
+12:u12:received,
+8:u13:wide,
+10:u14:review,
+7:u22:rec,
+8:u23:rece,
+7:u32:ved,
+8:u33:ived,
+12:u03:received,
+8:u04:wide,
+10:u05:review,
+9:u06:among,
+16:u08:participants,
+17:u09:received/wide,
+15:u0A:wide/review,
+16:u0B:review/among,
+21:u0C:document/received,
+10:u0D:wide/0,
+12:u11:received,
+8:u12:wide,
+10:u13:review,
+9:u14:among,
+5:u20:w,
+6:u21:wi,
+7:u22:wid,
+8:u23:wide,
+6:u31:de,
+7:u32:ide,
+8:u33:wide,
+12:u02:received,
+8:u03:wide,
+10:u04:review,
+9:u05:among,
+16:u07:participants,
+15:u09:wide/review,
+16:u0A:review/among,
+15:u0B:among/ICNRG,
+17:u0C:received/wide,
+12:u0D:review/0,
+12:u10:received,
+8:u11:wide,
+10:u12:review,
+9:u13:among,
+7:u22:rev,
+8:u23:revi,
+6:u31:ew,
+7:u32:iew,
+8:u33:view,
+12:u01:received,
+8:u02:wide,
+10:u03:review,
+9:u04:among,
+16:u06:participants,
+7:u08:has,
+16:u09:review/among,
+15:u0A:among/ICNRG,
+22:u0B:ICNRG/participants,
+15:u0C:wide/review,
+11:u0D:among/0,
+8:u10:wide,
+10:u11:review,
+9:u12:among,
+16:u14:participants,
+6:u21:am,
+7:u22:amo,
+8:u23:amon,
+7:u32:ong,
+8:u33:mong,
+12:u00:received,
+8:u01:wide,
+10:u02:review,
+9:u03:among,
+16:u05:participants,
+7:u07:has,
+7:u08:two,
+15:u09:among/ICNRG,
+22:u0A:ICNRG/participants,
+20:u0B:participants/and,
+16:u0C:review/among,
+10:u10:review,
+9:u11:among,
+16:u13:participants,
+8:u00:wide,
+10:u01:review,
+9:u02:among,
+16:u04:participants,
+7:u06:has,
+7:u07:two,
+8:u08:full,
+22:u09:ICNRG/participants,
+20:u0A:participants/and,
+11:u0B:and/has,
+15:u0C:among/ICNRG,
+18:u0D:participants/0,
+9:u10:among,
+16:u12:participants,
+7:u14:has,
+7:u22:par,
+8:u23:part,
+8:u33:ants,
+10:u00:review,
+9:u01:among,
+16:u03:participants,
+7:u05:has,
+7:u06:two,
+8:u07:full,
+19:u08:implementations,
+20:u09:participants/and,
+11:u0A:and/has,
+11:u0B:has/two,
+22:u0C:ICNRG/participants,
+16:u11:participants,
+7:u13:has,
+7:u14:two,
+9:u00:among,
+16:u02:participants,
+7:u04:has,
+7:u05:two,
+8:u06:full,
+19:u07:implementations,
+13:u08:currently,
+11:u09:and/has,
+11:u0A:has/two,
+12:u0B:two/full,
+20:u0C:participants/and,
+9:u0D:has/0,
+16:u10:participants,
+7:u12:has,
+7:u13:two,
+8:u14:full,
+6:u21:ha,
+7:u22:has,
+7:u23:has,
+6:u31:as,
+7:u32:has,
+7:u33:has,
+16:u01:participants,
+7:u03:has,
+7:u04:two,
+8:u05:full,
+19:u06:implementations,
+13:u07:currently,
+11:u09:has/two,
+12:u0A:two/full,
+24:u0B:full/implementations,
+11:u0C:and/has,
+9:u0D:two/0,
+7:u11:has,
+7:u12:two,
+8:u13:full,
+19:u14:implementations,
+6:u21:tw,
+7:u22:two,
+7:u23:two,
+6:u31:wo,
+7:u32:two,
+7:u33:two,
+16:u00:participants,
+7:u02:has,
+7:u03:two,
+8:u04:full,
+19:u05:implementations,
+13:u06:currently,
+10:u08:active,
+12:u09:two/full,
+24:u0A:full/implementations,
+29:u0B:implementations/currently,
+11:u0C:has/two,
+10:u0D:full/0,
+7:u10:has,
+7:u11:two,
+8:u12:full,
+19:u13:implementations,
+13:u14:currently,
+6:u21:fu,
+7:u22:ful,
+8:u23:full,
+6:u31:ll,
+7:u32:ull,
+8:u33:full,
+7:u01:has,
+7:u02:two,
+8:u03:full,
+19:u04:implementations,
+13:u05:currently,
+10:u07:active,
+7:u08:use,
+24:u09:full/implementations,
+29:u0A:implementations/currently,
+16:u0B:currently/in,
+12:u0C:two/full,
+21:u0D:implementations/0,
+7:u10:two,
+8:u11:full,
+19:u12:implementations,
+13:u13:currently,
+6:u21:im,
+7:u22:imp,
+8:u23:impl,
+6:u31:ns,
+7:u32:ons,
+8:u33:ions,
+7:u00:has,
+7:u01:two,
+8:u02:full,
+19:u03:implementations,
+13:u04:currently,
+10:u06:active,
+7:u07:use,
+29:u09:implementations/currently,
+16:u0A:currently/in,
+13:u0B:in/active,
+24:u0C:full/implementations,
+15:u0D:currently/0,
+8:u10:full,
+19:u11:implementations,
+13:u12:currently,
+10:u14:active,
+5:u20:c,
+6:u21:cu,
+7:u22:cur,
+8:u23:curr,
+7:u32:tly,
+8:u33:ntly,
+7:u00:two,
+8:u01:full,
+19:u02:implementations,
+13:u03:currently,
+10:u05:active,
+7:u06:use,
+9:u08:which,
+16:u09:currently/in,
+13:u0A:in/active,
+14:u0B:active/use,
+29:u0C:implementations/currently,
+19:u10:implementations,
+13:u11:currently,
+10:u13:active,
+7:u14:use,
+8:u00:full,
+19:u01:implementations,
+13:u02:currently,
+10:u04:active,
+7:u05:use,
+9:u07:which,
+8:u08:have,
+13:u09:in/active,
+14:u0A:active/use,
+9:u0B:use/,,
+16:u0C:currently/in,
+12:u0D:active/0,
+13:u10:currently,
+10:u12:active,
+7:u13:use,
+6:u21:ac,
+7:u22:act,
+8:u23:acti,
+6:u31:ve,
+7:u32:ive,
+8:u33:tive,
+19:u00:implementations,
+13:u01:currently,
+10:u03:active,
+7:u04:use,
+9:u06:which,
+8:u07:have,
+12:u08:informed,
+14:u09:active/use,
+9:u0A:use/,,
+11:u0B:,/which,
+13:u0C:in/active,
+9:u0D:use/0,
+10:u11:active,
+7:u12:use,
+9:u14:which,
+7:u23:use,
+6:u31:se,
+7:u32:use,
+7:u33:use,
+13:u00:currently,
+10:u02:active,
+7:u03:use,
+9:u05:which,
+8:u06:have,
+12:u07:informed,
+9:u09:use/,,
+11:u0A:,/which,
+14:u0B:which/have,
+14:u0C:active/use,
+10:u10:active,
+7:u11:use,
+9:u13:which,
+8:u14:have,
+10:u01:active,
+7:u02:use,
+9:u04:which,
+8:u05:have,
+12:u06:informed,
+13:u08:technical,
+11:u09:,/which,
+14:u0A:which/have,
+17:u0B:have/informed,
+9:u0C:use/,,
+11:u0D:which/0,
+7:u10:use,
+9:u12:which,
+8:u13:have,
+12:u14:informed,
+6:u21:wh,
+7:u22:whi,
+8:u23:whic,
+7:u32:ich,
+8:u33:hich,
+10:u00:active,
+7:u01:use,
+9:u03:which,
+8:u04:have,
+12:u05:informed,
+13:u07:technical,
+12:u08:maturity,
+14:u09:which/have,
+17:u0A:have/informed,
+16:u0B:informed/the,
+11:u0C:,/which,
+10:u0D:have/0,
+9:u11:which,
+8:u12:have,
+12:u13:informed,
+7:u22:hav,
+8:u23:have,
+7:u32:ave,
+8:u33:have,
+7:u00:use,
+9:u02:which,
+8:u03:have,
+12:u04:informed,
+13:u06:technical,
+12:u07:maturity,
+17:u09:have/informed,
+16:u0A:informed/the,
+17:u0B:the/technical,
+14:u0C:which/have,
+14:u0D:informed/0,
+9:u10:which,
+8:u11:have,
+12:u12:informed,
+13:u14:technical,
+7:u22:inf,
+8:u23:info,
+7:u32:med,
+8:u33:rmed,
+9:u01:which,
+8:u02:have,
+12:u03:informed,
+13:u05:technical,
+12:u06:maturity,
+16:u09:informed/the,
+17:u0A:the/technical,
+22:u0B:technical/maturity,
+17:u0C:have/informed,
+8:u10:have,
+12:u11:informed,
+13:u13:technical,
+12:u14:maturity,
+9:u00:which,
+8:u01:have,
+12:u02:informed,
+13:u04:technical,
+12:u05:maturity,
+17:u09:the/technical,
+22:u0A:technical/maturity,
+15:u0B:maturity/of,
+16:u0C:informed/the,
+15:u0D:technical/0,
+12:u10:informed,
+13:u12:technical,
+12:u13:maturity,
+6:u21:te,
+7:u22:tec,
+8:u23:tech,
+8:u00:have,
+12:u01:informed,
+13:u03:technical,
+12:u04:maturity,
+22:u09:technical/maturity,
+15:u0A:maturity/of,
+17:u0C:the/technical,
+14:u0D:maturity/0,
+13:u11:technical,
+12:u12:maturity,
+8:u23:matu,
+8:u33:rity,
+12:u00:informed,
+13:u02:technical,
+12:u03:maturity,
+15:u09:maturity/of,
+16:u0B:the/protocol,
+22:u0C:technical/maturity,
+13:u10:technical,
+12:u11:maturity,
+13:u01:technical,
+12:u02:maturity,
+10:u08:Status,
+16:u0A:the/protocol,
+26:u0B:protocol/specification,
+15:u0C:maturity/of,
+12:u10:maturity,
+13:u00:technical,
+12:u01:maturity,
+10:u07:Status,
+16:u09:the/protocol,
+26:u0A:protocol/specification,
+12:u00:maturity,
+10:u06:Status,
+26:u09:protocol/specification,
+12:u0B:./Status,
+16:u0C:the/protocol,
+10:u14:status,
+10:u05:Status,
+8:u08:Memo,
+12:u0A:./Status,
+13:u0B:Status/of,
+26:u0C:protocol/specification,
+10:u13:status,
+10:u04:Status,
+8:u07:Memo,
+12:u09:./Status,
+13:u0A:Status/of,
+11:u0B:of/This,
+12:u0D:Status/0,
+10:u12:status,
+6:u21:St,
+7:u22:Sta,
+8:u23:Stat,
+6:u31:us,
+7:u32:tus,
+8:u33:atus,
+10:u03:Status,
+8:u06:Memo,
+13:u09:Status/of,
+11:u0A:of/This,
+13:u0B:This/Memo,
+12:u0C:./Status,
+10:u11:status,
+8:u14:memo,
+10:u02:Status,
+8:u05:Memo,
+11:u09:of/This,
+13:u0A:This/Memo,
+13:u0B:Memo/This,
+13:u0C:Status/of,
+10:u10:status,
+8:u13:memo,
+10:u01:Status,
+8:u04:Memo,
+7:u08:not,
+13:u09:This/Memo,
+13:u0A:Memo/This,
+11:u0C:of/This,
+10:u0D:Memo/0,
+8:u12:memo,
+7:u22:Mem,
+8:u23:Memo,
+6:u31:mo,
+7:u32:emo,
+8:u33:Memo,
+10:u00:Status,
+8:u03:Memo,
+7:u07:not,
+6:u08:an,
+13:u09:Memo/This,
+13:u0C:This/Memo,
+8:u11:memo,
+8:u02:Memo,
+7:u06:not,
+6:u07:an,
+10:u0B:is/not,
+13:u0C:Memo/This,
+8:u10:memo,
+7:u14:not,
+8:u01:Memo,
+7:u05:not,
+6:u06:an,
+13:u08:Standards,
+10:u0A:is/not,
+10:u0B:not/an,
+7:u13:not,
+6:u14:an,
+8:u00:Memo,
+7:u04:not,
+6:u05:an,
+13:u07:Standards,
+9:u08:Track,
+10:u09:is/not,
+10:u0A:not/an,
+15:u0B:an/Internet,
+9:u0D:not/0,
+7:u12:not,
+6:u13:an,
+6:u21:no,
+7:u22:not,
+7:u23:not,
+6:u31:ot,
+7:u32:not,
+7:u33:not,
+7:u03:not,
+6:u04:an,
+13:u06:Standards,
+9:u07:Track,
+10:u09:not/an,
+15:u0A:an/Internet,
+22:u0B:Internet/Standards,
+10:u0C:is/not,
+8:u0D:an/0,
+7:u11:not,
+6:u12:an,
+13:u14:standards,
+6:u22:an,
+6:u23:an,
+6:u31:an,
+6:u32:an,
+6:u33:an,
+7:u02:not,
+6:u03:an,
+13:u05:Standards,
+9:u06:Track,
+5:u08:;,
+15:u09:an/Internet,
+22:u0A:Internet/Standards,
+19:u0B:Standards/Track,
+10:u0C:not/an,
+7:u10:not,
+6:u11:an,
+13:u13:standards,
+9:u14:track,
+7:u01:not,
+6:u02:an,
+13:u04:Standards,
+9:u05:Track,
+6:u08:it,
+22:u09:Internet/Standards,
+19:u0A:Standards/Track,
+23:u0B:Track/specification,
+15:u0C:an/Internet,
+15:u0D:Standards/0,
+6:u10:an,
+13:u12:standards,
+9:u13:track,
+8:u23:Stan,
+6:u31:ds,
+7:u32:rds,
+8:u33:ards,
+7:u00:not,
+6:u01:an,
+13:u03:Standards,
+9:u04:Track,
+6:u07:it,
+19:u09:Standards/Track,
+23:u0A:Track/specification,
+19:u0B:specification/;,
+22:u0C:Internet/Standards,
+11:u0D:Track/0,
+13:u11:standards,
+9:u12:track,
+6:u21:Tr,
+7:u22:Tra,
+8:u23:Trac,
+6:u31:ck,
+7:u32:ack,
+8:u33:rack,
+6:u00:an,
+13:u02:Standards,
+9:u03:Track,
+6:u06:it,
+13:u08:published,
+23:u09:Track/specification,
+19:u0A:specification/;,
+8:u0B:;/it,
+19:u0C:Standards/Track,
+13:u10:standards,
+9:u11:track,
+6:u14:it,
+13:u01:Standards,
+9:u02:Track,
+6:u05:it,
+13:u07:published,
+19:u09:specification/;,
+8:u0A:;/it,
+9:u0B:it/is,
+23:u0C:Track/specification,
+9:u10:track,
+6:u13:it,
+13:u00:Standards,
+9:u01:Track,
+6:u04:it,
+13:u06:published,
+15:u08:examination,
+8:u09:;/it,
+9:u0A:it/is,
+16:u0B:is/published,
+19:u0C:specification/;,
+8:u0D:it/0,
+6:u12:it,
+13:u14:published,
+6:u21:it,
+6:u22:it,
+6:u23:it,
+6:u31:it,
+6:u32:it,
+6:u33:it,
+9:u00:Track,
+6:u03:it,
+13:u05:published,
+15:u07:examination,
+9:u09:it/is,
+16:u0A:is/published,
+17:u0B:published/for,
+8:u0C:;/it,
+6:u11:it,
+13:u13:published,
+6:u02:it,
+13:u04:published,
+15:u06:examination,
+16:u08:experimental,
+16:u09:is/published,
+17:u0A:published/for,
+19:u0B:for/examination,
+9:u0C:it/is,
+15:u0D:published/0,
+6:u10:it,
+13:u12:published,
+15:u14:examination,
+6:u21:pu,
+7:u22:pub,
+8:u23:publ,
+7:u32:hed,
+8:u33:shed,
+6:u01:it,
+13:u03:published,
+15:u05:examination,
+16:u07:experimental,
+18:u08:implementation,
+17:u09:published/for,
+19:u0A:for/examination,
+17:u0B:examination/,,
+16:u0C:is/published,
+13:u11:published,
+15:u13:examination,
+6:u00:it,
+13:u02:published,
+15:u04:examination,
+16:u06:experimental,
+18:u07:implementation,
+19:u09:for/examination,
+17:u0A:examination/,,
+18:u0B:,/experimental,
+17:u0C:published/for,
+17:u0D:examination/0,
+13:u10:published,
+15:u12:examination,
+6:u21:ex,
+7:u22:exa,
+8:u23:exam,
+13:u01:published,
+15:u03:examination,
+16:u05:experimental,
+18:u06:implementation,
+17:u09:examination/,,
+18:u0A:,/experimental,
+31:u0B:experimental/implementation,
+19:u0C:for/examination,
+15:u11:examination,
+18:u14:implementation,
+13:u00:published,
+15:u02:examination,
+16:u04:experimental,
+18:u05:implementation,
+14:u08:evaluation,
+18:u09:,/experimental,
+31:u0A:experimental/implementation,
+20:u0B:implementation/,,
+17:u0C:examination/,,
+18:u0D:experimental/0,
+15:u10:examination,
+18:u13:implementation,
+7:u22:exp,
+8:u23:expe,
+15:u01:examination,
+16:u03:experimental,
+18:u04:implementation,
+14:u07:evaluation,
+31:u09:experimental/implementation,
+20:u0A:implementation/,,
+9:u0B:,/and,
+18:u0C:,/experimental,
+20:u0D:implementation/0,
+18:u12:implementation,
+15:u00:examination,
+16:u02:experimental,
+18:u03:implementation,
+14:u06:evaluation,
+20:u09:implementation/,,
+9:u0A:,/and,
+18:u0B:and/evaluation,
+31:u0C:experimental/implementation,
+18:u11:implementation,
+14:u14:evaluation,
+16:u01:experimental,
+18:u02:implementation,
+14:u05:evaluation,
+9:u09:,/and,
+18:u0A:and/evaluation,
+16:u0B:evaluation/.,
+20:u0C:implementation/,,
+18:u10:implementation,
+14:u13:evaluation,
+16:u00:experimental,
+18:u01:implementation,
+14:u04:evaluation,
+11:u08:defines,
+18:u09:and/evaluation,
+16:u0A:evaluation/.,
+9:u0C:,/and,
+16:u0D:evaluation/0,
+14:u12:evaluation,
+6:u21:ev,
+7:u22:eva,
+8:u23:eval,
+18:u00:implementation,
+14:u03:evaluation,
+11:u07:defines,
+16:u09:evaluation/.,
+18:u0C:and/evaluation,
+14:u11:evaluation,
+14:u02:evaluation,
+11:u06:defines,
+20:u0B:document/defines,
+16:u0C:evaluation/.,
+14:u10:evaluation,
+11:u14:defines,
+14:u01:evaluation,
+11:u05:defines,
+12:u08:Protocol,
+20:u0A:document/defines,
+14:u0B:defines/an,
+11:u13:defines,
+14:u00:evaluation,
+11:u04:defines,
+12:u07:Protocol,
+20:u09:document/defines,
+14:u0A:defines/an,
+19:u0B:an/Experimental,
+13:u0D:defines/0,
+11:u12:defines,
+6:u21:de,
+7:u22:def,
+8:u23:defi,
+7:u32:nes,
+8:u33:ines,
+11:u03:defines,
+12:u06:Protocol,
+14:u09:defines/an,
+19:u0A:an/Experimental,
+25:u0B:Experimental/Protocol,
+20:u0C:document/defines,
+11:u11:defines,
+11:u02:defines,
+12:u05:Protocol,
+19:u09:an/Experimental,
+25:u0A:Experimental/Protocol,
+16:u0B:Protocol/for,
+14:u0C:defines/an,
+11:u10:defines,
+11:u01:defines,
+12:u04:Protocol,
+13:u08:community,
+25:u09:Experimental/Protocol,
+16:u0A:Protocol/for,
+11:u0B:for/the,
+19:u0C:an/Experimental,
+14:u0D:Protocol/0,
+6:u21:Pr,
+7:u22:Pro,
+8:u23:Prot,
+11:u00:defines,
+12:u03:Protocol,
+13:u07:community,
+16:u09:Protocol/for,
+11:u0A:for/the,
+16:u0B:the/Internet,
+25:u0C:Experimental/Protocol,
+12:u02:Protocol,
+13:u06:community,
+11:u09:for/the,
+16:u0A:the/Internet,
+22:u0B:Internet/community,
+16:u0C:Protocol/for,
+13:u14:community,
+12:u01:Protocol,
+13:u05:community,
+16:u09:the/Internet,
+22:u0A:Internet/community,
+15:u0B:community/.,
+11:u0C:for/the,
+13:u13:community,
+12:u00:Protocol,
+13:u04:community,
+22:u09:Internet/community,
+15:u0A:community/.,
+16:u0C:the/Internet,
+15:u0D:community/0,
+13:u12:community,
+6:u21:co,
+7:u22:com,
+8:u23:comm,
+8:u33:nity,
+13:u03:community,
+15:u09:community/.,
+22:u0C:Internet/community,
+13:u11:community,
+13:u02:community,
+15:u0C:community/.,
+13:u10:community,
+13:u01:community,
+13:u00:community,
+13:u08:publishes,
+13:u07:publishes,
+12:u0B:The/IRTF,
+13:u06:publishes,
+11:u08:results,
+12:u0A:The/IRTF,
+18:u0B:IRTF/publishes,
+13:u14:publishes,
+13:u05:publishes,
+11:u07:results,
+12:u09:The/IRTF,
+18:u0A:IRTF/publishes,
+17:u0B:publishes/the,
+13:u13:publishes,
+13:u04:publishes,
+11:u06:results,
+18:u09:IRTF/publishes,
+17:u0A:publishes/the,
+15:u0B:the/results,
+12:u0C:The/IRTF,
+15:u0D:publishes/0,
+13:u12:publishes,
+11:u14:results,
+7:u32:hes,
+8:u33:shes,
+13:u03:publishes,
+11:u05:results,
+17:u09:publishes/the,
+15:u0A:the/results,
+14:u0B:results/of,
+18:u0C:IRTF/publishes,
+13:u11:publishes,
+11:u13:results,
+13:u02:publishes,
+11:u04:results,
+11:u08:related,
+15:u09:the/results,
+14:u0A:results/of,
+15:u0B:of/Internet,
+17:u0C:publishes/the,
+13:u0D:results/0,
+13:u10:publishes,
+11:u12:results,
+8:u23:resu,
+7:u32:lts,
+8:u33:ults,
+13:u01:publishes,
+11:u03:results,
+11:u07:related,
+14:u09:results/of,
+15:u0A:of/Internet,
+14:u0B:Internet/-,
+15:u0C:the/results,
+11:u11:results,
+13:u00:publishes,
+11:u02:results,
+11:u06:related,
+15:u09:of/Internet,
+14:u0A:Internet/-,
+13:u0B:-/related,
+14:u0C:results/of,
+11:u10:results,
+11:u14:related,
+11:u01:results,
+11:u05:related,
+15:u08:development,
+14:u09:Internet/-,
+13:u0A:-/related,
+20:u0B:related/research,
+15:u0C:of/Internet,
+11:u13:related,
+11:u00:results,
+11:u04:related,
+15:u07:development,
+14:u08:activities,
+13:u09:-/related,
+20:u0A:related/research,
+16:u0B:research/and,
+14:u0C:Internet/-,
+13:u0D:related/1,
+11:u12:related,
+7:u22:rel,
+8:u23:rela,
+7:u32:ted,
+8:u33:ated,
+11:u03:related,
+15:u06:development,
+14:u07:activities,
+20:u09:related/research,
+16:u0A:research/and,
+19:u0B:and/development,
+13:u0C:-/related,
+11:u11:related,
+15:u14:development,
+11:u02:related,
+15:u05:development,
+14:u06:activities,
+9:u08:These,
+16:u09:research/and,
+19:u0A:and/development,
+26:u0B:development/activities,
+20:u0C:related/research,
+11:u10:related,
+15:u13:development,
+14:u14:activities,
+11:u01:related,
+15:u04:development,
+14:u05:activities,
+9:u07:These,
+19:u09:and/development,
+26:u0A:development/activities,
+16:u0B:activities/.,
+16:u0C:research/and,
+17:u0D:development/0,
+15:u12:development,
+14:u13:activities,
+7:u22:dev,
+8:u23:deve,
+11:u00:related,
+15:u03:development,
+14:u04:activities,
+9:u06:These,
+9:u08:might,
+26:u09:development/activities,
+16:u0A:activities/.,
+11:u0B:./These,
+19:u0C:and/development,
+16:u0D:activities/0,
+15:u11:development,
+14:u12:activities,
+9:u14:these,
+8:u33:ties,
+15:u02:development,
+14:u03:activities,
+9:u05:These,
+9:u07:might,
+16:u09:activities/.,
+11:u0A:./These,
+17:u0B:These/results,
+26:u0C:development/activities,
+15:u10:development,
+14:u11:activities,
+9:u13:these,
+15:u01:development,
+14:u02:activities,
+9:u04:These,
+9:u06:might,
+6:u08:be,
+11:u09:./These,
+17:u0A:These/results,
+17:u0B:results/might,
+16:u0C:activities/.,
+11:u0D:These/0,
+14:u10:activities,
+9:u12:these,
+9:u14:might,
+8:u23:Thes,
+7:u32:ese,
+8:u33:hese,
+15:u00:development,
+14:u01:activities,
+9:u03:These,
+9:u05:might,
+6:u07:be,
+12:u08:suitable,
+17:u09:These/results,
+17:u0A:results/might,
+13:u0B:might/not,
+11:u0C:./These,
+9:u11:these,
+9:u13:might,
+14:u00:activities,
+9:u02:These,
+9:u04:might,
+6:u06:be,
+12:u07:suitable,
+17:u09:results/might,
+13:u0A:might/not,
+10:u0B:not/be,
+17:u0C:These/results,
+11:u0D:might/0,
+9:u10:these,
+9:u12:might,
+6:u14:be,
+6:u21:mi,
+7:u22:mig,
+8:u23:migh,
+6:u31:ht,
+7:u32:ght,
+8:u33:ight,
+9:u01:These,
+9:u03:might,
+6:u05:be,
+12:u06:suitable,
+14:u08:deployment,
+13:u09:might/not,
+10:u0A:not/be,
+15:u0B:be/suitable,
+17:u0C:results/might,
+9:u11:might,
+6:u13:be,
+12:u14:suitable,
+9:u00:These,
+9:u02:might,
+6:u04:be,
+12:u05:suitable,
+14:u07:deployment,
+10:u09:not/be,
+15:u0A:be/suitable,
+16:u0B:suitable/for,
+13:u0C:might/not,
+8:u0D:be/0,
+9:u10:might,
+6:u12:be,
+12:u13:suitable,
+6:u21:be,
+6:u22:be,
+6:u23:be,
+6:u31:be,
+6:u32:be,
+6:u33:be,
+9:u01:might,
+6:u03:be,
+12:u04:suitable,
+14:u06:deployment,
+15:u09:be/suitable,
+16:u0A:suitable/for,
+18:u0B:for/deployment,
+10:u0C:not/be,
+14:u0D:suitable/0,
+6:u11:be,
+12:u12:suitable,
+14:u14:deployment,
+6:u21:su,
+7:u22:sui,
+8:u23:suit,
+6:u31:le,
+7:u32:ble,
+8:u33:able,
+9:u00:might,
+6:u02:be,
+12:u03:suitable,
+14:u05:deployment,
+7:u08:RFC,
+16:u09:suitable/for,
+18:u0A:for/deployment,
+16:u0B:deployment/.,
+15:u0C:be/suitable,
+6:u10:be,
+12:u11:suitable,
+14:u13:deployment,
+6:u01:be,
+12:u02:suitable,
+14:u04:deployment,
+7:u07:RFC,
+14:u08:represents,
+18:u09:for/deployment,
+16:u0A:deployment/.,
+16:u0C:suitable/for,
+16:u0D:deployment/0,
+12:u10:suitable,
+14:u12:deployment,
+7:u22:dep,
+8:u23:depl,
+6:u00:be,
+12:u01:suitable,
+14:u03:deployment,
+7:u06:RFC,
+14:u07:represents,
+16:u09:deployment/.,
+12:u0B:This/RFC,
+18:u0C:for/deployment,
+14:u11:deployment,
+7:u14:rfc,
+12:u00:suitable,
+14:u02:deployment,
+7:u05:RFC,
+14:u06:represents,
+13:u08:consensus,
+12:u0A:This/RFC,
+18:u0B:RFC/represents,
+16:u0C:deployment/.,
+14:u10:deployment,
+7:u13:rfc,
+14:u14:represents,
+14:u01:deployment,
+7:u04:RFC,
+14:u05:represents,
+13:u07:consensus,
+12:u09:This/RFC,
+18:u0A:RFC/represents,
+18:u0B:represents/the,
+9:u0D:RFC/0,
+7:u12:rfc,
+14:u13:represents,
+6:u21:RF,
+7:u22:RFC,
+7:u23:RFC,
+6:u31:FC,
+7:u32:RFC,
+7:u33:RFC,
+14:u00:deployment,
+7:u03:RFC,
+14:u04:represents,
+13:u06:consensus,
+18:u09:RFC/represents,
+18:u0A:represents/the,
+17:u0B:the/consensus,
+12:u0C:This/RFC,
+16:u0D:represents/0,
+7:u11:rfc,
+14:u12:represents,
+13:u14:consensus,
+7:u22:rep,
+8:u23:repr,
+7:u02:RFC,
+14:u03:represents,
+13:u05:consensus,
+18:u09:represents/the,
+17:u0A:the/consensus,
+16:u0B:consensus/of,
+18:u0C:RFC/represents,
+7:u10:rfc,
+14:u11:represents,
+13:u13:consensus,
+7:u01:RFC,
+14:u02:represents,
+13:u04:consensus,
+17:u09:the/consensus,
+16:u0A:consensus/of,
+18:u0C:represents/the,
+15:u0D:consensus/0,
+14:u10:represents,
+13:u12:consensus,
+7:u22:con,
+8:u23:cons,
+7:u32:sus,
+8:u33:nsus,
+7:u00:RFC,
+14:u01:represents,
+13:u03:consensus,
+16:u09:consensus/of,
+17:u0C:the/consensus,
+13:u11:consensus,
+14:u00:represents,
+13:u02:consensus,
+17:u0B:Information/-,
+16:u0C:consensus/of,
+13:u10:consensus,
+13:u01:consensus,
+17:u0A:Information/-,
+13:u00:consensus,
+9:u08:Group,
+17:u09:Information/-,
+9:u07:Group,
+23:u0B:Networking/Research,
+17:u0C:Information/-,
+9:u06:Group,
+23:u0A:Networking/Research,
+18:u0B:Research/Group,
+9:u05:Group,
+23:u09:Networking/Research,
+18:u0A:Research/Group,
+12:u0B:Group/of,
+9:u04:Group,
+18:u09:Research/Group,
+12:u0A:Group/of,
+23:u0C:Networking/Research,
+11:u0D:Group/0,
+5:u20:G,
+6:u21:Gr,
+7:u22:Gro,
+8:u23:Grou,
+9:u03:Group,
+12:u09:Group/of,
+18:u0C:Research/Group,
+9:u02:Group,
+12:u0C:Group/of,
+9:u01:Group,
+9:u00:Group,
+13:u08:Documents,
+13:u07:Documents,
+12:u08:approved,
+13:u06:Documents,
+12:u07:approved,
+15:u0B:./Documents,
+13:u14:documents,
+13:u05:Documents,
+12:u06:approved,
+15:u08:publication,
+15:u0A:./Documents,
+22:u0B:Documents/approved,
+13:u13:documents,
+12:u14:approved,
+13:u04:Documents,
+12:u05:approved,
+15:u07:publication,
+15:u09:./Documents,
+22:u0A:Documents/approved,
+16:u0B:approved/for,
+15:u0D:Documents/0,
+13:u12:documents,
+12:u13:approved,
+5:u20:D,
+6:u21:Do,
+7:u22:Doc,
+8:u23:Docu,
+13:u03:Documents,
+12:u04:approved,
+15:u06:publication,
+22:u09:Documents/approved,
+16:u0A:approved/for,
+19:u0B:for/publication,
+15:u0C:./Documents,
+14:u0D:approved/0,
+13:u11:documents,
+12:u12:approved,
+15:u14:publication,
+6:u21:ap,
+7:u22:app,
+8:u23:appr,
+8:u33:oved,
+13:u02:Documents,
+12:u03:approved,
+15:u05:publication,
+8:u08:IRSG,
+16:u09:approved/for,
+19:u0A:for/publication,
+18:u0B:publication/by,
+22:u0C:Documents/approved,
+13:u10:documents,
+12:u11:approved,
+15:u13:publication,
+13:u01:Documents,
+12:u02:approved,
+15:u04:publication,
+8:u07:IRSG,
+7:u08:are,
+19:u09:for/publication,
+18:u0A:publication/by,
+10:u0B:by/the,
+16:u0C:approved/for,
+17:u0D:publication/0,
+12:u10:approved,
+15:u12:publication,
+13:u00:Documents,
+12:u01:approved,
+15:u03:publication,
+8:u06:IRSG,
+7:u07:are,
+18:u09:publication/by,
+10:u0A:by/the,
+12:u0B:the/IRSG,
+19:u0C:for/publication,
+15:u11:publication,
+8:u14:irsg,
+12:u00:approved,
+15:u02:publication,
+8:u05:IRSG,
+7:u06:are,
+14:u08:candidates,
+10:u09:by/the,
+12:u0A:the/IRSG,
+12:u0B:IRSG/are,
+18:u0C:publication/by,
+15:u10:publication,
+8:u13:irsg,
+7:u14:are,
+15:u01:publication,
+8:u04:IRSG,
+7:u05:are,
+14:u07:candidates,
+12:u09:the/IRSG,
+12:u0A:IRSG/are,
+11:u0B:are/not,
+10:u0C:by/the,
+10:u0D:IRSG/0,
+8:u12:irsg,
+7:u13:are,
+7:u22:IRS,
+8:u23:IRSG,
+6:u31:SG,
+7:u32:RSG,
+8:u33:IRSG,
+15:u00:publication,
+8:u03:IRSG,
+7:u04:are,
+14:u06:candidates,
+7:u08:any,
+12:u09:IRSG/are,
+11:u0A:are/not,
+18:u0B:not/candidates,
+12:u0C:the/IRSG,
+9:u0D:are/0,
+8:u11:irsg,
+7:u12:are,
+14:u14:candidates,
+6:u21:ar,
+7:u22:are,
+7:u23:are,
+6:u31:re,
+7:u32:are,
+7:u33:are,
+8:u02:IRSG,
+7:u03:are,
+14:u05:candidates,
+7:u07:any,
+9:u08:level,
+11:u09:are/not,
+18:u0A:not/candidates,
+18:u0B:candidates/for,
+12:u0C:IRSG/are,
+8:u10:irsg,
+7:u11:are,
+14:u13:candidates,
+8:u01:IRSG,
+7:u02:are,
+14:u04:candidates,
+7:u06:any,
+9:u07:level,
+18:u09:not/candidates,
+18:u0A:candidates/for,
+11:u0B:for/any,
+11:u0C:are/not,
+16:u0D:candidates/0,
+7:u10:are,
+14:u12:candidates,
+7:u14:any,
+6:u21:ca,
+7:u22:can,
+8:u23:cand,
+7:u32:tes,
+8:u33:ates,
+8:u00:IRSG,
+7:u01:are,
+14:u03:candidates,
+7:u05:any,
+9:u06:level,
+18:u09:candidates/for,
+11:u0A:for/any,
+13:u0B:any/level,
+18:u0C:not/candidates,
+14:u11:candidates,
+7:u13:any,
+9:u14:level,
+7:u00:are,
+14:u02:candidates,
+7:u04:any,
+9:u05:level,
+12:u08:Standard,
+11:u09:for/any,
+13:u0A:any/level,
+12:u0B:level/of,
+18:u0C:candidates/for,
+9:u0D:any/0,
+14:u10:candidates,
+7:u12:any,
+9:u13:level,
+7:u22:any,
+7:u23:any,
+6:u31:ny,
+7:u32:any,
+7:u33:any,
+14:u01:candidates,
+7:u03:any,
+9:u04:level,
+12:u07:Standard,
+13:u09:any/level,
+12:u0A:level/of,
+11:u0C:for/any,
+11:u0D:level/0,
+7:u11:any,
+9:u12:level,
+5:u20:l,
+6:u21:le,
+7:u22:lev,
+8:u23:leve,
+6:u31:el,
+7:u32:vel,
+8:u33:evel,
+14:u00:candidates,
+7:u02:any,
+9:u03:level,
+12:u06:Standard,
+7:u08:see,
+12:u09:level/of,
+21:u0B:Internet/Standard,
+13:u0C:any/level,
+7:u10:any,
+9:u11:level,
+12:u14:standard,
+7:u01:any,
+9:u02:level,
+12:u05:Standard,
+7:u07:see,
+11:u08:Section,
+21:u0A:Internet/Standard,
+14:u0B:Standard/;,
+12:u0C:level/of,
+9:u10:level,
+12:u13:standard,
+7:u00:any,
+9:u01:level,
+12:u04:Standard,
+7:u06:see,
+11:u07:Section,
+5:u08:2,
+21:u09:Internet/Standard,
+14:u0A:Standard/;,
+9:u0B:;/see,
+14:u0D:Standard/0,
+12:u12:standard,
+7:u14:see,
+8:u33:dard,
+9:u00:level,
+12:u03:Standard,
+7:u05:see,
+11:u06:Section,
+5:u07:2,
+14:u09:Standard/;,
+9:u0A:;/see,
+15:u0B:see/Section,
+21:u0C:Internet/Standard,
+12:u11:standard,
+7:u13:see,
+11:u14:section,
+12:u02:Standard,
+7:u04:see,
+11:u05:Section,
+5:u06:2,
+9:u09:;/see,
+15:u0A:see/Section,
+13:u0B:Section/2,
+14:u0C:Standard/;,
+9:u0D:see/0,
+12:u10:standard,
+7:u12:see,
+11:u13:section,
+5:u14:2,
+7:u22:see,
+7:u23:see,
+6:u31:ee,
+7:u32:see,
+7:u33:see,
+12:u01:Standard,
+7:u03:see,
+11:u04:Section,
+5:u05:2,
+8:u08:7841,
+15:u09:see/Section,
+13:u0A:Section/2,
+8:u0B:2/of,
+9:u0C:;/see,
+13:u0D:Section/0,
+7:u11:see,
+11:u12:section,
+5:u13:2,
+7:u22:Sec,
+8:u23:Sect,
+12:u00:Standard,
+7:u02:see,
+11:u03:Section,
+5:u04:2,
+8:u07:7841,
+13:u09:Section/2,
+8:u0A:2/of,
+10:u0B:of/RFC,
+15:u0C:see/Section,
+7:u0D:2/0,
+7:u10:see,
+11:u11:section,
+5:u12:2,
+5:u21:2,
+5:u22:2,
+5:u23:2,
+5:u30:2,
+5:u31:2,
+5:u32:2,
+5:u33:2,
+7:u01:see,
+11:u02:Section,
+5:u03:2,
+8:u06:7841,
+8:u09:2/of,
+10:u0A:of/RFC,
+12:u0B:RFC/7841,
+13:u0C:Section/2,
+11:u10:section,
+5:u11:2,
+8:u14:7841,
+7:u00:see,
+11:u01:Section,
+5:u02:2,
+8:u05:7841,
+9:u08:about,
+10:u09:of/RFC,
+12:u0A:RFC/7841,
+10:u0B:7841/.,
+8:u0C:2/of,
+5:u10:2,
+8:u13:7841,
+11:u00:Section,
+5:u01:2,
+8:u04:7841,
+9:u07:about,
+12:u09:RFC/7841,
+10:u0A:7841/.,
+17:u0B:./Information,
+10:u0C:of/RFC,
+10:u0D:7841/0,
+8:u12:7841,
+5:u20:7,
+6:u21:78,
+7:u22:784,
+8:u23:7841,
+6:u31:41,
+7:u32:841,
+8:u33:7841,
+5:u00:2,
+8:u03:7841,
+9:u06:about,
+11:u08:current,
+10:u09:7841/.,
+17:u0A:./Information,
+21:u0B:Information/about,
+12:u0C:RFC/7841,
+8:u11:7841,
+9:u14:about,
+8:u02:7841,
+9:u05:about,
+11:u07:current,
+10:u08:status,
+17:u09:./Information,
+21:u0A:Information/about,
+13:u0B:about/the,
+10:u0C:7841/.,
+8:u10:7841,
+9:u13:about,
+8:u01:7841,
+9:u04:about,
+11:u06:current,
+10:u07:status,
+21:u09:Information/about,
+13:u0A:about/the,
+15:u0B:the/current,
+17:u0C:./Information,
+11:u0D:about/0,
+9:u12:about,
+11:u14:current,
+6:u21:ab,
+7:u22:abo,
+8:u23:abou,
+6:u31:ut,
+7:u32:out,
+8:u33:bout,
+8:u00:7841,
+9:u03:about,
+11:u05:current,
+10:u06:status,
+8:u08:this,
+13:u09:about/the,
+15:u0A:the/current,
+18:u0B:current/status,
+21:u0C:Information/about,
+9:u11:about,
+11:u13:current,
+9:u02:about,
+11:u04:current,
+10:u05:status,
+8:u07:this,
+15:u09:the/current,
+18:u0A:current/status,
+13:u0B:status/of,
+13:u0C:about/the,
+13:u0D:current/0,
+9:u10:about,
+11:u12:current,
+8:u33:rent,
+9:u01:about,
+11:u03:current,
+10:u04:status,
+8:u06:this,
+18:u09:current/status,
+13:u0A:status/of,
+11:u0B:of/this,
+15:u0C:the/current,
+12:u0D:status/0,
+11:u11:current,
+6:u21:st,
+7:u22:sta,
+8:u23:stat,
+9:u00:about,
+11:u02:current,
+10:u03:status,
+8:u05:this,
+13:u09:status/of,
+11:u0A:of/this,
+17:u0B:this/document,
+18:u0C:current/status,
+11:u10:current,
+11:u01:current,
+10:u02:status,
+8:u04:this,
+10:u08:errata,
+11:u09:of/this,
+17:u0A:this/document,
+14:u0B:document/,,
+13:u0C:status/of,
+10:u0D:this/0,
+7:u22:thi,
+8:u23:this,
+8:u33:this,
+11:u00:current,
+10:u01:status,
+8:u03:this,
+10:u07:errata,
+17:u09:this/document,
+14:u0A:document/,,
+9:u0B:,/any,
+11:u0C:of/this,
+10:u00:status,
+8:u02:this,
+10:u06:errata,
+14:u09:document/,,
+9:u0A:,/any,
+14:u0B:any/errata,
+17:u0C:this/document,
+10:u14:errata,
+8:u01:this,
+10:u05:errata,
+7:u08:how,
+9:u09:,/any,
+14:u0A:any/errata,
+12:u0B:errata/,,
+14:u0C:document/,,
+10:u13:errata,
+8:u00:this,
+10:u04:errata,
+7:u07:how,
+14:u09:any/errata,
+12:u0A:errata/,,
+9:u0C:,/any,
+12:u0D:errata/0,
+10:u12:errata,
+6:u21:er,
+7:u22:err,
+8:u23:erra,
+6:u31:ta,
+7:u32:ata,
+8:u33:rata,
+10:u03:errata,
+7:u06:how,
+11:u08:provide,
+12:u09:errata/,,
+11:u0B:and/how,
+14:u0C:any/errata,
+10:u11:errata,
+7:u14:how,
+10:u02:errata,
+7:u05:how,
+11:u07:provide,
+12:u08:feedback,
+11:u0A:and/how,
+10:u0B:how/to,
+12:u0C:errata/,,
+10:u10:errata,
+7:u13:how,
+10:u01:errata,
+7:u04:how,
+11:u06:provide,
+12:u07:feedback,
+11:u09:and/how,
+10:u0A:how/to,
+14:u0B:to/provide,
+9:u0D:how/0,
+7:u12:how,
+11:u14:provide,
+6:u21:ho,
+7:u22:how,
+7:u23:how,
+7:u32:how,
+7:u33:how,
+10:u00:errata,
+7:u03:how,
+11:u05:provide,
+12:u06:feedback,
+10:u09:how/to,
+14:u0A:to/provide,
+20:u0B:provide/feedback,
+11:u0C:and/how,
+7:u11:how,
+11:u13:provide,
+12:u14:feedback,
+7:u02:how,
+11:u04:provide,
+12:u05:feedback,
+7:u08:may,
+14:u09:to/provide,
+20:u0A:provide/feedback,
+15:u0B:feedback/on,
+10:u0C:how/to,
+13:u0D:provide/0,
+7:u10:how,
+11:u12:provide,
+12:u13:feedback,
+8:u23:prov,
+8:u33:vide,
+7:u01:how,
+11:u03:provide,
+12:u04:feedback,
+7:u07:may,
+20:u09:provide/feedback,
+15:u0A:feedback/on,
+9:u0B:on/it,
+14:u0C:to/provide,
+14:u0D:feedback/0,
+11:u11:provide,
+12:u12:feedback,
+6:u21:fe,
+7:u22:fee,
+8:u23:feed,
+8:u33:back,
+7:u00:how,
+11:u02:provide,
+12:u03:feedback,
+7:u06:may,
+12:u08:obtained,
+15:u09:feedback/on,
+9:u0A:on/it,
+10:u0B:it/may,
+20:u0C:provide/feedback,
+11:u10:provide,
+12:u11:feedback,
+7:u14:may,
+11:u01:provide,
+12:u02:feedback,
+7:u05:may,
+12:u07:obtained,
+6:u08:at,
+9:u09:on/it,
+10:u0A:it/may,
+10:u0B:may/be,
+15:u0C:feedback/on,
+12:u10:feedback,
+7:u13:may,
+11:u00:provide,
+12:u01:feedback,
+7:u04:may,
+12:u06:obtained,
+6:u07:at,
+9:u08:https,
+10:u09:it/may,
+10:u0A:may/be,
+15:u0B:be/obtained,
+9:u0C:on/it,
+9:u0D:may/0,
+7:u12:may,
+12:u14:obtained,
+7:u22:may,
+7:u23:may,
+6:u31:ay,
+7:u32:may,
+7:u33:may,
+12:u00:feedback,
+7:u03:may,
+12:u05:obtained,
+6:u06:at,
+9:u07:https,
+10:u09:may/be,
+15:u0A:be/obtained,
+15:u0B:obtained/at,
+10:u0C:it/may,
+7:u11:may,
+12:u13:obtained,
+6:u14:at,
+7:u02:may,
+12:u04:obtained,
+6:u05:at,
+9:u06:https,
+5:u08:/,
+15:u09:be/obtained,
+15:u0A:obtained/at,
+12:u0B:at/https,
+10:u0C:may/be,
+14:u0D:obtained/0,
+7:u10:may,
+12:u12:obtained,
+6:u13:at,
+9:u14:https,
+6:u21:ob,
+7:u22:obt,
+8:u23:obta,
+7:u32:ned,
+8:u33:ined,
+7:u01:may,
+12:u03:obtained,
+6:u04:at,
+9:u05:https,
+5:u07:/,
+15:u09:obtained/at,
+12:u0A:at/https,
+11:u0B:https/:,
+15:u0C:be/obtained,
+8:u0D:at/0,
+12:u11:obtained,
+6:u12:at,
+9:u13:https,
+6:u21:at,
+6:u22:at,
+6:u23:at,
+6:u32:at,
+6:u33:at,
+5:uDQ:1,
+7:u00:may,
+12:u02:obtained,
+6:u03:at,
+9:u04:https,
+5:u06:/,
+7:u08:www,
+12:u09:at/https,
+11:u0A:https/:,
+7:u0B:://,
+15:u0C:obtained/at,
+11:u0D:https/0,
+12:u10:obtained,
+6:u11:at,
+9:u12:https,
+5:u14:/,
+6:u21:ht,
+7:u22:htt,
+8:u23:http,
+6:u31:ps,
+7:u32:tps,
+8:u33:ttps,
+5:uD8:1,
+12:u01:obtained,
+6:u02:at,
+9:u03:https,
+5:u05:/,
+7:u07:www,
+11:u09:https/:,
+7:u0A:://,
+7:u0B:///,
+12:u0C:at/https,
+6:u10:at,
+9:u11:https,
+5:u13:/,
+12:u00:obtained,
+6:u01:at,
+9:u02:https,
+5:u04:/,
+7:u06:www,
+7:u08:rfc,
+7:u09:://,
+7:u0A:///,
+9:u0B://www,
+11:u0C:https/:,
+7:u0D://0,
+9:u10:https,
+5:u12:/,
+7:u14:www,
+5:u20:/,
+5:u21:/,
+5:u22:/,
+5:u23:/,
+5:u30:/,
+5:u31:/,
+5:u32:/,
+5:u33:/,
+6:u00:at,
+9:u01:https,
+5:u03:/,
+7:u05:www,
+7:u07:rfc,
+7:u09:///,
+9:u0A://www,
+9:u0B:www/.,
+7:u0C:://,
+5:u11:/,
+7:u13:www,
+9:u00:https,
+5:u02:/,
+7:u04:www,
+7:u06:rfc,
+10:u08:editor,
+9:u09://www,
+9:u0A:www/.,
+9:u0B:./rfc,
+7:u0C:///,
+9:u0D:www/0,
+5:u10:/,
+7:u12:www,
+6:u21:ww,
+7:u22:www,
+7:u23:www,
+6:u31:ww,
+7:u32:www,
+7:u33:www,
+5:u01:/,
+7:u03:www,
+7:u05:rfc,
+10:u07:editor,
+9:u09:www/.,
+9:u0A:./rfc,
+9:u0B:rfc/-,
+9:u0C://www,
+7:u11:www,
+5:u00:/,
+7:u02:www,
+7:u04:rfc,
+10:u06:editor,
+7:u08:org,
+9:u09:./rfc,
+9:u0A:rfc/-,
+12:u0B:-/editor,
+9:u0C:www/.,
+9:u0D:rfc/0,
+7:u10:www,
+10:u14:editor,
+6:u21:rf,
+7:u22:rfc,
+7:u23:rfc,
+6:u31:fc,
+7:u32:rfc,
+7:u33:rfc,
+7:u01:www,
+7:u03:rfc,
+10:u05:editor,
+7:u07:org,
+9:u09:rfc/-,
+12:u0A:-/editor,
+12:u0B:editor/.,
+9:u0C:./rfc,
+10:u13:editor,
+7:u00:www,
+7:u02:rfc,
+10:u04:editor,
+7:u06:org,
+8:u08:info,
+12:u09:-/editor,
+12:u0A:editor/.,
+9:u0B:./org,
+9:u0C:rfc/-,
+12:u0D:editor/1,
+10:u12:editor,
+7:u14:org,
+6:u21:ed,
+7:u22:edi,
+8:u23:edit,
+7:u32:tor,
+8:u33:itor,
+7:u01:rfc,
+10:u03:editor,
+7:u05:org,
+8:u07:info,
+12:u09:editor/.,
+9:u0A:./org,
+9:u0B:org//,
+12:u0C:-/editor,
+10:u11:editor,
+7:u13:org,
+7:u00:rfc,
+10:u02:editor,
+7:u04:org,
+8:u06:info,
+11:u08:rfc8609,
+9:u09:./org,
+9:u0A:org//,
+10:u0B://info,
+12:u0C:editor/.,
+9:u0D:org/0,
+10:u10:editor,
+7:u12:org,
+8:u14:info,
+6:u21:or,
+7:u22:org,
+7:u23:org,
+6:u31:rg,
+7:u32:org,
+7:u33:org,
+10:u01:editor,
+7:u03:org,
+8:u05:info,
+11:u07:rfc8609,
+9:u09:org//,
+10:u0A://info,
+10:u0B:info//,
+9:u0C:./org,
+7:u11:org,
+8:u13:info,
+10:u00:editor,
+7:u02:org,
+8:u04:info,
+11:u06:rfc8609,
+10:u09://info,
+10:u0A:info//,
+13:u0B://rfc8609,
+9:u0C:org//,
+10:u0D:info/0,
+7:u10:org,
+8:u12:info,
+11:u14:rfc8609,
+6:u31:fo,
+7:u32:nfo,
+8:u33:info,
+7:u01:org,
+8:u03:info,
+11:u05:rfc8609,
+10:u09:info//,
+13:u0A://rfc8609,
+13:u0B:rfc8609/.,
+10:u0C://info,
+8:u11:info,
+11:u13:rfc8609,
+18:uB2:CONTAINSDIGITS,
+7:u00:org,
+8:u02:info,
+11:u04:rfc8609,
+6:u08:et,
+13:u09://rfc8609,
+13:u0A:rfc8609/.,
+10:u0C:info//,
+13:u0D:rfc8609/0,
+8:u10:info,
+11:u12:rfc8609,
+8:u23:rfc8,
+18:uB0:CONTAINSDIGITS,
+8:u01:info,
+11:u03:rfc8609,
+6:u07:et,
+6:u08:al,
+13:u09:rfc8609/.,
+11:u0B:Mosko/,,
+13:u0C://rfc8609,
+11:u11:rfc8609,
+18:uB1:CONTAINSDIGITS,
+8:u00:info,
+11:u02:rfc8609,
+6:u06:et,
+6:u07:al,
+11:u0A:Mosko/,,
+8:u0B:,/et,
+13:u0C:rfc8609/.,
+11:u10:rfc8609,
+6:u14:et,
+11:u01:rfc8609,
+6:u05:et,
+6:u06:al,
+11:u09:Mosko/,,
+8:u0A:,/et,
+9:u0B:et/al,
+6:u13:et,
+6:u14:al,
+11:u00:rfc8609,
+6:u04:et,
+6:u05:al,
+5:u08:[,
+8:u09:,/et,
+9:u0A:et/al,
+8:u0B:al/.,
+11:u0C:Mosko/,,
+8:u0D:et/0,
+6:u12:et,
+6:u13:al,
+6:u21:et,
+6:u22:et,
+6:u23:et,
+6:u32:et,
+6:u33:et,
+6:u03:et,
+6:u04:al,
+5:u07:[,
+8:u08:Page,
+9:u09:et/al,
+8:u0A:al/.,
+18:u0B:./Experimental,
+8:u0C:,/et,
+8:u0D:al/0,
+6:u11:et,
+6:u12:al,
+6:u21:al,
+6:u22:al,
+6:u23:al,
+6:u32:al,
+6:u33:al,
+6:u02:et,
+6:u03:al,
+5:u06:[,
+8:u07:Page,
+5:u08:1,
+8:u09:al/.,
+18:u0A:./Experimental,
+18:u0B:Experimental/[,
+9:u0C:et/al,
+6:u10:et,
+6:u11:al,
+5:u14:[,
+6:u01:et,
+6:u02:al,
+5:u05:[,
+8:u06:Page,
+5:u07:1,
+5:u08:],
+18:u09:./Experimental,
+18:u0A:Experimental/[,
+10:u0B:[/Page,
+8:u0C:al/.,
+6:u10:al,
+5:u13:[,
+8:u14:page,
+6:u00:et,
+6:u01:al,
+5:u04:[,
+8:u05:Page,
+5:u06:1,
+5:u07:],
+18:u09:Experimental/[,
+10:u0A:[/Page,
+10:u0B:Page/1,
+18:u0C:./Experimental,
+7:u0D:[/0,
+5:u12:[,
+8:u13:page,
+5:u14:1,
+5:u20:[,
+5:u21:[,
+5:u22:[,
+5:u23:[,
+5:u30:[,
+5:u31:[,
+5:u32:[,
+5:u33:[,
+6:u00:al,
+5:u03:[,
+8:u04:Page,
+5:u05:1,
+5:u06:],
+10:u09:[/Page,
+10:u0A:Page/1,
+7:u0B:1/],
+18:u0C:Experimental/[,
+10:u0D:Page/0,
+5:u11:[,
+8:u12:page,
+5:u13:1,
+5:u14:],
+6:u21:Pa,
+7:u22:Pag,
+8:u23:Page,
+8:u33:Page,
+5:u02:[,
+8:u03:Page,
+5:u04:1,
+5:u05:],
+10:u09:Page/1,
+7:u0A:1/],
+9:u0B:]/RFC,
+10:u0C:[/Page,
+7:u0D:1/0,
+5:u10:[,
+8:u11:page,
+5:u12:1,
+5:u13:],
+5:u21:1,
+5:u22:1,
+5:u23:1,
+5:u31:1,
+5:u32:1,
+5:u33:1,
+5:u01:[,
+8:u02:Page,
+5:u03:1,
+5:u04:],
+7:u09:1/],
+9:u0A:]/RFC,
+12:u0B:RFC/8609,
+10:u0C:Page/1,
+7:u0D:]/0,
+8:u10:page,
+5:u11:1,
+5:u12:],
+5:u20:],
+5:u21:],
+5:u22:],
+5:u23:],
+5:u30:],
+5:u31:],
+5:u32:],
+5:u33:],
+5:u00:[,
+8:u01:Page,
+5:u02:1,
+5:u03:],
+9:u09:]/RFC,
+12:u0A:RFC/8609,
+13:u0B:8609/CCNx,
+7:u0C:1/],
+5:u10:1,
+5:u11:],
+8:u00:Page,
+5:u01:1,
+5:u02:],
+12:u09:RFC/8609,
+13:u0A:8609/CCNx,
+12:u0B:CCNx/TLV,
+9:u0C:]/RFC,
+5:u10:],
+5:u00:1,
+5:u01:],
+13:u08:Copyright,
+13:u09:8609/CCNx,
+12:u0A:CCNx/TLV,
+12:u0B:TLV/July,
+12:u0C:RFC/8609,
+5:u00:],
+13:u07:Copyright,
+10:u08:Notice,
+12:u09:CCNx/TLV,
+12:u0A:TLV/July,
+13:u0C:8609/CCNx,
+13:u06:Copyright,
+10:u07:Notice,
+12:u09:TLV/July,
+18:u0B:2019/Copyright,
+12:u0C:CCNx/TLV,
+13:u14:copyright,
+13:u05:Copyright,
+10:u06:Notice,
+18:u0A:2019/Copyright,
+20:u0B:Copyright/Notice,
+12:u0C:TLV/July,
+13:u13:copyright,
+10:u14:notice,
+13:u04:Copyright,
+10:u05:Notice,
+5:u08:c,
+18:u09:2019/Copyright,
+20:u0A:Copyright/Notice,
+20:u0B:Notice/Copyright,
+15:u0D:Copyright/0,
+13:u12:copyright,
+10:u13:notice,
+7:u22:Cop,
+8:u23:Copy,
+13:u03:Copyright,
+10:u04:Notice,
+5:u07:c,
+20:u09:Copyright/Notice,
+20:u0A:Notice/Copyright,
+15:u0B:Copyright/(,
+18:u0C:2019/Copyright,
+12:u0D:Notice/0,
+13:u11:copyright,
+10:u12:notice,
+6:u21:No,
+7:u22:Not,
+8:u23:Noti,
+7:u32:ice,
+8:u33:tice,
+13:u02:Copyright,
+10:u03:Notice,
+5:u06:c,
+20:u09:Notice/Copyright,
+15:u0A:Copyright/(,
+7:u0B:(/c,
+20:u0C:Copyright/Notice,
+13:u10:copyright,
+10:u11:notice,
+13:u01:Copyright,
+10:u02:Notice,
+5:u05:c,
+8:u08:IETF,
+15:u09:Copyright/(,
+7:u0A:(/c,
+7:u0B:c/),
+20:u0C:Notice/Copyright,
+10:u10:notice,
+13:u00:Copyright,
+10:u01:Notice,
+5:u04:c,
+8:u07:IETF,
+9:u08:Trust,
+7:u09:(/c,
+7:u0A:c/),
+10:u0B:)/2019,
+15:u0C:Copyright/(,
+7:u0D:c/0,
+5:u21:c,
+5:u22:c,
+5:u23:c,
+5:u31:c,
+5:u32:c,
+5:u33:c,
+10:u00:Notice,
+5:u03:c,
+8:u06:IETF,
+9:u07:Trust,
+7:u09:c/),
+10:u0A:)/2019,
+13:u0B:2019/IETF,
+7:u0C:(/c,
+8:u14:ietf,
+5:u02:c,
+8:u05:IETF,
+9:u06:Trust,
+10:u09:)/2019,
+13:u0A:2019/IETF,
+14:u0B:IETF/Trust,
+7:u0C:c/),
+8:u13:ietf,
+9:u14:trust,
+5:u01:c,
+8:u04:IETF,
+9:u05:Trust,
+11:u08:persons,
+13:u09:2019/IETF,
+14:u0A:IETF/Trust,
+13:u0B:Trust/and,
+10:u0C:)/2019,
+10:u0D:IETF/0,
+8:u12:ietf,
+9:u13:trust,
+6:u21:IE,
+7:u22:IET,
+8:u23:IETF,
+7:u32:ETF,
+8:u33:IETF,
+5:u00:c,
+8:u03:IETF,
+9:u04:Trust,
+11:u07:persons,
+14:u08:identified,
+14:u09:IETF/Trust,
+13:u0A:Trust/and,
+13:u0C:2019/IETF,
+11:u0D:Trust/0,
+8:u11:ietf,
+9:u12:trust,
+7:u22:Tru,
+8:u23:Trus,
+7:u32:ust,
+8:u33:rust,
+8:u02:IETF,
+9:u03:Trust,
+11:u06:persons,
+14:u07:identified,
+6:u08:as,
+13:u09:Trust/and,
+15:u0B:the/persons,
+14:u0C:IETF/Trust,
+8:u10:ietf,
+9:u11:trust,
+11:u14:persons,
+8:u01:IETF,
+9:u02:Trust,
+11:u05:persons,
+14:u06:identified,
+6:u07:as,
+15:u0A:the/persons,
+22:u0B:persons/identified,
+13:u0C:Trust/and,
+9:u10:trust,
+11:u13:persons,
+14:u14:identified,
+8:u00:IETF,
+9:u01:Trust,
+11:u04:persons,
+14:u05:identified,
+6:u06:as,
+15:u09:the/persons,
+22:u0A:persons/identified,
+17:u0B:identified/as,
+13:u0D:persons/0,
+11:u12:persons,
+14:u13:identified,
+6:u14:as,
+6:u21:pe,
+7:u22:per,
+8:u23:pers,
+8:u33:sons,
+9:u00:Trust,
+11:u03:persons,
+14:u04:identified,
+6:u05:as,
+11:u08:authors,
+22:u09:persons/identified,
+17:u0A:identified/as,
+10:u0B:as/the,
+15:u0C:the/persons,
+16:u0D:identified/0,
+11:u11:persons,
+14:u12:identified,
+6:u13:as,
+6:u21:id,
+7:u22:ide,
+8:u23:iden,
+7:u32:ied,
+8:u33:fied,
+11:u02:persons,
+14:u03:identified,
+6:u04:as,
+11:u07:authors,
+17:u09:identified/as,
+10:u0A:as/the,
+16:u0B:the/document,
+22:u0C:persons/identified,
+8:u0D:as/0,
+11:u10:persons,
+14:u11:identified,
+6:u12:as,
+6:u21:as,
+6:u22:as,
+6:u23:as,
+6:u32:as,
+6:u33:as,
+11:u01:persons,
+14:u02:identified,
+6:u03:as,
+11:u06:authors,
+7:u08:All,
+10:u09:as/the,
+16:u0A:the/document,
+20:u0B:document/authors,
+17:u0C:identified/as,
+14:u10:identified,
+6:u11:as,
+11:u14:authors,
+11:u00:persons,
+14:u01:identified,
+6:u02:as,
+11:u05:authors,
+7:u07:All,
+10:u08:rights,
+16:u09:the/document,
+20:u0A:document/authors,
+13:u0B:authors/.,
+10:u0C:as/the,
+6:u10:as,
+11:u13:authors,
+14:u00:identified,
+6:u01:as,
+11:u04:authors,
+7:u06:All,
+10:u07:rights,
+12:u08:reserved,
+20:u09:document/authors,
+13:u0A:authors/.,
+9:u0B:./All,
+16:u0C:the/document,
+13:u0D:authors/0,
+11:u12:authors,
+7:u14:all,
+6:u21:au,
+7:u22:aut,
+8:u23:auth,
+6:u31:rs,
+7:u32:ors,
+8:u33:hors,
+6:u00:as,
+11:u03:authors,
+7:u05:All,
+10:u06:rights,
+12:u07:reserved,
+13:u09:authors/.,
+9:u0A:./All,
+14:u0B:All/rights,
+20:u0C:document/authors,
+11:u11:authors,
+7:u13:all,
+10:u14:rights,
+11:u02:authors,
+7:u04:All,
+10:u05:rights,
+12:u06:reserved,
+9:u09:./All,
+14:u0A:All/rights,
+19:u0B:rights/reserved,
+13:u0C:authors/.,
+9:u0D:All/0,
+11:u10:authors,
+7:u12:all,
+10:u13:rights,
+12:u14:reserved,
+6:u21:Al,
+7:u22:All,
+7:u23:All,
+7:u32:All,
+7:u33:All,
+11:u01:authors,
+7:u03:All,
+10:u04:rights,
+12:u05:reserved,
+14:u09:All/rights,
+19:u0A:rights/reserved,
+14:u0B:reserved/.,
+9:u0C:./All,
+12:u0D:rights/0,
+7:u11:all,
+10:u12:rights,
+12:u13:reserved,
+6:u21:ri,
+7:u22:rig,
+8:u23:righ,
+7:u32:hts,
+8:u33:ghts,
+11:u00:authors,
+7:u02:All,
+10:u03:rights,
+12:u04:reserved,
+19:u09:rights/reserved,
+14:u0A:reserved/.,
+14:u0C:All/rights,
+14:u0D:reserved/0,
+7:u10:all,
+10:u11:rights,
+12:u12:reserved,
+8:u33:rved,
+7:u01:All,
+10:u02:rights,
+12:u03:reserved,
+11:u08:subject,
+14:u09:reserved/.,
+19:u0C:rights/reserved,
+10:u10:rights,
+12:u11:reserved,
+7:u00:All,
+10:u01:rights,
+12:u02:reserved,
+11:u07:subject,
+14:u0C:reserved/.,
+12:u10:reserved,
+10:u00:rights,
+12:u01:reserved,
+11:u06:subject,
+7:u08:BCP,
+14:u0B:is/subject,
+11:u14:subject,
+12:u00:reserved,
+11:u05:subject,
+7:u07:BCP,
+6:u08:78,
+14:u0A:is/subject,
+14:u0B:subject/to,
+11:u13:subject,
+11:u04:subject,
+7:u06:BCP,
+6:u07:78,
+14:u09:is/subject,
+14:u0A:subject/to,
+10:u0B:to/BCP,
+13:u0D:subject/0,
+11:u12:subject,
+7:u14:bcp,
+7:u22:sub,
+8:u23:subj,
+7:u32:ect,
+8:u33:ject,
+11:u03:subject,
+7:u05:BCP,
+6:u06:78,
+14:u09:subject/to,
+10:u0A:to/BCP,
+10:u0B:BCP/78,
+14:u0C:is/subject,
+11:u11:subject,
+7:u13:bcp,
+6:u14:78,
+11:u02:subject,
+7:u04:BCP,
+6:u05:78,
+10:u09:to/BCP,
+10:u0A:BCP/78,
+10:u0B:78/and,
+14:u0C:subject/to,
+9:u0D:BCP/0,
+11:u10:subject,
+7:u12:bcp,
+6:u13:78,
+5:u20:B,
+6:u21:BC,
+7:u22:BCP,
+7:u23:BCP,
+5:u30:P,
+6:u31:CP,
+7:u32:BCP,
+7:u33:BCP,
+11:u01:subject,
+7:u03:BCP,
+6:u04:78,
+10:u09:BCP/78,
+10:u0A:78/and,
+10:u0C:to/BCP,
+8:u0D:78/0,
+7:u11:bcp,
+6:u12:78,
+6:u22:78,
+6:u23:78,
+5:u30:8,
+6:u31:78,
+6:u32:78,
+6:u33:78,
+11:u00:subject,
+7:u02:BCP,
+6:u03:78,
+5:u08:',
+10:u09:78/and,
+12:u0B:the/IETF,
+10:u0C:BCP/78,
+7:u10:bcp,
+6:u11:78,
+7:u01:BCP,
+6:u02:78,
+5:u07:',
+5:u08:s,
+12:u0A:the/IETF,
+10:u0C:78/and,
+6:u10:78,
+7:u00:BCP,
+6:u01:78,
+5:u06:',
+5:u07:s,
+9:u08:Legal,
+12:u09:the/IETF,
+11:u0B:Trust/',
+5:u14:',
+6:u00:78,
+5:u05:',
+5:u06:s,
+9:u07:Legal,
+14:u08:Provisions,
+11:u0A:Trust/',
+7:u0B:'/s,
+12:u0C:the/IETF,
+5:u13:',
+5:u14:s,
+9:uF2:QUOTE,
+5:u04:',
+5:u05:s,
+9:u06:Legal,
+14:u07:Provisions,
+12:u08:Relating,
+11:u09:Trust/',
+7:u0A:'/s,
+11:u0B:s/Legal,
+7:u0D:'/0,
+5:u12:',
+5:u13:s,
+9:u14:legal,
+5:u20:',
+5:u21:',
+5:u22:',
+5:u23:',
+5:u30:',
+5:u31:',
+5:u32:',
+5:u33:',
+9:uF1:QUOTE,
+5:u03:',
+5:u04:s,
+9:u05:Legal,
+14:u06:Provisions,
+12:u07:Relating,
+7:u09:'/s,
+11:u0A:s/Legal,
+20:u0B:Legal/Provisions,
+11:u0C:Trust/',
+7:u0D:s/0,
+5:u11:',
+5:u12:s,
+9:u13:legal,
+14:u14:provisions,
+5:u21:s,
+5:u22:s,
+5:u23:s,
+5:u31:s,
+5:u32:s,
+5:u33:s,
+9:uF0:QUOTE,
+5:u02:',
+5:u03:s,
+9:u04:Legal,
+14:u05:Provisions,
+12:u06:Relating,
+11:u09:s/Legal,
+20:u0A:Legal/Provisions,
+23:u0B:Provisions/Relating,
+7:u0C:'/s,
+11:u0D:Legal/0,
+5:u10:',
+5:u11:s,
+9:u12:legal,
+14:u13:provisions,
+12:u14:relating,
+6:u21:Le,
+7:u22:Leg,
+8:u23:Lega,
+7:u32:gal,
+8:u33:egal,
+5:u01:',
+5:u02:s,
+9:u03:Legal,
+14:u04:Provisions,
+12:u05:Relating,
+20:u09:Legal/Provisions,
+23:u0A:Provisions/Relating,
+15:u0B:Relating/to,
+11:u0C:s/Legal,
+16:u0D:Provisions/0,
+5:u10:s,
+9:u11:legal,
+14:u12:provisions,
+12:u13:relating,
+8:u23:Prov,
+5:u00:',
+5:u01:s,
+9:u02:Legal,
+14:u03:Provisions,
+12:u04:Relating,
+23:u09:Provisions/Relating,
+15:u0A:Relating/to,
+11:u0B:to/IETF,
+20:u0C:Legal/Provisions,
+14:u0D:Relating/0,
+9:u10:legal,
+14:u11:provisions,
+12:u12:relating,
+7:u22:Rel,
+8:u23:Rela,
+8:u33:ting,
+5:u00:s,
+9:u01:Legal,
+14:u02:Provisions,
+12:u03:Relating,
+15:u09:Relating/to,
+11:u0A:to/IETF,
+18:u0B:IETF/Documents,
+23:u0C:Provisions/Relating,
+14:u10:provisions,
+12:u11:relating,
+9:u00:Legal,
+14:u01:Provisions,
+12:u02:Relating,
+11:u09:to/IETF,
+18:u0A:IETF/Documents,
+15:u0B:Documents/(,
+15:u0C:Relating/to,
+12:u10:relating,
+14:u00:Provisions,
+12:u01:Relating,
+18:u09:IETF/Documents,
+15:u0A:Documents/(,
+11:u0B:(/https,
+11:u0C:to/IETF,
+12:u00:Relating,
+15:u09:Documents/(,
+11:u0A:(/https,
+18:u0C:IETF/Documents,
+11:u08:trustee,
+11:u09:(/https,
+15:u0C:Documents/(,
+11:u07:trustee,
+11:u0C:(/https,
+11:u06:trustee,
+8:u08:ietf,
+13:u0B://trustee,
+11:u14:trustee,
+11:u05:trustee,
+8:u07:ietf,
+13:u0A://trustee,
+13:u0B:trustee/.,
+11:u13:trustee,
+11:u04:trustee,
+8:u06:ietf,
+13:u09://trustee,
+13:u0A:trustee/.,
+10:u0B:./ietf,
+13:u0D:trustee/0,
+11:u12:trustee,
+6:u21:tr,
+7:u22:tru,
+8:u23:trus,
+7:u32:tee,
+8:u33:stee,
+11:u03:trustee,
+8:u05:ietf,
+13:u09:trustee/.,
+10:u0A:./ietf,
+10:u0B:ietf/.,
+13:u0C://trustee,
+11:u11:trustee,
+11:u02:trustee,
+8:u04:ietf,
+11:u08:license,
+10:u09:./ietf,
+10:u0A:ietf/.,
+13:u0C:trustee/.,
+10:u0D:ietf/0,
+11:u10:trustee,
+6:u21:ie,
+7:u22:iet,
+8:u23:ietf,
+6:u31:tf,
+7:u32:etf,
+8:u33:ietf,
+11:u01:trustee,
+8:u03:ietf,
+11:u07:license,
+10:u09:ietf/.,
+10:u0C:./ietf,
+11:u00:trustee,
+8:u02:ietf,
+11:u06:license,
+13:u0B://license,
+10:u0C:ietf/.,
+11:u14:license,
+8:u01:ietf,
+11:u05:license,
+13:u0A://license,
+13:u0B:license/-,
+11:u13:license,
+8:u00:ietf,
+11:u04:license,
+13:u09://license,
+13:u0A:license/-,
+10:u0B:-/info,
+13:u0D:license/0,
+11:u12:license,
+6:u21:li,
+7:u22:lic,
+8:u23:lice,
+7:u32:nse,
+8:u33:ense,
+11:u03:license,
+10:u08:effect,
+13:u09:license/-,
+10:u0A:-/info,
+10:u0B:info/),
+13:u0C://license,
+11:u11:license,
+11:u02:license,
+10:u07:effect,
+10:u09:-/info,
+10:u0A:info/),
+8:u0B:)/in,
+13:u0C:license/-,
+10:u0D:info/1,
+11:u10:license,
+11:u01:license,
+10:u06:effect,
+10:u09:info/),
+8:u0A:)/in,
+13:u0B:in/effect,
+10:u0C:-/info,
+10:u14:effect,
+11:u00:license,
+10:u05:effect,
+8:u08:date,
+8:u09:)/in,
+13:u0A:in/effect,
+13:u0B:effect/on,
+10:u0C:info/),
+10:u13:effect,
+10:u04:effect,
+8:u07:date,
+13:u09:in/effect,
+13:u0A:effect/on,
+10:u0B:on/the,
+8:u0C:)/in,
+12:u0D:effect/0,
+10:u12:effect,
+6:u21:ef,
+7:u22:eff,
+8:u23:effe,
+8:u33:fect,
+10:u03:effect,
+8:u06:date,
+13:u09:effect/on,
+10:u0A:on/the,
+12:u0B:the/date,
+13:u0C:in/effect,
+10:u11:effect,
+8:u14:date,
+10:u02:effect,
+10:u09:on/the,
+12:u0A:the/date,
+11:u0B:date/of,
+13:u0C:effect/on,
+10:u10:effect,
+10:u01:effect,
+12:u09:the/date,
+11:u0A:date/of,
+18:u0B:of/publication,
+10:u0C:on/the,
+10:u00:effect,
+11:u09:date/of,
+18:u0A:of/publication,
+18:u0B:publication/of,
+12:u0C:the/date,
+18:u09:of/publication,
+18:u0A:publication/of,
+11:u0C:date/of,
+10:u08:Please,
+18:u09:publication/of,
+18:u0C:of/publication,
+10:u07:Please,
+14:u0B:document/.,
+18:u0C:publication/of,
+10:u06:Please,
+9:u08:these,
+14:u0A:document/.,
+12:u0B:./Please,
+10:u14:please,
+10:u05:Please,
+9:u07:these,
+13:u08:documents,
+14:u09:document/.,
+12:u0A:./Please,
+17:u0B:Please/review,
+10:u13:please,
+10:u04:Please,
+9:u06:these,
+13:u07:documents,
+13:u08:carefully,
+12:u09:./Please,
+17:u0A:Please/review,
+16:u0B:review/these,
+14:u0C:document/.,
+12:u0D:Please/0,
+10:u12:please,
+6:u21:Pl,
+7:u22:Ple,
+8:u23:Plea,
+7:u32:ase,
+8:u33:ease,
+10:u03:Please,
+9:u05:these,
+13:u06:documents,
+13:u07:carefully,
+17:u09:Please/review,
+16:u0A:review/these,
+19:u0B:these/documents,
+12:u0C:./Please,
+10:u11:please,
+10:u02:Please,
+9:u04:these,
+13:u05:documents,
+13:u06:carefully,
+16:u09:review/these,
+19:u0A:these/documents,
+23:u0B:documents/carefully,
+17:u0C:Please/review,
+11:u0D:these/0,
+10:u10:please,
+13:u14:carefully,
+8:u23:thes,
+10:u01:Please,
+9:u03:these,
+13:u04:documents,
+13:u05:carefully,
+8:u08:they,
+19:u09:these/documents,
+23:u0A:documents/carefully,
+15:u0B:carefully/,,
+16:u0C:review/these,
+15:u0D:documents/0,
+13:u13:carefully,
+10:u00:Please,
+9:u02:these,
+13:u03:documents,
+13:u04:carefully,
+8:u07:they,
+12:u08:describe,
+23:u09:documents/carefully,
+15:u0A:carefully/,,
+8:u0B:,/as,
+19:u0C:these/documents,
+15:u0D:carefully/0,
+13:u12:carefully,
+7:u22:car,
+8:u23:care,
+7:u32:lly,
+8:u33:ully,
+9:u01:these,
+13:u02:documents,
+13:u03:carefully,
+8:u06:they,
+12:u07:describe,
+8:u08:your,
+15:u09:carefully/,,
+8:u0A:,/as,
+11:u0B:as/they,
+23:u0C:documents/carefully,
+13:u11:carefully,
+8:u14:they,
+9:u00:these,
+13:u01:documents,
+13:u02:carefully,
+8:u05:they,
+12:u06:describe,
+8:u07:your,
+8:u09:,/as,
+11:u0A:as/they,
+17:u0B:they/describe,
+15:u0C:carefully/,,
+13:u10:carefully,
+8:u13:they,
+12:u14:describe,
+13:u00:documents,
+13:u01:carefully,
+8:u04:they,
+12:u05:describe,
+8:u06:your,
+11:u09:as/they,
+17:u0A:they/describe,
+17:u0B:describe/your,
+8:u0C:,/as,
+10:u0D:they/0,
+8:u12:they,
+12:u13:describe,
+8:u14:your,
+8:u23:they,
+6:u31:ey,
+7:u32:hey,
+8:u33:they,
+13:u00:carefully,
+8:u03:they,
+12:u04:describe,
+8:u05:your,
+16:u08:restrictions,
+17:u09:they/describe,
+17:u0A:describe/your,
+15:u0B:your/rights,
+11:u0C:as/they,
+14:u0D:describe/0,
+8:u11:they,
+12:u12:describe,
+8:u13:your,
+7:u22:des,
+8:u23:desc,
+7:u32:ibe,
+8:u33:ribe,
+8:u02:they,
+12:u03:describe,
+8:u04:your,
+16:u07:restrictions,
+8:u08:with,
+17:u09:describe/your,
+15:u0A:your/rights,
+14:u0B:rights/and,
+17:u0C:they/describe,
+10:u0D:your/0,
+8:u10:they,
+12:u11:describe,
+8:u12:your,
+5:u20:y,
+6:u21:yo,
+7:u22:you,
+8:u23:your,
+6:u31:ur,
+7:u32:our,
+8:u33:your,
+8:u01:they,
+12:u02:describe,
+8:u03:your,
+16:u06:restrictions,
+8:u07:with,
+11:u08:respect,
+15:u09:your/rights,
+14:u0A:rights/and,
+20:u0B:and/restrictions,
+17:u0C:describe/your,
+12:u10:describe,
+8:u11:your,
+16:u14:restrictions,
+8:u00:they,
+12:u01:describe,
+8:u02:your,
+16:u05:restrictions,
+8:u06:with,
+11:u07:respect,
+14:u09:rights/and,
+20:u0A:and/restrictions,
+21:u0B:restrictions/with,
+15:u0C:your/rights,
+8:u10:your,
+16:u13:restrictions,
+8:u14:with,
+12:u00:describe,
+8:u01:your,
+16:u04:restrictions,
+8:u05:with,
+11:u06:respect,
+20:u09:and/restrictions,
+21:u0A:restrictions/with,
+16:u0B:with/respect,
+14:u0C:rights/and,
+18:u0D:restrictions/0,
+16:u12:restrictions,
+8:u13:with,
+11:u14:respect,
+8:u23:rest,
+8:u00:your,
+16:u03:restrictions,
+8:u04:with,
+11:u05:respect,
+21:u09:restrictions/with,
+16:u0A:with/respect,
+14:u0B:respect/to,
+20:u0C:and/restrictions,
+10:u0D:with/0,
+16:u11:restrictions,
+8:u12:with,
+11:u13:respect,
+7:u22:wit,
+8:u23:with,
+6:u31:th,
+7:u32:ith,
+8:u33:with,
+16:u02:restrictions,
+8:u03:with,
+11:u04:respect,
+16:u09:with/respect,
+14:u0A:respect/to,
+11:u0B:to/this,
+21:u0C:restrictions/with,
+13:u0D:respect/0,
+16:u10:restrictions,
+8:u11:with,
+11:u12:respect,
+8:u33:pect,
+16:u01:restrictions,
+8:u02:with,
+11:u03:respect,
+14:u09:respect/to,
+11:u0A:to/this,
+16:u0C:with/respect,
+8:u10:with,
+11:u11:respect,
+16:u00:restrictions,
+8:u01:with,
+11:u02:respect,
+11:u09:to/this,
+14:u0C:respect/to,
+11:u10:respect,
+8:u00:with,
+11:u01:respect,
+7:u0B:./.,
+11:u0C:to/this,
+11:u00:respect,
+7:u0A:./.,
+7:u0B:./,,
+7:u09:./.,
+7:u0A:./,,
+8:u0B:,/of,
+7:u09:./,,
+8:u0A:,/of,
+8:u0B:of/-,
+7:u0C:./.,
+8:u09:,/of,
+8:u0A:of/-,
+7:u0B:-/-,
+7:u0C:./,,
+8:u09:of/-,
+7:u0A:-/-,
+7:u0B:-/.,
+8:u0C:,/of,
+7:u09:-/-,
+7:u0A:-/.,
+8:u0C:of/-,
+7:u0D:-/1,
+7:u09:-/.,
+7:u0C:-/-,
+7:u0D:./1,
+8:u0B:of/.,
+7:u0C:-/.,
+8:u0A:of/.,
+8:u0B:./of,
+8:u09:of/.,
+8:u0A:./of,
+8:u0B:of/,,
+11:u08:America,
+8:u09:./of,
+8:u0A:of/,,
+7:u0B:,/,,
+8:u0C:of/.,
+11:u07:America,
+9:u08:Phone,
+8:u09:of/,,
+7:u0A:,/,,
+8:u0C:./of,
+11:u06:America,
+9:u07:Phone,
+7:u09:,/,,
+14:u0B:of/America,
+8:u0C:of/,,
+11:u14:america,
+11:u05:America,
+9:u06:Phone,
+7:u08:+01,
+14:u0A:of/America,
+17:u0B:America/Phone,
+7:u0C:,/,,
+11:u13:america,
+9:u14:phone,
+11:u04:America,
+9:u05:Phone,
+7:u07:+01,
+7:u08:650,
+14:u09:of/America,
+17:u0A:America/Phone,
+11:u0B:Phone/:,
+13:u0D:America/0,
+11:u12:america,
+9:u13:phone,
+6:u21:Am,
+7:u22:Ame,
+8:u23:Amer,
+6:u31:ca,
+7:u32:ica,
+8:u33:rica,
+11:u03:America,
+9:u04:Phone,
+7:u06:+01,
+7:u07:650,
+17:u09:America/Phone,
+11:u0A:Phone/:,
+9:u0B::/+01,
+14:u0C:of/America,
+11:u0D:Phone/0,
+11:u11:america,
+9:u12:phone,
+7:u14:+01,
+6:u21:Ph,
+7:u22:Pho,
+8:u23:Phon,
+7:u32:one,
+8:u33:hone,
+11:u02:America,
+9:u03:Phone,
+7:u05:+01,
+7:u06:650,
+7:u08:812,
+11:u09:Phone/:,
+9:u0A::/+01,
+11:u0B:+01/650,
+17:u0C:America/Phone,
+11:u10:america,
+9:u11:phone,
+7:u13:+01,
+7:u14:650,
+11:u01:America,
+9:u02:Phone,
+7:u04:+01,
+7:u05:650,
+7:u07:812,
+9:u09::/+01,
+11:u0A:+01/650,
+9:u0B:650/-,
+11:u0C:Phone/:,
+9:u0D:+01/0,
+9:u10:phone,
+7:u12:+01,
+7:u13:650,
+5:u20:+,
+6:u21:+0,
+7:u22:+01,
+7:u23:+01,
+6:u31:01,
+7:u32:+01,
+7:u33:+01,
+11:u00:America,
+9:u01:Phone,
+7:u03:+01,
+7:u04:650,
+7:u06:812,
+9:u08:Email,
+11:u09:+01/650,
+9:u0A:650/-,
+9:u0B:-/812,
+9:u0C::/+01,
+9:u0D:650/0,
+7:u11:+01,
+7:u12:650,
+7:u14:812,
+5:u20:6,
+6:u21:65,
+7:u22:650,
+7:u23:650,
+6:u31:50,
+7:u32:650,
+7:u33:650,
+9:u00:Phone,
+7:u02:+01,
+7:u03:650,
+7:u05:812,
+9:u07:Email,
+9:u09:650/-,
+9:u0A:-/812,
+9:u0B:812/-,
+11:u0C:+01/650,
+7:u10:+01,
+7:u11:650,
+7:u13:812,
+7:u01:+01,
+7:u02:650,
+7:u04:812,
+9:u06:Email,
+15:u08:mmosko@parc,
+9:u09:-/812,
+9:u0A:812/-,
+11:u0B:-/Email,
+9:u0C:650/-,
+9:u0D:812/1,
+7:u10:650,
+7:u12:812,
+9:u14:email,
+6:u21:81,
+7:u22:812,
+7:u23:812,
+6:u31:12,
+7:u32:812,
+7:u33:812,
+7:u00:+01,
+7:u01:650,
+7:u03:812,
+9:u05:Email,
+15:u07:mmosko@parc,
+9:u09:812/-,
+11:u0A:-/Email,
+11:u0B:Email/:,
+9:u0C:-/812,
+7:u11:812,
+9:u13:email,
+7:u00:650,
+7:u02:812,
+9:u04:Email,
+15:u06:mmosko@parc,
+7:u08:edu,
+11:u09:-/Email,
+11:u0A:Email/:,
+17:u0B::/mmosko@parc,
+9:u0C:812/-,
+11:u0D:Email/1,
+7:u10:812,
+9:u12:email,
+15:u14:mmosko@parc,
+6:u21:Em,
+7:u22:Ema,
+8:u23:Emai,
+6:u31:il,
+7:u32:ail,
+8:u33:mail,
+7:u01:812,
+9:u03:Email,
+15:u05:mmosko@parc,
+7:u07:edu,
+8:u08:_x+1,
+11:u09:Email/:,
+17:u0A::/mmosko@parc,
+17:u0B:mmosko@parc/.,
+11:u0C:-/Email,
+9:u11:email,
+15:u13:mmosko@parc,
+7:u00:812,
+9:u02:Email,
+15:u04:mmosko@parc,
+7:u06:edu,
+8:u07:_x+1,
+8:u08:_x+2,
+17:u09::/mmosko@parc,
+17:u0A:mmosko@parc/.,
+9:u0B:./edu,
+11:u0C:Email/:,
+17:u0D:mmosko@parc/0,
+9:u10:email,
+15:u12:mmosko@parc,
+7:u14:edu,
+6:u21:mm,
+7:u22:mmo,
+8:u23:mmos,
+6:u31:rc,
+7:u32:arc,
+8:u33:parc,
+9:u01:Email,
+15:u03:mmosko@parc,
+7:u05:edu,
+8:u06:_x+1,
+8:u07:_x+2,
+8:u08:_x+3,
+17:u09:mmosko@parc/.,
+9:u0A:./edu,
+12:u0B:edu/_x+1,
+17:u0C::/mmosko@parc,
+15:u11:mmosko@parc,
+7:u13:edu,
+8:u14:_x+1,
+8:uE4:_x+1,
+9:u00:Email,
+15:u02:mmosko@parc,
+7:u04:edu,
+8:u05:_x+1,
+8:u06:_x+2,
+8:u07:_x+3,
+8:u08:_x+4,
+9:u09:./edu,
+12:u0A:edu/_x+1,
+13:u0B:_x+1/_x+2,
+17:u0C:mmosko@parc/.,
+9:u0D:edu/0,
+15:u10:mmosko@parc,
+7:u12:edu,
+8:u13:_x+1,
+8:u14:_x+2,
+7:u22:edu,
+7:u23:edu,
+5:u30:u,
+6:u31:du,
+7:u32:edu,
+7:u33:edu,
+8:u42:_x+1,
+8:u52:_x+1,
+8:u62:_x+1,
+8:u72:_x+1,
+8:u82:_x+1,
+8:u92:_x+1,
+8:uA1:_x+1,
+15:uA3:NOCAPS/_x+1,
+8:uB2:_x+1,
+8:uC2:_x+1,
+8:uDI:_x+1,
+8:uDJ:_x+1,
+8:uDK:_x+1,
+8:uDL:_x+1,
+8:uDM:_x+1,
+8:uDN:_x+1,
+8:uDO:_x+1,
+8:uDP:_x+1,
+8:uDQ:_x+1,
+8:uE3:_x+1,
+8:uE4:_x+2,
+8:uF2:_x+1,
+8:u08:8569,
+8:u07:8569,
+8:u06:8569,
+10:u0B::/8569,
+8:u14:8569,
+8:u05:8569,
+10:u0A::/8569,
+13:u0B:8569/PARC,
+8:u13:8569,
+8:u04:8569,
+10:u09::/8569,
+13:u0A:8569/PARC,
+10:u0D:8569/0,
+8:u12:8569,
+6:u21:85,
+7:u22:856,
+8:u23:8569,
+6:u31:69,
+7:u32:569,
+8:u33:8569,
+8:u03:8569,
+13:u09:8569/PARC,
+10:u0C::/8569,
+8:u11:8569,
+8:u02:8569,
+13:u0C:8569/PARC,
+8:u10:8569,
+8:u01:8569,
+8:u00:8569,
+15:u0B:)/Semantics,
+15:u0A:)/Semantics,
+22:u0B:Semantics/Abstract,
+13:u08:describes,
+15:u09:)/Semantics,
+22:u0A:Semantics/Abstract,
+17:u0B:Abstract/This,
+13:u07:describes,
+22:u09:Semantics/Abstract,
+17:u0A:Abstract/This,
+15:u0C:)/Semantics,
+13:u06:describes,
+8:u08:core,
+17:u09:Abstract/This,
+22:u0B:document/describes,
+22:u0C:Semantics/Abstract,
+13:u14:describes,
+13:u05:describes,
+8:u07:core,
+12:u08:concepts,
+22:u0A:document/describes,
+17:u0B:describes/the,
+17:u0C:Abstract/This,
+13:u13:describes,
+13:u04:describes,
+8:u06:core,
+12:u07:concepts,
+22:u09:document/describes,
+17:u0A:describes/the,
+12:u0B:the/core,
+15:u0D:describes/0,
+13:u12:describes,
+8:u14:core,
+7:u32:bes,
+8:u33:ibes,
+13:u03:describes,
+8:u05:core,
+12:u06:concepts,
+17:u09:describes/the,
+12:u0A:the/core,
+17:u0B:core/concepts,
+22:u0C:document/describes,
+13:u11:describes,
+8:u13:core,
+12:u14:concepts,
+13:u02:describes,
+8:u04:core,
+12:u05:concepts,
+12:u09:the/core,
+17:u0A:core/concepts,
+15:u0B:concepts/of,
+17:u0C:describes/the,
+10:u0D:core/0,
+13:u10:describes,
+8:u12:core,
+12:u13:concepts,
+7:u22:cor,
+8:u23:core,
+7:u32:ore,
+8:u33:core,
+13:u01:describes,
+8:u03:core,
+12:u04:concepts,
+17:u09:core/concepts,
+15:u0A:concepts/of,
+12:u0C:the/core,
+14:u0D:concepts/0,
+8:u11:core,
+12:u12:concepts,
+8:u23:conc,
+7:u32:pts,
+8:u33:epts,
+13:u00:describes,
+8:u02:core,
+12:u03:concepts,
+15:u09:concepts/of,
+15:u0B:the/Content,
+17:u0C:core/concepts,
+8:u10:core,
+12:u11:concepts,
+8:u01:core,
+12:u02:concepts,
+15:u0A:the/Content,
+15:u0C:concepts/of,
+12:u10:concepts,
+8:u00:core,
+12:u01:concepts,
+15:u09:the/Content,
+12:u00:concepts,
+15:u0C:the/Content,
+16:u08:architecture,
+16:u07:architecture,
+16:u06:architecture,
+12:u08:presents,
+18:u0B:)/architecture,
+16:u14:architecture,
+16:u05:architecture,
+12:u07:presents,
+18:u0A:)/architecture,
+20:u0B:architecture/and,
+16:u13:architecture,
+16:u04:architecture,
+12:u06:presents,
+18:u09:)/architecture,
+20:u0A:architecture/and,
+16:u0B:and/presents,
+18:u0D:architecture/0,
+16:u12:architecture,
+12:u14:presents,
+7:u22:arc,
+8:u23:arch,
+7:u32:ure,
+8:u33:ture,
+16:u03:architecture,
+12:u05:presents,
+20:u09:architecture/and,
+16:u0A:and/presents,
+14:u0B:presents/a,
+18:u0C:)/architecture,
+16:u11:architecture,
+12:u13:presents,
+16:u02:architecture,
+12:u04:presents,
+9:u08:based,
+16:u09:and/presents,
+14:u0A:presents/a,
+20:u0C:architecture/and,
+14:u0D:presents/0,
+16:u10:architecture,
+12:u12:presents,
+7:u22:pre,
+8:u23:pres,
+16:u01:architecture,
+12:u03:presents,
+9:u07:based,
+14:u09:presents/a,
+16:u0C:and/presents,
+12:u11:presents,
+16:u00:architecture,
+12:u02:presents,
+9:u06:based,
+18:u0B:protocol/based,
+14:u0C:presents/a,
+12:u10:presents,
+9:u14:based,
+12:u01:presents,
+9:u05:based,
+18:u0A:protocol/based,
+12:u0B:based/on,
+9:u13:based,
+12:u00:presents,
+9:u04:based,
+18:u09:protocol/based,
+12:u0A:based/on,
+10:u0B:on/two,
+11:u0D:based/0,
+9:u12:based,
+6:u21:ba,
+7:u22:bas,
+8:u23:base,
+8:u33:ased,
+9:u03:based,
+13:u08:Interests,
+12:u09:based/on,
+10:u0A:on/two,
+16:u0B:two/messages,
+18:u0C:protocol/based,
+9:u11:based,
+9:u02:based,
+13:u07:Interests,
+10:u09:on/two,
+16:u0A:two/messages,
+14:u0B:messages/:,
+12:u0C:based/on,
+9:u10:based,
+9:u01:based,
+13:u06:Interests,
+16:u09:two/messages,
+14:u0A:messages/:,
+15:u0B::/Interests,
+10:u0C:on/two,
+13:u14:interests,
+9:u00:based,
+13:u05:Interests,
+11:u08:Objects,
+14:u09:messages/:,
+15:u0A::/Interests,
+17:u0B:Interests/and,
+16:u0C:two/messages,
+13:u13:interests,
+13:u04:Interests,
+11:u07:Objects,
+15:u09::/Interests,
+17:u0A:Interests/and,
+15:u0B:and/Content,
+14:u0C:messages/:,
+15:u0D:Interests/0,
+13:u12:interests,
+13:u03:Interests,
+11:u06:Objects,
+6:u08:It,
+17:u09:Interests/and,
+15:u0A:and/Content,
+19:u0B:Content/Objects,
+15:u0C::/Interests,
+13:u11:interests,
+11:u14:objects,
+13:u02:Interests,
+11:u05:Objects,
+6:u07:It,
+15:u09:and/Content,
+19:u0A:Content/Objects,
+13:u0B:Objects/.,
+17:u0C:Interests/and,
+13:u10:interests,
+11:u13:objects,
+13:u01:Interests,
+11:u04:Objects,
+6:u06:It,
+19:u09:Content/Objects,
+13:u0A:Objects/.,
+8:u0B:./It,
+15:u0C:and/Content,
+13:u0D:Objects/0,
+11:u12:objects,
+5:u20:O,
+6:u21:Ob,
+7:u22:Obj,
+8:u23:Obje,
+7:u32:cts,
+8:u33:ects,
+13:u00:Interests,
+11:u03:Objects,
+6:u05:It,
+7:u08:set,
+13:u09:Objects/.,
+8:u0A:./It,
+16:u0B:It/specifies,
+19:u0C:Content/Objects,
+11:u11:objects,
+11:u02:Objects,
+6:u04:It,
+7:u07:set,
+8:u09:./It,
+16:u0A:It/specifies,
+13:u0C:Objects/.,
+8:u0D:It/0,
+11:u10:objects,
+6:u21:It,
+6:u22:It,
+6:u23:It,
+6:u31:It,
+6:u32:It,
+6:u33:It,
+11:u01:Objects,
+6:u03:It,
+7:u06:set,
+13:u08:mandatory,
+16:u09:It/specifies,
+11:u0B:the/set,
+8:u0C:./It,
+7:u14:set,
+11:u00:Objects,
+6:u02:It,
+7:u05:set,
+13:u07:mandatory,
+11:u0A:the/set,
+10:u0B:set/of,
+16:u0C:It/specifies,
+7:u13:set,
+6:u01:It,
+7:u04:set,
+13:u06:mandatory,
+12:u08:optional,
+11:u09:the/set,
+10:u0A:set/of,
+16:u0B:of/mandatory,
+9:u0D:set/0,
+7:u12:set,
+13:u14:mandatory,
+7:u22:set,
+7:u23:set,
+7:u32:set,
+7:u33:set,
+6:u00:It,
+7:u03:set,
+13:u05:mandatory,
+12:u07:optional,
+10:u08:fields,
+10:u09:set/of,
+16:u0A:of/mandatory,
+17:u0B:mandatory/and,
+11:u0C:the/set,
+7:u11:set,
+13:u13:mandatory,
+7:u02:set,
+13:u04:mandatory,
+12:u06:optional,
+10:u07:fields,
+10:u08:within,
+16:u09:of/mandatory,
+17:u0A:mandatory/and,
+16:u0B:and/optional,
+10:u0C:set/of,
+15:u0D:mandatory/0,
+7:u10:set,
+13:u12:mandatory,
+12:u14:optional,
+7:u22:man,
+8:u23:mand,
+8:u33:tory,
+7:u01:set,
+13:u03:mandatory,
+12:u05:optional,
+10:u06:fields,
+10:u07:within,
+9:u08:those,
+17:u09:mandatory/and,
+16:u0A:and/optional,
+19:u0B:optional/fields,
+16:u0C:of/mandatory,
+13:u11:mandatory,
+12:u13:optional,
+10:u14:fields,
+7:u00:set,
+13:u02:mandatory,
+12:u04:optional,
+10:u05:fields,
+10:u06:within,
+9:u07:those,
+16:u09:and/optional,
+19:u0A:optional/fields,
+17:u0B:fields/within,
+17:u0C:mandatory/and,
+14:u0D:optional/0,
+13:u10:mandatory,
+12:u12:optional,
+10:u13:fields,
+10:u14:within,
+6:u21:op,
+7:u22:opt,
+8:u23:opti,
+7:u32:nal,
+8:u33:onal,
+13:u01:mandatory,
+12:u03:optional,
+10:u04:fields,
+10:u05:within,
+9:u06:those,
+19:u09:optional/fields,
+17:u0A:fields/within,
+16:u0B:within/those,
+16:u0C:and/optional,
+12:u0D:fields/0,
+12:u11:optional,
+10:u12:fields,
+10:u13:within,
+9:u14:those,
+6:u21:fi,
+7:u22:fie,
+8:u23:fiel,
+7:u32:lds,
+8:u33:elds,
+13:u00:mandatory,
+12:u02:optional,
+10:u03:fields,
+10:u04:within,
+9:u05:those,
+17:u09:fields/within,
+16:u0A:within/those,
+18:u0B:those/messages,
+19:u0C:optional/fields,
+12:u0D:within/0,
+12:u10:optional,
+10:u11:fields,
+10:u12:within,
+9:u13:those,
+7:u32:hin,
+8:u33:thin,
+12:u01:optional,
+10:u02:fields,
+10:u03:within,
+9:u04:those,
+9:u08:their,
+16:u09:within/those,
+18:u0A:those/messages,
+16:u0B:messages/and,
+17:u0C:fields/within,
+11:u0D:those/0,
+10:u10:fields,
+10:u11:within,
+9:u12:those,
+7:u22:tho,
+8:u23:thos,
+7:u32:ose,
+8:u33:hose,
+12:u00:optional,
+10:u01:fields,
+10:u02:within,
+9:u03:those,
+9:u07:their,
+12:u08:behavior,
+18:u09:those/messages,
+16:u0A:messages/and,
+17:u0B:and/describes,
+16:u0C:within/those,
+10:u10:within,
+9:u11:those,
+10:u00:fields,
+10:u01:within,
+9:u02:those,
+9:u06:their,
+12:u07:behavior,
+16:u09:messages/and,
+17:u0A:and/describes,
+19:u0B:describes/their,
+18:u0C:those/messages,
+9:u10:those,
+9:u14:their,
+10:u00:within,
+9:u01:those,
+9:u05:their,
+12:u06:behavior,
+18:u08:interpretation,
+17:u09:and/describes,
+19:u0A:describes/their,
+18:u0B:their/behavior,
+16:u0C:messages/and,
+9:u13:their,
+12:u14:behavior,
+9:u00:those,
+9:u04:their,
+12:u05:behavior,
+18:u07:interpretation,
+19:u09:describes/their,
+18:u0A:their/behavior,
+16:u0B:behavior/and,
+17:u0C:and/describes,
+11:u0D:their/0,
+9:u12:their,
+12:u13:behavior,
+8:u23:thei,
+6:u31:ir,
+7:u32:eir,
+8:u33:heir,
+9:u03:their,
+12:u04:behavior,
+18:u06:interpretation,
+18:u09:their/behavior,
+16:u0A:behavior/and,
+22:u0B:and/interpretation,
+19:u0C:describes/their,
+14:u0D:behavior/0,
+9:u11:their,
+12:u12:behavior,
+18:u14:interpretation,
+7:u22:beh,
+8:u23:beha,
+7:u32:ior,
+8:u33:vior,
+9:u02:their,
+12:u03:behavior,
+18:u05:interpretation,
+16:u09:behavior/and,
+22:u0A:and/interpretation,
+20:u0B:interpretation/.,
+18:u0C:their/behavior,
+9:u10:their,
+12:u11:behavior,
+18:u13:interpretation,
+9:u01:their,
+12:u02:behavior,
+18:u04:interpretation,
+22:u09:and/interpretation,
+20:u0A:interpretation/.,
+16:u0C:behavior/and,
+20:u0D:interpretation/0,
+12:u10:behavior,
+18:u12:interpretation,
+7:u22:int,
+8:u23:inte,
+9:u00:their,
+12:u01:behavior,
+18:u03:interpretation,
+20:u09:interpretation/.,
+21:u0B:This/architecture,
+22:u0C:and/interpretation,
+18:u11:interpretation,
+12:u00:behavior,
+18:u02:interpretation,
+21:u0A:This/architecture,
+20:u0C:interpretation/.,
+18:u10:interpretation,
+18:u01:interpretation,
+21:u09:This/architecture,
+16:u0B:and/protocol,
+18:u00:interpretation,
+16:u0A:and/protocol,
+21:u0C:This/architecture,
+16:u09:and/protocol,
+20:u0B:specification/is,
+20:u0A:specification/is,
+18:u0B:is/independent,
+16:u0C:and/protocol,
+12:u08:specific,
+20:u09:specification/is,
+18:u0A:is/independent,
+18:u0B:independent/of,
+12:u07:specific,
+8:u08:wire,
+18:u09:is/independent,
+18:u0A:independent/of,
+8:u0B:of/a,
+20:u0C:specification/is,
+17:u0D:independent/0,
+12:u06:specific,
+8:u07:wire,
+18:u09:independent/of,
+8:u0A:of/a,
+14:u0B:a/specific,
+18:u0C:is/independent,
+12:u14:specific,
+12:u05:specific,
+8:u06:wire,
+8:u09:of/a,
+14:u0A:a/specific,
+17:u0B:specific/wire,
+18:u0C:independent/of,
+12:u13:specific,
+8:u14:wire,
+12:u04:specific,
+8:u05:wire,
+14:u09:a/specific,
+17:u0A:specific/wire,
+17:u0B:wire/encoding,
+8:u0C:of/a,
+14:u0D:specific/0,
+12:u12:specific,
+8:u13:wire,
+7:u32:fic,
+8:u33:ific,
+12:u03:specific,
+8:u04:wire,
+17:u09:specific/wire,
+17:u0A:wire/encoding,
+14:u0B:encoding/.,
+14:u0C:a/specific,
+10:u0D:wire/0,
+12:u11:specific,
+8:u12:wire,
+7:u22:wir,
+8:u23:wire,
+7:u32:ire,
+8:u33:wire,
+12:u02:specific,
+8:u03:wire,
+8:u08:also,
+17:u09:wire/encoding,
+14:u0A:encoding/.,
+17:u0C:specific/wire,
+12:u10:specific,
+8:u11:wire,
+12:u01:specific,
+8:u02:wire,
+8:u07:also,
+14:u09:encoding/.,
+16:u0B:The/protocol,
+17:u0C:wire/encoding,
+8:u10:wire,
+12:u00:specific,
+8:u01:wire,
+8:u06:also,
+16:u0A:The/protocol,
+17:u0B:protocol/also,
+14:u0C:encoding/.,
+8:u14:also,
+8:u00:wire,
+8:u05:also,
+11:u08:control,
+16:u09:The/protocol,
+17:u0A:protocol/also,
+13:u0B:also/uses,
+8:u13:also,
+8:u04:also,
+11:u07:control,
+17:u09:protocol/also,
+13:u0A:also/uses,
+16:u0C:The/protocol,
+10:u0D:also/0,
+8:u12:also,
+7:u22:als,
+8:u23:also,
+6:u31:so,
+7:u32:lso,
+8:u33:also,
+8:u03:also,
+11:u06:control,
+10:u08:called,
+13:u09:also/uses,
+13:u0B:a/control,
+17:u0C:protocol/also,
+8:u11:also,
+11:u14:control,
+8:u02:also,
+11:u05:control,
+10:u07:called,
+13:u0A:a/control,
+19:u0B:control/message,
+13:u0C:also/uses,
+8:u10:also,
+11:u13:control,
+8:u01:also,
+11:u04:control,
+10:u06:called,
+12:u08:Interest,
+13:u09:a/control,
+19:u0A:control/message,
+18:u0B:message/called,
+13:u0D:control/0,
+11:u12:control,
+10:u14:called,
+8:u23:cont,
+7:u32:rol,
+8:u33:trol,
+8:u00:also,
+11:u03:control,
+10:u05:called,
+12:u07:Interest,
+10:u08:Return,
+19:u09:control/message,
+18:u0A:message/called,
+13:u0B:called/an,
+13:u0C:a/control,
+11:u11:control,
+10:u13:called,
+11:u02:control,
+10:u04:called,
+12:u06:Interest,
+10:u07:Return,
+18:u09:message/called,
+13:u0A:called/an,
+15:u0B:an/Interest,
+19:u0C:control/message,
+12:u0D:called/0,
+11:u10:control,
+10:u12:called,
+12:u14:interest,
+7:u22:cal,
+8:u23:call,
+7:u32:led,
+8:u33:lled,
+11:u01:control,
+10:u03:called,
+12:u05:Interest,
+10:u06:Return,
+11:u08:whereby,
+13:u09:called/an,
+15:u0A:an/Interest,
+19:u0B:Interest/Return,
+18:u0C:message/called,
+10:u11:called,
+12:u13:interest,
+10:u14:return,
+11:u00:control,
+10:u02:called,
+12:u04:Interest,
+10:u05:Return,
+11:u07:whereby,
+7:u08:one,
+15:u09:an/Interest,
+19:u0A:Interest/Return,
+12:u0B:Return/,,
+13:u0C:called/an,
+14:u0D:Interest/0,
+10:u10:called,
+12:u12:interest,
+10:u13:return,
+8:u33:rest,
+10:u01:called,
+12:u03:Interest,
+10:u04:Return,
+11:u06:whereby,
+7:u07:one,
+10:u08:system,
+19:u09:Interest/Return,
+12:u0A:Return/,,
+13:u0B:,/whereby,
+15:u0C:an/Interest,
+12:u0D:Return/0,
+12:u11:interest,
+10:u12:return,
+11:u14:whereby,
+7:u22:Ret,
+8:u23:Retu,
+6:u31:rn,
+7:u32:urn,
+8:u33:turn,
+10:u00:called,
+12:u02:Interest,
+10:u03:Return,
+11:u05:whereby,
+7:u06:one,
+10:u07:system,
+7:u08:can,
+12:u09:Return/,,
+13:u0A:,/whereby,
+15:u0B:whereby/one,
+19:u0C:Interest/Return,
+12:u10:interest,
+10:u11:return,
+11:u13:whereby,
+7:u14:one,
+12:u01:Interest,
+10:u02:Return,
+11:u04:whereby,
+7:u05:one,
+10:u06:system,
+7:u07:can,
+10:u08:return,
+13:u09:,/whereby,
+15:u0A:whereby/one,
+14:u0B:one/system,
+12:u0C:Return/,,
+13:u0D:whereby/0,
+10:u10:return,
+11:u12:whereby,
+7:u13:one,
+10:u14:system,
+7:u22:whe,
+8:u23:wher,
+7:u32:eby,
+8:u33:reby,
+12:u00:Interest,
+10:u01:Return,
+11:u03:whereby,
+7:u04:one,
+10:u05:system,
+7:u06:can,
+10:u07:return,
+15:u09:whereby/one,
+14:u0A:one/system,
+14:u0B:system/can,
+13:u0C:,/whereby,
+9:u0D:one/0,
+11:u11:whereby,
+7:u12:one,
+10:u13:system,
+7:u14:can,
+7:u22:one,
+7:u23:one,
+7:u33:one,
+10:u00:Return,
+11:u02:whereby,
+7:u03:one,
+10:u04:system,
+7:u05:can,
+10:u06:return,
+14:u09:one/system,
+14:u0A:system/can,
+14:u0B:can/return,
+15:u0C:whereby/one,
+12:u0D:system/0,
+11:u10:whereby,
+7:u11:one,
+10:u12:system,
+7:u13:can,
+6:u21:sy,
+7:u22:sys,
+8:u23:syst,
+5:u30:m,
+6:u31:em,
+7:u32:tem,
+8:u33:stem,
+11:u01:whereby,
+7:u02:one,
+10:u03:system,
+7:u04:can,
+10:u05:return,
+14:u09:system/can,
+14:u0A:can/return,
+13:u0B:return/an,
+14:u0C:one/system,
+9:u0D:can/0,
+7:u10:one,
+10:u11:system,
+7:u12:can,
+7:u23:can,
+7:u32:can,
+7:u33:can,
+11:u00:whereby,
+7:u01:one,
+10:u02:system,
+7:u03:can,
+10:u04:return,
+14:u09:can/return,
+13:u0A:return/an,
+14:u0C:system/can,
+12:u0D:return/0,
+10:u10:system,
+7:u11:can,
+7:u22:ret,
+8:u23:retu,
+7:u00:one,
+10:u01:system,
+7:u02:can,
+10:u03:return,
+13:u09:return/an,
+20:u0B:Interest/message,
+14:u0C:can/return,
+7:u10:can,
+10:u00:system,
+7:u01:can,
+10:u02:return,
+12:u08:previous,
+20:u0A:Interest/message,
+14:u0B:message/to,
+13:u0C:return/an,
+7:u00:can,
+10:u01:return,
+12:u07:previous,
+7:u08:hop,
+20:u09:Interest/message,
+14:u0A:message/to,
+10:u0B:to/the,
+10:u00:return,
+12:u06:previous,
+7:u07:hop,
+7:u08:due,
+14:u09:message/to,
+10:u0A:to/the,
+16:u0B:the/previous,
+20:u0C:Interest/message,
+12:u14:previous,
+12:u05:previous,
+7:u06:hop,
+7:u07:due,
+10:u09:to/the,
+16:u0A:the/previous,
+16:u0B:previous/hop,
+14:u0C:message/to,
+12:u13:previous,
+7:u14:hop,
+12:u04:previous,
+7:u05:hop,
+7:u06:due,
+16:u09:the/previous,
+16:u0A:previous/hop,
+11:u0B:hop/due,
+10:u0C:to/the,
+14:u0D:previous/0,
+12:u12:previous,
+7:u13:hop,
+7:u14:due,
+8:u23:prev,
+7:u32:ous,
+8:u33:ious,
+12:u03:previous,
+7:u04:hop,
+7:u05:due,
+9:u08:error,
+16:u09:previous/hop,
+11:u0A:hop/due,
+10:u0B:due/to,
+16:u0C:the/previous,
+9:u0D:hop/0,
+12:u11:previous,
+7:u12:hop,
+7:u13:due,
+7:u22:hop,
+7:u23:hop,
+6:u31:op,
+7:u32:hop,
+7:u33:hop,
+12:u02:previous,
+7:u03:hop,
+7:u04:due,
+9:u07:error,
+13:u08:condition,
+11:u09:hop/due,
+10:u0A:due/to,
+9:u0B:to/an,
+16:u0C:previous/hop,
+9:u0D:due/0,
+12:u10:previous,
+7:u11:hop,
+7:u12:due,
+6:u21:du,
+7:u22:due,
+7:u23:due,
+7:u32:due,
+7:u33:due,
+12:u01:previous,
+7:u02:hop,
+7:u03:due,
+9:u06:error,
+13:u07:condition,
+10:u09:due/to,
+9:u0A:to/an,
+12:u0B:an/error,
+11:u0C:hop/due,
+7:u10:hop,
+7:u11:due,
+9:u14:error,
+12:u00:previous,
+7:u01:hop,
+7:u02:due,
+9:u05:error,
+13:u06:condition,
+9:u09:to/an,
+12:u0A:an/error,
+19:u0B:error/condition,
+10:u0C:due/to,
+7:u10:due,
+9:u13:error,
+13:u14:condition,
+7:u00:hop,
+7:u01:due,
+9:u04:error,
+13:u05:condition,
+13:u08:indicates,
+12:u09:an/error,
+19:u0A:error/condition,
+15:u0B:condition/.,
+9:u0C:to/an,
+11:u0D:error/0,
+9:u12:error,
+13:u13:condition,
+8:u23:erro,
+7:u32:ror,
+8:u33:rror,
+7:u00:due,
+9:u03:error,
+13:u04:condition,
+13:u07:indicates,
+19:u09:error/condition,
+15:u0A:condition/.,
+12:u0C:an/error,
+15:u0D:condition/0,
+9:u11:error,
+13:u12:condition,
+8:u23:cond,
+9:u02:error,
+13:u03:condition,
+13:u06:indicates,
+15:u09:condition/.,
+18:u0B:This/indicates,
+19:u0C:error/condition,
+9:u10:error,
+13:u11:condition,
+13:u14:indicates,
+9:u01:error,
+13:u02:condition,
+13:u05:indicates,
+18:u0A:This/indicates,
+16:u0B:indicates/to,
+15:u0C:condition/.,
+13:u10:condition,
+13:u13:indicates,
+9:u00:error,
+13:u01:condition,
+13:u04:indicates,
+18:u09:This/indicates,
+16:u0A:indicates/to,
+15:u0D:indicates/0,
+13:u12:indicates,
+8:u23:indi,
+13:u00:condition,
+13:u03:indicates,
+16:u09:indicates/to,
+18:u0C:This/indicates,
+13:u11:indicates,
+13:u02:indicates,
+16:u0C:indicates/to,
+13:u10:indicates,
+13:u01:indicates,
+12:u0B:hop/that,
+13:u00:indicates,
+12:u0A:hop/that,
+12:u0B:that/the,
+8:u08:will,
+12:u09:hop/that,
+12:u0A:that/the,
+8:u07:will,
+12:u09:that/the,
+18:u0B:current/system,
+12:u0C:hop/that,
+8:u06:will,
+11:u08:respond,
+18:u0A:current/system,
+15:u0B:system/will,
+12:u0C:that/the,
+8:u14:will,
+8:u05:will,
+11:u07:respond,
+18:u09:current/system,
+15:u0A:system/will,
+12:u0B:will/not,
+8:u13:will,
+8:u04:will,
+11:u06:respond,
+15:u09:system/will,
+12:u0A:will/not,
+15:u0B:not/respond,
+18:u0C:current/system,
+10:u0D:will/0,
+8:u12:will,
+11:u14:respond,
+7:u22:wil,
+8:u23:will,
+7:u32:ill,
+8:u33:will,
+8:u03:will,
+11:u05:respond,
+12:u09:will/not,
+15:u0A:not/respond,
+14:u0B:respond/to,
+15:u0C:system/will,
+8:u11:will,
+11:u13:respond,
+8:u02:will,
+11:u04:respond,
+15:u09:not/respond,
+14:u0A:respond/to,
+12:u0C:will/not,
+13:u0D:respond/0,
+8:u10:will,
+11:u12:respond,
+7:u32:ond,
+8:u33:pond,
+8:u01:will,
+11:u03:respond,
+14:u09:respond/to,
+16:u0B:the/Interest,
+15:u0C:not/respond,
+11:u11:respond,
+8:u00:will,
+11:u02:respond,
+16:u0A:the/Interest,
+14:u0B:Interest/.,
+14:u0C:respond/to,
+11:u10:respond,
+11:u01:respond,
+16:u09:the/Interest,
+14:u0A:Interest/.,
+11:u00:respond,
+14:u09:Interest/.,
+16:u0C:the/Interest,
+14:u0C:Interest/.,
+11:u0B:Group/(,
+11:u0A:Group/(,
+11:u09:Group/(,
+11:u0C:Group/(,
+7:u08:Two,
+7:u07:Two,
+18:u0B:participants/.,
+7:u06:Two,
+18:u0A:participants/.,
+9:u0B:./Two,
+7:u05:Two,
+18:u09:participants/.,
+9:u0A:./Two,
+12:u0B:Two/full,
+7:u04:Two,
+9:u09:./Two,
+12:u0A:Two/full,
+18:u0C:participants/.,
+9:u0D:Two/0,
+6:u21:Tw,
+7:u22:Two,
+7:u23:Two,
+7:u32:Two,
+7:u33:Two,
+7:u03:Two,
+12:u09:Two/full,
+23:u0B:implementations/are,
+9:u0C:./Two,
+7:u02:Two,
+23:u0A:implementations/are,
+10:u0B:are/in,
+12:u0C:Two/full,
+7:u01:Two,
+23:u09:implementations/are,
+10:u0A:are/in,
+7:u00:Two,
+10:u09:are/in,
+23:u0C:implementations/are,
+11:u0B:use/and,
+10:u0C:are/in,
+11:u0A:use/and,
+12:u0B:and/have,
+11:u09:use/and,
+12:u0A:and/have,
+12:u09:and/have,
+11:u0C:use/and,
+12:u0C:and/have,
+12:u0B:RFC/8569,
+12:u0A:RFC/8569,
+13:u0B:8569/CCNx,
+12:u09:RFC/8569,
+13:u0A:8569/CCNx,
+13:u09:8569/CCNx,
+18:u0B:Semantics/July,
+12:u0C:RFC/8569,
+18:u0A:Semantics/July,
+13:u0C:8569/CCNx,
+18:u09:Semantics/July,
+15:u0B:2019/Status,
+15:u0A:2019/Status,
+18:u0C:Semantics/July,
+15:u09:2019/Status,
+15:u0C:2019/Status,
+11:u08:rfc8569,
+11:u07:rfc8569,
+11:u06:rfc8569,
+13:u0B://rfc8569,
+11:u14:rfc8569,
+11:u05:rfc8569,
+13:u0A://rfc8569,
+13:u0B:rfc8569/.,
+11:u13:rfc8569,
+11:u04:rfc8569,
+13:u09://rfc8569,
+13:u0A:rfc8569/.,
+15:u0B:./Copyright,
+13:u0D:rfc8569/0,
+11:u12:rfc8569,
+11:u03:rfc8569,
+13:u09:rfc8569/.,
+15:u0A:./Copyright,
+13:u0C://rfc8569,
+11:u11:rfc8569,
+11:u02:rfc8569,
+15:u09:./Copyright,
+13:u0C:rfc8569/.,
+11:u10:rfc8569,
+11:u01:rfc8569,
+15:u0C:./Copyright,
+11:u00:rfc8569,
+10:u0B:Page/2,
+10:u0A:Page/2,
+7:u0B:2/],
+10:u09:Page/2,
+7:u0A:2/],
+7:u09:2/],
+10:u0C:Page/2,
+7:u0C:2/],
+8:u08:Marc,
+8:u07:Marc,
+8:u06:Marc,
+13:u0B:2019/Marc,
+8:u14:marc,
+8:u05:Marc,
+13:u0A:2019/Marc,
+14:u0B:Marc/Mosko,
+8:u13:marc,
+8:u04:Marc,
+13:u09:2019/Marc,
+14:u0A:Marc/Mosko,
+14:u0B:Mosko/PARC,
+10:u0D:Marc/0,
+8:u12:marc,
+6:u21:Ma,
+7:u22:Mar,
+8:u23:Marc,
+8:u33:Marc,
+8:u03:Marc,
+14:u09:Marc/Mosko,
+14:u0A:Mosko/PARC,
+13:u0C:2019/Marc,
+8:u11:marc,
+8:u02:Marc,
+8:u08:Palo,
+14:u09:Mosko/PARC,
+14:u0C:Marc/Mosko,
+8:u10:marc,
+8:u01:Marc,
+8:u07:Palo,
+8:u08:Alto,
+14:u0C:Mosko/PARC,
+8:u00:Marc,
+8:u06:Palo,
+8:u07:Alto,
+10:u0B:./Palo,
+8:u14:palo,
+8:u05:Palo,
+8:u06:Alto,
+10:u0A:./Palo,
+13:u0B:Palo/Alto,
+8:u13:palo,
+8:u14:alto,
+8:u04:Palo,
+8:u05:Alto,
+9:u08:94304,
+10:u09:./Palo,
+13:u0A:Palo/Alto,
+10:u0B:Alto/,,
+10:u0D:Palo/0,
+8:u12:palo,
+8:u13:alto,
+7:u22:Pal,
+8:u23:Palo,
+6:u31:lo,
+7:u32:alo,
+8:u33:Palo,
+8:u03:Palo,
+8:u04:Alto,
+9:u07:94304,
+10:u08:United,
+13:u09:Palo/Alto,
+10:u0A:Alto/,,
+16:u0B:,/California,
+10:u0C:./Palo,
+10:u0D:Alto/0,
+8:u11:palo,
+8:u12:alto,
+7:u22:Alt,
+8:u23:Alto,
+7:u32:lto,
+8:u33:Alto,
+8:u02:Palo,
+8:u03:Alto,
+9:u06:94304,
+10:u07:United,
+10:u08:States,
+10:u09:Alto/,,
+16:u0A:,/California,
+20:u0B:California/94304,
+13:u0C:Palo/Alto,
+8:u10:palo,
+8:u11:alto,
+9:u14:94304,
+8:u01:Palo,
+8:u02:Alto,
+9:u05:94304,
+10:u06:United,
+10:u07:States,
+16:u09:,/California,
+20:u0A:California/94304,
+16:u0B:94304/United,
+10:u0C:Alto/,,
+8:u10:alto,
+9:u13:94304,
+10:u14:united,
+8:u00:Palo,
+8:u01:Alto,
+9:u04:94304,
+10:u05:United,
+10:u06:States,
+20:u09:California/94304,
+16:u0A:94304/United,
+17:u0B:United/States,
+16:u0C:,/California,
+11:u0D:94304/0,
+9:u12:94304,
+10:u13:united,
+10:u14:states,
+5:u20:9,
+6:u21:94,
+7:u22:943,
+8:u23:9430,
+5:u30:4,
+6:u31:04,
+7:u32:304,
+8:u33:4304,
+8:u00:Alto,
+9:u03:94304,
+10:u04:United,
+10:u05:States,
+16:u09:94304/United,
+17:u0A:United/States,
+13:u0B:States/of,
+20:u0C:California/94304,
+12:u0D:United/0,
+9:u11:94304,
+10:u12:united,
+10:u13:states,
+8:u23:Unit,
+8:u33:ited,
+9:u02:94304,
+10:u03:United,
+10:u04:States,
+17:u09:United/States,
+13:u0A:States/of,
+16:u0C:94304/United,
+12:u0D:States/0,
+9:u10:94304,
+10:u11:united,
+10:u12:states,
+9:u01:94304,
+10:u02:United,
+10:u03:States,
+13:u09:States/of,
+17:u0C:United/States,
+10:u10:united,
+10:u11:states,
+9:u00:94304,
+10:u01:United,
+10:u02:States,
+13:u0C:States/of,
+10:u10:states,
+10:u00:United,
+10:u01:States,
+10:u00:States,
+8:u08:4405,
+8:u07:4405,
+8:u06:4405,
+10:u0B:-/4405,
+8:u14:4405,
+8:u05:4405,
+8:u08:marc,
+10:u0A:-/4405,
+14:u0B:4405/Email,
+8:u13:4405,
+8:u04:4405,
+8:u07:marc,
+10:u09:-/4405,
+14:u0A:4405/Email,
+10:u0D:4405/1,
+8:u12:4405,
+5:u20:4,
+6:u21:44,
+7:u22:440,
+8:u23:4405,
+5:u30:5,
+6:u31:05,
+7:u32:405,
+8:u33:4405,
+8:u03:4405,
+8:u06:marc,
+14:u08:mosko@parc,
+14:u09:4405/Email,
+10:u0B::/marc,
+10:u0C:-/4405,
+11:u0D:Email/0,
+8:u11:4405,
+8:u02:4405,
+8:u05:marc,
+14:u07:mosko@parc,
+10:u0A::/marc,
+10:u0B:marc/.,
+14:u0C:4405/Email,
+8:u10:4405,
+8:u01:4405,
+8:u04:marc,
+14:u06:mosko@parc,
+7:u08:com,
+10:u09::/marc,
+10:u0A:marc/.,
+16:u0B:./mosko@parc,
+10:u0D:marc/0,
+14:u14:mosko@parc,
+7:u22:mar,
+8:u23:marc,
+8:u33:marc,
+8:u00:4405,
+8:u03:marc,
+14:u05:mosko@parc,
+7:u07:com,
+11:u08:Ignacio,
+10:u09:marc/.,
+16:u0A:./mosko@parc,
+16:u0B:mosko@parc/.,
+10:u0C::/marc,
+14:u13:mosko@parc,
+8:u02:marc,
+14:u04:mosko@parc,
+7:u06:com,
+11:u07:Ignacio,
+16:u09:./mosko@parc,
+16:u0A:mosko@parc/.,
+9:u0B:./com,
+10:u0C:marc/.,
+16:u0D:mosko@parc/0,
+14:u12:mosko@parc,
+7:u14:com,
+6:u21:mo,
+7:u22:mos,
+8:u23:mosk,
+8:u01:marc,
+14:u03:mosko@parc,
+7:u05:com,
+11:u06:Ignacio,
+16:u09:mosko@parc/.,
+9:u0A:./com,
+15:u0B:com/Ignacio,
+16:u0C:./mosko@parc,
+14:u11:mosko@parc,
+7:u13:com,
+11:u14:ignacio,
+8:u00:marc,
+14:u02:mosko@parc,
+7:u04:com,
+11:u05:Ignacio,
+12:u08:Mountain,
+9:u09:./com,
+15:u0A:com/Ignacio,
+17:u0B:Ignacio/Solis,
+16:u0C:mosko@parc/.,
+9:u0D:com/0,
+14:u10:mosko@parc,
+7:u12:com,
+11:u13:ignacio,
+7:u23:com,
+6:u31:om,
+7:u32:com,
+7:u33:com,
+14:u01:mosko@parc,
+7:u03:com,
+11:u04:Ignacio,
+12:u07:Mountain,
+8:u08:View,
+15:u09:com/Ignacio,
+17:u0A:Ignacio/Solis,
+18:u0B:Solis/LinkedIn,
+9:u0C:./com,
+13:u0D:Ignacio/0,
+7:u11:com,
+11:u12:ignacio,
+6:u21:Ig,
+7:u22:Ign,
+8:u23:Igna,
+6:u31:io,
+7:u32:cio,
+8:u33:acio,
+14:u00:mosko@parc,
+7:u02:com,
+11:u03:Ignacio,
+12:u06:Mountain,
+8:u07:View,
+17:u09:Ignacio/Solis,
+18:u0A:Solis/LinkedIn,
+21:u0B:LinkedIn/Mountain,
+15:u0C:com/Ignacio,
+7:u10:com,
+11:u11:ignacio,
+12:u14:mountain,
+7:u01:com,
+11:u02:Ignacio,
+12:u05:Mountain,
+8:u06:View,
+18:u09:Solis/LinkedIn,
+21:u0A:LinkedIn/Mountain,
+17:u0B:Mountain/View,
+17:u0C:Ignacio/Solis,
+11:u10:ignacio,
+12:u13:mountain,
+8:u14:view,
+7:u00:com,
+11:u01:Ignacio,
+12:u04:Mountain,
+8:u05:View,
+9:u08:94043,
+21:u09:LinkedIn/Mountain,
+17:u0A:Mountain/View,
+10:u0B:View/,,
+18:u0C:Solis/LinkedIn,
+14:u0D:Mountain/0,
+12:u12:mountain,
+8:u13:view,
+7:u22:Mou,
+8:u23:Moun,
+7:u32:ain,
+8:u33:tain,
+11:u00:Ignacio,
+12:u03:Mountain,
+8:u04:View,
+9:u07:94043,
+17:u09:Mountain/View,
+10:u0A:View/,,
+21:u0C:LinkedIn/Mountain,
+10:u0D:View/0,
+12:u11:mountain,
+8:u12:view,
+5:u20:V,
+6:u21:Vi,
+7:u22:Vie,
+8:u23:View,
+8:u33:View,
+12:u02:Mountain,
+8:u03:View,
+9:u06:94043,
+10:u09:View/,,
+20:u0B:California/94043,
+17:u0C:Mountain/View,
+12:u10:mountain,
+8:u11:view,
+9:u14:94043,
+12:u01:Mountain,
+8:u02:View,
+9:u05:94043,
+20:u0A:California/94043,
+16:u0B:94043/United,
+10:u0C:View/,,
+8:u10:view,
+9:u13:94043,
+12:u00:Mountain,
+8:u01:View,
+9:u04:94043,
+20:u09:California/94043,
+16:u0A:94043/United,
+11:u0D:94043/0,
+9:u12:94043,
+7:u22:940,
+8:u23:9404,
+5:u30:3,
+6:u31:43,
+7:u32:043,
+8:u33:4043,
+8:u00:View,
+9:u03:94043,
+16:u09:94043/United,
+20:u0C:California/94043,
+9:u11:94043,
+9:u02:94043,
+16:u0C:94043/United,
+9:u10:94043,
+9:u01:94043,
+19:u08:nsolis@linkedin,
+17:u0B:America/Email,
+9:u00:94043,
+19:u07:nsolis@linkedin,
+17:u0A:America/Email,
+19:u06:nsolis@linkedin,
+17:u09:America/Email,
+21:u0B::/nsolis@linkedin,
+19:u14:nsolis@linkedin,
+19:u05:nsolis@linkedin,
+15:u08:Christopher,
+21:u0A::/nsolis@linkedin,
+21:u0B:nsolis@linkedin/.,
+17:u0C:America/Email,
+19:u13:nsolis@linkedin,
+19:u04:nsolis@linkedin,
+15:u07:Christopher,
+5:u08:A,
+21:u09::/nsolis@linkedin,
+21:u0A:nsolis@linkedin/.,
+21:u0D:nsolis@linkedin/0,
+19:u12:nsolis@linkedin,
+6:u21:ns,
+7:u22:nso,
+8:u23:nsol,
+7:u32:din,
+8:u33:edin,
+19:u03:nsolis@linkedin,
+15:u06:Christopher,
+5:u07:A,
+21:u09:nsolis@linkedin/.,
+19:u0B:com/Christopher,
+21:u0C::/nsolis@linkedin,
+19:u11:nsolis@linkedin,
+15:u14:christopher,
+19:u02:nsolis@linkedin,
+15:u05:Christopher,
+5:u06:A,
+19:u0A:com/Christopher,
+17:u0B:Christopher/A,
+21:u0C:nsolis@linkedin/.,
+19:u10:nsolis@linkedin,
+15:u13:christopher,
+19:u01:nsolis@linkedin,
+15:u04:Christopher,
+5:u05:A,
+19:u09:com/Christopher,
+17:u0A:Christopher/A,
+7:u0B:A/.,
+17:u0D:Christopher/0,
+15:u12:christopher,
+6:u21:Ch,
+7:u22:Chr,
+8:u23:Chri,
+7:u32:her,
+8:u33:pher,
+19:u00:nsolis@linkedin,
+15:u03:Christopher,
+5:u04:A,
+17:u09:Christopher/A,
+7:u0A:A/.,
+19:u0C:com/Christopher,
+7:u0D:A/0,
+15:u11:christopher,
+5:u21:A,
+5:u22:A,
+5:u23:A,
+5:u30:A,
+5:u31:A,
+5:u32:A,
+5:u33:A,
+15:u02:Christopher,
+5:u03:A,
+7:u09:A/.,
+17:u0C:Christopher/A,
+15:u10:christopher,
+15:u01:Christopher,
+5:u02:A,
+7:u0C:A/.,
+15:u00:Christopher,
+5:u01:A,
+5:u00:A,
+17:u0B:Irvine/Irvine,
+9:u08:92697,
+17:u0A:Irvine/Irvine,
+12:u0B:Irvine/,,
+9:u07:92697,
+17:u09:Irvine/Irvine,
+12:u0A:Irvine/,,
+9:u06:92697,
+12:u09:Irvine/,,
+20:u0B:California/92697,
+17:u0C:Irvine/Irvine,
+9:u14:92697,
+9:u05:92697,
+20:u0A:California/92697,
+16:u0B:92697/United,
+12:u0C:Irvine/,,
+9:u13:92697,
+9:u04:92697,
+20:u09:California/92697,
+16:u0A:92697/United,
+11:u0D:92697/0,
+9:u12:92697,
+6:u21:92,
+7:u22:926,
+8:u23:9269,
+5:u30:7,
+6:u31:97,
+7:u32:697,
+8:u33:2697,
+9:u03:92697,
+16:u09:92697/United,
+20:u0C:California/92697,
+9:u11:92697,
+9:u02:92697,
+16:u0C:92697/United,
+9:u10:92697,
+9:u01:92697,
+9:u00:92697,
+7:u08:315,
+7:u07:315,
+7:u06:315,
+7:u08:806,
+11:u0B:+01/315,
+7:u14:315,
+7:u05:315,
+7:u07:806,
+11:u0A:+01/315,
+9:u0B:315/-,
+7:u13:315,
+7:u04:315,
+7:u06:806,
+8:u08:5939,
+11:u09:+01/315,
+9:u0A:315/-,
+9:u0B:-/806,
+9:u0D:315/0,
+7:u12:315,
+7:u14:806,
+5:u20:3,
+6:u21:31,
+7:u22:315,
+7:u23:315,
+6:u31:15,
+7:u32:315,
+7:u33:315,
+7:u03:315,
+7:u05:806,
+8:u07:5939,
+9:u09:315/-,
+9:u0A:-/806,
+9:u0B:806/-,
+11:u0C:+01/315,
+7:u11:315,
+7:u13:806,
+7:u02:315,
+7:u04:806,
+8:u06:5939,
+9:u09:-/806,
+9:u0A:806/-,
+10:u0B:-/5939,
+9:u0C:315/-,
+9:u0D:806/1,
+7:u10:315,
+7:u12:806,
+8:u14:5939,
+6:u21:80,
+7:u22:806,
+7:u23:806,
+5:u30:6,
+6:u31:06,
+7:u32:806,
+7:u33:806,
+7:u01:315,
+7:u03:806,
+8:u05:5939,
+14:u08:woodc1@uci,
+9:u09:806/-,
+10:u0A:-/5939,
+14:u0B:5939/Email,
+9:u0C:-/806,
+7:u11:806,
+8:u13:5939,
+7:u00:315,
+7:u02:806,
+8:u04:5939,
+14:u07:woodc1@uci,
+10:u09:-/5939,
+14:u0A:5939/Email,
+9:u0C:806/-,
+10:u0D:5939/1,
+7:u10:806,
+8:u12:5939,
+5:u20:5,
+6:u21:59,
+7:u22:593,
+8:u23:5939,
+6:u31:39,
+7:u32:939,
+8:u33:5939,
+7:u01:806,
+8:u03:5939,
+14:u06:woodc1@uci,
+14:u09:5939/Email,
+16:u0B::/woodc1@uci,
+10:u0C:-/5939,
+8:u11:5939,
+14:u14:woodc1@uci,
+7:u00:806,
+8:u02:5939,
+14:u05:woodc1@uci,
+16:u0A::/woodc1@uci,
+16:u0B:woodc1@uci/.,
+14:u0C:5939/Email,
+8:u10:5939,
+14:u13:woodc1@uci,
+8:u01:5939,
+14:u04:woodc1@uci,
+16:u09::/woodc1@uci,
+16:u0A:woodc1@uci/.,
+16:u0D:woodc1@uci/0,
+14:u12:woodc1@uci,
+6:u21:wo,
+7:u22:woo,
+8:u23:wood,
+5:u30:i,
+6:u31:ci,
+7:u32:uci,
+8:u33:@uci,
+8:u00:5939,
+14:u03:woodc1@uci,
+16:u09:woodc1@uci/.,
+16:u0C::/woodc1@uci,
+14:u11:woodc1@uci,
+14:u02:woodc1@uci,
+16:u0C:woodc1@uci/.,
+14:u10:woodc1@uci,
+12:u06:20190810,
+17:u0B:date/20190810,
+12:u14:20190810,
+12:u05:20190810,
+17:u0A:date/20190810,
+14:u0B:20190810/;,
+12:u13:20190810,
+12:u04:20190810,
+17:u09:date/20190810,
+14:u0A:20190810/;,
+14:u0D:20190810/0,
+12:u12:20190810,
+7:u32:810,
+8:u33:0810,
+12:u03:20190810,
+14:u09:20190810/;,
+17:u0C:date/20190810,
+12:u11:20190810,
+12:u02:20190810,
+12:u08:20190811,
+14:u0C:20190810/;,
+12:u10:20190810,
+12:u01:20190810,
+12:u07:20190811,
+12:u00:20190810,
+12:u06:20190811,
+5:u08:D,
+15:u0B:on/20190811,
+12:u14:20190811,
+12:u05:20190811,
+5:u07:D,
+15:u0A:on/20190811,
+18:u0B:20190811/ICNRG,
+12:u13:20190811,
+12:u04:20190811,
+5:u06:D,
+8:u08:Oran,
+15:u09:on/20190811,
+18:u0A:20190811/ICNRG,
+11:u0B:ICNRG/D,
+14:u0D:20190811/0,
+12:u12:20190811,
+5:u14:d,
+7:u32:811,
+8:u33:0811,
+12:u03:20190811,
+5:u05:D,
+8:u07:Oran,
+18:u09:20190811/ICNRG,
+11:u0A:ICNRG/D,
+7:u0B:D/.,
+15:u0C:on/20190811,
+12:u11:20190811,
+5:u13:d,
+12:u02:20190811,
+5:u04:D,
+8:u06:Oran,
+11:u09:ICNRG/D,
+7:u0A:D/.,
+10:u0B:./Oran,
+18:u0C:20190811/ICNRG,
+7:u0D:D/0,
+12:u10:20190811,
+5:u12:d,
+8:u14:oran,
+5:u21:D,
+5:u22:D,
+5:u23:D,
+5:u30:D,
+5:u31:D,
+5:u32:D,
+5:u33:D,
+12:u01:20190811,
+5:u03:D,
+8:u05:Oran,
+9:u08:Draft,
+7:u09:D/.,
+10:u0A:./Oran,
+17:u0B:Oran/Internet,
+11:u0C:ICNRG/D,
+5:u11:d,
+8:u13:oran,
+12:u00:20190811,
+5:u02:D,
+8:u04:Oran,
+9:u07:Draft,
+11:u08:Network,
+10:u09:./Oran,
+17:u0A:Oran/Internet,
+7:u0C:D/.,
+10:u0D:Oran/0,
+5:u10:d,
+8:u12:oran,
+6:u21:Or,
+7:u22:Ora,
+8:u23:Oran,
+7:u32:ran,
+8:u33:Oran,
+5:u01:D,
+8:u03:Oran,
+9:u06:Draft,
+11:u07:Network,
+11:u08:Systems,
+17:u09:Oran/Internet,
+11:u0B:-/Draft,
+10:u0C:./Oran,
+8:u11:oran,
+9:u14:draft,
+5:u00:D,
+8:u02:Oran,
+9:u05:Draft,
+11:u06:Network,
+11:u07:Systems,
+11:u0A:-/Draft,
+17:u0B:Draft/Network,
+17:u0C:Oran/Internet,
+8:u10:oran,
+9:u13:draft,
+8:u01:Oran,
+9:u04:Draft,
+11:u05:Network,
+11:u06:Systems,
+11:u09:-/Draft,
+17:u0A:Draft/Network,
+19:u0B:Network/Systems,
+11:u0D:Draft/1,
+9:u12:draft,
+11:u14:systems,
+6:u21:Dr,
+7:u22:Dra,
+8:u23:Draf,
+6:u31:ft,
+7:u32:aft,
+8:u33:raft,
+8:u00:Oran,
+9:u03:Draft,
+11:u04:Network,
+11:u05:Systems,
+10:u08:Design,
+17:u09:Draft/Network,
+19:u0A:Network/Systems,
+20:u0B:Systems/Research,
+11:u0C:-/Draft,
+13:u0D:Network/0,
+9:u11:draft,
+11:u13:systems,
+9:u02:Draft,
+11:u03:Network,
+11:u04:Systems,
+10:u07:Design,
+12:u08:Intended,
+19:u09:Network/Systems,
+20:u0A:Systems/Research,
+16:u0B:Research/and,
+17:u0C:Draft/Network,
+13:u0D:Systems/0,
+9:u10:draft,
+11:u12:systems,
+6:u21:Sy,
+7:u22:Sys,
+8:u23:Syst,
+6:u31:ms,
+7:u32:ems,
+8:u33:tems,
+9:u01:Draft,
+11:u02:Network,
+11:u03:Systems,
+10:u06:Design,
+12:u07:Intended,
+20:u09:Systems/Research,
+16:u0A:Research/and,
+14:u0B:and/Design,
+19:u0C:Network/Systems,
+11:u11:systems,
+10:u14:design,
+9:u00:Draft,
+11:u01:Network,
+11:u02:Systems,
+10:u05:Design,
+12:u06:Intended,
+16:u09:Research/and,
+14:u0A:and/Design,
+19:u0B:Design/Intended,
+20:u0C:Systems/Research,
+11:u10:systems,
+10:u13:design,
+12:u14:intended,
+11:u00:Network,
+11:u01:Systems,
+10:u04:Design,
+12:u05:Intended,
+14:u09:and/Design,
+19:u0A:Design/Intended,
+19:u0B:Intended/status,
+16:u0C:Research/and,
+12:u0D:Design/0,
+10:u12:design,
+12:u13:intended,
+6:u21:De,
+7:u22:Des,
+8:u23:Desi,
+6:u31:gn,
+7:u32:ign,
+8:u33:sign,
+11:u00:Systems,
+10:u03:Design,
+12:u04:Intended,
+10:u08:August,
+19:u09:Design/Intended,
+19:u0A:Intended/status,
+12:u0B:status/:,
+14:u0C:and/Design,
+14:u0D:Intended/0,
+10:u11:design,
+12:u12:intended,
+8:u33:nded,
+10:u02:Design,
+12:u03:Intended,
+10:u07:August,
+6:u08:10,
+19:u09:Intended/status,
+12:u0A:status/:,
+19:u0C:Design/Intended,
+10:u10:design,
+12:u11:intended,
+10:u01:Design,
+12:u02:Intended,
+10:u06:August,
+6:u07:10,
+12:u09:status/:,
+23:u0B:Experimental/August,
+19:u0C:Intended/status,
+12:u10:intended,
+10:u14:august,
+10:u00:Design,
+12:u01:Intended,
+10:u05:August,
+6:u06:10,
+23:u0A:Experimental/August,
+13:u0B:August/10,
+12:u0C:status/:,
+10:u13:august,
+6:u14:10,
+12:u00:Intended,
+10:u04:August,
+6:u05:10,
+11:u08:Expires,
+23:u09:Experimental/August,
+13:u0A:August/10,
+8:u0B:10/,,
+12:u0D:August/0,
+10:u12:august,
+6:u13:10,
+6:u21:Au,
+7:u22:Aug,
+8:u23:Augu,
+8:u33:gust,
+10:u03:August,
+6:u04:10,
+11:u07:Expires,
+13:u09:August/10,
+8:u0A:10/,,
+10:u0B:,/2019,
+23:u0C:Experimental/August,
+8:u0D:10/0,
+10:u11:august,
+6:u12:10,
+6:u21:10,
+6:u22:10,
+6:u23:10,
+6:u32:10,
+6:u33:10,
+10:u02:August,
+6:u03:10,
+11:u06:Expires,
+12:u08:February,
+8:u09:10/,,
+10:u0A:,/2019,
+16:u0B:2019/Expires,
+13:u0C:August/10,
+10:u10:august,
+6:u11:10,
+11:u14:expires,
+10:u01:August,
+6:u02:10,
+11:u05:Expires,
+12:u07:February,
+6:u08:11,
+10:u09:,/2019,
+16:u0A:2019/Expires,
+13:u0B:Expires/:,
+8:u0C:10/,,
+6:u10:10,
+11:u13:expires,
+10:u00:August,
+6:u01:10,
+11:u04:Expires,
+12:u06:February,
+6:u07:11,
+16:u09:2019/Expires,
+13:u0A:Expires/:,
+14:u0B::/February,
+10:u0C:,/2019,
+13:u0D:Expires/0,
+11:u12:expires,
+12:u14:february,
+8:u23:Expi,
+7:u32:res,
+8:u33:ires,
+6:u00:10,
+11:u03:Expires,
+12:u05:February,
+6:u06:11,
+8:u08:2020,
+13:u09:Expires/:,
+14:u0A::/February,
+15:u0B:February/11,
+16:u0C:2019/Expires,
+11:u11:expires,
+12:u13:february,
+6:u14:11,
+11:u02:Expires,
+12:u04:February,
+6:u05:11,
+8:u07:2020,
+15:u08:Maintaining,
+14:u09::/February,
+15:u0A:February/11,
+8:u0B:11/,,
+13:u0C:Expires/:,
+14:u0D:February/0,
+11:u10:expires,
+12:u12:february,
+6:u13:11,
+6:u21:Fe,
+7:u22:Feb,
+8:u23:Febr,
+7:u32:ary,
+8:u33:uary,
+11:u01:Expires,
+12:u03:February,
+6:u04:11,
+8:u06:2020,
+15:u07:Maintaining,
+15:u09:February/11,
+8:u0A:11/,,
+10:u0B:,/2020,
+14:u0C::/February,
+8:u0D:11/0,
+12:u11:february,
+6:u12:11,
+8:u14:2020,
+6:u21:11,
+6:u22:11,
+6:u23:11,
+6:u32:11,
+6:u33:11,
+11:u00:Expires,
+12:u02:February,
+6:u03:11,
+8:u05:2020,
+15:u06:Maintaining,
+6:u08:or,
+8:u09:11/,,
+10:u0A:,/2020,
+20:u0B:2020/Maintaining,
+15:u0C:February/11,
+12:u10:february,
+6:u11:11,
+8:u13:2020,
+15:u14:maintaining,
+12:u01:February,
+6:u02:11,
+8:u04:2020,
+15:u05:Maintaining,
+6:u07:or,
+7:u08:NDN,
+10:u09:,/2020,
+20:u0A:2020/Maintaining,
+20:u0B:Maintaining/CCNx,
+8:u0C:11/,,
+10:u0D:2020/0,
+6:u10:11,
+8:u12:2020,
+15:u13:maintaining,
+7:u22:202,
+8:u23:2020,
+6:u31:20,
+7:u32:020,
+8:u33:2020,
+12:u00:February,
+6:u01:11,
+8:u03:2020,
+15:u04:Maintaining,
+6:u06:or,
+7:u07:NDN,
+8:u08:flow,
+20:u09:2020/Maintaining,
+20:u0A:Maintaining/CCNx,
+11:u0B:CCNx/or,
+10:u0C:,/2020,
+17:u0D:Maintaining/0,
+8:u11:2020,
+15:u12:maintaining,
+6:u14:or,
+7:u22:Mai,
+8:u23:Main,
+8:u33:ning,
+6:u00:11,
+8:u02:2020,
+15:u03:Maintaining,
+6:u05:or,
+7:u06:NDN,
+8:u07:flow,
+11:u08:balance,
+20:u09:Maintaining/CCNx,
+11:u0A:CCNx/or,
+10:u0B:or/NDN,
+20:u0C:2020/Maintaining,
+8:u10:2020,
+15:u11:maintaining,
+6:u13:or,
+7:u14:ndn,
+8:u01:2020,
+15:u02:Maintaining,
+6:u04:or,
+7:u05:NDN,
+8:u06:flow,
+11:u07:balance,
+11:u09:CCNx/or,
+10:u0A:or/NDN,
+12:u0B:NDN/flow,
+20:u0C:Maintaining/CCNx,
+8:u0D:or/0,
+15:u10:maintaining,
+6:u12:or,
+7:u13:ndn,
+8:u14:flow,
+6:u22:or,
+6:u23:or,
+6:u32:or,
+6:u33:or,
+8:u00:2020,
+15:u01:Maintaining,
+6:u03:or,
+7:u04:NDN,
+8:u05:flow,
+11:u06:balance,
+10:u08:highly,
+10:u09:or/NDN,
+12:u0A:NDN/flow,
+16:u0B:flow/balance,
+11:u0C:CCNx/or,
+9:u0D:NDN/0,
+6:u11:or,
+7:u12:ndn,
+8:u13:flow,
+11:u14:balance,
+6:u21:ND,
+7:u22:NDN,
+7:u23:NDN,
+6:u31:DN,
+7:u32:NDN,
+7:u33:NDN,
+15:u00:Maintaining,
+6:u02:or,
+7:u03:NDN,
+8:u04:flow,
+11:u05:balance,
+10:u07:highly,
+12:u08:variable,
+12:u09:NDN/flow,
+16:u0A:flow/balance,
+16:u0B:balance/with,
+10:u0C:or/NDN,
+10:u0D:flow/0,
+6:u10:or,
+7:u11:ndn,
+8:u12:flow,
+11:u13:balance,
+6:u21:fl,
+7:u22:flo,
+8:u23:flow,
+8:u33:flow,
+6:u01:or,
+7:u02:NDN,
+8:u03:flow,
+11:u04:balance,
+10:u06:highly,
+12:u07:variable,
+8:u08:data,
+16:u09:flow/balance,
+16:u0A:balance/with,
+15:u0B:with/highly,
+12:u0C:NDN/flow,
+13:u0D:balance/0,
+7:u10:ndn,
+8:u11:flow,
+11:u12:balance,
+10:u14:highly,
+7:u22:bal,
+8:u23:bala,
+7:u32:nce,
+8:u33:ance,
+6:u00:or,
+7:u01:NDN,
+8:u02:flow,
+11:u03:balance,
+10:u05:highly,
+12:u06:variable,
+8:u07:data,
+10:u08:object,
+16:u09:balance/with,
+15:u0A:with/highly,
+19:u0B:highly/variable,
+16:u0C:flow/balance,
+8:u10:flow,
+11:u11:balance,
+10:u13:highly,
+12:u14:variable,
+7:u00:NDN,
+8:u01:flow,
+11:u02:balance,
+10:u04:highly,
+12:u05:variable,
+8:u06:data,
+10:u07:object,
+9:u08:sizes,
+15:u09:with/highly,
+19:u0A:highly/variable,
+17:u0B:variable/data,
+16:u0C:balance/with,
+12:u0D:highly/0,
+11:u10:balance,
+10:u12:highly,
+12:u13:variable,
+8:u14:data,
+7:u22:hig,
+8:u23:high,
+7:u32:hly,
+8:u33:ghly,
+8:u00:flow,
+11:u01:balance,
+10:u03:highly,
+12:u04:variable,
+8:u05:data,
+10:u06:object,
+9:u07:sizes,
+9:u08:draft,
+19:u09:highly/variable,
+17:u0A:variable/data,
+15:u0B:data/object,
+15:u0C:with/highly,
+14:u0D:variable/0,
+10:u11:highly,
+12:u12:variable,
+8:u13:data,
+10:u14:object,
+7:u22:var,
+8:u23:vari,
+11:u00:balance,
+10:u02:highly,
+12:u03:variable,
+8:u04:data,
+10:u05:object,
+9:u06:sizes,
+9:u07:draft,
+17:u09:variable/data,
+15:u0A:data/object,
+16:u0B:object/sizes,
+19:u0C:highly/variable,
+10:u0D:data/0,
+10:u10:highly,
+12:u11:variable,
+8:u12:data,
+10:u13:object,
+9:u14:sizes,
+8:u23:data,
+8:u33:data,
+10:u01:highly,
+12:u02:variable,
+8:u03:data,
+10:u04:object,
+9:u05:sizes,
+9:u06:draft,
+8:u08:oran,
+15:u09:data/object,
+16:u0A:object/sizes,
+15:u0B:sizes/draft,
+17:u0C:variable/data,
+12:u0D:object/0,
+12:u10:variable,
+8:u11:data,
+10:u12:object,
+9:u13:sizes,
+7:u22:obj,
+8:u23:obje,
+10:u00:highly,
+12:u01:variable,
+8:u02:data,
+10:u03:object,
+9:u04:sizes,
+9:u05:draft,
+8:u07:oran,
+16:u09:object/sizes,
+15:u0A:sizes/draft,
+11:u0B:draft/-,
+15:u0C:data/object,
+11:u0D:sizes/0,
+8:u10:data,
+10:u11:object,
+9:u12:sizes,
+6:u21:si,
+7:u22:siz,
+8:u23:size,
+7:u32:zes,
+8:u33:izes,
+12:u00:variable,
+8:u01:data,
+10:u02:object,
+9:u03:sizes,
+9:u04:draft,
+8:u06:oran,
+9:u08:icnrg,
+15:u09:sizes/draft,
+11:u0A:draft/-,
+10:u0B:-/oran,
+16:u0C:object/sizes,
+11:u0D:draft/0,
+10:u10:object,
+9:u11:sizes,
+6:u21:dr,
+7:u22:dra,
+8:u23:draf,
+8:u00:data,
+10:u01:object,
+9:u02:sizes,
+9:u03:draft,
+8:u05:oran,
+9:u07:icnrg,
+11:u09:draft/-,
+10:u0A:-/oran,
+10:u0B:oran/-,
+15:u0C:sizes/draft,
+9:u10:sizes,
+10:u00:object,
+9:u01:sizes,
+9:u02:draft,
+8:u04:oran,
+9:u06:icnrg,
+15:u08:flowbalance,
+10:u09:-/oran,
+10:u0A:oran/-,
+11:u0B:-/icnrg,
+11:u0C:draft/-,
+10:u0D:oran/1,
+7:u22:ora,
+8:u23:oran,
+8:u33:oran,
+9:u00:sizes,
+9:u01:draft,
+8:u03:oran,
+9:u05:icnrg,
+15:u07:flowbalance,
+10:u09:oran/-,
+11:u0A:-/icnrg,
+11:u0B:icnrg/-,
+10:u0C:-/oran,
+9:u00:draft,
+8:u02:oran,
+9:u04:icnrg,
+15:u06:flowbalance,
+6:u08:01,
+11:u09:-/icnrg,
+11:u0A:icnrg/-,
+17:u0B:-/flowbalance,
+10:u0C:oran/-,
+11:u0D:icnrg/1,
+15:u14:flowbalance,
+6:u21:ic,
+7:u22:icn,
+8:u23:icnr,
+7:u32:nrg,
+8:u33:cnrg,
+8:u01:oran,
+9:u03:icnrg,
+15:u05:flowbalance,
+6:u07:01,
+11:u09:icnrg/-,
+17:u0A:-/flowbalance,
+17:u0B:flowbalance/-,
+11:u0C:-/icnrg,
+15:u13:flowbalance,
+8:u00:oran,
+9:u02:icnrg,
+15:u04:flowbalance,
+6:u06:01,
+10:u08:Deeply,
+17:u09:-/flowbalance,
+17:u0A:flowbalance/-,
+8:u0B:-/01,
+11:u0C:icnrg/-,
+17:u0D:flowbalance/1,
+15:u12:flowbalance,
+6:u14:01,
+9:u01:icnrg,
+15:u03:flowbalance,
+6:u05:01,
+10:u07:Deeply,
+12:u08:embedded,
+17:u09:flowbalance/-,
+8:u0A:-/01,
+15:u0B:01/Abstract,
+17:u0C:-/flowbalance,
+15:u11:flowbalance,
+6:u13:01,
+9:u00:icnrg,
+15:u02:flowbalance,
+6:u04:01,
+10:u06:Deeply,
+12:u07:embedded,
+8:u09:-/01,
+15:u0A:01/Abstract,
+19:u0B:Abstract/Deeply,
+17:u0C:flowbalance/-,
+8:u0D:01/1,
+15:u10:flowbalance,
+6:u12:01,
+10:u14:deeply,
+5:u20:0,
+6:u21:01,
+6:u22:01,
+6:u23:01,
+6:u32:01,
+6:u33:01,
+15:u01:flowbalance,
+6:u03:01,
+10:u05:Deeply,
+12:u06:embedded,
+8:u08:some,
+15:u09:01/Abstract,
+19:u0A:Abstract/Deeply,
+19:u0B:Deeply/embedded,
+8:u0C:-/01,
+6:u11:01,
+10:u13:deeply,
+12:u14:embedded,
+15:u00:flowbalance,
+6:u02:01,
+10:u04:Deeply,
+12:u05:embedded,
+8:u07:some,
+7:u08:ICN,
+19:u09:Abstract/Deeply,
+19:u0A:Deeply/embedded,
+15:u0B:embedded/in,
+15:u0C:01/Abstract,
+12:u0D:Deeply/0,
+6:u10:01,
+10:u12:deeply,
+12:u13:embedded,
+7:u22:Dee,
+8:u23:Deep,
+7:u32:ply,
+8:u33:eply,
+6:u01:01,
+10:u03:Deeply,
+12:u04:embedded,
+8:u06:some,
+7:u07:ICN,
+17:u08:architectures,
+19:u09:Deeply/embedded,
+15:u0A:embedded/in,
+11:u0B:in/some,
+19:u0C:Abstract/Deeply,
+14:u0D:embedded/0,
+10:u11:deeply,
+12:u12:embedded,
+8:u14:some,
+6:u21:em,
+7:u22:emb,
+8:u23:embe,
+8:u33:dded,
+6:u00:01,
+10:u02:Deeply,
+12:u03:embedded,
+8:u05:some,
+7:u06:ICN,
+17:u07:architectures,
+15:u09:embedded/in,
+11:u0A:in/some,
+12:u0B:some/ICN,
+19:u0C:Deeply/embedded,
+10:u10:deeply,
+12:u11:embedded,
+8:u13:some,
+7:u14:icn,
+10:u01:Deeply,
+12:u02:embedded,
+8:u04:some,
+7:u05:ICN,
+17:u06:architectures,
+14:u08:especially,
+11:u09:in/some,
+12:u0A:some/ICN,
+21:u0B:ICN/architectures,
+15:u0C:embedded/in,
+10:u0D:some/0,
+12:u10:embedded,
+8:u12:some,
+7:u13:icn,
+17:u14:architectures,
+6:u21:so,
+7:u22:som,
+8:u23:some,
+7:u32:ome,
+8:u33:some,
+10:u00:Deeply,
+12:u01:embedded,
+8:u03:some,
+7:u04:ICN,
+17:u05:architectures,
+14:u07:especially,
+9:u08:Named,
+12:u09:some/ICN,
+21:u0A:ICN/architectures,
+19:u0B:architectures/,,
+11:u0C:in/some,
+9:u0D:ICN/0,
+8:u11:some,
+7:u12:icn,
+17:u13:architectures,
+7:u23:ICN,
+6:u31:CN,
+7:u32:ICN,
+7:u33:ICN,
+12:u00:embedded,
+8:u02:some,
+7:u03:ICN,
+17:u04:architectures,
+14:u06:especially,
+9:u07:Named,
+8:u08:Data,
+21:u09:ICN/architectures,
+19:u0A:architectures/,,
+16:u0B:,/especially,
+12:u0C:some/ICN,
+19:u0D:architectures/0,
+8:u10:some,
+7:u11:icn,
+17:u12:architectures,
+14:u14:especially,
+8:u33:ures,
+8:u01:some,
+7:u02:ICN,
+17:u03:architectures,
+14:u05:especially,
+9:u06:Named,
+8:u07:Data,
+19:u09:architectures/,,
+16:u0A:,/especially,
+20:u0B:especially/Named,
+21:u0C:ICN/architectures,
+7:u10:icn,
+17:u11:architectures,
+14:u13:especially,
+9:u14:named,
+8:u00:some,
+7:u01:ICN,
+17:u02:architectures,
+14:u04:especially,
+9:u05:Named,
+8:u06:Data,
+16:u09:,/especially,
+20:u0A:especially/Named,
+14:u0B:Named/Data,
+19:u0C:architectures/,,
+16:u0D:especially/0,
+17:u10:architectures,
+14:u12:especially,
+9:u13:named,
+6:u21:es,
+7:u22:esp,
+8:u23:espe,
+8:u33:ally,
+7:u00:ICN,
+17:u01:architectures,
+14:u03:especially,
+9:u04:Named,
+8:u05:Data,
+20:u09:especially/Named,
+14:u0A:Named/Data,
+19:u0B:Data/Networking,
+16:u0C:,/especially,
+11:u0D:Named/0,
+14:u11:especially,
+9:u12:named,
+6:u21:Na,
+7:u22:Nam,
+8:u23:Name,
+8:u33:amed,
+17:u00:architectures,
+14:u02:especially,
+9:u03:Named,
+8:u04:Data,
+14:u09:Named/Data,
+19:u0A:Data/Networking,
+20:u0C:especially/Named,
+10:u0D:Data/0,
+14:u10:especially,
+9:u11:named,
+6:u21:Da,
+7:u22:Dat,
+8:u23:Data,
+8:u33:Data,
+14:u01:especially,
+9:u02:Named,
+8:u03:Data,
+19:u09:Data/Networking,
+9:u0B:(/NDN,
+14:u0C:Named/Data,
+9:u10:named,
+14:u00:especially,
+9:u01:Named,
+8:u02:Data,
+9:u0A:(/NDN,
+9:u0B:NDN/),
+19:u0C:Data/Networking,
+9:u00:Named,
+8:u01:Data,
+9:u09:(/NDN,
+9:u0A:NDN/),
+9:u0B:)/and,
+8:u00:Data,
+9:u09:NDN/),
+9:u0A:)/and,
+9:u0C:(/NDN,
+9:u09:)/and,
+9:u0C:NDN/),
+9:u0C:)/and,
+10:u08:notion,
+10:u07:notion,
+10:u0B:is/the,
+10:u06:notion,
+10:u0A:is/the,
+14:u0B:the/notion,
+10:u14:notion,
+10:u05:notion,
+10:u09:is/the,
+14:u0A:the/notion,
+13:u0B:notion/of,
+10:u13:notion,
+10:u04:notion,
+14:u09:the/notion,
+13:u0A:notion/of,
+11:u0B:of/flow,
+10:u0C:is/the,
+12:u0D:notion/0,
+10:u12:notion,
+8:u23:noti,
+10:u03:notion,
+13:u09:notion/of,
+11:u0A:of/flow,
+14:u0C:the/notion,
+10:u11:notion,
+10:u02:notion,
+12:u08:captures,
+11:u09:of/flow,
+13:u0B:balance/.,
+13:u0C:notion/of,
+10:u10:notion,
+10:u01:notion,
+12:u07:captures,
+13:u0A:balance/.,
+11:u0C:of/flow,
+10:u00:notion,
+12:u06:captures,
+8:u08:idea,
+13:u09:balance/.,
+17:u0B:This/captures,
+12:u14:captures,
+12:u05:captures,
+8:u07:idea,
+17:u0A:This/captures,
+16:u0B:captures/the,
+13:u0C:balance/.,
+12:u13:captures,
+12:u04:captures,
+8:u06:idea,
+9:u08:there,
+17:u09:This/captures,
+16:u0A:captures/the,
+12:u0B:the/idea,
+14:u0D:captures/0,
+12:u12:captures,
+8:u14:idea,
+7:u22:cap,
+8:u23:capt,
+12:u03:captures,
+8:u05:idea,
+9:u07:there,
+16:u09:captures/the,
+12:u0A:the/idea,
+13:u0B:idea/that,
+17:u0C:This/captures,
+12:u11:captures,
+8:u13:idea,
+12:u02:captures,
+8:u04:idea,
+9:u06:there,
+12:u09:the/idea,
+13:u0A:idea/that,
+14:u0B:that/there,
+16:u0C:captures/the,
+10:u0D:idea/0,
+12:u10:captures,
+8:u12:idea,
+9:u14:there,
+8:u23:idea,
+6:u31:ea,
+7:u32:dea,
+8:u33:idea,
+12:u01:captures,
+8:u03:idea,
+9:u05:there,
+13:u09:idea/that,
+14:u0A:that/there,
+12:u0B:there/is,
+12:u0C:the/idea,
+8:u11:idea,
+9:u13:there,
+12:u00:captures,
+8:u02:idea,
+9:u04:there,
+14:u09:that/there,
+12:u0A:there/is,
+13:u0C:idea/that,
+11:u0D:there/0,
+8:u10:idea,
+9:u12:there,
+8:u23:ther,
+7:u32:ere,
+8:u33:here,
+8:u01:idea,
+9:u03:there,
+12:u09:there/is,
+9:u0B:a/one,
+14:u0C:that/there,
+9:u11:there,
+8:u00:idea,
+9:u02:there,
+9:u0A:a/one,
+9:u0B:one/-,
+12:u0C:there/is,
+9:u10:there,
+9:u01:there,
+9:u09:a/one,
+9:u0A:one/-,
+8:u0B:-/to,
+9:u00:there,
+18:u08:correspondence,
+9:u09:one/-,
+8:u0A:-/to,
+8:u0B:to/-,
+9:u0C:a/one,
+18:u07:correspondence,
+11:u08:between,
+8:u09:-/to,
+8:u0A:to/-,
+9:u0B:-/one,
+9:u0C:one/-,
+8:u0D:to/1,
+18:u06:correspondence,
+11:u07:between,
+8:u09:to/-,
+9:u0A:-/one,
+22:u0B:one/correspondence,
+8:u0C:-/to,
+18:u14:correspondence,
+18:u05:correspondence,
+11:u06:between,
+9:u09:-/one,
+22:u0A:one/correspondence,
+26:u0B:correspondence/between,
+8:u0C:to/-,
+9:u0D:one/1,
+18:u13:correspondence,
+11:u14:between,
+18:u04:correspondence,
+11:u05:between,
+22:u09:one/correspondence,
+26:u0A:correspondence/between,
+20:u0B:between/requests,
+9:u0C:-/one,
+20:u0D:correspondence/0,
+18:u12:correspondence,
+11:u13:between,
+8:u23:corr,
+8:u33:ence,
+18:u03:correspondence,
+11:u04:between,
+26:u09:correspondence/between,
+20:u0A:between/requests,
+16:u0B:requests/for,
+22:u0C:one/correspondence,
+13:u0D:between/0,
+18:u11:correspondence,
+11:u12:between,
+7:u22:bet,
+8:u23:betw,
+6:u31:en,
+7:u32:een,
+8:u33:ween,
+18:u02:correspondence,
+11:u03:between,
+11:u08:carried,
+20:u09:between/requests,
+16:u0A:requests/for,
+12:u0B:for/data,
+26:u0C:correspondence/between,
+18:u10:correspondence,
+11:u11:between,
+18:u01:correspondence,
+11:u02:between,
+11:u07:carried,
+16:u09:requests/for,
+12:u0A:for/data,
+10:u0B:data/,,
+20:u0C:between/requests,
+11:u10:between,
+18:u00:correspondence,
+11:u01:between,
+11:u06:carried,
+12:u09:for/data,
+10:u0A:data/,,
+13:u0B:,/carried,
+16:u0C:requests/for,
+11:u14:carried,
+11:u00:between,
+11:u05:carried,
+10:u09:data/,,
+13:u0A:,/carried,
+14:u0B:carried/in,
+12:u0C:for/data,
+11:u13:carried,
+11:u04:carried,
+13:u09:,/carried,
+14:u0A:carried/in,
+15:u0B:in/Interest,
+10:u0C:data/,,
+13:u0D:carried/0,
+11:u12:carried,
+8:u23:carr,
+8:u33:ried,
+11:u03:carried,
+14:u09:carried/in,
+15:u0A:in/Interest,
+21:u0B:Interest/messages,
+13:u0C:,/carried,
+11:u11:carried,
+11:u02:carried,
+15:u09:in/Interest,
+21:u0A:Interest/messages,
+14:u0B:messages/,,
+14:u0C:carried/in,
+11:u10:carried,
+11:u01:carried,
+21:u09:Interest/messages,
+14:u0A:messages/,,
+15:u0C:in/Interest,
+11:u00:carried,
+14:u09:messages/,,
+21:u0C:Interest/messages,
+17:u0B:the/responses,
+14:u0C:messages/,,
+13:u08:requested,
+17:u0A:the/responses,
+18:u0B:responses/with,
+13:u07:requested,
+17:u09:the/responses,
+18:u0A:responses/with,
+12:u0B:with/the,
+13:u06:requested,
+18:u09:responses/with,
+12:u0A:with/the,
+17:u0B:the/requested,
+17:u0C:the/responses,
+13:u14:requested,
+13:u05:requested,
+12:u09:with/the,
+17:u0A:the/requested,
+18:u0B:requested/data,
+18:u0C:responses/with,
+13:u13:requested,
+13:u04:requested,
+17:u09:the/requested,
+18:u0A:requested/data,
+12:u0C:with/the,
+15:u0D:requested/0,
+13:u12:requested,
+8:u33:sted,
+13:u03:requested,
+18:u09:requested/data,
+12:u0B:object/,,
+17:u0C:the/requested,
+13:u11:requested,
+13:u02:requested,
+12:u0A:object/,,
+18:u0C:requested/data,
+13:u10:requested,
+13:u01:requested,
+12:u09:object/,,
+13:u00:requested,
+11:u0B:in/Data,
+12:u0C:object/,,
+11:u0A:in/Data,
+17:u0B:Data/messages,
+11:u09:in/Data,
+17:u0A:Data/messages,
+14:u0B:messages/.,
+17:u09:Data/messages,
+14:u0A:messages/.,
+11:u0C:in/Data,
+10:u08:number,
+14:u09:messages/.,
+12:u0B:This/has,
+17:u0C:Data/messages,
+10:u07:number,
+12:u0A:This/has,
+9:u0B:has/a,
+14:u0C:messages/.,
+10:u06:number,
+12:u09:This/has,
+9:u0A:has/a,
+12:u0B:a/number,
+10:u14:number,
+10:u05:number,
+14:u08:beneficial,
+9:u09:has/a,
+12:u0A:a/number,
+13:u0B:number/of,
+12:u0C:This/has,
+10:u13:number,
+10:u04:number,
+14:u07:beneficial,
+14:u08:properties,
+12:u09:a/number,
+13:u0A:number/of,
+13:u0B:of/highly,
+9:u0C:has/a,
+12:u0D:number/0,
+10:u12:number,
+6:u21:nu,
+7:u22:num,
+8:u23:numb,
+7:u32:ber,
+8:u33:mber,
+10:u03:number,
+14:u06:beneficial,
+14:u07:properties,
+13:u09:number/of,
+13:u0A:of/highly,
+21:u0B:highly/beneficial,
+12:u0C:a/number,
+10:u11:number,
+14:u14:beneficial,
+10:u02:number,
+14:u05:beneficial,
+14:u06:properties,
+13:u09:of/highly,
+21:u0A:highly/beneficial,
+25:u0B:beneficial/properties,
+13:u0C:number/of,
+10:u10:number,
+14:u13:beneficial,
+14:u14:properties,
+10:u01:number,
+14:u04:beneficial,
+14:u05:properties,
+21:u09:highly/beneficial,
+25:u0A:beneficial/properties,
+18:u0B:properties/for,
+13:u0C:of/highly,
+16:u0D:beneficial/0,
+14:u12:beneficial,
+14:u13:properties,
+7:u22:ben,
+8:u23:bene,
+7:u32:ial,
+8:u33:cial,
+10:u00:number,
+14:u03:beneficial,
+14:u04:properties,
+14:u08:congestion,
+25:u09:beneficial/properties,
+18:u0A:properties/for,
+12:u0B:for/flow,
+21:u0C:highly/beneficial,
+16:u0D:properties/0,
+14:u11:beneficial,
+14:u12:properties,
+8:u23:prop,
+14:u02:beneficial,
+14:u03:properties,
+14:u07:congestion,
+18:u09:properties/for,
+12:u0A:for/flow,
+12:u0B:flow/and,
+25:u0C:beneficial/properties,
+14:u10:beneficial,
+14:u11:properties,
+14:u01:beneficial,
+14:u02:properties,
+14:u06:congestion,
+12:u09:for/flow,
+12:u0A:flow/and,
+18:u0B:and/congestion,
+18:u0C:properties/for,
+14:u10:properties,
+14:u14:congestion,
+14:u00:beneficial,
+14:u01:properties,
+14:u05:congestion,
+12:u08:networks,
+12:u09:flow/and,
+18:u0A:and/congestion,
+22:u0B:congestion/control,
+12:u0C:for/flow,
+14:u13:congestion,
+14:u00:properties,
+14:u04:congestion,
+12:u07:networks,
+18:u09:and/congestion,
+22:u0A:congestion/control,
+14:u0B:control/in,
+12:u0C:flow/and,
+16:u0D:congestion/0,
+14:u12:congestion,
+8:u23:cong,
+14:u03:congestion,
+12:u06:networks,
+22:u09:congestion/control,
+14:u0A:control/in,
+15:u0B:in/networks,
+18:u0C:and/congestion,
+14:u11:congestion,
+12:u14:networks,
+14:u02:congestion,
+12:u05:networks,
+8:u08:well,
+14:u09:control/in,
+15:u0A:in/networks,
+14:u0B:networks/,,
+22:u0C:congestion/control,
+14:u10:congestion,
+12:u13:networks,
+14:u01:congestion,
+12:u04:networks,
+8:u07:well,
+15:u09:in/networks,
+14:u0A:networks/,,
+14:u0C:control/in,
+14:u0D:networks/0,
+12:u12:networks,
+6:u31:ks,
+7:u32:rks,
+8:u33:orks,
+14:u00:congestion,
+12:u03:networks,
+8:u06:well,
+14:u09:networks/,,
+11:u0B:as/well,
+15:u0C:in/networks,
+12:u11:networks,
+8:u14:well,
+12:u02:networks,
+8:u05:well,
+13:u08:desirable,
+11:u0A:as/well,
+11:u0B:well/as,
+14:u0C:networks/,,
+12:u10:networks,
+8:u13:well,
+12:u01:networks,
+8:u04:well,
+13:u07:desirable,
+12:u08:security,
+11:u09:as/well,
+11:u0A:well/as,
+11:u0B:as/some,
+10:u0D:well/0,
+8:u12:well,
+6:u21:we,
+7:u22:wel,
+8:u23:well,
+7:u32:ell,
+8:u33:well,
+12:u00:networks,
+8:u03:well,
+13:u06:desirable,
+12:u07:security,
+11:u09:well/as,
+11:u0A:as/some,
+18:u0B:some/desirable,
+11:u0C:as/well,
+8:u11:well,
+13:u14:desirable,
+8:u02:well,
+13:u05:desirable,
+12:u06:security,
+11:u09:as/some,
+18:u0A:some/desirable,
+22:u0B:desirable/security,
+11:u0C:well/as,
+8:u10:well,
+13:u13:desirable,
+12:u14:security,
+8:u01:well,
+13:u04:desirable,
+12:u05:security,
+7:u08:For,
+18:u09:some/desirable,
+22:u0A:desirable/security,
+23:u0B:security/properties,
+11:u0C:as/some,
+15:u0D:desirable/0,
+13:u12:desirable,
+12:u13:security,
+8:u23:desi,
+8:u00:well,
+13:u03:desirable,
+12:u04:security,
+7:u07:For,
+11:u08:example,
+22:u09:desirable/security,
+23:u0A:security/properties,
+16:u0B:properties/.,
+18:u0C:some/desirable,
+14:u0D:security/0,
+13:u11:desirable,
+12:u12:security,
+7:u22:sec,
+8:u23:secu,
+13:u02:desirable,
+12:u03:security,
+7:u06:For,
+11:u07:example,
+23:u09:security/properties,
+16:u0A:properties/.,
+9:u0B:./For,
+22:u0C:desirable/security,
+13:u10:desirable,
+12:u11:security,
+13:u01:desirable,
+12:u02:security,
+7:u05:For,
+11:u06:example,
+11:u08:neither,
+16:u09:properties/.,
+9:u0A:./For,
+15:u0B:For/example,
+23:u0C:security/properties,
+12:u10:security,
+11:u14:example,
+13:u00:desirable,
+12:u01:security,
+7:u04:For,
+11:u05:example,
+11:u07:neither,
+14:u08:legitimate,
+9:u09:./For,
+15:u0A:For/example,
+13:u0B:example/,,
+16:u0C:properties/.,
+9:u0D:For/0,
+11:u13:example,
+7:u23:For,
+7:u32:For,
+7:u33:For,
+12:u00:security,
+7:u03:For,
+11:u04:example,
+11:u06:neither,
+14:u07:legitimate,
+9:u08:users,
+15:u09:For/example,
+13:u0A:example/,,
+13:u0B:,/neither,
+9:u0C:./For,
+13:u0D:example/0,
+11:u12:example,
+11:u14:neither,
+7:u32:ple,
+8:u33:mple,
+7:u02:For,
+11:u03:example,
+11:u05:neither,
+14:u06:legitimate,
+9:u07:users,
+7:u08:nor,
+13:u09:example/,,
+13:u0A:,/neither,
+22:u0B:neither/legitimate,
+15:u0C:For/example,
+11:u11:example,
+11:u13:neither,
+14:u14:legitimate,
+7:u01:For,
+11:u02:example,
+11:u04:neither,
+14:u05:legitimate,
+9:u06:users,
+7:u07:nor,
+13:u08:attackers,
+13:u09:,/neither,
+22:u0A:neither/legitimate,
+20:u0B:legitimate/users,
+13:u0C:example/,,
+13:u0D:neither/0,
+11:u10:example,
+11:u12:neither,
+14:u13:legitimate,
+9:u14:users,
+7:u22:nei,
+8:u23:neit,
+8:u33:ther,
+7:u00:For,
+11:u01:example,
+11:u03:neither,
+14:u04:legitimate,
+9:u05:users,
+7:u06:nor,
+13:u07:attackers,
+22:u09:neither/legitimate,
+20:u0A:legitimate/users,
+13:u0B:users/nor,
+13:u0C:,/neither,
+16:u0D:legitimate/0,
+11:u11:neither,
+14:u12:legitimate,
+9:u13:users,
+7:u14:nor,
+7:u22:leg,
+8:u23:legi,
+8:u33:mate,
+11:u00:example,
+11:u02:neither,
+14:u03:legitimate,
+9:u04:users,
+7:u05:nor,
+13:u06:attackers,
+8:u08:able,
+20:u09:legitimate/users,
+13:u0A:users/nor,
+17:u0B:nor/attackers,
+22:u0C:neither/legitimate,
+11:u0D:users/0,
+11:u10:neither,
+14:u11:legitimate,
+9:u12:users,
+7:u13:nor,
+13:u14:attackers,
+8:u23:user,
+7:u32:ers,
+8:u33:sers,
+11:u01:neither,
+14:u02:legitimate,
+9:u03:users,
+7:u04:nor,
+13:u05:attackers,
+8:u07:able,
+13:u09:users/nor,
+17:u0A:nor/attackers,
+17:u0B:attackers/are,
+20:u0C:legitimate/users,
+9:u0D:nor/0,
+14:u10:legitimate,
+9:u11:users,
+7:u12:nor,
+13:u13:attackers,
+7:u22:nor,
+7:u23:nor,
+7:u32:nor,
+7:u33:nor,
+11:u00:neither,
+14:u01:legitimate,
+9:u02:users,
+7:u03:nor,
+13:u04:attackers,
+8:u06:able,
+10:u08:inject,
+17:u09:nor/attackers,
+17:u0A:attackers/are,
+12:u0B:are/able,
+13:u0C:users/nor,
+15:u0D:attackers/0,
+9:u10:users,
+7:u11:nor,
+13:u12:attackers,
+8:u14:able,
+7:u22:att,
+8:u23:atta,
+8:u33:kers,
+14:u00:legitimate,
+9:u01:users,
+7:u02:nor,
+13:u03:attackers,
+8:u05:able,
+10:u07:inject,
+9:u08:large,
+17:u09:attackers/are,
+12:u0A:are/able,
+11:u0B:able/to,
+17:u0C:nor/attackers,
+7:u10:nor,
+13:u11:attackers,
+8:u13:able,
+9:u00:users,
+7:u01:nor,
+13:u02:attackers,
+8:u04:able,
+10:u06:inject,
+9:u07:large,
+11:u08:amounts,
+12:u09:are/able,
+11:u0A:able/to,
+13:u0B:to/inject,
+17:u0C:attackers/are,
+10:u0D:able/0,
+13:u10:attackers,
+8:u12:able,
+10:u14:inject,
+7:u22:abl,
+8:u23:able,
+7:u00:nor,
+13:u01:attackers,
+8:u03:able,
+10:u05:inject,
+9:u06:large,
+11:u07:amounts,
+11:u09:able/to,
+13:u0A:to/inject,
+16:u0B:inject/large,
+12:u0C:are/able,
+8:u11:able,
+10:u13:inject,
+9:u14:large,
+13:u00:attackers,
+8:u02:able,
+10:u04:inject,
+9:u05:large,
+11:u06:amounts,
+6:u08:un,
+13:u09:to/inject,
+16:u0A:inject/large,
+17:u0B:large/amounts,
+11:u0C:able/to,
+12:u0D:inject/0,
+8:u10:able,
+10:u12:inject,
+9:u13:large,
+11:u14:amounts,
+7:u22:inj,
+8:u23:inje,
+8:u01:able,
+10:u03:inject,
+9:u04:large,
+11:u05:amounts,
+6:u07:un,
+16:u09:inject/large,
+17:u0A:large/amounts,
+14:u0B:amounts/of,
+13:u0C:to/inject,
+11:u0D:large/0,
+10:u11:inject,
+9:u12:large,
+11:u13:amounts,
+6:u21:la,
+7:u22:lar,
+8:u23:larg,
+7:u32:rge,
+8:u33:arge,
+8:u00:able,
+10:u02:inject,
+9:u03:large,
+11:u04:amounts,
+6:u06:un,
+17:u09:large/amounts,
+14:u0A:amounts/of,
+9:u0B:of/un,
+16:u0C:inject/large,
+13:u0D:amounts/0,
+10:u10:inject,
+9:u11:large,
+11:u12:amounts,
+6:u14:un,
+8:u23:amou,
+8:u33:unts,
+10:u01:inject,
+9:u02:large,
+11:u03:amounts,
+6:u05:un,
+14:u09:amounts/of,
+9:u0A:of/un,
+8:u0B:un/-,
+17:u0C:large/amounts,
+9:u10:large,
+11:u11:amounts,
+6:u13:un,
+10:u00:inject,
+9:u01:large,
+11:u02:amounts,
+6:u04:un,
+8:u08:into,
+9:u09:of/un,
+8:u0A:un/-,
+15:u0B:-/requested,
+14:u0C:amounts/of,
+8:u0D:un/0,
+11:u10:amounts,
+6:u12:un,
+6:u21:un,
+6:u22:un,
+6:u23:un,
+6:u31:un,
+6:u32:un,
+6:u33:un,
+9:u00:large,
+11:u01:amounts,
+6:u03:un,
+8:u07:into,
+8:u09:un/-,
+15:u0A:-/requested,
+9:u0C:of/un,
+6:u11:un,
+11:u00:amounts,
+6:u02:un,
+8:u06:into,
+15:u09:-/requested,
+13:u0B:data/into,
+8:u0C:un/-,
+15:u0D:requested/1,
+6:u10:un,
+8:u14:into,
+6:u01:un,
+8:u05:into,
+13:u0A:data/into,
+12:u0B:into/the,
+15:u0C:-/requested,
+8:u13:into,
+6:u00:un,
+8:u04:into,
+12:u08:Existing,
+13:u09:data/into,
+12:u0A:into/the,
+15:u0B:the/network,
+10:u0D:into/0,
+8:u12:into,
+8:u23:into,
+7:u32:nto,
+8:u33:into,
+8:u03:into,
+12:u07:Existing,
+12:u09:into/the,
+15:u0A:the/network,
+13:u0B:network/.,
+13:u0C:data/into,
+8:u11:into,
+8:u02:into,
+12:u06:Existing,
+15:u09:the/network,
+13:u0A:network/.,
+14:u0B:./Existing,
+12:u0C:into/the,
+8:u10:into,
+12:u14:existing,
+8:u01:into,
+12:u05:Existing,
+14:u08:approaches,
+13:u09:network/.,
+14:u0A:./Existing,
+23:u0B:Existing/congestion,
+15:u0C:the/network,
+12:u13:existing,
+8:u00:into,
+12:u04:Existing,
+14:u07:approaches,
+11:u08:however,
+14:u09:./Existing,
+23:u0A:Existing/congestion,
+13:u0C:network/.,
+14:u0D:Existing/0,
+12:u12:existing,
+7:u22:Exi,
+8:u23:Exis,
+12:u03:Existing,
+14:u06:approaches,
+11:u07:however,
+10:u08:cannot,
+23:u09:Existing/congestion,
+22:u0B:control/approaches,
+14:u0C:./Existing,
+12:u11:existing,
+14:u14:approaches,
+12:u02:Existing,
+14:u05:approaches,
+11:u06:however,
+10:u07:cannot,
+8:u08:deal,
+22:u0A:control/approaches,
+22:u0B:approaches/however,
+23:u0C:Existing/congestion,
+12:u10:existing,
+14:u13:approaches,
+11:u14:however,
+12:u01:Existing,
+14:u04:approaches,
+11:u05:however,
+10:u06:cannot,
+8:u07:deal,
+15:u08:effectively,
+22:u09:control/approaches,
+22:u0A:approaches/however,
+18:u0B:however/cannot,
+16:u0D:approaches/0,
+14:u12:approaches,
+11:u13:however,
+10:u14:cannot,
+8:u33:ches,
+12:u00:Existing,
+14:u03:approaches,
+11:u04:however,
+10:u05:cannot,
+8:u06:deal,
+15:u07:effectively,
+22:u09:approaches/however,
+18:u0A:however/cannot,
+15:u0B:cannot/deal,
+22:u0C:control/approaches,
+13:u0D:however/0,
+14:u11:approaches,
+11:u12:however,
+10:u13:cannot,
+8:u14:deal,
+8:u23:howe,
+8:u33:ever,
+14:u02:approaches,
+11:u03:however,
+10:u04:cannot,
+8:u05:deal,
+15:u06:effectively,
+18:u09:however/cannot,
+15:u0A:cannot/deal,
+20:u0B:deal/effectively,
+22:u0C:approaches/however,
+12:u0D:cannot/0,
+14:u10:approaches,
+11:u11:however,
+10:u12:cannot,
+8:u13:deal,
+15:u14:effectively,
+8:u23:cann,
+8:u33:nnot,
+14:u01:approaches,
+11:u02:however,
+10:u03:cannot,
+8:u04:deal,
+15:u05:effectively,
+10:u08:widely,
+15:u09:cannot/deal,
+20:u0A:deal/effectively,
+20:u0B:effectively/with,
+18:u0C:however/cannot,
+10:u0D:deal/0,
+11:u10:however,
+10:u11:cannot,
+8:u12:deal,
+15:u13:effectively,
+7:u22:dea,
+8:u23:deal,
+7:u32:eal,
+8:u33:deal,
+14:u00:approaches,
+11:u01:however,
+10:u02:cannot,
+8:u03:deal,
+15:u04:effectively,
+10:u07:widely,
+11:u08:varying,
+20:u09:deal/effectively,
+20:u0A:effectively/with,
+10:u0B:with/a,
+15:u0C:cannot/deal,
+17:u0D:effectively/0,
+10:u10:cannot,
+8:u11:deal,
+15:u12:effectively,
+7:u32:ely,
+8:u33:vely,
+11:u00:however,
+10:u01:cannot,
+8:u02:deal,
+15:u03:effectively,
+10:u06:widely,
+11:u07:varying,
+7:u08:MTU,
+20:u09:effectively/with,
+10:u0A:with/a,
+12:u0B:a/widely,
+20:u0C:deal/effectively,
+8:u10:deal,
+15:u11:effectively,
+10:u14:widely,
+10:u00:cannot,
+8:u01:deal,
+15:u02:effectively,
+10:u05:widely,
+11:u06:varying,
+7:u07:MTU,
+10:u09:with/a,
+12:u0A:a/widely,
+18:u0B:widely/varying,
+20:u0C:effectively/with,
+15:u10:effectively,
+10:u13:widely,
+11:u14:varying,
+8:u00:deal,
+15:u01:effectively,
+10:u04:widely,
+11:u05:varying,
+7:u06:MTU,
+12:u09:a/widely,
+18:u0A:widely/varying,
+15:u0B:varying/MTU,
+10:u0C:with/a,
+12:u0D:widely/0,
+10:u12:widely,
+11:u13:varying,
+7:u14:mtu,
+8:u33:dely,
+15:u00:effectively,
+10:u03:widely,
+11:u04:varying,
+7:u05:MTU,
+18:u09:widely/varying,
+15:u0A:varying/MTU,
+10:u0B:MTU/of,
+12:u0C:a/widely,
+13:u0D:varying/0,
+10:u11:widely,
+11:u12:varying,
+7:u13:mtu,
+8:u23:vary,
+8:u33:ying,
+10:u02:widely,
+11:u03:varying,
+7:u04:MTU,
+15:u09:varying/MTU,
+10:u0A:MTU/of,
+10:u0B:of/ICN,
+18:u0C:widely/varying,
+9:u0D:MTU/0,
+10:u10:widely,
+11:u11:varying,
+7:u12:mtu,
+6:u21:MT,
+7:u22:MTU,
+7:u23:MTU,
+5:u30:U,
+6:u31:TU,
+7:u32:MTU,
+7:u33:MTU,
+10:u01:widely,
+11:u02:varying,
+7:u03:MTU,
+10:u09:MTU/of,
+10:u0A:of/ICN,
+12:u0B:ICN/data,
+15:u0C:varying/MTU,
+11:u10:varying,
+7:u11:mtu,
+10:u00:widely,
+11:u01:varying,
+7:u02:MTU,
+9:u08:since,
+10:u09:of/ICN,
+12:u0A:ICN/data,
+17:u0B:data/messages,
+10:u0C:MTU/of,
+7:u10:mtu,
+11:u00:varying,
+7:u01:MTU,
+9:u07:since,
+12:u09:ICN/data,
+17:u0A:data/messages,
+10:u0C:of/ICN,
+7:u00:MTU,
+9:u06:since,
+13:u08:protocols,
+17:u09:data/messages,
+11:u0B:,/since,
+12:u0C:ICN/data,
+9:u14:since,
+9:u05:since,
+13:u07:protocols,
+9:u08:allow,
+11:u0A:,/since,
+13:u0B:since/the,
+17:u0C:data/messages,
+9:u13:since,
+9:u04:since,
+13:u06:protocols,
+9:u07:allow,
+11:u09:,/since,
+13:u0A:since/the,
+17:u0B:the/protocols,
+11:u0D:since/0,
+9:u12:since,
+13:u14:protocols,
+7:u22:sin,
+8:u23:sinc,
+8:u33:ince,
+9:u03:since,
+13:u05:protocols,
+9:u06:allow,
+11:u08:dynamic,
+13:u09:since/the,
+17:u0A:the/protocols,
+19:u0B:protocols/allow,
+11:u0C:,/since,
+9:u11:since,
+13:u13:protocols,
+9:u14:allow,
+9:u02:since,
+13:u04:protocols,
+9:u05:allow,
+11:u07:dynamic,
+9:u08:range,
+17:u09:the/protocols,
+19:u0A:protocols/allow,
+11:u0B:allow/a,
+13:u0C:since/the,
+15:u0D:protocols/0,
+9:u10:since,
+13:u12:protocols,
+9:u13:allow,
+6:u31:ls,
+7:u32:ols,
+8:u33:cols,
+9:u01:since,
+13:u03:protocols,
+9:u04:allow,
+11:u06:dynamic,
+9:u07:range,
+19:u09:protocols/allow,
+11:u0A:allow/a,
+13:u0B:a/dynamic,
+17:u0C:the/protocols,
+11:u0D:allow/0,
+13:u11:protocols,
+9:u12:allow,
+11:u14:dynamic,
+7:u22:all,
+8:u23:allo,
+9:u00:since,
+13:u02:protocols,
+9:u03:allow,
+11:u05:dynamic,
+9:u06:range,
+11:u09:allow/a,
+13:u0A:a/dynamic,
+17:u0B:dynamic/range,
+19:u0C:protocols/allow,
+13:u10:protocols,
+9:u11:allow,
+11:u13:dynamic,
+9:u14:range,
+13:u01:protocols,
+9:u02:allow,
+11:u04:dynamic,
+9:u05:range,
+13:u09:a/dynamic,
+17:u0A:dynamic/range,
+12:u0B:range/of,
+11:u0C:allow/a,
+13:u0D:dynamic/0,
+9:u10:allow,
+11:u12:dynamic,
+9:u13:range,
+6:u21:dy,
+7:u22:dyn,
+8:u23:dyna,
+7:u32:mic,
+8:u33:amic,
+13:u00:protocols,
+9:u01:allow,
+11:u03:dynamic,
+9:u04:range,
+7:u08:64K,
+17:u09:dynamic/range,
+12:u0A:range/of,
+8:u0B:of/1,
+13:u0C:a/dynamic,
+11:u0D:range/0,
+11:u11:dynamic,
+9:u12:range,
+6:u21:ra,
+7:u22:ran,
+8:u23:rang,
+7:u32:nge,
+8:u33:ange,
+9:u00:allow,
+11:u02:dynamic,
+9:u03:range,
+7:u07:64K,
+9:u08:bytes,
+12:u09:range/of,
+8:u0A:of/1,
+7:u0B:1/-,
+17:u0C:dynamic/range,
+11:u10:dynamic,
+9:u11:range,
+11:u01:dynamic,
+9:u02:range,
+7:u06:64K,
+9:u07:bytes,
+8:u09:of/1,
+7:u0A:1/-,
+9:u0B:-/64K,
+12:u0C:range/of,
+9:u10:range,
+7:u14:64k,
+11:u00:dynamic,
+9:u01:range,
+7:u05:64K,
+9:u06:bytes,
+9:u08:Since,
+7:u09:1/-,
+9:u0A:-/64K,
+13:u0B:64K/bytes,
+8:u0C:of/1,
+7:u13:64k,
+9:u14:bytes,
+9:u00:range,
+7:u04:64K,
+9:u05:bytes,
+9:u07:Since,
+9:u09:-/64K,
+13:u0A:64K/bytes,
+11:u0B:bytes/.,
+7:u0C:1/-,
+9:u0D:64K/1,
+7:u12:64k,
+9:u13:bytes,
+6:u21:64,
+7:u22:64K,
+7:u23:64K,
+5:u30:K,
+6:u31:4K,
+7:u32:64K,
+7:u33:64K,
+7:u03:64K,
+9:u04:bytes,
+9:u06:Since,
+13:u09:64K/bytes,
+11:u0A:bytes/.,
+11:u0B:./Since,
+9:u0C:-/64K,
+11:u0D:bytes/0,
+7:u11:64k,
+9:u12:bytes,
+7:u22:byt,
+8:u23:byte,
+8:u33:ytes,
+7:u02:64K,
+9:u03:bytes,
+9:u05:Since,
+11:u09:bytes/.,
+11:u0A:./Since,
+18:u0B:Since/Interest,
+13:u0C:64K/bytes,
+7:u10:64k,
+9:u11:bytes,
+7:u01:64K,
+9:u02:bytes,
+9:u04:Since,
+11:u09:./Since,
+18:u0A:Since/Interest,
+11:u0C:bytes/.,
+11:u0D:Since/0,
+9:u10:bytes,
+6:u21:Si,
+7:u22:Sin,
+8:u23:Sinc,
+7:u00:64K,
+9:u01:bytes,
+9:u03:Since,
+18:u09:Since/Interest,
+16:u0B:messages/are,
+11:u0C:./Since,
+9:u00:bytes,
+9:u02:Since,
+12:u08:allocate,
+16:u0A:messages/are,
+12:u0B:are/used,
+18:u0C:Since/Interest,
+9:u01:Since,
+12:u07:allocate,
+16:u09:messages/are,
+12:u0A:are/used,
+11:u0B:used/to,
+9:u00:Since,
+12:u06:allocate,
+11:u08:reverse,
+12:u09:are/used,
+11:u0A:used/to,
+15:u0B:to/allocate,
+16:u0C:messages/are,
+12:u14:allocate,
+12:u05:allocate,
+11:u07:reverse,
+8:u08:link,
+11:u09:used/to,
+15:u0A:to/allocate,
+16:u0B:allocate/the,
+12:u0C:are/used,
+12:u13:allocate,
+12:u04:allocate,
+11:u06:reverse,
+8:u07:link,
+13:u08:bandwidth,
+15:u09:to/allocate,
+16:u0A:allocate/the,
+15:u0B:the/reverse,
+11:u0C:used/to,
+14:u0D:allocate/0,
+12:u12:allocate,
+11:u14:reverse,
+8:u33:cate,
+12:u03:allocate,
+11:u05:reverse,
+8:u06:link,
+13:u07:bandwidth,
+16:u09:allocate/the,
+15:u0A:the/reverse,
+16:u0B:reverse/link,
+15:u0C:to/allocate,
+12:u11:allocate,
+11:u13:reverse,
+8:u14:link,
+12:u02:allocate,
+11:u04:reverse,
+8:u05:link,
+13:u06:bandwidth,
+13:u08:returning,
+15:u09:the/reverse,
+16:u0A:reverse/link,
+18:u0B:link/bandwidth,
+16:u0C:allocate/the,
+13:u0D:reverse/0,
+12:u10:allocate,
+11:u12:reverse,
+8:u13:link,
+13:u14:bandwidth,
+8:u23:reve,
+7:u32:rse,
+8:u33:erse,
+12:u01:allocate,
+11:u03:reverse,
+8:u04:link,
+13:u05:bandwidth,
+13:u07:returning,
+16:u09:reverse/link,
+18:u0A:link/bandwidth,
+17:u0B:bandwidth/for,
+15:u0C:the/reverse,
+10:u0D:link/0,
+11:u11:reverse,
+8:u12:link,
+13:u13:bandwidth,
+7:u22:lin,
+8:u23:link,
+6:u31:nk,
+7:u32:ink,
+8:u33:link,
+12:u00:allocate,
+11:u02:reverse,
+8:u03:link,
+13:u04:bandwidth,
+13:u06:returning,
+18:u09:link/bandwidth,
+17:u0A:bandwidth/for,
+17:u0B:for/returning,
+16:u0C:reverse/link,
+15:u0D:bandwidth/0,
+11:u10:reverse,
+8:u11:link,
+13:u12:bandwidth,
+13:u14:returning,
+7:u22:ban,
+8:u23:band,
+7:u32:dth,
+8:u33:idth,
+11:u01:reverse,
+8:u02:link,
+13:u03:bandwidth,
+13:u05:returning,
+17:u09:bandwidth/for,
+17:u0A:for/returning,
+18:u0B:returning/Data,
+18:u0C:link/bandwidth,
+8:u10:link,
+13:u11:bandwidth,
+13:u13:returning,
+11:u00:reverse,
+8:u01:link,
+13:u02:bandwidth,
+13:u04:returning,
+17:u09:for/returning,
+18:u0A:returning/Data,
+10:u0B:Data/,,
+17:u0C:bandwidth/for,
+15:u0D:returning/0,
+13:u10:bandwidth,
+13:u12:returning,
+8:u00:link,
+13:u01:bandwidth,
+13:u03:returning,
+18:u09:returning/Data,
+10:u0A:Data/,,
+11:u0B:,/there,
+17:u0C:for/returning,
+13:u11:returning,
+13:u00:bandwidth,
+13:u02:returning,
+15:u08:uncertainty,
+10:u09:Data/,,
+11:u0A:,/there,
+18:u0C:returning/Data,
+13:u10:returning,
+13:u01:returning,
+15:u07:uncertainty,
+11:u09:,/there,
+12:u0B:is/large,
+10:u0C:Data/,,
+13:u00:returning,
+15:u06:uncertainty,
+12:u0A:is/large,
+21:u0B:large/uncertainty,
+11:u0C:,/there,
+15:u14:uncertainty,
+15:u05:uncertainty,
+12:u09:is/large,
+21:u0A:large/uncertainty,
+18:u0B:uncertainty/in,
+15:u13:uncertainty,
+15:u04:uncertainty,
+21:u09:large/uncertainty,
+18:u0A:uncertainty/in,
+10:u0B:in/how,
+12:u0C:is/large,
+17:u0D:uncertainty/0,
+15:u12:uncertainty,
+7:u22:unc,
+8:u23:unce,
+7:u32:nty,
+8:u33:inty,
+15:u03:uncertainty,
+18:u09:uncertainty/in,
+10:u0A:in/how,
+21:u0C:large/uncertainty,
+15:u11:uncertainty,
+15:u02:uncertainty,
+10:u09:in/how,
+18:u0C:uncertainty/in,
+15:u10:uncertainty,
+15:u01:uncertainty,
+17:u0B:allocate/that,
+10:u0C:in/how,
+15:u00:uncertainty,
+17:u08:Unfortunately,
+17:u0A:allocate/that,
+18:u0B:that/bandwidth,
+17:u07:Unfortunately,
+17:u09:allocate/that,
+18:u0A:that/bandwidth,
+15:u0B:bandwidth/.,
+17:u06:Unfortunately,
+18:u09:that/bandwidth,
+15:u0A:bandwidth/.,
+19:u0B:./Unfortunately,
+17:u0C:allocate/that,
+17:u14:unfortunately,
+17:u05:Unfortunately,
+15:u09:bandwidth/.,
+19:u0A:./Unfortunately,
+19:u0B:Unfortunately/,,
+18:u0C:that/bandwidth,
+17:u13:unfortunately,
+17:u04:Unfortunately,
+19:u09:./Unfortunately,
+19:u0A:Unfortunately/,,
+13:u0B:,/current,
+15:u0C:bandwidth/.,
+19:u0D:Unfortunately/0,
+17:u12:unfortunately,
+7:u22:Unf,
+8:u23:Unfo,
+8:u33:tely,
+17:u03:Unfortunately,
+11:u08:schemes,
+19:u09:Unfortunately/,,
+13:u0A:,/current,
+22:u0B:current/congestion,
+19:u0C:./Unfortunately,
+17:u11:unfortunately,
+17:u02:Unfortunately,
+11:u07:schemes,
+13:u09:,/current,
+22:u0A:current/congestion,
+19:u0C:Unfortunately/,,
+17:u10:unfortunately,
+17:u01:Unfortunately,
+11:u06:schemes,
+22:u09:current/congestion,
+19:u0B:control/schemes,
+13:u0C:,/current,
+11:u14:schemes,
+17:u00:Unfortunately,
+11:u05:schemes,
+19:u0A:control/schemes,
+14:u0B:schemes/in,
+22:u0C:current/congestion,
+11:u13:schemes,
+11:u04:schemes,
+19:u09:control/schemes,
+14:u0A:schemes/in,
+11:u0B:in/CCNx,
+13:u0D:schemes/0,
+11:u12:schemes,
+6:u21:sc,
+7:u22:sch,
+8:u23:sche,
+7:u32:mes,
+8:u33:emes,
+11:u03:schemes,
+8:u08:only,
+14:u09:schemes/in,
+11:u0A:in/CCNx,
+12:u0B:CCNx/and,
+19:u0C:control/schemes,
+11:u11:schemes,
+11:u02:schemes,
+8:u07:only,
+9:u08:count,
+11:u09:in/CCNx,
+12:u0A:CCNx/and,
+11:u0B:and/NDN,
+14:u0C:schemes/in,
+11:u10:schemes,
+11:u01:schemes,
+8:u06:only,
+9:u07:count,
+12:u09:CCNx/and,
+11:u0A:and/NDN,
+12:u0B:NDN/only,
+11:u0C:in/CCNx,
+8:u14:only,
+11:u00:schemes,
+8:u05:only,
+9:u06:count,
+11:u09:and/NDN,
+12:u0A:NDN/only,
+14:u0B:only/count,
+12:u0C:CCNx/and,
+8:u13:only,
+9:u14:count,
+8:u04:only,
+9:u05:count,
+12:u09:NDN/only,
+14:u0A:only/count,
+18:u0B:count/Interest,
+11:u0C:and/NDN,
+10:u0D:only/0,
+8:u12:only,
+9:u13:count,
+7:u22:onl,
+8:u23:only,
+7:u32:nly,
+8:u33:only,
+8:u03:only,
+9:u04:count,
+14:u09:only/count,
+18:u0A:count/Interest,
+12:u0C:NDN/only,
+11:u0D:count/0,
+8:u11:only,
+9:u12:count,
+7:u22:cou,
+8:u23:coun,
+7:u32:unt,
+8:u33:ount,
+8:u02:only,
+9:u03:count,
+6:u08:no,
+18:u09:count/Interest,
+14:u0C:only/count,
+8:u10:only,
+9:u11:count,
+8:u01:only,
+9:u02:count,
+6:u07:no,
+18:u0C:count/Interest,
+9:u10:count,
+8:u00:only,
+9:u01:count,
+6:u06:no,
+11:u0B:have/no,
+6:u14:no,
+9:u00:count,
+6:u05:no,
+8:u08:much,
+11:u0A:have/no,
+11:u0B:no/idea,
+6:u13:no,
+6:u04:no,
+8:u07:much,
+11:u09:have/no,
+11:u0A:no/idea,
+12:u0B:idea/how,
+8:u0D:no/0,
+6:u12:no,
+6:u22:no,
+6:u23:no,
+6:u31:no,
+6:u32:no,
+6:u33:no,
+6:u03:no,
+8:u06:much,
+11:u09:no/idea,
+12:u0A:idea/how,
+12:u0B:how/much,
+11:u0C:have/no,
+6:u11:no,
+8:u14:much,
+6:u02:no,
+8:u05:much,
+12:u08:involved,
+12:u09:idea/how,
+12:u0A:how/much,
+13:u0B:much/data,
+11:u0C:no/idea,
+6:u10:no,
+8:u13:much,
+6:u01:no,
+8:u04:much,
+12:u07:involved,
+12:u09:how/much,
+13:u0A:much/data,
+11:u0B:data/is,
+12:u0C:idea/how,
+10:u0D:much/0,
+8:u12:much,
+6:u21:mu,
+7:u22:muc,
+8:u23:much,
+7:u32:uch,
+8:u33:much,
+6:u00:no,
+8:u03:much,
+12:u06:involved,
+9:u08:could,
+13:u09:much/data,
+11:u0A:data/is,
+15:u0B:is/involved,
+12:u0C:how/much,
+8:u11:much,
+12:u14:involved,
+8:u02:much,
+12:u05:involved,
+9:u07:could,
+11:u08:congest,
+11:u09:data/is,
+15:u0A:is/involved,
+17:u0B:involved/that,
+13:u0C:much/data,
+8:u10:much,
+12:u13:involved,
+8:u01:much,
+12:u04:involved,
+9:u06:could,
+11:u07:congest,
+15:u09:is/involved,
+17:u0A:involved/that,
+14:u0B:that/could,
+11:u0C:data/is,
+14:u0D:involved/0,
+12:u12:involved,
+9:u14:could,
+7:u22:inv,
+8:u23:invo,
+8:u33:lved,
+8:u00:much,
+12:u03:involved,
+9:u05:could,
+11:u06:congest,
+11:u08:inverse,
+17:u09:involved/that,
+14:u0A:that/could,
+17:u0B:could/congest,
+15:u0C:is/involved,
+12:u11:involved,
+9:u13:could,
+11:u14:congest,
+12:u02:involved,
+9:u04:could,
+11:u05:congest,
+11:u07:inverse,
+14:u09:that/could,
+17:u0A:could/congest,
+15:u0B:congest/the,
+17:u0C:involved/that,
+11:u0D:could/0,
+12:u10:involved,
+9:u12:could,
+11:u13:congest,
+8:u23:coul,
+6:u31:ld,
+7:u32:uld,
+8:u33:ould,
+12:u01:involved,
+9:u03:could,
+11:u04:congest,
+11:u06:inverse,
+17:u09:could/congest,
+15:u0A:congest/the,
+15:u0B:the/inverse,
+14:u0C:that/could,
+13:u0D:congest/0,
+9:u11:could,
+11:u12:congest,
+11:u14:inverse,
+8:u33:gest,
+12:u00:involved,
+9:u02:could,
+11:u03:congest,
+11:u05:inverse,
+15:u09:congest/the,
+15:u0A:the/inverse,
+16:u0B:inverse/link,
+17:u0C:could/congest,
+9:u10:could,
+11:u11:congest,
+11:u13:inverse,
+9:u01:could,
+11:u02:congest,
+11:u04:inverse,
+15:u09:the/inverse,
+16:u0A:inverse/link,
+10:u0B:link/.,
+15:u0C:congest/the,
+13:u0D:inverse/0,
+11:u10:congest,
+11:u12:inverse,
+8:u23:inve,
+9:u00:could,
+11:u01:congest,
+11:u03:inverse,
+12:u08:proposes,
+16:u09:inverse/link,
+10:u0A:link/.,
+15:u0C:the/inverse,
+11:u11:inverse,
+11:u00:congest,
+11:u02:inverse,
+12:u07:proposes,
+10:u09:link/.,
+16:u0C:inverse/link,
+11:u10:inverse,
+11:u01:inverse,
+12:u06:proposes,
+10:u08:method,
+21:u0B:document/proposes,
+10:u0C:link/.,
+12:u14:proposes,
+11:u00:inverse,
+12:u05:proposes,
+10:u07:method,
+21:u0A:document/proposes,
+14:u0B:proposes/a,
+12:u13:proposes,
+12:u04:proposes,
+10:u06:method,
+12:u08:maintain,
+21:u09:document/proposes,
+14:u0A:proposes/a,
+12:u0B:a/method,
+14:u0D:proposes/0,
+12:u12:proposes,
+10:u14:method,
+8:u33:oses,
+12:u03:proposes,
+10:u05:method,
+12:u07:maintain,
+14:u09:proposes/a,
+12:u0A:a/method,
+13:u0B:method/to,
+21:u0C:document/proposes,
+12:u11:proposes,
+10:u13:method,
+12:u02:proposes,
+10:u04:method,
+12:u06:maintain,
+12:u09:a/method,
+13:u0A:method/to,
+15:u0B:to/maintain,
+14:u0C:proposes/a,
+12:u0D:method/0,
+12:u10:proposes,
+10:u12:method,
+12:u14:maintain,
+7:u22:met,
+8:u23:meth,
+7:u32:hod,
+8:u33:thod,
+12:u01:proposes,
+10:u03:method,
+12:u05:maintain,
+13:u09:method/to,
+15:u0A:to/maintain,
+17:u0B:maintain/flow,
+12:u0C:a/method,
+10:u11:method,
+12:u13:maintain,
+12:u00:proposes,
+10:u02:method,
+12:u04:maintain,
+17:u08:accommodating,
+15:u09:to/maintain,
+17:u0A:maintain/flow,
+13:u0C:method/to,
+14:u0D:maintain/0,
+10:u10:method,
+12:u12:maintain,
+7:u22:mai,
+8:u23:main,
+10:u01:method,
+12:u03:maintain,
+17:u07:accommodating,
+17:u09:maintain/flow,
+14:u0B:balance/by,
+15:u0C:to/maintain,
+12:u11:maintain,
+10:u00:method,
+12:u02:maintain,
+17:u06:accommodating,
+14:u0A:balance/by,
+20:u0B:by/accommodating,
+17:u0C:maintain/flow,
+12:u10:maintain,
+17:u14:accommodating,
+12:u01:maintain,
+17:u05:accommodating,
+14:u09:balance/by,
+20:u0A:by/accommodating,
+21:u0B:accommodating/the,
+17:u13:accommodating,
+12:u00:maintain,
+17:u04:accommodating,
+20:u09:by/accommodating,
+21:u0A:accommodating/the,
+12:u0B:the/wide,
+14:u0C:balance/by,
+19:u0D:accommodating/0,
+17:u12:accommodating,
+7:u22:acc,
+8:u23:acco,
+17:u03:accommodating,
+21:u09:accommodating/the,
+12:u0A:the/wide,
+16:u0B:wide/dynamic,
+20:u0C:by/accommodating,
+17:u11:accommodating,
+17:u02:accommodating,
+12:u09:the/wide,
+16:u0A:wide/dynamic,
+21:u0C:accommodating/the,
+17:u10:accommodating,
+17:u01:accommodating,
+16:u09:wide/dynamic,
+12:u0B:range/in,
+12:u0C:the/wide,
+17:u00:accommodating,
+12:u0A:range/in,
+16:u0C:wide/dynamic,
+12:u09:range/in,
+16:u0B:Data/message,
+16:u0A:Data/message,
+15:u0B:message/MTU,
+12:u0C:range/in,
+16:u09:Data/message,
+15:u0A:message/MTU,
+9:u0B:MTU/.,
+15:u09:message/MTU,
+9:u0A:MTU/.,
+16:u0C:Data/message,
+9:u09:MTU/.,
+15:u0C:message/MTU,
+9:u0C:MTU/.,
+17:u0B:This/Internet,
+17:u0A:This/Internet,
+13:u08:submitted,
+17:u09:This/Internet,
+13:u07:submitted,
+12:u0B:Draft/is,
+17:u0C:This/Internet,
+13:u06:submitted,
+12:u0A:Draft/is,
+16:u0B:is/submitted,
+13:u14:submitted,
+13:u05:submitted,
+15:u08:conformance,
+12:u09:Draft/is,
+16:u0A:is/submitted,
+16:u0B:submitted/in,
+13:u13:submitted,
+13:u04:submitted,
+15:u07:conformance,
+16:u09:is/submitted,
+16:u0A:submitted/in,
+11:u0B:in/full,
+12:u0C:Draft/is,
+15:u0D:submitted/0,
+13:u12:submitted,
+8:u23:subm,
+8:u33:tted,
+13:u03:submitted,
+15:u06:conformance,
+16:u09:submitted/in,
+11:u0A:in/full,
+20:u0B:full/conformance,
+16:u0C:is/submitted,
+13:u11:submitted,
+15:u14:conformance,
+13:u02:submitted,
+15:u05:conformance,
+14:u08:provisions,
+11:u09:in/full,
+20:u0A:full/conformance,
+20:u0B:conformance/with,
+16:u0C:submitted/in,
+13:u10:submitted,
+15:u13:conformance,
+13:u01:submitted,
+15:u04:conformance,
+14:u07:provisions,
+20:u09:full/conformance,
+20:u0A:conformance/with,
+11:u0C:in/full,
+17:u0D:conformance/0,
+15:u12:conformance,
+8:u23:conf,
+13:u00:submitted,
+15:u03:conformance,
+14:u06:provisions,
+20:u09:conformance/with,
+18:u0B:the/provisions,
+20:u0C:full/conformance,
+15:u11:conformance,
+15:u02:conformance,
+14:u05:provisions,
+18:u0A:the/provisions,
+17:u0B:provisions/of,
+20:u0C:conformance/with,
+15:u10:conformance,
+15:u01:conformance,
+14:u04:provisions,
+18:u09:the/provisions,
+17:u0A:provisions/of,
+10:u0B:of/BCP,
+16:u0D:provisions/0,
+15:u00:conformance,
+14:u03:provisions,
+17:u09:provisions/of,
+10:u0A:of/BCP,
+18:u0C:the/provisions,
+14:u02:provisions,
+6:u08:79,
+10:u09:of/BCP,
+17:u0C:provisions/of,
+14:u01:provisions,
+6:u07:79,
+11:u0B:and/BCP,
+10:u0C:of/BCP,
+14:u00:provisions,
+6:u06:79,
+11:u0A:and/BCP,
+10:u0B:BCP/79,
+6:u14:79,
+6:u05:79,
+11:u09:and/BCP,
+10:u0A:BCP/79,
+8:u0B:79/.,
+6:u13:79,
+6:u04:79,
+10:u08:Drafts,
+10:u09:BCP/79,
+8:u0A:79/.,
+14:u0B:./Internet,
+11:u0C:and/BCP,
+8:u0D:79/0,
+6:u12:79,
+6:u21:79,
+6:u22:79,
+6:u23:79,
+6:u31:79,
+6:u32:79,
+6:u33:79,
+6:u03:79,
+10:u07:Drafts,
+8:u09:79/.,
+14:u0A:./Internet,
+10:u0C:BCP/79,
+6:u11:79,
+6:u02:79,
+10:u06:Drafts,
+11:u08:working,
+14:u09:./Internet,
+12:u0B:-/Drafts,
+8:u0C:79/.,
+6:u10:79,
+10:u14:drafts,
+6:u01:79,
+10:u05:Drafts,
+11:u07:working,
+12:u0A:-/Drafts,
+14:u0B:Drafts/are,
+14:u0C:./Internet,
+10:u13:drafts,
+6:u00:79,
+10:u04:Drafts,
+11:u06:working,
+12:u09:-/Drafts,
+14:u0A:Drafts/are,
+15:u0B:are/working,
+12:u0D:Drafts/1,
+10:u12:drafts,
+11:u14:working,
+7:u32:fts,
+8:u33:afts,
+10:u03:Drafts,
+11:u05:working,
+14:u09:Drafts/are,
+15:u0A:are/working,
+21:u0B:working/documents,
+12:u0C:-/Drafts,
+10:u11:drafts,
+11:u13:working,
+10:u02:Drafts,
+11:u04:working,
+15:u09:are/working,
+21:u0A:working/documents,
+16:u0B:documents/of,
+14:u0C:Drafts/are,
+13:u0D:working/0,
+10:u10:drafts,
+11:u12:working,
+7:u22:wor,
+8:u23:work,
+10:u01:Drafts,
+11:u03:working,
+15:u08:Engineering,
+21:u09:working/documents,
+16:u0A:documents/of,
+15:u0C:are/working,
+11:u11:working,
+10:u00:Drafts,
+11:u02:working,
+15:u07:Engineering,
+16:u09:documents/of,
+21:u0C:working/documents,
+11:u10:working,
+11:u01:working,
+15:u06:Engineering,
+24:u0B:Internet/Engineering,
+16:u0C:documents/of,
+15:u14:engineering,
+11:u00:working,
+15:u05:Engineering,
+24:u0A:Internet/Engineering,
+20:u0B:Engineering/Task,
+15:u13:engineering,
+15:u04:Engineering,
+24:u09:Internet/Engineering,
+20:u0A:Engineering/Task,
+17:u0D:Engineering/0,
+15:u12:engineering,
+6:u21:En,
+7:u22:Eng,
+8:u23:Engi,
+8:u33:ring,
+15:u03:Engineering,
+20:u09:Engineering/Task,
+24:u0C:Internet/Engineering,
+15:u11:engineering,
+15:u02:Engineering,
+10:u0B:(/IETF,
+20:u0C:Engineering/Task,
+15:u10:engineering,
+15:u01:Engineering,
+8:u08:Note,
+10:u0A:(/IETF,
+10:u0B:IETF/),
+15:u00:Engineering,
+8:u07:Note,
+10:u09:(/IETF,
+10:u0A:IETF/),
+8:u06:Note,
+9:u08:other,
+10:u09:IETF/),
+10:u0B:./Note,
+10:u0C:(/IETF,
+8:u14:note,
+8:u05:Note,
+9:u07:other,
+10:u08:groups,
+10:u0A:./Note,
+13:u0B:Note/that,
+10:u0C:IETF/),
+8:u13:note,
+8:u04:Note,
+9:u06:other,
+10:u07:groups,
+10:u09:./Note,
+13:u0A:Note/that,
+14:u0B:that/other,
+10:u0D:Note/0,
+8:u12:note,
+9:u14:other,
+8:u23:Note,
+7:u32:ote,
+8:u33:Note,
+8:u03:Note,
+9:u05:other,
+10:u06:groups,
+13:u09:Note/that,
+14:u0A:that/other,
+16:u0B:other/groups,
+10:u0C:./Note,
+8:u11:note,
+9:u13:other,
+10:u14:groups,
+8:u02:Note,
+9:u04:other,
+10:u05:groups,
+14:u08:distribute,
+14:u09:that/other,
+16:u0A:other/groups,
+14:u0B:groups/may,
+13:u0C:Note/that,
+11:u0D:other/0,
+8:u10:note,
+9:u12:other,
+10:u13:groups,
+6:u21:ot,
+7:u22:oth,
+8:u23:othe,
+8:u01:Note,
+9:u03:other,
+10:u04:groups,
+14:u07:distribute,
+16:u09:other/groups,
+14:u0A:groups/may,
+12:u0B:may/also,
+14:u0C:that/other,
+12:u0D:groups/0,
+9:u11:other,
+10:u12:groups,
+7:u32:ups,
+8:u33:oups,
+8:u00:Note,
+9:u02:other,
+10:u03:groups,
+14:u06:distribute,
+14:u09:groups/may,
+12:u0A:may/also,
+19:u0B:also/distribute,
+16:u0C:other/groups,
+9:u10:other,
+10:u11:groups,
+14:u14:distribute,
+9:u01:other,
+10:u02:groups,
+14:u05:distribute,
+12:u09:may/also,
+19:u0A:also/distribute,
+22:u0B:distribute/working,
+14:u0C:groups/may,
+10:u10:groups,
+14:u13:distribute,
+9:u00:other,
+10:u01:groups,
+14:u04:distribute,
+19:u09:also/distribute,
+22:u0A:distribute/working,
+12:u0C:may/also,
+16:u0D:distribute/0,
+14:u12:distribute,
+6:u21:di,
+7:u22:dis,
+8:u23:dist,
+7:u32:ute,
+8:u33:bute,
+10:u00:groups,
+14:u03:distribute,
+22:u09:distribute/working,
+16:u0B:documents/as,
+19:u0C:also/distribute,
+14:u11:distribute,
+14:u02:distribute,
+16:u0A:documents/as,
+15:u0B:as/Internet,
+22:u0C:distribute/working,
+14:u10:distribute,
+14:u01:distribute,
+16:u09:documents/as,
+15:u0A:as/Internet,
+14:u00:distribute,
+15:u09:as/Internet,
+16:u0C:documents/as,
+8:u08:list,
+12:u0B:Drafts/.,
+15:u0C:as/Internet,
+8:u07:list,
+12:u0A:Drafts/.,
+8:u06:list,
+12:u09:Drafts/.,
+12:u0B:The/list,
+8:u14:list,
+8:u05:list,
+12:u0A:The/list,
+11:u0B:list/of,
+12:u0C:Drafts/.,
+8:u13:list,
+8:u04:list,
+12:u09:The/list,
+11:u0A:list/of,
+14:u0B:of/current,
+10:u0D:list/0,
+8:u12:list,
+7:u22:lis,
+8:u23:list,
+7:u32:ist,
+8:u33:list,
+8:u03:list,
+11:u09:list/of,
+14:u0A:of/current,
+20:u0B:current/Internet,
+12:u0C:The/list,
+8:u11:list,
+8:u02:list,
+14:u09:of/current,
+20:u0A:current/Internet,
+11:u0C:list/of,
+8:u10:list,
+8:u01:list,
+20:u09:current/Internet,
+14:u0C:of/current,
+8:u00:list,
+13:u0B:Drafts/is,
+20:u0C:current/Internet,
+13:u0A:Drafts/is,
+9:u0B:is/at,
+13:u09:Drafts/is,
+9:u0A:is/at,
+9:u09:is/at,
+13:u0C:Drafts/is,
+15:u08:datatracker,
+9:u0C:is/at,
+15:u07:datatracker,
+15:u06:datatracker,
+17:u0B://datatracker,
+15:u14:datatracker,
+15:u05:datatracker,
+17:u0A://datatracker,
+17:u0B:datatracker/.,
+15:u13:datatracker,
+15:u04:datatracker,
+17:u09://datatracker,
+17:u0A:datatracker/.,
+17:u0D:datatracker/0,
+15:u12:datatracker,
+7:u32:ker,
+8:u33:cker,
+15:u03:datatracker,
+17:u09:datatracker/.,
+17:u0C://datatracker,
+15:u11:datatracker,
+15:u02:datatracker,
+10:u08:drafts,
+17:u0C:datatracker/.,
+15:u10:datatracker,
+15:u01:datatracker,
+10:u07:drafts,
+15:u00:datatracker,
+10:u06:drafts,
+12:u0B://drafts,
+10:u05:drafts,
+12:u0A://drafts,
+12:u0B:drafts//,
+10:u04:drafts,
+12:u09://drafts,
+12:u0A:drafts//,
+13:u0B://current,
+12:u0D:drafts/0,
+10:u03:drafts,
+12:u09:drafts//,
+13:u0A://current,
+13:u0B:current//,
+12:u0C://drafts,
+10:u02:drafts,
+13:u09://current,
+13:u0A:current//,
+7:u0B://.,
+12:u0C:drafts//,
+10:u01:drafts,
+13:u09:current//,
+7:u0A://.,
+13:u0C://current,
+10:u00:drafts,
+7:u09://.,
+13:u0C:current//,
+7:u0C://.,
+9:u08:valid,
+13:u0B:are/draft,
+9:u07:valid,
+13:u0A:are/draft,
+19:u0B:draft/documents,
+9:u06:valid,
+13:u09:are/draft,
+19:u0A:draft/documents,
+19:u0B:documents/valid,
+9:u14:valid,
+9:u05:valid,
+11:u08:maximum,
+19:u09:draft/documents,
+19:u0A:documents/valid,
+13:u0B:valid/for,
+13:u0C:are/draft,
+9:u13:valid,
+9:u04:valid,
+11:u07:maximum,
+19:u09:documents/valid,
+13:u0A:valid/for,
+9:u0B:for/a,
+19:u0C:draft/documents,
+11:u0D:valid/0,
+9:u12:valid,
+8:u23:vali,
+6:u31:id,
+7:u32:lid,
+8:u33:alid,
+9:u03:valid,
+11:u06:maximum,
+7:u08:six,
+13:u09:valid/for,
+9:u0A:for/a,
+13:u0B:a/maximum,
+19:u0C:documents/valid,
+9:u11:valid,
+11:u14:maximum,
+9:u02:valid,
+11:u05:maximum,
+7:u07:six,
+10:u08:months,
+9:u09:for/a,
+13:u0A:a/maximum,
+14:u0B:maximum/of,
+13:u0C:valid/for,
+9:u10:valid,
+11:u13:maximum,
+9:u01:valid,
+11:u04:maximum,
+7:u06:six,
+10:u07:months,
+13:u09:a/maximum,
+14:u0A:maximum/of,
+10:u0B:of/six,
+9:u0C:for/a,
+13:u0D:maximum/0,
+11:u12:maximum,
+7:u14:six,
+7:u22:max,
+8:u23:maxi,
+6:u31:um,
+7:u32:mum,
+8:u33:imum,
+9:u00:valid,
+11:u03:maximum,
+7:u05:six,
+10:u06:months,
+14:u09:maximum/of,
+10:u0A:of/six,
+14:u0B:six/months,
+13:u0C:a/maximum,
+11:u11:maximum,
+7:u13:six,
+10:u14:months,
+11:u02:maximum,
+7:u04:six,
+10:u05:months,
+10:u09:of/six,
+14:u0A:six/months,
+14:u0B:months/and,
+14:u0C:maximum/of,
+9:u0D:six/0,
+11:u10:maximum,
+7:u12:six,
+10:u13:months,
+7:u22:six,
+7:u23:six,
+6:u31:ix,
+7:u32:six,
+7:u33:six,
+11:u01:maximum,
+7:u03:six,
+10:u04:months,
+11:u08:updated,
+14:u09:six/months,
+14:u0A:months/and,
+11:u0B:and/may,
+10:u0C:of/six,
+12:u0D:months/0,
+7:u11:six,
+10:u12:months,
+7:u22:mon,
+8:u23:mont,
+6:u31:hs,
+7:u32:ths,
+8:u33:nths,
+11:u00:maximum,
+7:u02:six,
+10:u03:months,
+11:u07:updated,
+14:u09:months/and,
+11:u0A:and/may,
+14:u0C:six/months,
+7:u10:six,
+10:u11:months,
+7:u01:six,
+10:u02:months,
+11:u06:updated,
+12:u08:replaced,
+11:u09:and/may,
+14:u0B:be/updated,
+14:u0C:months/and,
+10:u10:months,
+11:u14:updated,
+7:u00:six,
+10:u01:months,
+11:u05:updated,
+12:u07:replaced,
+14:u0A:be/updated,
+13:u0B:updated/,,
+11:u0C:and/may,
+11:u13:updated,
+10:u00:months,
+11:u04:updated,
+12:u06:replaced,
+14:u09:be/updated,
+13:u0A:updated/,,
+14:u0B:,/replaced,
+13:u0D:updated/0,
+11:u12:updated,
+12:u14:replaced,
+6:u21:up,
+7:u22:upd,
+8:u23:upda,
+11:u03:updated,
+12:u05:replaced,
+13:u08:obsoleted,
+13:u09:updated/,,
+14:u0A:,/replaced,
+14:u0B:replaced/,,
+14:u0C:be/updated,
+11:u11:updated,
+12:u13:replaced,
+11:u02:updated,
+12:u04:replaced,
+13:u07:obsoleted,
+14:u09:,/replaced,
+14:u0A:replaced/,,
+8:u0B:,/or,
+13:u0C:updated/,,
+14:u0D:replaced/0,
+11:u10:updated,
+12:u12:replaced,
+8:u23:repl,
+7:u32:ced,
+8:u33:aced,
+11:u01:updated,
+12:u03:replaced,
+13:u06:obsoleted,
+14:u09:replaced/,,
+8:u0A:,/or,
+16:u0B:or/obsoleted,
+14:u0C:,/replaced,
+12:u11:replaced,
+13:u14:obsoleted,
+11:u00:updated,
+12:u02:replaced,
+13:u05:obsoleted,
+8:u09:,/or,
+16:u0A:or/obsoleted,
+16:u0B:obsoleted/by,
+14:u0C:replaced/,,
+12:u10:replaced,
+13:u13:obsoleted,
+12:u01:replaced,
+13:u04:obsoleted,
+16:u09:or/obsoleted,
+16:u0A:obsoleted/by,
+12:u0B:by/other,
+8:u0C:,/or,
+15:u0D:obsoleted/0,
+13:u12:obsoleted,
+7:u22:obs,
+8:u23:obso,
+8:u33:eted,
+12:u00:replaced,
+13:u03:obsoleted,
+16:u09:obsoleted/by,
+12:u0A:by/other,
+19:u0B:other/documents,
+16:u0C:or/obsoleted,
+13:u11:obsoleted,
+13:u02:obsoleted,
+8:u08:time,
+12:u09:by/other,
+19:u0A:other/documents,
+16:u0B:documents/at,
+16:u0C:obsoleted/by,
+13:u10:obsoleted,
+13:u01:obsoleted,
+8:u07:time,
+19:u09:other/documents,
+16:u0A:documents/at,
+10:u0B:at/any,
+12:u0C:by/other,
+13:u00:obsoleted,
+8:u06:time,
+16:u09:documents/at,
+10:u0A:at/any,
+12:u0B:any/time,
+19:u0C:other/documents,
+8:u14:time,
+8:u05:time,
+10:u09:at/any,
+12:u0A:any/time,
+10:u0B:time/.,
+16:u0C:documents/at,
+8:u13:time,
+8:u04:time,
+17:u08:inappropriate,
+12:u09:any/time,
+10:u0A:time/.,
+10:u0C:at/any,
+10:u0D:time/0,
+8:u12:time,
+6:u21:ti,
+7:u22:tim,
+8:u23:time,
+7:u32:ime,
+8:u33:time,
+8:u03:time,
+17:u07:inappropriate,
+10:u09:time/.,
+9:u0B:It/is,
+12:u0C:any/time,
+8:u11:time,
+8:u02:time,
+17:u06:inappropriate,
+9:u0A:It/is,
+20:u0B:is/inappropriate,
+10:u0C:time/.,
+8:u10:time,
+17:u14:inappropriate,
+8:u01:time,
+17:u05:inappropriate,
+9:u09:It/is,
+20:u0A:is/inappropriate,
+20:u0B:inappropriate/to,
+17:u13:inappropriate,
+8:u00:time,
+17:u04:inappropriate,
+20:u09:is/inappropriate,
+20:u0A:inappropriate/to,
+10:u0B:to/use,
+9:u0C:It/is,
+19:u0D:inappropriate/0,
+17:u12:inappropriate,
+7:u22:ina,
+8:u23:inap,
+8:u33:iate,
+17:u03:inappropriate,
+20:u09:inappropriate/to,
+10:u0A:to/use,
+16:u0B:use/Internet,
+20:u0C:is/inappropriate,
+17:u11:inappropriate,
+17:u02:inappropriate,
+10:u09:to/use,
+16:u0A:use/Internet,
+20:u0C:inappropriate/to,
+17:u10:inappropriate,
+17:u01:inappropriate,
+13:u08:reference,
+16:u09:use/Internet,
+10:u0C:to/use,
+17:u00:inappropriate,
+13:u07:reference,
+12:u08:material,
+13:u0B:Drafts/as,
+16:u0C:use/Internet,
+13:u06:reference,
+12:u07:material,
+13:u0A:Drafts/as,
+16:u0B:as/reference,
+13:u14:reference,
+13:u05:reference,
+12:u06:material,
+13:u09:Drafts/as,
+16:u0A:as/reference,
+22:u0B:reference/material,
+13:u13:reference,
+12:u14:material,
+13:u04:reference,
+12:u05:material,
+8:u08:cite,
+16:u09:as/reference,
+22:u0A:reference/material,
+15:u0B:material/or,
+13:u0C:Drafts/as,
+15:u0D:reference/0,
+13:u12:reference,
+12:u13:material,
+7:u22:ref,
+8:u23:refe,
+13:u03:reference,
+12:u04:material,
+8:u07:cite,
+8:u08:them,
+22:u09:reference/material,
+15:u0A:material/or,
+9:u0B:or/to,
+16:u0C:as/reference,
+14:u0D:material/0,
+13:u11:reference,
+12:u12:material,
+8:u23:mate,
+8:u33:rial,
+13:u02:reference,
+12:u03:material,
+8:u06:cite,
+8:u07:them,
+15:u09:material/or,
+9:u0A:or/to,
+11:u0B:to/cite,
+22:u0C:reference/material,
+13:u10:reference,
+12:u11:material,
+8:u14:cite,
+13:u01:reference,
+12:u02:material,
+8:u05:cite,
+8:u06:them,
+8:u08:than,
+9:u09:or/to,
+11:u0A:to/cite,
+13:u0B:cite/them,
+15:u0C:material/or,
+12:u10:material,
+8:u13:cite,
+8:u14:them,
+13:u00:reference,
+12:u01:material,
+8:u04:cite,
+8:u05:them,
+8:u07:than,
+11:u09:to/cite,
+13:u0A:cite/them,
+14:u0B:them/other,
+9:u0C:or/to,
+10:u0D:cite/0,
+8:u12:cite,
+8:u13:them,
+6:u21:ci,
+7:u22:cit,
+8:u23:cite,
+7:u32:ite,
+8:u33:cite,
+12:u00:material,
+8:u03:cite,
+8:u04:them,
+8:u06:than,
+5:u08:",
+13:u09:cite/them,
+14:u0A:them/other,
+14:u0B:other/than,
+11:u0C:to/cite,
+10:u0D:them/0,
+8:u11:cite,
+8:u12:them,
+8:u14:than,
+8:u23:them,
+7:u32:hem,
+8:u33:them,
+8:u02:cite,
+8:u03:them,
+8:u05:than,
+5:u07:",
+8:u08:work,
+14:u09:them/other,
+14:u0A:other/than,
+11:u0B:than/as,
+13:u0C:cite/them,
+8:u10:cite,
+8:u11:them,
+8:u13:than,
+8:u01:cite,
+8:u02:them,
+8:u04:than,
+5:u06:",
+8:u07:work,
+14:u09:other/than,
+11:u0A:than/as,
+8:u0B:as/",
+14:u0C:them/other,
+10:u0D:than/0,
+8:u10:them,
+8:u12:than,
+5:u14:",
+8:u23:than,
+7:u32:han,
+8:u33:than,
+8:u00:cite,
+8:u01:them,
+8:u03:than,
+5:u05:",
+8:u06:work,
+12:u08:progress,
+11:u09:than/as,
+8:u0A:as/",
+10:u0B:"/work,
+14:u0C:other/than,
+8:u11:than,
+5:u13:",
+8:u14:work,
+8:u00:them,
+8:u02:than,
+5:u04:",
+8:u05:work,
+12:u07:progress,
+8:u09:as/",
+10:u0A:"/work,
+11:u0B:work/in,
+11:u0C:than/as,
+7:u0D:"/0,
+8:u10:than,
+5:u12:",
+8:u13:work,
+5:u20:",
+5:u21:",
+5:u22:",
+5:u23:",
+5:u30:",
+5:u31:",
+5:u32:",
+5:u33:",
+8:u01:than,
+5:u03:",
+8:u04:work,
+12:u06:progress,
+10:u09:"/work,
+11:u0A:work/in,
+15:u0B:in/progress,
+8:u0C:as/",
+10:u0D:work/0,
+5:u11:",
+8:u12:work,
+12:u14:progress,
+8:u00:than,
+5:u02:",
+8:u03:work,
+12:u05:progress,
+11:u09:work/in,
+15:u0A:in/progress,
+14:u0B:progress/.,
+10:u0C:"/work,
+5:u10:",
+8:u11:work,
+12:u13:progress,
+5:u01:",
+8:u02:work,
+12:u04:progress,
+15:u09:in/progress,
+14:u0A:progress/.,
+7:u0B:./",
+11:u0C:work/in,
+14:u0D:progress/0,
+8:u10:work,
+12:u12:progress,
+8:u23:prog,
+6:u31:ss,
+7:u32:ess,
+8:u33:ress,
+5:u00:",
+8:u01:work,
+12:u03:progress,
+14:u09:progress/.,
+7:u0A:./",
+7:u0B:"/D,
+15:u0C:in/progress,
+12:u11:progress,
+8:u00:work,
+12:u02:progress,
+7:u09:./",
+7:u0A:"/D,
+14:u0C:progress/.,
+12:u10:progress,
+12:u01:progress,
+7:u09:"/D,
+7:u0C:./",
+12:u00:progress,
+16:u0B:Oran/Expires,
+7:u0C:"/D,
+16:u0A:Oran/Expires,
+20:u0B:Expires/February,
+16:u09:Oran/Expires,
+20:u0A:Expires/February,
+20:u09:Expires/February,
+16:u0C:Oran/Expires,
+20:u0C:Expires/February,
+10:u0B:2020/[,
+10:u0A:2020/[,
+10:u09:2020/[,
+10:u0C:2020/[,
+14:u0B:]/Internet,
+14:u0A:]/Internet,
+8:u08:Flow,
+14:u09:]/Internet,
+8:u07:Flow,
+11:u08:Balance,
+21:u0B:Draft/Maintaining,
+14:u0C:]/Internet,
+8:u06:Flow,
+11:u07:Balance,
+21:u0A:Draft/Maintaining,
+20:u0B:Maintaining/Flow,
+8:u05:Flow,
+11:u06:Balance,
+21:u09:Draft/Maintaining,
+20:u0A:Maintaining/Flow,
+16:u0B:Flow/Balance,
+8:u04:Flow,
+11:u05:Balance,
+20:u09:Maintaining/Flow,
+16:u0A:Flow/Balance,
+18:u0B:Balance/August,
+21:u0C:Draft/Maintaining,
+10:u0D:Flow/0,
+6:u21:Fl,
+7:u22:Flo,
+8:u23:Flow,
+8:u33:Flow,
+8:u03:Flow,
+11:u04:Balance,
+16:u09:Flow/Balance,
+18:u0A:Balance/August,
+15:u0B:August/2019,
+20:u0C:Maintaining/Flow,
+13:u0D:Balance/0,
+6:u21:Ba,
+7:u22:Bal,
+8:u23:Bala,
+8:u02:Flow,
+11:u03:Balance,
+18:u09:Balance/August,
+15:u0A:August/2019,
+13:u0B:2019/This,
+16:u0C:Flow/Balance,
+8:u01:Flow,
+11:u02:Balance,
+15:u09:August/2019,
+13:u0A:2019/This,
+18:u0C:Balance/August,
+8:u00:Flow,
+11:u01:Balance,
+13:u09:2019/This,
+15:u0C:August/2019,
+11:u00:Balance,
+10:u08:expire,
+13:u0C:2019/This,
+10:u07:expire,
+14:u0B:Draft/will,
+10:u06:expire,
+14:u0A:Draft/will,
+15:u0B:will/expire,
+10:u14:expire,
+10:u05:expire,
+14:u09:Draft/will,
+15:u0A:will/expire,
+13:u0B:expire/on,
+10:u13:expire,
+10:u04:expire,
+15:u09:will/expire,
+13:u0A:expire/on,
+15:u0B:on/February,
+14:u0C:Draft/will,
+12:u0D:expire/0,
+10:u12:expire,
+8:u23:expi,
+8:u33:pire,
+10:u03:expire,
+13:u09:expire/on,
+15:u0A:on/February,
+15:u0C:will/expire,
+10:u11:expire,
+10:u02:expire,
+15:u09:on/February,
+13:u0C:expire/on,
+10:u10:expire,
+10:u01:expire,
+15:u0C:on/February,
+10:u00:expire,
+10:u0B:2020/.,
+10:u0A:2020/.,
+10:u09:2020/.,
+10:u0C:2020/.,
+8:u08:Code,
+8:u07:Code,
+14:u08:Components,
+8:u06:Code,
+14:u07:Components,
+13:u08:extracted,
+10:u0B:./Code,
+8:u14:code,
+8:u05:Code,
+14:u06:Components,
+13:u07:extracted,
+8:u08:from,
+10:u0A:./Code,
+19:u0B:Code/Components,
+8:u13:code,
+14:u14:components,
+8:u04:Code,
+14:u05:Components,
+13:u06:extracted,
+8:u07:from,
+10:u09:./Code,
+19:u0A:Code/Components,
+24:u0B:Components/extracted,
+10:u0D:Code/0,
+8:u12:code,
+14:u13:components,
+13:u14:extracted,
+7:u22:Cod,
+8:u23:Code,
+7:u32:ode,
+8:u33:Code,
+8:u03:Code,
+14:u04:Components,
+13:u05:extracted,
+8:u06:from,
+19:u09:Code/Components,
+24:u0A:Components/extracted,
+18:u0B:extracted/from,
+10:u0C:./Code,
+16:u0D:Components/0,
+8:u11:code,
+14:u12:components,
+13:u13:extracted,
+8:u14:from,
+8:u23:Comp,
+8:u02:Code,
+14:u03:Components,
+13:u04:extracted,
+8:u05:from,
+8:u08:must,
+24:u09:Components/extracted,
+18:u0A:extracted/from,
+13:u0B:from/this,
+19:u0C:Code/Components,
+15:u0D:extracted/0,
+8:u10:code,
+14:u11:components,
+13:u12:extracted,
+8:u13:from,
+7:u22:ext,
+8:u23:extr,
+8:u33:cted,
+8:u01:Code,
+14:u02:Components,
+13:u03:extracted,
+8:u04:from,
+8:u07:must,
+11:u08:include,
+18:u09:extracted/from,
+13:u0A:from/this,
+24:u0C:Components/extracted,
+10:u0D:from/0,
+14:u10:components,
+13:u11:extracted,
+8:u12:from,
+6:u21:fr,
+7:u22:fro,
+8:u23:from,
+7:u32:rom,
+8:u33:from,
+8:u00:Code,
+14:u01:Components,
+13:u02:extracted,
+8:u03:from,
+8:u06:must,
+11:u07:include,
+14:u08:Simplified,
+13:u09:from/this,
+17:u0B:document/must,
+18:u0C:extracted/from,
+13:u10:extracted,
+8:u11:from,
+8:u14:must,
+14:u00:Components,
+13:u01:extracted,
+8:u02:from,
+8:u05:must,
+11:u06:include,
+14:u07:Simplified,
+7:u08:BSD,
+17:u0A:document/must,
+16:u0B:must/include,
+13:u0C:from/this,
+8:u10:from,
+8:u13:must,
+11:u14:include,
+13:u00:extracted,
+8:u01:from,
+8:u04:must,
+11:u05:include,
+14:u06:Simplified,
+7:u07:BSD,
+11:u08:License,
+17:u09:document/must,
+16:u0A:must/include,
+22:u0B:include/Simplified,
+10:u0D:must/0,
+8:u12:must,
+11:u13:include,
+14:u14:simplified,
+7:u22:mus,
+8:u23:must,
+8:u33:must,
+8:u00:from,
+8:u03:must,
+11:u04:include,
+14:u05:Simplified,
+7:u06:BSD,
+11:u07:License,
+8:u08:text,
+16:u09:must/include,
+22:u0A:include/Simplified,
+18:u0B:Simplified/BSD,
+17:u0C:document/must,
+13:u0D:include/0,
+8:u11:must,
+11:u12:include,
+14:u13:simplified,
+7:u14:bsd,
+7:u32:ude,
+8:u33:lude,
+8:u02:must,
+11:u03:include,
+14:u04:Simplified,
+7:u05:BSD,
+11:u06:License,
+8:u07:text,
+22:u09:include/Simplified,
+18:u0A:Simplified/BSD,
+15:u0B:BSD/License,
+16:u0C:must/include,
+16:u0D:Simplified/0,
+8:u10:must,
+11:u11:include,
+14:u12:simplified,
+7:u13:bsd,
+7:u22:Sim,
+8:u23:Simp,
+8:u01:must,
+11:u02:include,
+14:u03:Simplified,
+7:u04:BSD,
+11:u05:License,
+8:u06:text,
+13:u08:described,
+18:u09:Simplified/BSD,
+15:u0A:BSD/License,
+16:u0B:License/text,
+22:u0C:include/Simplified,
+9:u0D:BSD/0,
+11:u10:include,
+14:u11:simplified,
+7:u12:bsd,
+8:u14:text,
+6:u21:BS,
+7:u22:BSD,
+7:u23:BSD,
+6:u31:SD,
+7:u32:BSD,
+7:u33:BSD,
+8:u00:must,
+11:u01:include,
+14:u02:Simplified,
+7:u03:BSD,
+11:u04:License,
+8:u05:text,
+13:u07:described,
+15:u09:BSD/License,
+16:u0A:License/text,
+11:u0B:text/as,
+18:u0C:Simplified/BSD,
+13:u0D:License/0,
+14:u10:simplified,
+7:u11:bsd,
+8:u13:text,
+7:u22:Lic,
+8:u23:Lice,
+11:u00:include,
+14:u01:Simplified,
+7:u02:BSD,
+11:u03:License,
+8:u04:text,
+13:u06:described,
+16:u09:License/text,
+11:u0A:text/as,
+16:u0B:as/described,
+15:u0C:BSD/License,
+10:u0D:text/0,
+7:u10:bsd,
+8:u12:text,
+13:u14:described,
+7:u22:tex,
+8:u23:text,
+6:u31:xt,
+7:u32:ext,
+8:u33:text,
+14:u00:Simplified,
+7:u01:BSD,
+11:u02:License,
+8:u03:text,
+13:u05:described,
+5:u08:4,
+11:u09:text/as,
+16:u0A:as/described,
+16:u0B:described/in,
+16:u0C:License/text,
+8:u11:text,
+13:u13:described,
+7:u00:BSD,
+11:u01:License,
+8:u02:text,
+13:u04:described,
+5:u07:4,
+16:u09:as/described,
+16:u0A:described/in,
+14:u0B:in/Section,
+11:u0C:text/as,
+15:u0D:described/0,
+8:u10:text,
+13:u12:described,
+7:u32:bed,
+8:u33:ibed,
+11:u00:License,
+8:u01:text,
+13:u03:described,
+5:u06:4,
+5:u08:e,
+16:u09:described/in,
+14:u0A:in/Section,
+13:u0B:Section/4,
+16:u0C:as/described,
+13:u11:described,
+5:u14:4,
+8:u00:text,
+13:u02:described,
+5:u05:4,
+5:u07:e,
+14:u09:in/Section,
+13:u0A:Section/4,
+7:u0B:4/.,
+16:u0C:described/in,
+13:u10:described,
+5:u13:4,
+13:u01:described,
+5:u04:4,
+5:u06:e,
+13:u09:Section/4,
+7:u0A:4/.,
+7:u0B:./e,
+14:u0C:in/Section,
+7:u0D:4/0,
+5:u12:4,
+5:u14:e,
+5:u21:4,
+5:u22:4,
+5:u23:4,
+5:u31:4,
+5:u32:4,
+5:u33:4,
+13:u00:described,
+5:u03:4,
+5:u05:e,
+7:u09:4/.,
+7:u0A:./e,
+8:u0B:e/of,
+13:u0C:Section/4,
+5:u11:4,
+5:u13:e,
+5:u02:4,
+5:u04:e,
+7:u09:./e,
+8:u0A:e/of,
+7:u0C:4/.,
+7:u0D:e/0,
+5:u10:4,
+5:u12:e,
+5:u21:e,
+5:u22:e,
+5:u23:e,
+5:u31:e,
+5:u32:e,
+5:u33:e,
+5:u01:4,
+5:u03:e,
+8:u09:e/of,
+13:u0B:the/Trust,
+7:u0C:./e,
+5:u11:e,
+5:u00:4,
+5:u02:e,
+13:u0A:the/Trust,
+15:u0B:Trust/Legal,
+8:u0C:e/of,
+5:u10:e,
+5:u01:e,
+13:u09:the/Trust,
+15:u0A:Trust/Legal,
+5:u00:e,
+12:u08:provided,
+15:u09:Trust/Legal,
+18:u0B:Provisions/and,
+13:u0C:the/Trust,
+12:u07:provided,
+11:u08:without,
+18:u0A:Provisions/and,
+11:u0B:and/are,
+15:u0C:Trust/Legal,
+12:u06:provided,
+11:u07:without,
+12:u08:warranty,
+18:u09:Provisions/and,
+11:u0A:and/are,
+16:u0B:are/provided,
+12:u14:provided,
+12:u05:provided,
+11:u06:without,
+12:u07:warranty,
+11:u09:and/are,
+16:u0A:are/provided,
+20:u0B:provided/without,
+18:u0C:Provisions/and,
+12:u13:provided,
+11:u14:without,
+12:u04:provided,
+11:u05:without,
+12:u06:warranty,
+16:u09:are/provided,
+20:u0A:provided/without,
+20:u0B:without/warranty,
+11:u0C:and/are,
+14:u0D:provided/0,
+12:u12:provided,
+11:u13:without,
+12:u14:warranty,
+8:u33:ided,
+12:u03:provided,
+11:u04:without,
+12:u05:warranty,
+20:u09:provided/without,
+20:u0A:without/warranty,
+15:u0B:warranty/as,
+16:u0C:are/provided,
+13:u0D:without/0,
+12:u11:provided,
+11:u12:without,
+12:u13:warranty,
+8:u33:hout,
+12:u02:provided,
+11:u03:without,
+12:u04:warranty,
+20:u09:without/warranty,
+15:u0A:warranty/as,
+20:u0C:provided/without,
+14:u0D:warranty/0,
+12:u10:provided,
+11:u11:without,
+12:u12:warranty,
+6:u21:wa,
+7:u22:war,
+8:u23:warr,
+8:u33:anty,
+12:u01:provided,
+11:u02:without,
+12:u03:warranty,
+15:u09:warranty/as,
+20:u0C:without/warranty,
+11:u10:without,
+12:u11:warranty,
+12:u00:provided,
+11:u01:without,
+12:u02:warranty,
+10:u0B:in/the,
+15:u0C:warranty/as,
+12:u10:warranty,
+11:u00:without,
+12:u01:warranty,
+10:u0A:in/the,
+18:u0B:the/Simplified,
+12:u00:warranty,
+10:u09:in/the,
+18:u0A:the/Simplified,
+8:u08:Dave,
+18:u09:the/Simplified,
+10:u0C:in/the,
+8:u07:Dave,
+13:u0B:License/.,
+18:u0C:the/Simplified,
+8:u06:Dave,
+13:u0A:License/.,
+10:u0B:./Dave,
+8:u14:dave,
+8:u05:Dave,
+13:u09:License/.,
+10:u0A:./Dave,
+13:u0B:Dave/Oran,
+8:u13:dave,
+8:u04:Dave,
+10:u09:./Dave,
+13:u0A:Dave/Oran,
+16:u0B:Oran/Network,
+13:u0C:License/.,
+10:u0D:Dave/0,
+8:u12:dave,
+7:u22:Dav,
+8:u23:Dave,
+8:u33:Dave,
+8:u03:Dave,
+13:u09:Dave/Oran,
+16:u0A:Oran/Network,
+10:u0C:./Dave,
+8:u11:dave,
+8:u02:Dave,
+16:u09:Oran/Network,
+13:u0C:Dave/Oran,
+8:u10:dave,
+8:u01:Dave,
+16:u0C:Oran/Network,
+8:u00:Dave,
+9:u08:Shady,
+9:u07:Shady,
+8:u08:Hill,
+12:u0B:Design/4,
+9:u06:Shady,
+8:u07:Hill,
+10:u08:Square,
+12:u0A:Design/4,
+11:u0B:4/Shady,
+9:u14:shady,
+9:u05:Shady,
+8:u06:Hill,
+10:u07:Square,
+13:u08:Cambridge,
+12:u09:Design/4,
+11:u0A:4/Shady,
+14:u0B:Shady/Hill,
+9:u13:shady,
+8:u14:hill,
+9:u04:Shady,
+8:u05:Hill,
+10:u06:Square,
+13:u07:Cambridge,
+11:u09:4/Shady,
+14:u0A:Shady/Hill,
+15:u0B:Hill/Square,
+12:u0C:Design/4,
+11:u0D:Shady/0,
+9:u12:shady,
+8:u13:hill,
+10:u14:square,
+6:u21:Sh,
+7:u22:Sha,
+8:u23:Shad,
+6:u31:dy,
+7:u32:ady,
+8:u33:hady,
+9:u03:Shady,
+8:u04:Hill,
+10:u05:Square,
+13:u06:Cambridge,
+6:u08:MA,
+14:u09:Shady/Hill,
+15:u0A:Hill/Square,
+20:u0B:Square/Cambridge,
+11:u0C:4/Shady,
+10:u0D:Hill/0,
+9:u11:shady,
+8:u12:hill,
+10:u13:square,
+13:u14:cambridge,
+5:u20:H,
+6:u21:Hi,
+7:u22:Hil,
+8:u23:Hill,
+8:u33:Hill,
+9:u02:Shady,
+8:u03:Hill,
+10:u04:Square,
+13:u05:Cambridge,
+6:u07:MA,
+9:u08:02138,
+15:u09:Hill/Square,
+20:u0A:Square/Cambridge,
+15:u0B:Cambridge/,,
+14:u0C:Shady/Hill,
+12:u0D:Square/0,
+9:u10:shady,
+8:u11:hill,
+10:u12:square,
+13:u13:cambridge,
+6:u21:Sq,
+7:u22:Squ,
+8:u23:Squa,
+8:u33:uare,
+9:u01:Shady,
+8:u02:Hill,
+10:u03:Square,
+13:u04:Cambridge,
+6:u06:MA,
+9:u07:02138,
+7:u08:USA,
+20:u09:Square/Cambridge,
+15:u0A:Cambridge/,,
+8:u0B:,/MA,
+15:u0C:Hill/Square,
+15:u0D:Cambridge/0,
+8:u10:hill,
+10:u11:square,
+13:u12:cambridge,
+6:u14:ma,
+7:u22:Cam,
+8:u23:Camb,
+7:u32:dge,
+8:u33:idge,
+9:u00:Shady,
+8:u01:Hill,
+10:u02:Square,
+13:u03:Cambridge,
+6:u05:MA,
+9:u06:02138,
+7:u07:USA,
+15:u09:Cambridge/,,
+8:u0A:,/MA,
+12:u0B:MA/02138,
+20:u0C:Square/Cambridge,
+10:u10:square,
+13:u11:cambridge,
+6:u13:ma,
+9:u14:02138,
+8:u00:Hill,
+10:u01:Square,
+13:u02:Cambridge,
+6:u04:MA,
+9:u05:02138,
+7:u06:USA,
+8:u09:,/MA,
+12:u0A:MA/02138,
+13:u0B:02138/USA,
+15:u0C:Cambridge/,,
+8:u0D:MA/0,
+13:u10:cambridge,
+6:u12:ma,
+9:u13:02138,
+7:u14:usa,
+6:u21:MA,
+6:u22:MA,
+6:u23:MA,
+6:u31:MA,
+6:u32:MA,
+6:u33:MA,
+10:u00:Square,
+13:u01:Cambridge,
+6:u03:MA,
+9:u04:02138,
+7:u05:USA,
+20:u08:daveoran@orandom,
+12:u09:MA/02138,
+13:u0A:02138/USA,
+13:u0B:USA/Email,
+8:u0C:,/MA,
+11:u0D:02138/0,
+6:u11:ma,
+9:u12:02138,
+7:u13:usa,
+6:u21:02,
+7:u22:021,
+8:u23:0213,
+6:u31:38,
+7:u32:138,
+8:u33:2138,
+13:u00:Cambridge,
+6:u02:MA,
+9:u03:02138,
+7:u04:USA,
+20:u07:daveoran@orandom,
+13:u09:02138/USA,
+13:u0A:USA/Email,
+12:u0C:MA/02138,
+9:u0D:USA/0,
+6:u10:ma,
+9:u11:02138,
+7:u12:usa,
+6:u21:US,
+7:u22:USA,
+7:u23:USA,
+6:u31:SA,
+7:u32:USA,
+7:u33:USA,
+6:u01:MA,
+9:u02:02138,
+7:u03:USA,
+20:u06:daveoran@orandom,
+7:u08:net,
+13:u09:USA/Email,
+22:u0B::/daveoran@orandom,
+13:u0C:02138/USA,
+9:u10:02138,
+7:u11:usa,
+20:u14:daveoran@orandom,
+6:u00:MA,
+9:u01:02138,
+7:u02:USA,
+20:u05:daveoran@orandom,
+7:u07:net,
+22:u0A::/daveoran@orandom,
+22:u0B:daveoran@orandom/.,
+13:u0C:USA/Email,
+7:u10:usa,
+20:u13:daveoran@orandom,
+9:u00:02138,
+7:u01:USA,
+20:u04:daveoran@orandom,
+7:u06:net,
+22:u09::/daveoran@orandom,
+22:u0A:daveoran@orandom/.,
+9:u0B:./net,
+22:u0D:daveoran@orandom/0,
+20:u12:daveoran@orandom,
+7:u14:net,
+7:u22:dav,
+8:u23:dave,
+7:u32:dom,
+8:u33:ndom,
+7:u00:USA,
+20:u03:daveoran@orandom,
+7:u05:net,
+22:u09:daveoran@orandom/.,
+9:u0A:./net,
+12:u0B:net/_x+1,
+22:u0C::/daveoran@orandom,
+20:u11:daveoran@orandom,
+7:u13:net,
+20:u02:daveoran@orandom,
+7:u04:net,
+9:u09:./net,
+12:u0A:net/_x+1,
+22:u0C:daveoran@orandom/.,
+9:u0D:net/0,
+20:u10:daveoran@orandom,
+7:u12:net,
+7:u23:net,
+7:u33:net,
+12:u06:20190708,
+17:u0B:date/20190708,
+12:u14:20190708,
+12:u05:20190708,
+17:u0A:date/20190708,
+14:u0B:20190708/;,
+12:u13:20190708,
+12:u04:20190708,
+17:u09:date/20190708,
+14:u0A:20190708/;,
+14:u0D:20190708/0,
+12:u12:20190708,
+6:u31:08,
+7:u32:708,
+8:u33:0708,
+12:u03:20190708,
+14:u09:20190708/;,
+17:u0C:date/20190708,
+12:u11:20190708,
+12:u02:20190708,
+12:u08:20190710,
+14:u0C:20190708/;,
+12:u10:20190708,
+12:u01:20190708,
+12:u07:20190710,
+12:u00:20190708,
+11:u08:Working,
+15:u0B:on/20190710,
+11:u07:Working,
+15:u0A:on/20190710,
+20:u0B:20190710/Network,
+11:u06:Working,
+15:u09:on/20190710,
+20:u0A:20190710/Network,
+19:u0B:Network/Working,
+11:u05:Working,
+20:u09:20190710/Network,
+19:u0A:Network/Working,
+17:u0B:Working/Group,
+15:u0C:on/20190710,
+11:u04:Working,
+13:u08:Learmonth,
+19:u09:Network/Working,
+17:u0A:Working/Group,
+11:u0B:Group/I,
+20:u0C:20190710/Network,
+13:u0D:Working/0,
+7:u22:Wor,
+8:u23:Work,
+11:u03:Working,
+13:u07:Learmonth,
+17:u09:Working/Group,
+11:u0A:Group/I,
+19:u0C:Network/Working,
+11:u02:Working,
+13:u06:Learmonth,
+11:u09:Group/I,
+15:u0B:./Learmonth,
+17:u0C:Working/Group,
+13:u14:learmonth,
+11:u01:Working,
+13:u05:Learmonth,
+15:u0A:./Learmonth,
+22:u0B:Learmonth/Internet,
+11:u0C:Group/I,
+13:u13:learmonth,
+11:u00:Working,
+13:u04:Learmonth,
+7:u08:Tor,
+15:u09:./Learmonth,
+22:u0A:Learmonth/Internet,
+15:u0D:Learmonth/0,
+13:u12:learmonth,
+7:u22:Lea,
+8:u23:Lear,
+7:u32:nth,
+8:u33:onth,
+13:u03:Learmonth,
+7:u07:Tor,
+11:u08:Project,
+22:u09:Learmonth/Internet,
+15:u0C:./Learmonth,
+13:u11:learmonth,
+13:u02:Learmonth,
+7:u06:Tor,
+11:u07:Project,
+13:u0B:Draft/Tor,
+22:u0C:Learmonth/Internet,
+13:u10:learmonth,
+7:u14:tor,
+13:u01:Learmonth,
+7:u05:Tor,
+11:u06:Project,
+13:u0A:Draft/Tor,
+15:u0B:Tor/Project,
+7:u13:tor,
+11:u14:project,
+13:u00:Learmonth,
+7:u04:Tor,
+11:u05:Project,
+13:u09:Draft/Tor,
+15:u0A:Tor/Project,
+20:u0B:Project/Intended,
+9:u0D:Tor/0,
+7:u12:tor,
+11:u13:project,
+6:u21:To,
+7:u22:Tor,
+7:u23:Tor,
+7:u32:Tor,
+7:u33:Tor,
+7:u03:Tor,
+11:u04:Project,
+17:u08:Informational,
+15:u09:Tor/Project,
+20:u0A:Project/Intended,
+13:u0C:Draft/Tor,
+13:u0D:Project/0,
+7:u11:tor,
+11:u12:project,
+8:u23:Proj,
+7:u02:Tor,
+11:u03:Project,
+17:u07:Informational,
+20:u09:Project/Intended,
+15:u0C:Tor/Project,
+7:u10:tor,
+11:u11:project,
+7:u01:Tor,
+11:u02:Project,
+17:u06:Informational,
+5:u08:8,
+19:u0B::/Informational,
+20:u0C:Project/Intended,
+11:u10:project,
+17:u14:informational,
+7:u00:Tor,
+11:u01:Project,
+17:u05:Informational,
+5:u07:8,
+19:u0A::/Informational,
+22:u0B:Informational/July,
+17:u13:informational,
+11:u00:Project,
+17:u04:Informational,
+5:u06:8,
+19:u09::/Informational,
+22:u0A:Informational/July,
+10:u0B:July/8,
+19:u0D:Informational/0,
+17:u12:informational,
+5:u14:8,
+17:u03:Informational,
+5:u05:8,
+22:u09:Informational/July,
+10:u0A:July/8,
+7:u0B:8/,,
+19:u0C::/Informational,
+17:u11:informational,
+5:u13:8,
+17:u02:Informational,
+5:u04:8,
+10:u09:July/8,
+7:u0A:8/,,
+22:u0C:Informational/July,
+7:u0D:8/0,
+17:u10:informational,
+5:u12:8,
+5:u21:8,
+5:u22:8,
+5:u23:8,
+5:u31:8,
+5:u32:8,
+5:u33:8,
+17:u01:Informational,
+5:u03:8,
+11:u08:January,
+7:u09:8/,,
+10:u0C:July/8,
+5:u11:8,
+17:u00:Informational,
+5:u02:8,
+11:u07:January,
+5:u08:9,
+7:u0C:8/,,
+5:u10:8,
+5:u01:8,
+11:u06:January,
+5:u07:9,
+13:u0B::/January,
+11:u14:january,
+5:u00:8,
+11:u05:January,
+5:u06:9,
+13:u0A::/January,
+13:u0B:January/9,
+11:u13:january,
+5:u14:9,
+11:u04:January,
+5:u05:9,
+14:u08:Guidelines,
+13:u09::/January,
+13:u0A:January/9,
+7:u0B:9/,,
+13:u0D:January/0,
+11:u12:january,
+5:u13:9,
+6:u21:Ja,
+7:u22:Jan,
+8:u23:Janu,
+11:u03:January,
+5:u04:9,
+14:u07:Guidelines,
+13:u09:January/9,
+7:u0A:9/,,
+13:u0C::/January,
+7:u0D:9/0,
+11:u11:january,
+5:u12:9,
+5:u21:9,
+5:u22:9,
+5:u23:9,
+5:u31:9,
+5:u32:9,
+5:u33:9,
+11:u02:January,
+5:u03:9,
+14:u06:Guidelines,
+14:u08:Performing,
+7:u09:9/,,
+19:u0B:2020/Guidelines,
+13:u0C:January/9,
+11:u10:january,
+5:u11:9,
+14:u14:guidelines,
+11:u01:January,
+5:u02:9,
+14:u05:Guidelines,
+14:u07:Performing,
+8:u08:Safe,
+19:u0A:2020/Guidelines,
+18:u0B:Guidelines/for,
+7:u0C:9/,,
+5:u10:9,
+14:u13:guidelines,
+11:u00:January,
+5:u01:9,
+14:u04:Guidelines,
+14:u06:Performing,
+8:u07:Safe,
+15:u08:Measurement,
+19:u09:2020/Guidelines,
+18:u0A:Guidelines/for,
+18:u0B:for/Performing,
+16:u0D:Guidelines/0,
+14:u12:guidelines,
+14:u14:performing,
+6:u21:Gu,
+7:u22:Gui,
+8:u23:Guid,
+5:u00:9,
+14:u03:Guidelines,
+14:u05:Performing,
+8:u06:Safe,
+15:u07:Measurement,
+18:u09:Guidelines/for,
+18:u0A:for/Performing,
+19:u0B:Performing/Safe,
+19:u0C:2020/Guidelines,
+14:u11:guidelines,
+14:u13:performing,
+8:u14:safe,
+14:u02:Guidelines,
+14:u04:Performing,
+8:u05:Safe,
+15:u06:Measurement,
+18:u09:for/Performing,
+19:u0A:Performing/Safe,
+20:u0B:Safe/Measurement,
+18:u0C:Guidelines/for,
+16:u0D:Performing/0,
+14:u10:guidelines,
+14:u12:performing,
+8:u13:safe,
+15:u14:measurement,
+6:u21:Pe,
+7:u22:Per,
+8:u23:Perf,
+8:u33:ming,
+14:u01:Guidelines,
+14:u03:Performing,
+8:u04:Safe,
+15:u05:Measurement,
+19:u09:Performing/Safe,
+20:u0A:Safe/Measurement,
+18:u0B:Measurement/on,
+18:u0C:for/Performing,
+10:u0D:Safe/0,
+14:u11:performing,
+8:u12:safe,
+15:u13:measurement,
+6:u21:Sa,
+7:u22:Saf,
+8:u23:Safe,
+6:u31:fe,
+7:u32:afe,
+8:u33:Safe,
+14:u00:Guidelines,
+14:u02:Performing,
+8:u03:Safe,
+15:u04:Measurement,
+20:u09:Safe/Measurement,
+18:u0A:Measurement/on,
+19:u0C:Performing/Safe,
+17:u0D:Measurement/0,
+14:u10:performing,
+8:u11:safe,
+15:u12:measurement,
+7:u22:Mea,
+8:u23:Meas,
+14:u01:Performing,
+8:u02:Safe,
+15:u03:Measurement,
+18:u09:Measurement/on,
+20:u0C:Safe/Measurement,
+8:u10:safe,
+15:u11:measurement,
+14:u00:Performing,
+8:u01:Safe,
+15:u02:Measurement,
+8:u08:irtf,
+18:u0B:Internet/draft,
+18:u0C:Measurement/on,
+15:u10:measurement,
+8:u00:Safe,
+15:u01:Measurement,
+8:u07:irtf,
+18:u0A:Internet/draft,
+15:u00:Measurement,
+8:u06:irtf,
+9:u08:pearg,
+18:u09:Internet/draft,
+10:u0B:-/irtf,
+8:u05:irtf,
+9:u07:pearg,
+10:u0A:-/irtf,
+10:u0B:irtf/-,
+18:u0C:Internet/draft,
+8:u04:irtf,
+9:u06:pearg,
+8:u08:safe,
+10:u09:-/irtf,
+10:u0A:irtf/-,
+11:u0B:-/pearg,
+10:u0D:irtf/1,
+9:u14:pearg,
+6:u21:ir,
+7:u22:irt,
+8:u23:irtf,
+7:u32:rtf,
+8:u33:irtf,
+8:u03:irtf,
+9:u05:pearg,
+8:u07:safe,
+10:u09:irtf/-,
+11:u0A:-/pearg,
+11:u0B:pearg/-,
+10:u0C:-/irtf,
+9:u13:pearg,
+8:u02:irtf,
+9:u04:pearg,
+8:u06:safe,
+12:u08:internet,
+11:u09:-/pearg,
+11:u0A:pearg/-,
+10:u0B:-/safe,
+10:u0C:irtf/-,
+11:u0D:pearg/1,
+9:u12:pearg,
+7:u22:pea,
+8:u23:pear,
+7:u32:arg,
+8:u33:earg,
+8:u01:irtf,
+9:u03:pearg,
+8:u05:safe,
+12:u07:internet,
+11:u09:pearg/-,
+10:u0A:-/safe,
+10:u0B:safe/-,
+11:u0C:-/pearg,
+9:u11:pearg,
+8:u00:irtf,
+9:u02:pearg,
+8:u04:safe,
+12:u06:internet,
+15:u08:measurement,
+10:u09:-/safe,
+10:u0A:safe/-,
+14:u0B:-/internet,
+11:u0C:pearg/-,
+10:u0D:safe/1,
+9:u10:pearg,
+6:u21:sa,
+7:u22:saf,
+8:u23:safe,
+8:u33:safe,
+9:u01:pearg,
+8:u03:safe,
+12:u05:internet,
+15:u07:measurement,
+10:u09:safe/-,
+14:u0A:-/internet,
+14:u0B:internet/-,
+10:u0C:-/safe,
+9:u00:pearg,
+8:u02:safe,
+12:u04:internet,
+15:u06:measurement,
+14:u09:-/internet,
+14:u0A:internet/-,
+17:u0B:-/measurement,
+10:u0C:safe/-,
+14:u0D:internet/1,
+8:u01:safe,
+12:u03:internet,
+15:u05:measurement,
+14:u09:internet/-,
+17:u0A:-/measurement,
+17:u0B:measurement/-,
+14:u0C:-/internet,
+8:u00:safe,
+12:u02:internet,
+15:u04:measurement,
+15:u08:Researchers,
+17:u09:-/measurement,
+17:u0A:measurement/-,
+14:u0C:internet/-,
+17:u0D:measurement/1,
+7:u22:mea,
+8:u23:meas,
+12:u01:internet,
+15:u03:measurement,
+15:u07:Researchers,
+17:u09:measurement/-,
+17:u0C:-/measurement,
+12:u00:internet,
+15:u02:measurement,
+15:u06:Researchers,
+12:u08:industry,
+24:u0B:Abstract/Researchers,
+17:u0C:measurement/-,
+15:u14:researchers,
+15:u01:measurement,
+15:u05:Researchers,
+12:u07:industry,
+24:u0A:Abstract/Researchers,
+20:u0B:Researchers/from,
+15:u13:researchers,
+15:u00:measurement,
+15:u04:Researchers,
+12:u06:industry,
+12:u08:academia,
+24:u09:Abstract/Researchers,
+20:u0A:Researchers/from,
+17:u0B:from/industry,
+17:u0D:Researchers/0,
+15:u12:researchers,
+12:u14:industry,
+8:u33:hers,
+15:u03:Researchers,
+12:u05:industry,
+12:u07:academia,
+9:u08:often,
+20:u09:Researchers/from,
+17:u0A:from/industry,
+16:u0B:industry/and,
+24:u0C:Abstract/Researchers,
+15:u11:researchers,
+12:u13:industry,
+15:u02:Researchers,
+12:u04:industry,
+12:u06:academia,
+9:u07:often,
+17:u09:from/industry,
+16:u0A:industry/and,
+16:u0B:and/academia,
+20:u0C:Researchers/from,
+14:u0D:industry/0,
+15:u10:researchers,
+12:u12:industry,
+12:u14:academia,
+8:u23:indu,
+7:u32:try,
+8:u33:stry,
+15:u01:Researchers,
+12:u03:industry,
+12:u05:academia,
+9:u06:often,
+16:u09:industry/and,
+16:u0A:and/academia,
+18:u0B:academia/often,
+17:u0C:from/industry,
+12:u11:industry,
+12:u13:academia,
+9:u14:often,
+15:u00:Researchers,
+12:u02:industry,
+12:u04:academia,
+9:u05:often,
+16:u08:measurements,
+16:u09:and/academia,
+18:u0A:academia/often,
+13:u0B:often/use,
+16:u0C:industry/and,
+14:u0D:academia/0,
+12:u10:industry,
+12:u12:academia,
+9:u13:often,
+7:u22:aca,
+8:u23:acad,
+7:u32:mia,
+8:u33:emia,
+12:u01:industry,
+12:u03:academia,
+9:u04:often,
+16:u07:measurements,
+18:u09:academia/often,
+13:u0A:often/use,
+16:u0C:and/academia,
+11:u0D:often/0,
+12:u11:academia,
+9:u12:often,
+7:u22:oft,
+8:u23:ofte,
+7:u32:ten,
+8:u33:ften,
+12:u00:industry,
+12:u02:academia,
+9:u03:often,
+16:u06:measurements,
+8:u08:part,
+13:u09:often/use,
+25:u0B:Internet/measurements,
+18:u0C:academia/often,
+12:u10:academia,
+9:u11:often,
+16:u14:measurements,
+12:u01:academia,
+9:u02:often,
+16:u05:measurements,
+8:u07:part,
+25:u0A:Internet/measurements,
+19:u0B:measurements/as,
+13:u0C:often/use,
+9:u10:often,
+16:u13:measurements,
+12:u00:academia,
+9:u01:often,
+16:u04:measurements,
+8:u06:part,
+25:u09:Internet/measurements,
+19:u0A:measurements/as,
+11:u0B:as/part,
+18:u0D:measurements/0,
+16:u12:measurements,
+8:u14:part,
+9:u00:often,
+16:u03:measurements,
+8:u05:part,
+19:u09:measurements/as,
+11:u0A:as/part,
+11:u0B:part/of,
+25:u0C:Internet/measurements,
+16:u11:measurements,
+8:u13:part,
+16:u02:measurements,
+8:u04:part,
+11:u09:as/part,
+11:u0A:part/of,
+12:u0B:of/their,
+19:u0C:measurements/as,
+10:u0D:part/0,
+16:u10:measurements,
+8:u12:part,
+6:u31:rt,
+7:u32:art,
+8:u33:part,
+16:u01:measurements,
+8:u03:part,
+9:u08:While,
+11:u09:part/of,
+12:u0A:of/their,
+14:u0B:their/work,
+11:u0C:as/part,
+8:u11:part,
+16:u00:measurements,
+8:u02:part,
+9:u07:While,
+12:u09:of/their,
+14:u0A:their/work,
+10:u0B:work/.,
+11:u0C:part/of,
+8:u10:part,
+8:u01:part,
+9:u06:While,
+14:u09:their/work,
+10:u0A:work/.,
+11:u0B:./While,
+12:u0C:of/their,
+9:u14:while,
+8:u00:part,
+9:u05:While,
+10:u09:work/.,
+11:u0A:./While,
+15:u0B:While/these,
+14:u0C:their/work,
+9:u13:while,
+9:u04:While,
+8:u08:give,
+11:u09:./While,
+15:u0A:While/these,
+22:u0B:these/measurements,
+10:u0C:work/.,
+11:u0D:While/0,
+9:u12:while,
+6:u21:Wh,
+7:u22:Whi,
+8:u23:Whil,
+7:u32:ile,
+8:u33:hile,
+9:u03:While,
+8:u07:give,
+11:u08:insight,
+15:u09:While/these,
+22:u0A:these/measurements,
+20:u0B:measurements/can,
+11:u0C:./While,
+9:u11:while,
+9:u02:While,
+8:u06:give,
+11:u07:insight,
+22:u09:these/measurements,
+20:u0A:measurements/can,
+12:u0B:can/give,
+15:u0C:While/these,
+9:u10:while,
+8:u14:give,
+9:u01:While,
+8:u05:give,
+11:u06:insight,
+20:u09:measurements/can,
+12:u0A:can/give,
+16:u0B:give/insight,
+22:u0C:these/measurements,
+8:u13:give,
+11:u14:insight,
+9:u00:While,
+8:u04:give,
+11:u05:insight,
+15:u08:functioning,
+12:u09:can/give,
+16:u0A:give/insight,
+16:u0B:insight/into,
+20:u0C:measurements/can,
+10:u0D:give/0,
+8:u12:give,
+11:u13:insight,
+6:u21:gi,
+7:u22:giv,
+8:u23:give,
+8:u33:give,
+8:u03:give,
+11:u04:insight,
+15:u07:functioning,
+16:u09:give/insight,
+16:u0A:insight/into,
+12:u0C:can/give,
+13:u0D:insight/0,
+8:u11:give,
+11:u12:insight,
+7:u22:ins,
+8:u23:insi,
+8:u02:give,
+11:u03:insight,
+15:u06:functioning,
+9:u08:usage,
+16:u09:insight/into,
+19:u0B:the/functioning,
+16:u0C:give/insight,
+8:u10:give,
+11:u11:insight,
+15:u14:functioning,
+8:u01:give,
+11:u02:insight,
+15:u05:functioning,
+9:u07:usage,
+19:u0A:the/functioning,
+19:u0B:functioning/and,
+16:u0C:insight/into,
+11:u10:insight,
+15:u13:functioning,
+8:u00:give,
+11:u01:insight,
+15:u04:functioning,
+9:u06:usage,
+19:u09:the/functioning,
+19:u0A:functioning/and,
+13:u0B:and/usage,
+17:u0D:functioning/0,
+15:u12:functioning,
+9:u14:usage,
+7:u22:fun,
+8:u23:func,
+11:u00:insight,
+15:u03:functioning,
+9:u05:usage,
+19:u09:functioning/and,
+13:u0A:and/usage,
+12:u0B:usage/of,
+19:u0C:the/functioning,
+15:u11:functioning,
+9:u13:usage,
+15:u02:functioning,
+9:u04:usage,
+13:u09:and/usage,
+12:u0A:usage/of,
+19:u0C:functioning/and,
+11:u0D:usage/0,
+15:u10:functioning,
+9:u12:usage,
+7:u22:usa,
+8:u23:usag,
+15:u01:functioning,
+9:u03:usage,
+12:u09:usage/of,
+13:u0C:and/usage,
+9:u11:usage,
+15:u00:functioning,
+9:u02:usage,
+14:u0B:Internet/,,
+12:u0C:usage/of,
+9:u10:usage,
+9:u01:usage,
+8:u08:come,
+14:u0A:Internet/,,
+10:u0B:,/they,
+9:u00:usage,
+8:u07:come,
+14:u09:Internet/,,
+10:u0A:,/they,
+12:u0B:they/can,
+8:u06:come,
+10:u09:,/they,
+12:u0A:they/can,
+12:u0B:can/come,
+14:u0C:Internet/,,
+8:u14:come,
+8:u05:come,
+8:u08:cost,
+12:u09:they/can,
+12:u0A:can/come,
+11:u0B:come/at,
+10:u0C:,/they,
+8:u13:come,
+8:u04:come,
+8:u07:cost,
+12:u09:can/come,
+11:u0A:come/at,
+10:u0B:at/the,
+12:u0C:they/can,
+10:u0D:come/0,
+8:u12:come,
+8:u23:come,
+8:u33:come,
+8:u03:come,
+8:u06:cost,
+8:u08:user,
+11:u09:come/at,
+10:u0A:at/the,
+12:u0B:the/cost,
+12:u0C:can/come,
+8:u11:come,
+8:u14:cost,
+8:u02:come,
+8:u05:cost,
+8:u07:user,
+11:u08:privacy,
+10:u09:at/the,
+12:u0A:the/cost,
+11:u0B:cost/of,
+11:u0C:come/at,
+8:u10:come,
+8:u13:cost,
+8:u01:come,
+8:u04:cost,
+8:u06:user,
+11:u07:privacy,
+12:u09:the/cost,
+11:u0A:cost/of,
+11:u0B:of/user,
+10:u0C:at/the,
+10:u0D:cost/0,
+8:u12:cost,
+8:u14:user,
+7:u22:cos,
+8:u23:cost,
+7:u32:ost,
+8:u33:cost,
+8:u00:come,
+8:u03:cost,
+8:u05:user,
+11:u06:privacy,
+11:u09:cost/of,
+11:u0A:of/user,
+16:u0B:user/privacy,
+12:u0C:the/cost,
+8:u11:cost,
+8:u13:user,
+11:u14:privacy,
+8:u02:cost,
+8:u04:user,
+11:u05:privacy,
+11:u09:of/user,
+16:u0A:user/privacy,
+13:u0B:privacy/.,
+11:u0C:cost/of,
+10:u0D:user/0,
+8:u10:cost,
+8:u12:user,
+11:u13:privacy,
+7:u32:ser,
+8:u33:user,
+8:u01:cost,
+8:u03:user,
+11:u04:privacy,
+16:u09:user/privacy,
+13:u0A:privacy/.,
+11:u0C:of/user,
+13:u0D:privacy/0,
+8:u11:user,
+11:u12:privacy,
+7:u22:pri,
+8:u23:priv,
+6:u31:cy,
+7:u32:acy,
+8:u33:vacy,
+8:u00:cost,
+8:u02:user,
+11:u03:privacy,
+14:u08:guidelines,
+13:u09:privacy/.,
+16:u0C:user/privacy,
+8:u10:user,
+11:u11:privacy,
+8:u01:user,
+11:u02:privacy,
+14:u07:guidelines,
+13:u0C:privacy/.,
+11:u10:privacy,
+8:u00:user,
+11:u01:privacy,
+14:u06:guidelines,
+12:u08:ensuring,
+24:u0B:describes/guidelines,
+11:u00:privacy,
+14:u05:guidelines,
+12:u07:ensuring,
+24:u0A:describes/guidelines,
+18:u0B:guidelines/for,
+14:u04:guidelines,
+12:u06:ensuring,
+8:u08:such,
+24:u09:describes/guidelines,
+18:u0A:guidelines/for,
+16:u0B:for/ensuring,
+16:u0D:guidelines/0,
+12:u14:ensuring,
+6:u21:gu,
+7:u22:gui,
+8:u23:guid,
+14:u03:guidelines,
+12:u05:ensuring,
+8:u07:such,
+18:u09:guidelines/for,
+16:u0A:for/ensuring,
+17:u0B:ensuring/that,
+24:u0C:describes/guidelines,
+12:u13:ensuring,
+14:u02:guidelines,
+12:u04:ensuring,
+8:u06:such,
+16:u09:for/ensuring,
+17:u0A:ensuring/that,
+13:u0B:that/such,
+18:u0C:guidelines/for,
+14:u0D:ensuring/0,
+12:u12:ensuring,
+8:u14:such,
+7:u22:ens,
+8:u23:ensu,
+14:u01:guidelines,
+12:u03:ensuring,
+8:u05:such,
+17:u09:ensuring/that,
+13:u0A:that/such,
+21:u0B:such/measurements,
+16:u0C:for/ensuring,
+12:u11:ensuring,
+8:u13:such,
+14:u00:guidelines,
+12:u02:ensuring,
+8:u04:such,
+13:u09:that/such,
+21:u0A:such/measurements,
+17:u0C:ensuring/that,
+10:u0D:such/0,
+12:u10:ensuring,
+8:u12:such,
+7:u22:suc,
+8:u23:such,
+8:u33:such,
+12:u01:ensuring,
+8:u03:such,
+7:u08:out,
+21:u09:such/measurements,
+10:u0B:can/be,
+13:u0C:that/such,
+8:u11:such,
+12:u00:ensuring,
+8:u02:such,
+7:u07:out,
+10:u08:safely,
+10:u0A:can/be,
+14:u0B:be/carried,
+21:u0C:such/measurements,
+8:u10:such,
+8:u01:such,
+7:u06:out,
+10:u07:safely,
+10:u09:can/be,
+14:u0A:be/carried,
+15:u0B:carried/out,
+7:u14:out,
+8:u00:such,
+7:u05:out,
+10:u06:safely,
+14:u09:be/carried,
+15:u0A:carried/out,
+14:u0B:out/safely,
+10:u0C:can/be,
+7:u13:out,
+10:u14:safely,
+7:u04:out,
+10:u05:safely,
+15:u09:carried/out,
+14:u0A:out/safely,
+12:u0B:safely/.,
+14:u0C:be/carried,
+9:u0D:out/0,
+7:u12:out,
+10:u13:safely,
+6:u21:ou,
+7:u22:out,
+7:u23:out,
+7:u33:out,
+7:u03:out,
+10:u04:safely,
+14:u09:out/safely,
+12:u0A:safely/.,
+15:u0C:carried/out,
+12:u0D:safely/0,
+7:u11:out,
+10:u12:safely,
+8:u33:fely,
+7:u02:out,
+10:u03:safely,
+13:u08:solicited,
+12:u09:safely/.,
+17:u0B:Note/Comments,
+14:u0C:out/safely,
+7:u10:out,
+10:u11:safely,
+7:u01:out,
+10:u02:safely,
+13:u07:solicited,
+17:u0A:Note/Comments,
+16:u0B:Comments/are,
+12:u0C:safely/.,
+10:u10:safely,
+7:u00:out,
+10:u01:safely,
+13:u06:solicited,
+10:u08:should,
+17:u09:Note/Comments,
+16:u0A:Comments/are,
+17:u0B:are/solicited,
+13:u14:solicited,
+10:u00:safely,
+13:u05:solicited,
+10:u07:should,
+16:u09:Comments/are,
+17:u0A:are/solicited,
+17:u0B:solicited/and,
+17:u0C:Note/Comments,
+13:u13:solicited,
+13:u04:solicited,
+10:u06:should,
+13:u08:addressed,
+17:u09:are/solicited,
+17:u0A:solicited/and,
+14:u0B:and/should,
+16:u0C:Comments/are,
+15:u0D:solicited/0,
+13:u12:solicited,
+10:u14:should,
+7:u22:sol,
+8:u23:soli,
+13:u03:solicited,
+10:u05:should,
+13:u07:addressed,
+17:u09:solicited/and,
+14:u0A:and/should,
+13:u0B:should/be,
+17:u0C:are/solicited,
+13:u11:solicited,
+10:u13:should,
+13:u02:solicited,
+10:u04:should,
+13:u06:addressed,
+14:u09:and/should,
+13:u0A:should/be,
+16:u0B:be/addressed,
+17:u0C:solicited/and,
+12:u0D:should/0,
+13:u10:solicited,
+10:u12:should,
+13:u14:addressed,
+6:u21:sh,
+7:u22:sho,
+8:u23:shou,
+13:u01:solicited,
+10:u03:should,
+13:u05:addressed,
+13:u09:should/be,
+16:u0A:be/addressed,
+16:u0B:addressed/to,
+14:u0C:and/should,
+10:u11:should,
+13:u13:addressed,
+13:u00:solicited,
+10:u02:should,
+13:u04:addressed,
+16:u09:be/addressed,
+16:u0A:addressed/to,
+13:u0C:should/be,
+15:u0D:addressed/0,
+10:u10:should,
+13:u12:addressed,
+6:u21:ad,
+7:u22:add,
+8:u23:addr,
+8:u33:ssed,
+10:u01:should,
+13:u03:addressed,
+16:u09:addressed/to,
+16:u0B:the/research,
+16:u0C:be/addressed,
+13:u11:addressed,
+10:u00:should,
+13:u02:addressed,
+16:u0A:the/research,
+16:u0C:addressed/to,
+13:u10:addressed,
+13:u01:addressed,
+11:u08:mailing,
+16:u09:the/research,
+11:u0B:group/',
+13:u00:addressed,
+11:u07:mailing,
+11:u0A:group/',
+16:u0C:the/research,
+11:u06:mailing,
+11:u09:group/',
+13:u0B:s/mailing,
+11:u14:mailing,
+11:u05:mailing,
+14:u08:pearg@irtf,
+13:u0A:s/mailing,
+16:u0B:mailing/list,
+11:u0C:group/',
+11:u13:mailing,
+11:u04:mailing,
+14:u07:pearg@irtf,
+13:u09:s/mailing,
+16:u0A:mailing/list,
+11:u0B:list/at,
+13:u0D:mailing/0,
+11:u12:mailing,
+8:u23:mail,
+8:u33:ling,
+11:u03:mailing,
+14:u06:pearg@irtf,
+16:u09:mailing/list,
+11:u0A:list/at,
+17:u0B:at/pearg@irtf,
+13:u0C:s/mailing,
+11:u11:mailing,
+14:u14:pearg@irtf,
+11:u02:mailing,
+14:u05:pearg@irtf,
+11:u09:list/at,
+17:u0A:at/pearg@irtf,
+16:u0B:pearg@irtf/.,
+16:u0C:mailing/list,
+11:u10:mailing,
+14:u13:pearg@irtf,
+11:u01:mailing,
+14:u04:pearg@irtf,
+17:u09:at/pearg@irtf,
+16:u0A:pearg@irtf/.,
+11:u0C:list/at,
+16:u0D:pearg@irtf/0,
+14:u12:pearg@irtf,
+11:u00:mailing,
+14:u03:pearg@irtf,
+16:u09:pearg@irtf/.,
+11:u0B:org/and,
+17:u0C:at/pearg@irtf,
+14:u11:pearg@irtf,
+14:u02:pearg@irtf,
+11:u0A:org/and,
+9:u0B:and//,
+16:u0C:pearg@irtf/.,
+14:u10:pearg@irtf,
+14:u01:pearg@irtf,
+10:u08:author,
+11:u09:org/and,
+9:u0A:and//,
+8:u0B://or,
+14:u00:pearg@irtf,
+10:u07:author,
+9:u09:and//,
+8:u0A://or,
+10:u0B:or/the,
+11:u0C:org/and,
+10:u06:author,
+8:u09://or,
+10:u0A:or/the,
+14:u0B:the/author,
+9:u0C:and//,
+10:u14:author,
+10:u05:author,
+10:u09:or/the,
+14:u0A:the/author,
+12:u0B:author/(,
+8:u0C://or,
+10:u13:author,
+10:u04:author,
+14:u09:the/author,
+12:u0A:author/(,
+7:u0B:(/s,
+10:u0C:or/the,
+12:u0D:author/0,
+10:u12:author,
+7:u32:hor,
+8:u33:thor,
+10:u03:author,
+12:u09:author/(,
+7:u0A:(/s,
+7:u0B:s/),
+14:u0C:the/author,
+10:u11:author,
+10:u02:author,
+11:u08:sources,
+7:u09:(/s,
+7:u0A:s/),
+12:u0C:author/(,
+10:u10:author,
+10:u01:author,
+11:u07:sources,
+7:u09:s/),
+7:u0C:(/s,
+10:u00:author,
+11:u06:sources,
+15:u0B:The/sources,
+7:u0C:s/),
+11:u14:sources,
+11:u05:sources,
+15:u0A:The/sources,
+15:u0B:sources/for,
+11:u13:sources,
+11:u04:sources,
+15:u09:The/sources,
+15:u0A:sources/for,
+12:u0B:for/this,
+13:u0D:sources/0,
+11:u12:sources,
+7:u22:sou,
+8:u23:sour,
+7:u32:ces,
+8:u33:rces,
+11:u03:sources,
+15:u09:sources/for,
+12:u0A:for/this,
+14:u0B:this/draft,
+15:u0C:The/sources,
+11:u11:sources,
+11:u02:sources,
+12:u09:for/this,
+14:u0A:this/draft,
+13:u0B:draft/are,
+15:u0C:sources/for,
+11:u10:sources,
+11:u01:sources,
+14:u09:this/draft,
+13:u0A:draft/are,
+10:u0B:are/at,
+12:u0C:for/this,
+11:u00:sources,
+13:u09:draft/are,
+10:u0A:are/at,
+8:u0B:at/:,
+14:u0C:this/draft,
+10:u09:are/at,
+8:u0A:at/:,
+11:u0B::/https,
+13:u0C:draft/are,
+8:u09:at/:,
+11:u0A::/https,
+10:u0C:are/at,
+10:u08:github,
+11:u09::/https,
+8:u0C:at/:,
+10:u07:github,
+11:u0C::/https,
+10:u06:github,
+12:u0B://github,
+10:u14:github,
+10:u05:github,
+12:u0A://github,
+12:u0B:github/.,
+10:u13:github,
+10:u04:github,
+7:u08:irl,
+12:u09://github,
+12:u0A:github/.,
+12:u0D:github/0,
+10:u12:github,
+7:u22:git,
+8:u23:gith,
+5:u30:b,
+6:u31:ub,
+7:u32:hub,
+8:u33:thub,
+10:u03:github,
+7:u07:irl,
+12:u09:github/.,
+9:u0B:com//,
+12:u0C://github,
+10:u11:github,
+10:u02:github,
+7:u06:irl,
+9:u0A:com//,
+9:u0B://irl,
+12:u0C:github/.,
+10:u10:github,
+7:u14:irl,
+10:u01:github,
+7:u05:irl,
+9:u09:com//,
+9:u0A://irl,
+9:u0B:irl//,
+7:u13:irl,
+10:u00:github,
+7:u04:irl,
+9:u09://irl,
+9:u0A:irl//,
+11:u0B://draft,
+9:u0C:com//,
+9:u0D:irl/0,
+7:u12:irl,
+7:u22:irl,
+7:u23:irl,
+6:u31:rl,
+7:u32:irl,
+7:u33:irl,
+7:u03:irl,
+9:u09:irl//,
+11:u0A://draft,
+9:u0C://irl,
+7:u11:irl,
+7:u02:irl,
+11:u09://draft,
+9:u0C:irl//,
+7:u10:irl,
+7:u01:irl,
+11:u0C://draft,
+7:u00:irl,
+22:u0B:measurement/Status,
+22:u0A:measurement/Status,
+22:u09:measurement/Status,
+22:u0C:measurement/Status,
+10:u0B:"/This,
+10:u0A:"/This,
+10:u09:"/This,
+10:u0C:"/This,
+14:u0B:on/January,
+14:u0A:on/January,
+14:u09:on/January,
+14:u0C:on/January,
+21:u0B:Learmonth/Expires,
+21:u0A:Learmonth/Expires,
+19:u0B:Expires/January,
+21:u09:Learmonth/Expires,
+19:u0A:Expires/January,
+19:u09:Expires/January,
+21:u0C:Learmonth/Expires,
+19:u0C:Expires/January,
+14:u0B:Draft/Safe,
+14:u0A:Draft/Safe,
+17:u0B:Safe/Internet,
+14:u09:Draft/Safe,
+17:u0A:Safe/Internet,
+24:u0B:Internet/Measurement,
+17:u09:Safe/Internet,
+24:u0A:Internet/Measurement,
+20:u0B:Measurement/July,
+14:u0C:Draft/Safe,
+24:u09:Internet/Measurement,
+20:u0A:Measurement/July,
+17:u0C:Safe/Internet,
+20:u09:Measurement/July,
+24:u0C:Internet/Measurement,
+20:u0C:Measurement/July,
+8:u08:Iain,
+8:u07:Iain,
+5:u08:R,
+8:u06:Iain,
+5:u07:R,
+10:u0B:./Iain,
+8:u14:iain,
+8:u05:Iain,
+5:u06:R,
+10:u0A:./Iain,
+10:u0B:Iain/R,
+8:u13:iain,
+5:u14:r,
+8:u04:Iain,
+5:u05:R,
+10:u09:./Iain,
+10:u0A:Iain/R,
+7:u0B:R/.,
+10:u0D:Iain/0,
+8:u12:iain,
+5:u13:r,
+6:u21:Ia,
+7:u22:Iai,
+8:u23:Iain,
+8:u33:Iain,
+8:u03:Iain,
+5:u04:R,
+10:u09:Iain/R,
+7:u0A:R/.,
+10:u0C:./Iain,
+7:u0D:R/0,
+8:u11:iain,
+5:u12:r,
+5:u21:R,
+5:u22:R,
+5:u23:R,
+5:u30:R,
+5:u31:R,
+5:u32:R,
+5:u33:R,
+8:u02:Iain,
+5:u03:R,
+7:u09:R/.,
+17:u0B:Learmonth/Tor,
+10:u0C:Iain/R,
+8:u10:iain,
+5:u11:r,
+8:u01:Iain,
+5:u02:R,
+17:u0A:Learmonth/Tor,
+7:u0C:R/.,
+5:u10:r,
+8:u00:Iain,
+5:u01:R,
+18:u08:irl@torproject,
+17:u09:Learmonth/Tor,
+17:u0B:Project/Email,
+5:u00:R,
+18:u07:irl@torproject,
+17:u0A:Project/Email,
+17:u0C:Learmonth/Tor,
+18:u06:irl@torproject,
+17:u09:Project/Email,
+20:u0B::/irl@torproject,
+18:u14:irl@torproject,
+18:u05:irl@torproject,
+20:u0A::/irl@torproject,
+20:u0B:irl@torproject/.,
+17:u0C:Project/Email,
+18:u13:irl@torproject,
+18:u04:irl@torproject,
+20:u09::/irl@torproject,
+20:u0A:irl@torproject/.,
+20:u0D:irl@torproject/0,
+18:u12:irl@torproject,
+8:u23:irl@,
+18:u03:irl@torproject,
+20:u09:irl@torproject/.,
+12:u0B:org/_x+1,
+20:u0C::/irl@torproject,
+18:u11:irl@torproject,
+18:u02:irl@torproject,
+12:u0A:org/_x+1,
+20:u0C:irl@torproject/.,
+18:u10:irl@torproject,
+12:u06:20190902,
+17:u0B:date/20190902,
+12:u14:20190902,
+12:u05:20190902,
+17:u0A:date/20190902,
+14:u0B:20190902/;,
+12:u13:20190902,
+12:u04:20190902,
+17:u09:date/20190902,
+14:u0A:20190902/;,
+14:u0D:20190902/0,
+12:u12:20190902,
+6:u31:02,
+7:u32:902,
+8:u33:0902,
+12:u03:20190902,
+14:u09:20190902/;,
+17:u0C:date/20190902,
+12:u11:20190902,
+12:u02:20190902,
+12:u08:20190903,
+14:u0C:20190902/;,
+12:u10:20190902,
+12:u01:20190902,
+12:u07:20190903,
+12:u00:20190902,
+12:u06:20190903,
+15:u0B:on/20190903,
+12:u14:20190903,
+12:u05:20190903,
+15:u0A:on/20190903,
+21:u0B:20190903/Internet,
+12:u13:20190903,
+12:u04:20190903,
+15:u09:on/20190903,
+21:u0A:20190903/Internet,
+14:u0D:20190903/0,
+12:u12:20190903,
+6:u31:03,
+7:u32:903,
+8:u33:0903,
+12:u03:20190903,
+5:u08:L,
+21:u09:20190903/Internet,
+15:u0C:on/20190903,
+12:u11:20190903,
+12:u02:20190903,
+5:u07:L,
+21:u0C:20190903/Internet,
+12:u10:20190903,
+12:u01:20190903,
+5:u06:L,
+14:u08:Velvindron,
+11:u0B:Force/L,
+5:u14:l,
+12:u00:20190903,
+5:u05:L,
+14:u07:Velvindron,
+11:u0A:Force/L,
+7:u0B:L/.,
+5:u13:l,
+5:u04:L,
+14:u06:Velvindron,
+11:u09:Force/L,
+7:u0A:L/.,
+16:u0B:./Velvindron,
+7:u0D:L/0,
+5:u12:l,
+14:u14:velvindron,
+5:u21:L,
+5:u22:L,
+5:u23:L,
+5:u30:L,
+5:u31:L,
+5:u32:L,
+5:u33:L,
+5:u03:L,
+14:u05:Velvindron,
+7:u09:L/.,
+16:u0A:./Velvindron,
+23:u0B:Velvindron/Internet,
+11:u0C:Force/L,
+5:u11:l,
+14:u13:velvindron,
+5:u02:L,
+14:u04:Velvindron,
+14:u08:cyberstorm,
+16:u09:./Velvindron,
+23:u0A:Velvindron/Internet,
+7:u0C:L/.,
+16:u0D:Velvindron/0,
+5:u10:l,
+14:u12:velvindron,
+6:u21:Ve,
+7:u22:Vel,
+8:u23:Velv,
+7:u32:ron,
+8:u33:dron,
+5:u01:L,
+14:u03:Velvindron,
+14:u07:cyberstorm,
+23:u09:Velvindron/Internet,
+16:u0C:./Velvindron,
+14:u11:velvindron,
+5:u00:L,
+14:u02:Velvindron,
+14:u06:cyberstorm,
+6:u08:mu,
+20:u0B:Draft/cyberstorm,
+23:u0C:Velvindron/Internet,
+14:u10:velvindron,
+14:u14:cyberstorm,
+14:u01:Velvindron,
+14:u05:cyberstorm,
+6:u07:mu,
+11:u08:Updates,
+20:u0A:Draft/cyberstorm,
+16:u0B:cyberstorm/.,
+14:u13:cyberstorm,
+14:u00:Velvindron,
+14:u04:cyberstorm,
+6:u06:mu,
+11:u07:Updates,
+20:u09:Draft/cyberstorm,
+16:u0A:cyberstorm/.,
+8:u0B:./mu,
+16:u0D:cyberstorm/0,
+14:u12:cyberstorm,
+6:u14:mu,
+6:u21:cy,
+7:u22:cyb,
+8:u23:cybe,
+6:u31:rm,
+7:u32:orm,
+8:u33:torm,
+14:u03:cyberstorm,
+6:u05:mu,
+11:u06:Updates,
+8:u08:5246,
+16:u09:cyberstorm/.,
+8:u0A:./mu,
+14:u0B:mu/Updates,
+20:u0C:Draft/cyberstorm,
+14:u11:cyberstorm,
+6:u13:mu,
+11:u14:updates,
+14:u02:cyberstorm,
+6:u04:mu,
+11:u05:Updates,
+8:u07:5246,
+8:u08:7525,
+8:u09:./mu,
+14:u0A:mu/Updates,
+13:u0B:Updates/:,
+16:u0C:cyberstorm/.,
+8:u0D:mu/0,
+14:u10:cyberstorm,
+6:u12:mu,
+11:u13:updates,
+6:u22:mu,
+6:u23:mu,
+6:u31:mu,
+6:u32:mu,
+6:u33:mu,
+14:u01:cyberstorm,
+6:u03:mu,
+11:u04:Updates,
+8:u06:5246,
+8:u07:7525,
+14:u09:mu/Updates,
+13:u0A:Updates/:,
+10:u0B::/5246,
+8:u0C:./mu,
+13:u0D:Updates/0,
+6:u11:mu,
+11:u12:updates,
+8:u14:5246,
+6:u21:Up,
+7:u22:Upd,
+8:u23:Upda,
+14:u00:cyberstorm,
+6:u02:mu,
+11:u03:Updates,
+8:u05:5246,
+8:u06:7525,
+6:u08:if,
+13:u09:Updates/:,
+10:u0A::/5246,
+13:u0B:5246/7525,
+14:u0C:mu/Updates,
+6:u10:mu,
+11:u11:updates,
+8:u13:5246,
+8:u14:7525,
+6:u01:mu,
+11:u02:Updates,
+8:u04:5246,
+8:u05:7525,
+6:u07:if,
+10:u09::/5246,
+13:u0A:5246/7525,
+10:u0B:7525/(,
+13:u0C:Updates/:,
+10:u0D:5246/0,
+11:u10:updates,
+8:u12:5246,
+8:u13:7525,
+6:u21:52,
+7:u22:524,
+8:u23:5246,
+6:u31:46,
+7:u32:246,
+8:u33:5246,
+6:u00:mu,
+11:u01:Updates,
+8:u03:5246,
+8:u04:7525,
+6:u06:if,
+13:u09:5246/7525,
+10:u0A:7525/(,
+8:u0B:(/if,
+10:u0C::/5246,
+10:u0D:7525/0,
+8:u11:5246,
+8:u12:7525,
+6:u14:if,
+6:u21:75,
+7:u22:752,
+8:u23:7525,
+6:u31:25,
+7:u32:525,
+8:u33:7525,
+11:u00:Updates,
+8:u02:5246,
+8:u03:7525,
+6:u05:if,
+5:u08:K,
+10:u09:7525/(,
+8:u0A:(/if,
+15:u0B:if/approved,
+13:u0C:5246/7525,
+8:u10:5246,
+8:u11:7525,
+6:u13:if,
+8:u01:5246,
+8:u02:7525,
+6:u04:if,
+5:u07:K,
+8:u09:(/if,
+15:u0A:if/approved,
+14:u0B:approved/),
+10:u0C:7525/(,
+8:u0D:if/0,
+8:u10:7525,
+6:u12:if,
+6:u21:if,
+6:u22:if,
+6:u23:if,
+6:u31:if,
+6:u32:if,
+6:u33:if,
+8:u00:5246,
+8:u01:7525,
+6:u03:if,
+5:u06:K,
+12:u08:Moriarty,
+15:u09:if/approved,
+14:u0A:approved/),
+7:u0B:)/K,
+8:u0C:(/if,
+6:u11:if,
+5:u14:k,
+8:u00:7525,
+6:u02:if,
+5:u05:K,
+12:u07:Moriarty,
+14:u09:approved/),
+7:u0A:)/K,
+7:u0B:K/.,
+15:u0C:if/approved,
+6:u10:if,
+5:u13:k,
+6:u01:if,
+5:u04:K,
+12:u06:Moriarty,
+7:u09:)/K,
+7:u0A:K/.,
+14:u0B:./Moriarty,
+14:u0C:approved/),
+7:u0D:K/0,
+5:u12:k,
+12:u14:moriarty,
+5:u20:K,
+5:u21:K,
+5:u22:K,
+5:u23:K,
+5:u31:K,
+5:u32:K,
+5:u33:K,
+6:u00:if,
+5:u03:K,
+12:u05:Moriarty,
+7:u09:K/.,
+14:u0A:./Moriarty,
+21:u0B:Moriarty/Intended,
+7:u0C:)/K,
+5:u11:k,
+12:u13:moriarty,
+5:u02:K,
+12:u04:Moriarty,
+14:u09:./Moriarty,
+21:u0A:Moriarty/Intended,
+7:u0C:K/.,
+14:u0D:Moriarty/0,
+5:u10:k,
+12:u12:moriarty,
+7:u22:Mor,
+8:u23:Mori,
+7:u32:rty,
+8:u33:arty,
+5:u01:K,
+12:u03:Moriarty,
+21:u09:Moriarty/Intended,
+14:u0C:./Moriarty,
+12:u11:moriarty,
+5:u00:K,
+12:u02:Moriarty,
+8:u08:Dell,
+15:u0B::/Standards,
+21:u0C:Moriarty/Intended,
+12:u10:moriarty,
+12:u01:Moriarty,
+8:u07:Dell,
+7:u08:EMC,
+15:u0A::/Standards,
+12:u00:Moriarty,
+8:u06:Dell,
+7:u07:EMC,
+15:u09::/Standards,
+14:u0B:Track/Dell,
+8:u14:dell,
+8:u05:Dell,
+7:u06:EMC,
+14:u0A:Track/Dell,
+12:u0B:Dell/EMC,
+15:u0C::/Standards,
+8:u13:dell,
+7:u14:emc,
+8:u04:Dell,
+7:u05:EMC,
+9:u08:March,
+14:u09:Track/Dell,
+12:u0A:Dell/EMC,
+15:u0B:EMC/Expires,
+10:u0D:Dell/0,
+8:u12:dell,
+7:u13:emc,
+7:u22:Del,
+8:u23:Dell,
+8:u33:Dell,
+8:u03:Dell,
+7:u04:EMC,
+9:u07:March,
+5:u08:5,
+12:u09:Dell/EMC,
+15:u0A:EMC/Expires,
+14:u0C:Track/Dell,
+9:u0D:EMC/0,
+8:u11:dell,
+7:u12:emc,
+6:u21:EM,
+7:u22:EMC,
+7:u23:EMC,
+6:u31:MC,
+7:u32:EMC,
+7:u33:EMC,
+8:u02:Dell,
+7:u03:EMC,
+9:u06:March,
+5:u07:5,
+15:u09:EMC/Expires,
+11:u0B::/March,
+12:u0C:Dell/EMC,
+8:u10:dell,
+7:u11:emc,
+9:u14:march,
+8:u01:Dell,
+7:u02:EMC,
+9:u05:March,
+5:u06:5,
+11:u0A::/March,
+11:u0B:March/5,
+15:u0C:EMC/Expires,
+7:u10:emc,
+9:u13:march,
+5:u14:5,
+8:u00:Dell,
+7:u01:EMC,
+9:u04:March,
+5:u05:5,
+11:u09::/March,
+11:u0A:March/5,
+7:u0B:5/,,
+11:u0D:March/0,
+9:u12:march,
+5:u13:5,
+7:u00:EMC,
+9:u03:March,
+5:u04:5,
+11:u09:March/5,
+7:u0A:5/,,
+11:u0C::/March,
+7:u0D:5/0,
+9:u11:march,
+5:u12:5,
+5:u21:5,
+5:u22:5,
+5:u23:5,
+5:u31:5,
+5:u32:5,
+5:u33:5,
+9:u02:March,
+5:u03:5,
+11:u08:Ghedini,
+7:u09:5/,,
+10:u0B:2020/A,
+11:u0C:March/5,
+9:u10:march,
+5:u11:5,
+9:u01:March,
+5:u02:5,
+11:u07:Ghedini,
+14:u08:Cloudflare,
+10:u0A:2020/A,
+7:u0C:5/,,
+5:u10:5,
+9:u00:March,
+5:u01:5,
+11:u06:Ghedini,
+14:u07:Cloudflare,
+10:u09:2020/A,
+13:u0B:./Ghedini,
+11:u14:ghedini,
+5:u00:5,
+11:u05:Ghedini,
+14:u06:Cloudflare,
+13:u0A:./Ghedini,
+22:u0B:Ghedini/Cloudflare,
+10:u0C:2020/A,
+11:u13:ghedini,
+14:u14:cloudflare,
+11:u04:Ghedini,
+14:u05:Cloudflare,
+13:u08:September,
+13:u09:./Ghedini,
+22:u0A:Ghedini/Cloudflare,
+18:u0B:Cloudflare/Inc,
+13:u0D:Ghedini/0,
+11:u12:ghedini,
+14:u13:cloudflare,
+6:u21:Gh,
+7:u22:Ghe,
+8:u23:Ghed,
+6:u31:ni,
+7:u32:ini,
+8:u33:dini,
+11:u03:Ghedini,
+14:u04:Cloudflare,
+13:u07:September,
+22:u09:Ghedini/Cloudflare,
+18:u0A:Cloudflare/Inc,
+13:u0C:./Ghedini,
+16:u0D:Cloudflare/0,
+11:u11:ghedini,
+14:u12:cloudflare,
+6:u21:Cl,
+7:u22:Clo,
+8:u23:Clou,
+8:u33:lare,
+11:u02:Ghedini,
+14:u03:Cloudflare,
+13:u06:September,
+18:u09:Cloudflare/Inc,
+15:u0B:./September,
+22:u0C:Ghedini/Cloudflare,
+11:u10:ghedini,
+14:u11:cloudflare,
+13:u14:september,
+11:u01:Ghedini,
+14:u02:Cloudflare,
+13:u05:September,
+15:u0A:./September,
+15:u0B:September/2,
+18:u0C:Cloudflare/Inc,
+14:u10:cloudflare,
+13:u13:september,
+11:u00:Ghedini,
+14:u01:Cloudflare,
+13:u04:September,
+15:u08:Deprecating,
+15:u09:./September,
+15:u0A:September/2,
+7:u0B:2/,,
+15:u0D:September/0,
+13:u12:september,
+7:u22:Sep,
+8:u23:Sept,
+14:u00:Cloudflare,
+13:u03:September,
+15:u07:Deprecating,
+7:u08:MD5,
+15:u09:September/2,
+7:u0A:2/,,
+15:u0C:./September,
+13:u11:september,
+13:u02:September,
+15:u06:Deprecating,
+7:u07:MD5,
+7:u09:2/,,
+20:u0B:2019/Deprecating,
+15:u0C:September/2,
+13:u10:september,
+15:u14:deprecating,
+13:u01:September,
+15:u05:Deprecating,
+7:u06:MD5,
+7:u08:SHA,
+20:u0A:2019/Deprecating,
+19:u0B:Deprecating/MD5,
+7:u0C:2/,,
+15:u13:deprecating,
+7:u14:md5,
+13:u00:September,
+15:u04:Deprecating,
+7:u05:MD5,
+7:u07:SHA,
+20:u09:2019/Deprecating,
+19:u0A:Deprecating/MD5,
+11:u0B:MD5/and,
+17:u0D:Deprecating/0,
+15:u12:deprecating,
+7:u13:md5,
+7:u22:Dep,
+8:u23:Depr,
+15:u03:Deprecating,
+7:u04:MD5,
+7:u06:SHA,
+19:u09:Deprecating/MD5,
+11:u0A:MD5/and,
+11:u0B:and/SHA,
+20:u0C:2019/Deprecating,
+9:u0D:MD5/0,
+15:u11:deprecating,
+7:u12:md5,
+7:u14:sha,
+6:u21:MD,
+7:u22:MD5,
+7:u23:MD5,
+6:u31:D5,
+7:u32:MD5,
+7:u33:MD5,
+15:u02:Deprecating,
+7:u03:MD5,
+7:u05:SHA,
+13:u08:signature,
+11:u09:MD5/and,
+11:u0A:and/SHA,
+9:u0B:SHA/-,
+19:u0C:Deprecating/MD5,
+15:u10:deprecating,
+7:u11:md5,
+7:u13:sha,
+15:u01:Deprecating,
+7:u02:MD5,
+7:u04:SHA,
+13:u07:signature,
+10:u08:hashes,
+11:u09:and/SHA,
+9:u0A:SHA/-,
+7:u0B:-/1,
+11:u0C:MD5/and,
+9:u0D:SHA/0,
+7:u10:md5,
+7:u12:sha,
+6:u21:SH,
+7:u22:SHA,
+7:u23:SHA,
+6:u31:HA,
+7:u32:SHA,
+7:u33:SHA,
+15:u00:Deprecating,
+7:u01:MD5,
+7:u03:SHA,
+13:u06:signature,
+10:u07:hashes,
+9:u09:SHA/-,
+7:u0A:-/1,
+15:u0B:1/signature,
+11:u0C:and/SHA,
+7:u11:sha,
+13:u14:signature,
+7:u00:MD5,
+7:u02:SHA,
+13:u05:signature,
+10:u06:hashes,
+7:u08:TLS,
+7:u09:-/1,
+15:u0A:1/signature,
+20:u0B:signature/hashes,
+9:u0C:SHA/-,
+7:u0D:1/1,
+7:u10:sha,
+13:u13:signature,
+10:u14:hashes,
+7:u01:SHA,
+13:u04:signature,
+10:u05:hashes,
+7:u07:TLS,
+15:u09:1/signature,
+20:u0A:signature/hashes,
+13:u0B:hashes/in,
+7:u0C:-/1,
+15:u0D:signature/0,
+13:u12:signature,
+10:u13:hashes,
+7:u22:sig,
+8:u23:sign,
+7:u00:SHA,
+13:u03:signature,
+10:u04:hashes,
+7:u06:TLS,
+20:u09:signature/hashes,
+13:u0A:hashes/in,
+10:u0B:in/TLS,
+15:u0C:1/signature,
+12:u0D:hashes/0,
+13:u11:signature,
+10:u12:hashes,
+7:u14:tls,
+8:u23:hash,
+13:u02:signature,
+10:u03:hashes,
+7:u05:TLS,
+13:u09:hashes/in,
+10:u0A:in/TLS,
+9:u0B:TLS/1,
+20:u0C:signature/hashes,
+13:u10:signature,
+10:u11:hashes,
+7:u13:tls,
+13:u01:signature,
+10:u02:hashes,
+7:u04:TLS,
+10:u09:in/TLS,
+9:u0A:TLS/1,
+7:u0B:1/.,
+13:u0C:hashes/in,
+9:u0D:TLS/0,
+10:u10:hashes,
+7:u12:tls,
+7:u22:TLS,
+7:u23:TLS,
+5:u30:S,
+6:u31:LS,
+7:u32:TLS,
+7:u33:TLS,
+13:u00:signature,
+10:u01:hashes,
+7:u03:TLS,
+9:u09:TLS/1,
+7:u0A:1/.,
+7:u0B:./2,
+10:u0C:in/TLS,
+7:u11:tls,
+10:u00:hashes,
+7:u02:TLS,
+7:u09:1/.,
+7:u0A:./2,
+11:u0B:2/draft,
+9:u0C:TLS/1,
+7:u10:tls,
+7:u01:TLS,
+7:u09:./2,
+11:u0A:2/draft,
+7:u0C:1/.,
+7:u00:TLS,
+7:u08:tls,
+11:u09:2/draft,
+10:u0B:-/ietf,
+7:u0C:./2,
+7:u07:tls,
+10:u0A:-/ietf,
+10:u0B:ietf/-,
+11:u0C:2/draft,
+7:u06:tls,
+7:u08:md5,
+10:u09:-/ietf,
+10:u0A:ietf/-,
+9:u0B:-/tls,
+10:u0D:ietf/1,
+7:u05:tls,
+7:u07:md5,
+10:u09:ietf/-,
+9:u0A:-/tls,
+9:u0B:tls/-,
+10:u0C:-/ietf,
+7:u04:tls,
+7:u06:md5,
+8:u08:sha1,
+9:u09:-/tls,
+9:u0A:tls/-,
+9:u0B:-/md5,
+10:u0C:ietf/-,
+9:u0D:tls/1,
+6:u21:tl,
+7:u22:tls,
+7:u23:tls,
+7:u32:tls,
+7:u33:tls,
+7:u03:tls,
+7:u05:md5,
+8:u07:sha1,
+9:u09:tls/-,
+9:u0A:-/md5,
+9:u0B:md5/-,
+9:u0C:-/tls,
+7:u02:tls,
+7:u04:md5,
+8:u06:sha1,
+13:u08:deprecate,
+9:u09:-/md5,
+9:u0A:md5/-,
+10:u0B:-/sha1,
+9:u0C:tls/-,
+9:u0D:md5/1,
+8:u14:sha1,
+6:u21:md,
+7:u22:md5,
+7:u23:md5,
+6:u31:d5,
+7:u32:md5,
+7:u33:md5,
+7:u01:tls,
+7:u03:md5,
+8:u05:sha1,
+13:u07:deprecate,
+9:u09:md5/-,
+10:u0A:-/sha1,
+10:u0B:sha1/-,
+9:u0C:-/md5,
+8:u13:sha1,
+7:u00:tls,
+7:u02:md5,
+8:u04:sha1,
+13:u06:deprecate,
+6:u08:00,
+10:u09:-/sha1,
+10:u0A:sha1/-,
+15:u0B:-/deprecate,
+9:u0C:md5/-,
+10:u0D:sha1/1,
+8:u12:sha1,
+13:u14:deprecate,
+7:u22:sha,
+8:u23:sha1,
+6:u31:a1,
+7:u32:ha1,
+8:u33:sha1,
+7:u01:md5,
+8:u03:sha1,
+13:u05:deprecate,
+6:u07:00,
+10:u09:sha1/-,
+15:u0A:-/deprecate,
+15:u0B:deprecate/-,
+10:u0C:-/sha1,
+8:u11:sha1,
+13:u13:deprecate,
+7:u00:md5,
+8:u02:sha1,
+13:u04:deprecate,
+6:u06:00,
+15:u09:-/deprecate,
+15:u0A:deprecate/-,
+8:u0B:-/00,
+10:u0C:sha1/-,
+15:u0D:deprecate/1,
+8:u10:sha1,
+13:u12:deprecate,
+6:u14:00,
+8:u23:depr,
+8:u01:sha1,
+13:u03:deprecate,
+6:u05:00,
+15:u09:deprecate/-,
+8:u0A:-/00,
+15:u0B:00/Abstract,
+15:u0C:-/deprecate,
+13:u11:deprecate,
+6:u13:00,
+8:u00:sha1,
+13:u02:deprecate,
+6:u04:00,
+8:u09:-/00,
+15:u0A:00/Abstract,
+16:u0B:Abstract/The,
+15:u0C:deprecate/-,
+8:u0D:00/1,
+13:u10:deprecate,
+6:u12:00,
+6:u21:00,
+6:u22:00,
+6:u23:00,
+6:u31:00,
+6:u32:00,
+6:u33:00,
+13:u01:deprecate,
+6:u03:00,
+15:u09:00/Abstract,
+16:u0A:Abstract/The,
+11:u0B:The/MD5,
+8:u0C:-/00,
+6:u11:00,
+13:u00:deprecate,
+6:u02:00,
+16:u09:Abstract/The,
+11:u0A:The/MD5,
+15:u0C:00/Abstract,
+6:u10:00,
+6:u01:00,
+11:u09:The/MD5,
+16:u0C:Abstract/The,
+6:u00:00,
+11:u08:hashing,
+11:u0C:The/MD5,
+11:u07:hashing,
+14:u08:algorithms,
+11:u06:hashing,
+14:u07:algorithms,
+13:u0B:1/hashing,
+11:u14:hashing,
+11:u05:hashing,
+14:u06:algorithms,
+12:u08:steadily,
+13:u0A:1/hashing,
+22:u0B:hashing/algorithms,
+11:u13:hashing,
+14:u14:algorithms,
+11:u04:hashing,
+14:u05:algorithms,
+12:u07:steadily,
+13:u08:weakening,
+13:u09:1/hashing,
+22:u0A:hashing/algorithms,
+18:u0B:algorithms/are,
+13:u0D:hashing/0,
+11:u12:hashing,
+14:u13:algorithms,
+8:u33:hing,
+11:u03:hashing,
+14:u04:algorithms,
+12:u06:steadily,
+13:u07:weakening,
+22:u09:hashing/algorithms,
+18:u0A:algorithms/are,
+16:u0B:are/steadily,
+13:u0C:1/hashing,
+16:u0D:algorithms/0,
+11:u11:hashing,
+14:u12:algorithms,
+12:u14:steadily,
+7:u22:alg,
+8:u23:algo,
+7:u32:hms,
+8:u33:thms,
+11:u02:hashing,
+14:u03:algorithms,
+12:u05:steadily,
+13:u06:weakening,
+12:u08:strength,
+18:u09:algorithms/are,
+16:u0A:are/steadily,
+22:u0B:steadily/weakening,
+22:u0C:hashing/algorithms,
+11:u10:hashing,
+14:u11:algorithms,
+12:u13:steadily,
+13:u14:weakening,
+11:u01:hashing,
+14:u02:algorithms,
+12:u04:steadily,
+13:u05:weakening,
+12:u07:strength,
+16:u09:are/steadily,
+22:u0A:steadily/weakening,
+16:u0B:weakening/in,
+18:u0C:algorithms/are,
+14:u0D:steadily/0,
+14:u10:algorithms,
+12:u12:steadily,
+13:u13:weakening,
+7:u22:ste,
+8:u23:stea,
+7:u32:ily,
+8:u33:dily,
+11:u00:hashing,
+14:u01:algorithms,
+12:u03:steadily,
+13:u04:weakening,
+12:u06:strength,
+22:u09:steadily/weakening,
+16:u0A:weakening/in,
+15:u0B:in/strength,
+16:u0C:are/steadily,
+15:u0D:weakening/0,
+12:u11:steadily,
+13:u12:weakening,
+12:u14:strength,
+7:u22:wea,
+8:u23:weak,
+14:u00:algorithms,
+12:u02:steadily,
+13:u03:weakening,
+12:u05:strength,
+15:u08:deprecation,
+16:u09:weakening/in,
+15:u0A:in/strength,
+16:u0B:strength/and,
+22:u0C:steadily/weakening,
+12:u10:steadily,
+13:u11:weakening,
+12:u13:strength,
+12:u01:steadily,
+13:u02:weakening,
+12:u04:strength,
+15:u07:deprecation,
+11:u08:process,
+15:u09:in/strength,
+16:u0A:strength/and,
+13:u0B:and/their,
+16:u0C:weakening/in,
+14:u0D:strength/0,
+13:u10:weakening,
+12:u12:strength,
+7:u22:str,
+8:u23:stre,
+7:u32:gth,
+8:u33:ngth,
+12:u00:steadily,
+13:u01:weakening,
+12:u03:strength,
+15:u06:deprecation,
+11:u07:process,
+16:u09:strength/and,
+13:u0A:and/their,
+21:u0B:their/deprecation,
+15:u0C:in/strength,
+12:u11:strength,
+15:u14:deprecation,
+13:u00:weakening,
+12:u02:strength,
+15:u05:deprecation,
+11:u06:process,
+9:u08:begin,
+13:u09:and/their,
+21:u0A:their/deprecation,
+23:u0B:deprecation/process,
+16:u0C:strength/and,
+12:u10:strength,
+15:u13:deprecation,
+11:u14:process,
+12:u01:strength,
+15:u04:deprecation,
+11:u05:process,
+9:u07:begin,
+21:u09:their/deprecation,
+23:u0A:deprecation/process,
+18:u0B:process/should,
+13:u0C:and/their,
+17:u0D:deprecation/0,
+15:u12:deprecation,
+11:u13:process,
+12:u00:strength,
+15:u03:deprecation,
+11:u04:process,
+9:u06:begin,
+23:u09:deprecation/process,
+18:u0A:process/should,
+16:u0B:should/begin,
+21:u0C:their/deprecation,
+13:u0D:process/0,
+15:u11:deprecation,
+11:u12:process,
+9:u14:begin,
+8:u23:proc,
+8:u33:cess,
+15:u02:deprecation,
+11:u03:process,
+9:u05:begin,
+18:u09:process/should,
+16:u0A:should/begin,
+13:u0B:begin/for,
+23:u0C:deprecation/process,
+15:u10:deprecation,
+11:u11:process,
+9:u13:begin,
+15:u01:deprecation,
+11:u02:process,
+9:u04:begin,
+16:u09:should/begin,
+13:u0A:begin/for,
+13:u0B:for/their,
+18:u0C:process/should,
+11:u0D:begin/0,
+11:u10:process,
+9:u12:begin,
+7:u22:beg,
+8:u23:begi,
+7:u32:gin,
+8:u33:egin,
+15:u00:deprecation,
+11:u01:process,
+9:u03:begin,
+13:u09:begin/for,
+13:u0A:for/their,
+13:u0B:their/use,
+16:u0C:should/begin,
+9:u11:begin,
+11:u00:process,
+9:u02:begin,
+13:u09:for/their,
+13:u0A:their/use,
+10:u0B:use/in,
+13:u0C:begin/for,
+9:u10:begin,
+9:u01:begin,
+13:u09:their/use,
+10:u0A:use/in,
+13:u0C:for/their,
+9:u00:begin,
+10:u09:use/in,
+13:u0C:their/use,
+11:u08:digital,
+10:u0C:use/in,
+11:u07:digital,
+14:u08:signatures,
+11:u06:digital,
+14:u07:signatures,
+13:u0B:2/digital,
+11:u14:digital,
+11:u05:digital,
+14:u06:signatures,
+11:u08:However,
+13:u0A:2/digital,
+22:u0B:digital/signatures,
+11:u13:digital,
+14:u14:signatures,
+11:u04:digital,
+14:u05:signatures,
+11:u07:However,
+13:u09:2/digital,
+22:u0A:digital/signatures,
+16:u0B:signatures/.,
+13:u0D:digital/0,
+11:u12:digital,
+14:u13:signatures,
+7:u22:dig,
+8:u23:digi,
+8:u33:ital,
+11:u03:digital,
+14:u04:signatures,
+11:u06:However,
+22:u09:digital/signatures,
+16:u0A:signatures/.,
+13:u0B:./However,
+13:u0C:2/digital,
+16:u0D:signatures/0,
+11:u11:digital,
+14:u12:signatures,
+11:u02:digital,
+14:u03:signatures,
+11:u05:However,
+16:u09:signatures/.,
+13:u0A:./However,
+13:u0B:However/,,
+22:u0C:digital/signatures,
+11:u10:digital,
+14:u11:signatures,
+11:u01:digital,
+14:u02:signatures,
+11:u04:However,
+8:u08:does,
+13:u09:./However,
+13:u0A:However/,,
+10:u0B:,/this,
+16:u0C:signatures/.,
+13:u0D:However/0,
+14:u10:signatures,
+6:u21:Ho,
+7:u22:How,
+8:u23:Howe,
+11:u00:digital,
+14:u01:signatures,
+11:u03:However,
+8:u07:does,
+13:u09:However/,,
+10:u0A:,/this,
+13:u0C:./However,
+14:u00:signatures,
+11:u02:However,
+8:u06:does,
+10:u09:,/this,
+17:u0B:document/does,
+13:u0C:However/,,
+8:u14:does,
+11:u01:However,
+8:u05:does,
+17:u0A:document/does,
+12:u0B:does/not,
+10:u0C:,/this,
+8:u13:does,
+11:u00:However,
+8:u04:does,
+17:u09:document/does,
+12:u0A:does/not,
+17:u0B:not/deprecate,
+10:u0D:does/0,
+8:u12:does,
+7:u22:doe,
+8:u23:does,
+7:u32:oes,
+8:u33:does,
+8:u03:does,
+12:u09:does/not,
+17:u0A:not/deprecate,
+17:u0B:deprecate/SHA,
+17:u0C:document/does,
+8:u11:does,
+8:u02:does,
+17:u09:not/deprecate,
+17:u0A:deprecate/SHA,
+12:u0C:does/not,
+15:u0D:deprecate/0,
+8:u10:does,
+8:u01:does,
+8:u08:HMAC,
+17:u09:deprecate/SHA,
+17:u0C:not/deprecate,
+8:u00:does,
+8:u07:HMAC,
+8:u0B:1/in,
+17:u0C:deprecate/SHA,
+8:u06:HMAC,
+10:u08:record,
+8:u0A:1/in,
+11:u0B:in/HMAC,
+8:u14:hmac,
+8:u05:HMAC,
+10:u07:record,
+14:u08:protection,
+8:u09:1/in,
+11:u0A:in/HMAC,
+12:u0B:HMAC/for,
+8:u13:hmac,
+8:u04:HMAC,
+10:u06:record,
+14:u07:protection,
+11:u09:in/HMAC,
+12:u0A:HMAC/for,
+14:u0B:for/record,
+8:u0C:1/in,
+10:u0D:HMAC/0,
+8:u12:hmac,
+10:u14:record,
+6:u21:HM,
+7:u22:HMA,
+8:u23:HMAC,
+6:u31:AC,
+7:u32:MAC,
+8:u33:HMAC,
+8:u03:HMAC,
+10:u05:record,
+14:u06:protection,
+12:u09:HMAC/for,
+14:u0A:for/record,
+21:u0B:record/protection,
+11:u0C:in/HMAC,
+8:u11:hmac,
+10:u13:record,
+14:u14:protection,
+8:u02:HMAC,
+10:u04:record,
+14:u05:protection,
+14:u09:for/record,
+21:u0A:record/protection,
+16:u0B:protection/.,
+12:u0C:HMAC/for,
+12:u0D:record/0,
+8:u10:hmac,
+10:u12:record,
+14:u13:protection,
+8:u23:reco,
+7:u32:ord,
+8:u33:cord,
+8:u01:HMAC,
+10:u03:record,
+14:u04:protection,
+21:u09:record/protection,
+16:u0A:protection/.,
+14:u0C:for/record,
+16:u0D:protection/0,
+10:u11:record,
+14:u12:protection,
+8:u00:HMAC,
+10:u02:record,
+14:u03:protection,
+16:u09:protection/.,
+21:u0C:record/protection,
+10:u10:record,
+14:u11:protection,
+10:u01:record,
+14:u02:protection,
+16:u0C:protection/.,
+14:u10:protection,
+10:u00:record,
+14:u01:protection,
+14:u00:protection,
+12:u0B:on/March,
+12:u0A:on/March,
+12:u09:on/March,
+12:u0C:on/March,
+13:u08:Loganaden,
+13:u07:Loganaden,
+13:u06:Loganaden,
+16:u0B:of/Loganaden,
+13:u14:loganaden,
+13:u05:Loganaden,
+16:u0A:of/Loganaden,
+24:u0B:Loganaden/Velvindron,
+13:u13:loganaden,
+13:u04:Loganaden,
+16:u09:of/Loganaden,
+24:u0A:Loganaden/Velvindron,
+25:u0B:Velvindron/cyberstorm,
+15:u0D:Loganaden/0,
+13:u12:loganaden,
+6:u21:Lo,
+7:u22:Log,
+8:u23:Loga,
+7:u32:den,
+8:u33:aden,
+13:u03:Loganaden,
+8:u08:Rose,
+24:u09:Loganaden/Velvindron,
+25:u0A:Velvindron/cyberstorm,
+16:u0C:of/Loganaden,
+13:u11:loganaden,
+13:u02:Loganaden,
+8:u07:Rose,
+25:u09:Velvindron/cyberstorm,
+24:u0C:Loganaden/Velvindron,
+13:u10:loganaden,
+13:u01:Loganaden,
+8:u06:Rose,
+6:u08:MU,
+11:u0B:mu/Rose,
+25:u0C:Velvindron/cyberstorm,
+8:u14:rose,
+13:u00:Loganaden,
+8:u05:Rose,
+6:u07:MU,
+11:u0A:mu/Rose,
+13:u0B:Rose/Hill,
+8:u13:rose,
+8:u04:Rose,
+6:u06:MU,
+11:u09:mu/Rose,
+13:u0A:Rose/Hill,
+11:u0B:Hill/MU,
+10:u0D:Rose/0,
+8:u12:rose,
+6:u21:Ro,
+7:u22:Ros,
+8:u23:Rose,
+8:u33:Rose,
+8:u03:Rose,
+6:u05:MU,
+8:u08:+230,
+13:u09:Rose/Hill,
+11:u0A:Hill/MU,
+12:u0B:MU/Phone,
+11:u0C:mu/Rose,
+8:u11:rose,
+8:u02:Rose,
+6:u04:MU,
+8:u07:+230,
+12:u08:59762817,
+11:u09:Hill/MU,
+12:u0A:MU/Phone,
+13:u0C:Rose/Hill,
+8:u0D:MU/0,
+8:u10:rose,
+6:u21:MU,
+6:u22:MU,
+6:u23:MU,
+6:u31:MU,
+6:u32:MU,
+6:u33:MU,
+8:u01:Rose,
+6:u03:MU,
+8:u06:+230,
+12:u07:59762817,
+12:u09:MU/Phone,
+10:u0B::/+230,
+11:u0C:Hill/MU,
+8:u14:+230,
+8:u00:Rose,
+6:u02:MU,
+8:u05:+230,
+12:u06:59762817,
+10:u0A::/+230,
+17:u0B:+230/59762817,
+12:u0C:MU/Phone,
+8:u13:+230,
+12:u14:59762817,
+6:u01:MU,
+8:u04:+230,
+12:u05:59762817,
+20:u08:logan@cyberstorm,
+10:u09::/+230,
+17:u0A:+230/59762817,
+18:u0B:59762817/Email,
+10:u0D:+230/0,
+8:u12:+230,
+12:u13:59762817,
+6:u21:+2,
+7:u22:+23,
+8:u23:+230,
+6:u31:30,
+7:u32:230,
+8:u33:+230,
+6:u00:MU,
+8:u03:+230,
+12:u04:59762817,
+20:u07:logan@cyberstorm,
+17:u09:+230/59762817,
+18:u0A:59762817/Email,
+10:u0C::/+230,
+14:u0D:59762817/0,
+8:u11:+230,
+12:u12:59762817,
+7:u22:597,
+8:u23:5976,
+6:u31:17,
+7:u32:817,
+8:u33:2817,
+8:u02:+230,
+12:u03:59762817,
+20:u06:logan@cyberstorm,
+18:u09:59762817/Email,
+22:u0B::/logan@cyberstorm,
+17:u0C:+230/59762817,
+8:u10:+230,
+12:u11:59762817,
+20:u14:logan@cyberstorm,
+8:u01:+230,
+12:u02:59762817,
+20:u05:logan@cyberstorm,
+12:u08:Kathleen,
+22:u0A::/logan@cyberstorm,
+22:u0B:logan@cyberstorm/.,
+18:u0C:59762817/Email,
+12:u10:59762817,
+20:u13:logan@cyberstorm,
+8:u00:+230,
+12:u01:59762817,
+20:u04:logan@cyberstorm,
+12:u07:Kathleen,
+22:u09::/logan@cyberstorm,
+22:u0A:logan@cyberstorm/.,
+22:u0D:logan@cyberstorm/0,
+20:u12:logan@cyberstorm,
+6:u21:lo,
+7:u22:log,
+8:u23:loga,
+12:u00:59762817,
+20:u03:logan@cyberstorm,
+12:u06:Kathleen,
+22:u09:logan@cyberstorm/.,
+15:u0B:mu/Kathleen,
+22:u0C::/logan@cyberstorm,
+20:u11:logan@cyberstorm,
+12:u14:kathleen,
+20:u02:logan@cyberstorm,
+12:u05:Kathleen,
+15:u0A:mu/Kathleen,
+21:u0B:Kathleen/Moriarty,
+22:u0C:logan@cyberstorm/.,
+20:u10:logan@cyberstorm,
+12:u13:kathleen,
+20:u01:logan@cyberstorm,
+12:u04:Kathleen,
+14:u08:Alessandro,
+15:u09:mu/Kathleen,
+21:u0A:Kathleen/Moriarty,
+17:u0B:Moriarty/Dell,
+14:u0D:Kathleen/0,
+12:u12:kathleen,
+6:u21:Ka,
+7:u22:Kat,
+8:u23:Kath,
+8:u33:leen,
+20:u00:logan@cyberstorm,
+12:u03:Kathleen,
+14:u07:Alessandro,
+21:u09:Kathleen/Moriarty,
+17:u0A:Moriarty/Dell,
+15:u0C:mu/Kathleen,
+12:u11:kathleen,
+12:u02:Kathleen,
+14:u06:Alessandro,
+17:u09:Moriarty/Dell,
+18:u0B:EMC/Alessandro,
+21:u0C:Kathleen/Moriarty,
+12:u10:kathleen,
+14:u14:alessandro,
+12:u01:Kathleen,
+14:u05:Alessandro,
+18:u0A:EMC/Alessandro,
+22:u0B:Alessandro/Ghedini,
+17:u0C:Moriarty/Dell,
+14:u13:alessandro,
+12:u00:Kathleen,
+14:u04:Alessandro,
+18:u09:EMC/Alessandro,
+22:u0A:Alessandro/Ghedini,
+16:u0D:Alessandro/0,
+14:u12:alessandro,
+7:u22:Ale,
+8:u23:Ales,
+6:u31:ro,
+7:u32:dro,
+8:u33:ndro,
+14:u03:Alessandro,
+22:u09:Alessandro/Ghedini,
+18:u0C:EMC/Alessandro,
+14:u11:alessandro,
+14:u02:Alessandro,
+22:u0C:Alessandro/Ghedini,
+14:u10:alessandro,
+14:u01:Alessandro,
+10:u0B:./_x+1,
+14:u00:Alessandro,
+10:u0A:./_x+1,
+15:uA3:ALLCAP/_x+1,
+12:u06:20190808,
+17:u0B:date/20190808,
+12:u14:20190808,
+12:u05:20190808,
+17:u0A:date/20190808,
+14:u0B:20190808/;,
+12:u13:20190808,
+12:u04:20190808,
+17:u09:date/20190808,
+14:u0A:20190808/;,
+14:u0D:20190808/0,
+12:u12:20190808,
+7:u32:808,
+8:u33:0808,
+12:u03:20190808,
+14:u09:20190808/;,
+17:u0C:date/20190808,
+12:u11:20190808,
+12:u02:20190808,
+12:u08:20190809,
+14:u0C:20190808/;,
+12:u10:20190808,
+12:u01:20190808,
+12:u07:20190809,
+12:u00:20190808,
+12:u06:20190809,
+8:u08:Work,
+15:u0B:on/20190809,
+12:u14:20190809,
+12:u05:20190809,
+8:u07:Work,
+15:u0A:on/20190809,
+20:u0B:20190809/Network,
+12:u13:20190809,
+12:u04:20190809,
+8:u06:Work,
+5:u08:N,
+15:u09:on/20190809,
+20:u0A:20190809/Network,
+16:u0B:Network/Work,
+14:u0D:20190809/0,
+12:u12:20190809,
+7:u32:809,
+8:u33:0809,
+12:u03:20190809,
+8:u05:Work,
+5:u07:N,
+20:u09:20190809/Network,
+16:u0A:Network/Work,
+14:u0B:Work/group,
+15:u0C:on/20190809,
+12:u11:20190809,
+12:u02:20190809,
+8:u04:Work,
+5:u06:N,
+10:u08:Nainar,
+16:u09:Network/Work,
+14:u0A:Work/group,
+11:u0B:group/N,
+20:u0C:20190809/Network,
+10:u0D:Work/0,
+12:u10:20190809,
+5:u14:n,
+8:u33:Work,
+12:u01:20190809,
+8:u03:Work,
+5:u05:N,
+10:u07:Nainar,
+14:u09:Work/group,
+11:u0A:group/N,
+7:u0B:N/.,
+16:u0C:Network/Work,
+5:u13:n,
+12:u00:20190809,
+8:u02:Work,
+5:u04:N,
+10:u06:Nainar,
+11:u09:group/N,
+7:u0A:N/.,
+12:u0B:./Nainar,
+14:u0C:Work/group,
+7:u0D:N/0,
+5:u12:n,
+10:u14:nainar,
+5:u21:N,
+5:u22:N,
+5:u23:N,
+5:u31:N,
+5:u32:N,
+5:u33:N,
+8:u01:Work,
+5:u03:N,
+10:u05:Nainar,
+7:u09:N/.,
+12:u0A:./Nainar,
+19:u0B:Nainar/Internet,
+11:u0C:group/N,
+5:u11:n,
+10:u13:nainar,
+8:u00:Work,
+5:u02:N,
+10:u04:Nainar,
+12:u09:./Nainar,
+19:u0A:Nainar/Internet,
+7:u0C:N/.,
+12:u0D:Nainar/0,
+5:u10:n,
+10:u12:nainar,
+7:u22:Nai,
+8:u23:Nain,
+6:u31:ar,
+7:u32:nar,
+8:u33:inar,
+5:u01:N,
+10:u03:Nainar,
+19:u09:Nainar/Internet,
+12:u0C:./Nainar,
+10:u11:nainar,
+5:u00:N,
+10:u02:Nainar,
+13:u08:Pignataro,
+11:u0B:Draft/C,
+19:u0C:Nainar/Internet,
+10:u10:nainar,
+10:u01:Nainar,
+13:u07:Pignataro,
+11:u0A:Draft/C,
+10:u00:Nainar,
+13:u06:Pignataro,
+11:u09:Draft/C,
+15:u0B:./Pignataro,
+13:u14:pignataro,
+13:u05:Pignataro,
+8:u08:8287,
+15:u0A:./Pignataro,
+21:u0B:Pignataro/Updates,
+11:u0C:Draft/C,
+13:u13:pignataro,
+13:u04:Pignataro,
+8:u07:8287,
+15:u09:./Pignataro,
+21:u0A:Pignataro/Updates,
+15:u0D:Pignataro/0,
+13:u12:pignataro,
+6:u21:Pi,
+7:u22:Pig,
+8:u23:Pign,
+7:u32:aro,
+8:u33:taro,
+13:u03:Pignataro,
+8:u06:8287,
+21:u09:Pignataro/Updates,
+10:u0B::/8287,
+15:u0C:./Pignataro,
+13:u11:pignataro,
+8:u14:8287,
+13:u02:Pignataro,
+8:u05:8287,
+10:u0A::/8287,
+10:u0B:8287/(,
+21:u0C:Pignataro/Updates,
+13:u10:pignataro,
+8:u13:8287,
+13:u01:Pignataro,
+8:u04:8287,
+10:u09::/8287,
+10:u0A:8287/(,
+10:u0D:8287/0,
+8:u12:8287,
+6:u21:82,
+7:u22:828,
+8:u23:8287,
+6:u31:87,
+7:u32:287,
+8:u33:8287,
+13:u00:Pignataro,
+8:u03:8287,
+9:u08:Cisco,
+10:u09:8287/(,
+10:u0C::/8287,
+8:u11:8287,
+8:u02:8287,
+9:u07:Cisco,
+10:u0C:8287/(,
+8:u10:8287,
+8:u01:8287,
+9:u06:Cisco,
+11:u0B:)/Cisco,
+9:u14:cisco,
+8:u00:8287,
+9:u05:Cisco,
+11:u0A:)/Cisco,
+17:u0B:Cisco/Systems,
+9:u13:cisco,
+9:u04:Cisco,
+11:u09:)/Cisco,
+17:u0A:Cisco/Systems,
+13:u0B:Systems/,,
+11:u0D:Cisco/0,
+9:u12:cisco,
+6:u21:Ci,
+7:u22:Cis,
+8:u23:Cisc,
+6:u31:co,
+7:u32:sco,
+8:u33:isco,
+9:u03:Cisco,
+17:u09:Cisco/Systems,
+13:u0A:Systems/,,
+11:u0C:)/Cisco,
+9:u11:cisco,
+9:u02:Cisco,
+13:u09:Systems/,,
+17:u0C:Cisco/Systems,
+9:u10:cisco,
+9:u01:Cisco,
+14:u0B:./Intended,
+13:u0C:Systems/,,
+9:u00:Cisco,
+14:u0A:./Intended,
+14:u09:./Intended,
+5:u08:F,
+14:u0C:./Intended,
+5:u07:F,
+5:u06:F,
+9:u08:Iqbal,
+11:u0B:Track/F,
+5:u14:f,
+5:u05:F,
+9:u07:Iqbal,
+11:u0A:Track/F,
+7:u0B:F/.,
+5:u13:f,
+5:u04:F,
+9:u06:Iqbal,
+11:u09:Track/F,
+7:u0A:F/.,
+11:u0B:./Iqbal,
+7:u0D:F/0,
+5:u12:f,
+9:u14:iqbal,
+5:u21:F,
+5:u22:F,
+5:u23:F,
+5:u31:F,
+5:u32:F,
+5:u33:F,
+5:u03:F,
+9:u05:Iqbal,
+7:u09:F/.,
+11:u0A:./Iqbal,
+17:u0B:Iqbal/Expires,
+11:u0C:Track/F,
+5:u11:f,
+9:u13:iqbal,
+5:u02:F,
+9:u04:Iqbal,
+11:u09:./Iqbal,
+17:u0A:Iqbal/Expires,
+7:u0C:F/.,
+11:u0D:Iqbal/0,
+5:u10:f,
+9:u12:iqbal,
+6:u21:Iq,
+7:u22:Iqb,
+8:u23:Iqba,
+7:u32:bal,
+8:u33:qbal,
+5:u01:F,
+9:u03:Iqbal,
+17:u09:Iqbal/Expires,
+11:u0C:./Iqbal,
+9:u11:iqbal,
+5:u00:F,
+9:u02:Iqbal,
+14:u0B:February/9,
+17:u0C:Iqbal/Expires,
+9:u10:iqbal,
+9:u01:Iqbal,
+14:u08:Individual,
+14:u0A:February/9,
+9:u00:Iqbal,
+14:u07:Individual,
+14:u09:February/9,
+14:u06:Individual,
+19:u0B:2020/Individual,
+14:u0C:February/9,
+14:u14:individual,
+14:u05:Individual,
+14:u08:Vainshtein,
+19:u0A:2020/Individual,
+16:u0B:Individual/A,
+14:u13:individual,
+14:u04:Individual,
+14:u07:Vainshtein,
+7:u08:ECI,
+19:u09:2020/Individual,
+16:u0A:Individual/A,
+16:u0D:Individual/0,
+14:u12:individual,
+7:u22:Ind,
+8:u23:Indi,
+7:u32:ual,
+8:u33:dual,
+14:u03:Individual,
+14:u06:Vainshtein,
+7:u07:ECI,
+11:u08:Telecom,
+16:u09:Individual/A,
+16:u0B:./Vainshtein,
+19:u0C:2020/Individual,
+14:u11:individual,
+14:u14:vainshtein,
+14:u02:Individual,
+14:u05:Vainshtein,
+7:u06:ECI,
+11:u07:Telecom,
+16:u0A:./Vainshtein,
+18:u0B:Vainshtein/ECI,
+16:u0C:Individual/A,
+14:u10:individual,
+14:u13:vainshtein,
+7:u14:eci,
+14:u01:Individual,
+14:u04:Vainshtein,
+7:u05:ECI,
+11:u06:Telecom,
+16:u09:./Vainshtein,
+18:u0A:Vainshtein/ECI,
+15:u0B:ECI/Telecom,
+16:u0D:Vainshtein/0,
+14:u12:vainshtein,
+7:u13:eci,
+11:u14:telecom,
+6:u21:Va,
+7:u22:Vai,
+8:u23:Vain,
+7:u32:ein,
+8:u33:tein,
+14:u00:Individual,
+14:u03:Vainshtein,
+7:u04:ECI,
+11:u05:Telecom,
+18:u09:Vainshtein/ECI,
+15:u0A:ECI/Telecom,
+18:u0B:Telecom/August,
+16:u0C:./Vainshtein,
+9:u0D:ECI/0,
+14:u11:vainshtein,
+7:u12:eci,
+11:u13:telecom,
+6:u21:EC,
+7:u22:ECI,
+7:u23:ECI,
+6:u31:CI,
+7:u32:ECI,
+7:u33:ECI,
+14:u02:Vainshtein,
+7:u03:ECI,
+11:u04:Telecom,
+15:u09:ECI/Telecom,
+18:u0A:Telecom/August,
+12:u0B:August/8,
+18:u0C:Vainshtein/ECI,
+13:u0D:Telecom/0,
+14:u10:vainshtein,
+7:u11:eci,
+11:u12:telecom,
+6:u21:Te,
+7:u22:Tel,
+8:u23:Tele,
+8:u33:ecom,
+14:u01:Vainshtein,
+7:u02:ECI,
+11:u03:Telecom,
+11:u08:RFC8287,
+18:u09:Telecom/August,
+12:u0A:August/8,
+15:u0C:ECI/Telecom,
+7:u10:eci,
+11:u11:telecom,
+14:u00:Vainshtein,
+7:u01:ECI,
+11:u02:Telecom,
+11:u07:RFC8287,
+7:u08:Sub,
+12:u09:August/8,
+18:u0C:Telecom/August,
+11:u10:telecom,
+7:u00:ECI,
+11:u01:Telecom,
+11:u06:RFC8287,
+7:u07:Sub,
+16:u0B:2019/RFC8287,
+12:u0C:August/8,
+11:u14:rfc8287,
+11:u00:Telecom,
+11:u05:RFC8287,
+7:u06:Sub,
+16:u0A:2019/RFC8287,
+15:u0B:RFC8287/Sub,
+11:u13:rfc8287,
+7:u14:sub,
+11:u04:RFC8287,
+7:u05:Sub,
+10:u08:Length,
+16:u09:2019/RFC8287,
+15:u0A:RFC8287/Sub,
+9:u0B:Sub/-,
+13:u0D:RFC8287/0,
+11:u12:rfc8287,
+7:u13:sub,
+8:u23:RFC8,
+11:u03:RFC8287,
+7:u04:Sub,
+10:u07:Length,
+17:u08:Clarification,
+15:u09:RFC8287/Sub,
+9:u0A:Sub/-,
+9:u0B:-/TLV,
+16:u0C:2019/RFC8287,
+9:u0D:Sub/0,
+11:u11:rfc8287,
+7:u12:sub,
+6:u21:Su,
+7:u22:Sub,
+7:u23:Sub,
+7:u32:Sub,
+7:u33:Sub,
+11:u02:RFC8287,
+7:u03:Sub,
+10:u06:Length,
+17:u07:Clarification,
+9:u09:Sub/-,
+9:u0A:-/TLV,
+14:u0B:TLV/Length,
+15:u0C:RFC8287/Sub,
+11:u10:rfc8287,
+7:u11:sub,
+10:u14:length,
+11:u01:RFC8287,
+7:u02:Sub,
+10:u05:Length,
+17:u06:Clarification,
+9:u09:-/TLV,
+14:u0A:TLV/Length,
+24:u0B:Length/Clarification,
+9:u0C:Sub/-,
+9:u0D:TLV/1,
+7:u10:sub,
+10:u13:length,
+17:u14:clarification,
+11:u00:RFC8287,
+7:u01:Sub,
+10:u04:Length,
+17:u05:Clarification,
+14:u09:TLV/Length,
+24:u0A:Length/Clarification,
+23:u0B:Clarification/draft,
+9:u0C:-/TLV,
+12:u0D:Length/0,
+10:u12:length,
+17:u13:clarification,
+7:u22:Len,
+8:u23:Leng,
+7:u00:Sub,
+10:u03:Length,
+17:u04:Clarification,
+24:u09:Length/Clarification,
+23:u0A:Clarification/draft,
+14:u0C:TLV/Length,
+19:u0D:Clarification/0,
+10:u11:length,
+17:u12:clarification,
+7:u22:Cla,
+8:u23:Clar,
+10:u02:Length,
+17:u03:Clarification,
+8:u08:mpls,
+23:u09:Clarification/draft,
+24:u0C:Length/Clarification,
+10:u10:length,
+17:u11:clarification,
+10:u01:Length,
+17:u02:Clarification,
+8:u07:mpls,
+23:u0C:Clarification/draft,
+17:u10:clarification,
+10:u00:Length,
+17:u01:Clarification,
+8:u06:mpls,
+11:u08:rfc8287,
+10:u0B:-/mpls,
+8:u14:mpls,
+17:u00:Clarification,
+8:u05:mpls,
+11:u07:rfc8287,
+10:u0A:-/mpls,
+10:u0B:mpls/-,
+8:u13:mpls,
+8:u04:mpls,
+11:u06:rfc8287,
+7:u08:len,
+10:u09:-/mpls,
+10:u0A:mpls/-,
+13:u0B:-/rfc8287,
+10:u0D:mpls/1,
+8:u12:mpls,
+6:u21:mp,
+7:u22:mpl,
+8:u23:mpls,
+7:u32:pls,
+8:u33:mpls,
+8:u03:mpls,
+11:u05:rfc8287,
+7:u07:len,
+10:u09:mpls/-,
+13:u0A:-/rfc8287,
+13:u0B:rfc8287/-,
+10:u0C:-/mpls,
+8:u11:mpls,
+8:u02:mpls,
+11:u04:rfc8287,
+7:u06:len,
+17:u08:clarification,
+13:u09:-/rfc8287,
+13:u0A:rfc8287/-,
+9:u0B:-/len,
+10:u0C:mpls/-,
+13:u0D:rfc8287/1,
+8:u10:mpls,
+7:u14:len,
+8:u01:mpls,
+11:u03:rfc8287,
+7:u05:len,
+17:u07:clarification,
+13:u09:rfc8287/-,
+9:u0A:-/len,
+9:u0B:len/-,
+13:u0C:-/rfc8287,
+7:u13:len,
+8:u00:mpls,
+11:u02:rfc8287,
+7:u04:len,
+17:u06:clarification,
+6:u08:03,
+9:u09:-/len,
+9:u0A:len/-,
+19:u0B:-/clarification,
+13:u0C:rfc8287/-,
+9:u0D:len/1,
+7:u12:len,
+7:u22:len,
+7:u23:len,
+7:u32:len,
+7:u33:len,
+11:u01:rfc8287,
+7:u03:len,
+17:u05:clarification,
+6:u07:03,
+9:u09:len/-,
+19:u0A:-/clarification,
+19:u0B:clarification/-,
+9:u0C:-/len,
+7:u11:len,
+11:u00:rfc8287,
+7:u02:len,
+17:u04:clarification,
+6:u06:03,
+19:u09:-/clarification,
+19:u0A:clarification/-,
+8:u0B:-/03,
+9:u0C:len/-,
+19:u0D:clarification/1,
+7:u10:len,
+6:u14:03,
+6:u21:cl,
+7:u22:cla,
+8:u23:clar,
+7:u01:len,
+17:u03:clarification,
+6:u05:03,
+19:u09:clarification/-,
+8:u0A:-/03,
+15:u0B:03/Abstract,
+19:u0C:-/clarification,
+6:u13:03,
+7:u00:len,
+17:u02:clarification,
+6:u04:03,
+8:u09:-/03,
+15:u0A:03/Abstract,
+20:u0B:Abstract/RFC8287,
+19:u0C:clarification/-,
+8:u0D:03/1,
+6:u12:03,
+6:u21:03,
+6:u22:03,
+6:u23:03,
+6:u32:03,
+6:u33:03,
+17:u01:clarification,
+6:u03:03,
+14:u08:extensions,
+15:u09:03/Abstract,
+20:u0A:Abstract/RFC8287,
+19:u0B:RFC8287/defines,
+8:u0C:-/03,
+6:u11:03,
+17:u00:clarification,
+6:u02:03,
+14:u07:extensions,
+20:u09:Abstract/RFC8287,
+19:u0A:RFC8287/defines,
+15:u0B:defines/the,
+15:u0C:03/Abstract,
+6:u10:03,
+6:u01:03,
+14:u06:extensions,
+8:u08:MPLS,
+19:u09:RFC8287/defines,
+15:u0A:defines/the,
+18:u0B:the/extensions,
+20:u0C:Abstract/RFC8287,
+14:u14:extensions,
+6:u00:03,
+14:u05:extensions,
+8:u07:MPLS,
+7:u08:LSP,
+15:u09:defines/the,
+18:u0A:the/extensions,
+17:u0B:extensions/to,
+19:u0C:RFC8287/defines,
+14:u13:extensions,
+14:u04:extensions,
+8:u06:MPLS,
+7:u07:LSP,
+8:u08:Ping,
+18:u09:the/extensions,
+17:u0A:extensions/to,
+11:u0B:to/MPLS,
+15:u0C:defines/the,
+16:u0D:extensions/0,
+14:u12:extensions,
+8:u23:exte,
+14:u03:extensions,
+8:u05:MPLS,
+7:u06:LSP,
+8:u07:Ping,
+17:u09:extensions/to,
+11:u0A:to/MPLS,
+12:u0B:MPLS/LSP,
+18:u0C:the/extensions,
+14:u11:extensions,
+7:u14:lsp,
+14:u02:extensions,
+8:u04:MPLS,
+7:u05:LSP,
+8:u06:Ping,
+14:u08:Traceroute,
+11:u09:to/MPLS,
+12:u0A:MPLS/LSP,
+12:u0B:LSP/Ping,
+17:u0C:extensions/to,
+10:u0D:MPLS/0,
+14:u10:extensions,
+7:u13:lsp,
+8:u14:ping,
+6:u21:MP,
+7:u22:MPL,
+8:u23:MPLS,
+7:u32:PLS,
+8:u33:MPLS,
+14:u01:extensions,
+8:u03:MPLS,
+7:u04:LSP,
+8:u05:Ping,
+14:u07:Traceroute,
+12:u09:MPLS/LSP,
+12:u0A:LSP/Ping,
+12:u0B:Ping/and,
+11:u0C:to/MPLS,
+9:u0D:LSP/0,
+7:u12:lsp,
+8:u13:ping,
+6:u21:LS,
+7:u22:LSP,
+7:u23:LSP,
+6:u31:SP,
+7:u32:LSP,
+7:u33:LSP,
+14:u00:extensions,
+8:u02:MPLS,
+7:u03:LSP,
+8:u04:Ping,
+14:u06:Traceroute,
+11:u08:Segment,
+12:u09:LSP/Ping,
+12:u0A:Ping/and,
+18:u0B:and/Traceroute,
+12:u0C:MPLS/LSP,
+10:u0D:Ping/0,
+7:u11:lsp,
+8:u12:ping,
+14:u14:traceroute,
+7:u22:Pin,
+8:u23:Ping,
+8:u33:Ping,
+8:u01:MPLS,
+7:u02:LSP,
+8:u03:Ping,
+14:u05:Traceroute,
+11:u07:Segment,
+11:u08:Routing,
+12:u09:Ping/and,
+18:u0A:and/Traceroute,
+18:u0B:Traceroute/for,
+12:u0C:LSP/Ping,
+7:u10:lsp,
+8:u11:ping,
+14:u13:traceroute,
+8:u00:MPLS,
+7:u01:LSP,
+8:u02:Ping,
+14:u04:Traceroute,
+11:u06:Segment,
+11:u07:Routing,
+7:u08:IGP,
+18:u09:and/Traceroute,
+18:u0A:Traceroute/for,
+15:u0B:for/Segment,
+12:u0C:Ping/and,
+16:u0D:Traceroute/0,
+8:u10:ping,
+14:u12:traceroute,
+11:u14:segment,
+8:u33:oute,
+7:u00:LSP,
+8:u01:Ping,
+14:u03:Traceroute,
+11:u05:Segment,
+11:u06:Routing,
+7:u07:IGP,
+18:u09:Traceroute/for,
+15:u0A:for/Segment,
+19:u0B:Segment/Routing,
+18:u0C:and/Traceroute,
+14:u11:traceroute,
+11:u13:segment,
+11:u14:routing,
+8:u00:Ping,
+14:u02:Traceroute,
+11:u04:Segment,
+11:u05:Routing,
+7:u06:IGP,
+10:u08:Prefix,
+15:u09:for/Segment,
+19:u0A:Segment/Routing,
+15:u0B:Routing/IGP,
+18:u0C:Traceroute/for,
+13:u0D:Segment/0,
+14:u10:traceroute,
+11:u12:segment,
+11:u13:routing,
+7:u14:igp,
+7:u22:Seg,
+8:u23:Segm,
+14:u01:Traceroute,
+11:u03:Segment,
+11:u04:Routing,
+7:u05:IGP,
+10:u07:Prefix,
+19:u09:Segment/Routing,
+15:u0A:Routing/IGP,
+9:u0B:IGP/-,
+15:u0C:for/Segment,
+13:u0D:Routing/0,
+11:u11:segment,
+11:u12:routing,
+7:u13:igp,
+7:u22:Rou,
+8:u23:Rout,
+14:u00:Traceroute,
+11:u02:Segment,
+11:u03:Routing,
+7:u04:IGP,
+10:u06:Prefix,
+15:u09:Routing/IGP,
+9:u0A:IGP/-,
+12:u0B:-/Prefix,
+19:u0C:Segment/Routing,
+9:u0D:IGP/0,
+11:u10:segment,
+11:u11:routing,
+7:u12:igp,
+10:u14:prefix,
+6:u21:IG,
+7:u22:IGP,
+7:u23:IGP,
+6:u31:GP,
+7:u32:IGP,
+7:u33:IGP,
+11:u01:Segment,
+11:u02:Routing,
+7:u03:IGP,
+10:u05:Prefix,
+9:u09:IGP/-,
+12:u0A:-/Prefix,
+14:u0B:Prefix/and,
+15:u0C:Routing/IGP,
+11:u10:routing,
+7:u11:igp,
+10:u13:prefix,
+11:u00:Segment,
+11:u01:Routing,
+7:u02:IGP,
+10:u04:Prefix,
+13:u08:Adjacency,
+12:u09:-/Prefix,
+14:u0A:Prefix/and,
+11:u0B:and/IGP,
+9:u0C:IGP/-,
+12:u0D:Prefix/1,
+7:u10:igp,
+10:u12:prefix,
+7:u22:Pre,
+8:u23:Pref,
+7:u32:fix,
+8:u33:efix,
+11:u00:Routing,
+7:u01:IGP,
+10:u03:Prefix,
+13:u07:Adjacency,
+14:u09:Prefix/and,
+11:u0A:and/IGP,
+12:u0C:-/Prefix,
+10:u11:prefix,
+7:u00:IGP,
+10:u02:Prefix,
+13:u06:Adjacency,
+14:u08:Identifier,
+11:u09:and/IGP,
+15:u0B:-/Adjacency,
+14:u0C:Prefix/and,
+10:u10:prefix,
+13:u14:adjacency,
+10:u01:Prefix,
+13:u05:Adjacency,
+14:u07:Identifier,
+15:u0A:-/Adjacency,
+21:u0B:Adjacency/Segment,
+11:u0C:and/IGP,
+13:u13:adjacency,
+10:u00:Prefix,
+13:u04:Adjacency,
+14:u06:Identifier,
+8:u08:SIDs,
+15:u09:-/Adjacency,
+21:u0A:Adjacency/Segment,
+22:u0B:Segment/Identifier,
+15:u0D:Adjacency/1,
+13:u12:adjacency,
+14:u14:identifier,
+6:u21:Ad,
+7:u22:Adj,
+8:u23:Adja,
+7:u32:ncy,
+8:u33:ency,
+13:u03:Adjacency,
+14:u05:Identifier,
+8:u07:SIDs,
+21:u09:Adjacency/Segment,
+22:u0A:Segment/Identifier,
+16:u0B:Identifier/(,
+15:u0C:-/Adjacency,
+13:u11:adjacency,
+14:u13:identifier,
+13:u02:Adjacency,
+14:u04:Identifier,
+8:u06:SIDs,
+22:u09:Segment/Identifier,
+16:u0A:Identifier/(,
+10:u0B:(/SIDs,
+21:u0C:Adjacency/Segment,
+16:u0D:Identifier/0,
+13:u10:adjacency,
+14:u12:identifier,
+8:u14:sids,
+6:u21:Id,
+7:u22:Ide,
+8:u23:Iden,
+7:u32:ier,
+8:u33:fier,
+13:u01:Adjacency,
+14:u03:Identifier,
+8:u05:SIDs,
+16:u09:Identifier/(,
+10:u0A:(/SIDs,
+10:u0B:SIDs/),
+22:u0C:Segment/Identifier,
+14:u11:identifier,
+8:u13:sids,
+13:u00:Adjacency,
+14:u02:Identifier,
+8:u04:SIDs,
+10:u09:(/SIDs,
+10:u0A:SIDs/),
+10:u0B:)/with,
+16:u0C:Identifier/(,
+10:u0D:SIDs/0,
+14:u10:identifier,
+8:u12:sids,
+6:u21:SI,
+7:u22:SID,
+8:u23:SIDs,
+6:u31:Ds,
+7:u32:IDs,
+8:u33:SIDs,
+14:u01:Identifier,
+8:u03:SIDs,
+10:u09:SIDs/),
+10:u0A:)/with,
+11:u0B:with/an,
+10:u0C:(/SIDs,
+8:u11:sids,
+14:u00:Identifier,
+8:u02:SIDs,
+9:u08:plane,
+10:u09:)/with,
+11:u0A:with/an,
+11:u0B:an/MPLS,
+10:u0C:SIDs/),
+8:u10:sids,
+8:u01:SIDs,
+9:u07:plane,
+11:u09:with/an,
+11:u0A:an/MPLS,
+13:u0B:MPLS/data,
+10:u0C:)/with,
+8:u00:SIDs,
+9:u06:plane,
+11:u09:an/MPLS,
+13:u0A:MPLS/data,
+14:u0B:data/plane,
+11:u0C:with/an,
+9:u14:plane,
+9:u05:plane,
+13:u09:MPLS/data,
+14:u0A:data/plane,
+11:u0B:plane/.,
+11:u0C:an/MPLS,
+9:u13:plane,
+9:u04:plane,
+5:u08:3,
+14:u09:data/plane,
+11:u0A:plane/.,
+13:u0B:./RFC8287,
+13:u0C:MPLS/data,
+11:u0D:plane/0,
+9:u12:plane,
+6:u21:pl,
+7:u22:pla,
+8:u23:plan,
+7:u32:ane,
+8:u33:lane,
+9:u03:plane,
+5:u07:3,
+10:u08:Target,
+11:u09:plane/.,
+13:u0A:./RFC8287,
+20:u0B:RFC8287/proposes,
+14:u0C:data/plane,
+9:u11:plane,
+9:u02:plane,
+5:u06:3,
+10:u07:Target,
+7:u08:FEC,
+13:u09:./RFC8287,
+20:u0A:RFC8287/proposes,
+14:u0B:proposes/3,
+11:u0C:plane/.,
+9:u10:plane,
+5:u14:3,
+9:u01:plane,
+5:u05:3,
+10:u06:Target,
+7:u07:FEC,
+9:u08:Stack,
+20:u09:RFC8287/proposes,
+14:u0A:proposes/3,
+12:u0B:3/Target,
+13:u0C:./RFC8287,
+5:u13:3,
+10:u14:target,
+9:u00:plane,
+5:u04:3,
+10:u05:Target,
+7:u06:FEC,
+9:u07:Stack,
+14:u09:proposes/3,
+12:u0A:3/Target,
+14:u0B:Target/FEC,
+20:u0C:RFC8287/proposes,
+7:u0D:3/0,
+5:u12:3,
+10:u13:target,
+7:u14:fec,
+5:u21:3,
+5:u22:3,
+5:u23:3,
+5:u31:3,
+5:u32:3,
+5:u33:3,
+5:u03:3,
+10:u04:Target,
+7:u05:FEC,
+9:u06:Stack,
+12:u09:3/Target,
+14:u0A:Target/FEC,
+13:u0B:FEC/Stack,
+14:u0C:proposes/3,
+12:u0D:Target/0,
+5:u11:3,
+10:u12:target,
+7:u13:fec,
+9:u14:stack,
+7:u22:Tar,
+8:u23:Targ,
+7:u32:get,
+8:u33:rget,
+5:u02:3,
+10:u03:Target,
+7:u04:FEC,
+9:u05:Stack,
+8:u08:TLVs,
+14:u09:Target/FEC,
+13:u0A:FEC/Stack,
+13:u0B:Stack/Sub,
+12:u0C:3/Target,
+9:u0D:FEC/0,
+5:u10:3,
+10:u11:target,
+7:u12:fec,
+9:u13:stack,
+6:u21:FE,
+7:u22:FEC,
+7:u23:FEC,
+6:u31:EC,
+7:u32:FEC,
+7:u33:FEC,
+5:u01:3,
+10:u02:Target,
+7:u03:FEC,
+9:u04:Stack,
+8:u07:TLVs,
+13:u09:FEC/Stack,
+13:u0A:Stack/Sub,
+14:u0C:Target/FEC,
+11:u0D:Stack/0,
+10:u10:target,
+7:u11:fec,
+9:u12:stack,
+8:u23:Stac,
+8:u33:tack,
+5:u00:3,
+10:u01:Target,
+7:u02:FEC,
+9:u03:Stack,
+8:u06:TLVs,
+13:u09:Stack/Sub,
+10:u0B:-/TLVs,
+13:u0C:FEC/Stack,
+7:u10:fec,
+9:u11:stack,
+8:u14:tlvs,
+10:u00:Target,
+7:u01:FEC,
+9:u02:Stack,
+8:u05:TLVs,
+10:u0A:-/TLVs,
+10:u0B:TLVs/.,
+13:u0C:Stack/Sub,
+9:u10:stack,
+8:u13:tlvs,
+7:u00:FEC,
+9:u01:Stack,
+8:u04:TLVs,
+12:u08:standard,
+10:u09:-/TLVs,
+10:u0A:TLVs/.,
+10:u0D:TLVs/1,
+8:u12:tlvs,
+8:u23:TLVs,
+6:u31:Vs,
+7:u32:LVs,
+8:u33:TLVs,
+9:u00:Stack,
+8:u03:TLVs,
+12:u07:standard,
+10:u09:TLVs/.,
+13:u0B:While/the,
+10:u0C:-/TLVs,
+8:u11:tlvs,
+8:u02:TLVs,
+12:u06:standard,
+13:u0A:While/the,
+16:u0B:the/standard,
+10:u0C:TLVs/.,
+8:u10:tlvs,
+8:u01:TLVs,
+12:u05:standard,
+13:u09:While/the,
+16:u0A:the/standard,
+20:u0B:standard/defines,
+8:u00:TLVs,
+12:u04:standard,
+16:u09:the/standard,
+20:u0A:standard/defines,
+13:u0C:While/the,
+14:u0D:standard/0,
+8:u23:stan,
+12:u03:standard,
+13:u08:procedure,
+20:u09:standard/defines,
+14:u0B:the/format,
+16:u0C:the/standard,
+12:u02:standard,
+13:u07:procedure,
+14:u0A:the/format,
+14:u0B:format/and,
+20:u0C:standard/defines,
+12:u01:standard,
+13:u06:procedure,
+10:u08:handle,
+14:u09:the/format,
+14:u0A:format/and,
+17:u0B:and/procedure,
+13:u14:procedure,
+12:u00:standard,
+13:u05:procedure,
+10:u07:handle,
+14:u09:format/and,
+17:u0A:and/procedure,
+16:u0B:procedure/to,
+14:u0C:the/format,
+13:u13:procedure,
+13:u04:procedure,
+10:u06:handle,
+17:u09:and/procedure,
+16:u0A:procedure/to,
+13:u0B:to/handle,
+14:u0C:format/and,
+15:u0D:procedure/0,
+13:u12:procedure,
+10:u14:handle,
+8:u33:dure,
+13:u03:procedure,
+10:u05:handle,
+16:u09:procedure/to,
+13:u0A:to/handle,
+16:u0B:handle/those,
+17:u0C:and/procedure,
+13:u11:procedure,
+10:u13:handle,
+13:u02:procedure,
+10:u04:handle,
+13:u09:to/handle,
+16:u0A:handle/those,
+13:u0B:those/Sub,
+16:u0C:procedure/to,
+12:u0D:handle/0,
+13:u10:procedure,
+10:u12:handle,
+7:u22:han,
+8:u23:hand,
+7:u32:dle,
+8:u33:ndle,
+13:u01:procedure,
+10:u03:handle,
+16:u09:handle/those,
+13:u0A:those/Sub,
+13:u0C:to/handle,
+10:u11:handle,
+13:u00:procedure,
+10:u02:handle,
+13:u09:those/Sub,
+16:u0C:handle/those,
+10:u10:handle,
+10:u01:handle,
+10:u0B:TLVs/,,
+13:u0C:those/Sub,
+10:u00:handle,
+10:u0A:TLVs/,,
+8:u0B:,/it,
+16:u08:sufficiently,
+10:u09:TLVs/,,
+8:u0A:,/it,
+11:u0B:it/does,
+16:u07:sufficiently,
+11:u08:clarify,
+8:u09:,/it,
+11:u0A:it/does,
+10:u0C:TLVs/,,
+16:u06:sufficiently,
+11:u07:clarify,
+11:u09:it/does,
+20:u0B:not/sufficiently,
+8:u0C:,/it,
+16:u14:sufficiently,
+16:u05:sufficiently,
+11:u06:clarify,
+20:u0A:not/sufficiently,
+24:u0B:sufficiently/clarify,
+11:u0C:it/does,
+16:u13:sufficiently,
+11:u14:clarify,
+16:u04:sufficiently,
+11:u05:clarify,
+10:u08:length,
+20:u09:not/sufficiently,
+24:u0A:sufficiently/clarify,
+15:u0B:clarify/how,
+18:u0D:sufficiently/0,
+16:u12:sufficiently,
+11:u13:clarify,
+7:u22:suf,
+8:u23:suff,
+16:u03:sufficiently,
+11:u04:clarify,
+10:u07:length,
+24:u09:sufficiently/clarify,
+15:u0A:clarify/how,
+11:u0B:how/the,
+20:u0C:not/sufficiently,
+13:u0D:clarify/0,
+16:u11:sufficiently,
+11:u12:clarify,
+6:u31:fy,
+7:u32:ify,
+8:u33:rify,
+16:u02:sufficiently,
+11:u03:clarify,
+10:u06:length,
+15:u09:clarify/how,
+11:u0A:how/the,
+14:u0B:the/length,
+24:u0C:sufficiently/clarify,
+16:u10:sufficiently,
+11:u11:clarify,
+16:u01:sufficiently,
+11:u02:clarify,
+10:u05:length,
+11:u09:how/the,
+14:u0A:the/length,
+13:u0B:length/of,
+15:u0C:clarify/how,
+11:u10:clarify,
+16:u00:sufficiently,
+11:u01:clarify,
+10:u04:length,
+6:u08:ID,
+14:u09:the/length,
+13:u0A:length/of,
+11:u0C:how/the,
+12:u0D:length/0,
+8:u23:leng,
+11:u00:clarify,
+10:u03:length,
+6:u07:ID,
+13:u09:length/of,
+15:u0B:the/Segment,
+14:u0C:the/length,
+10:u02:length,
+6:u06:ID,
+15:u0A:the/Segment,
+14:u0B:Segment/ID,
+13:u0C:length/of,
+6:u14:id,
+10:u01:length,
+6:u05:ID,
+15:u09:the/Segment,
+14:u0A:Segment/ID,
+10:u0B:ID/Sub,
+6:u13:id,
+10:u00:length,
+6:u04:ID,
+14:u09:Segment/ID,
+10:u0A:ID/Sub,
+15:u0C:the/Segment,
+8:u0D:ID/0,
+6:u12:id,
+6:u21:ID,
+6:u22:ID,
+6:u23:ID,
+6:u31:ID,
+6:u32:ID,
+6:u33:ID,
+6:u03:ID,
+10:u09:ID/Sub,
+14:u0C:Segment/ID,
+6:u11:id,
+6:u02:ID,
+12:u08:computed,
+15:u0B:TLVs/should,
+10:u0C:ID/Sub,
+6:u10:id,
+6:u01:ID,
+12:u07:computed,
+15:u0A:TLVs/should,
+6:u00:ID,
+12:u06:computed,
+15:u09:TLVs/should,
+15:u0B:be/computed,
+12:u14:computed,
+12:u05:computed,
+15:u0A:be/computed,
+15:u0B:computed/to,
+15:u0C:TLVs/should,
+12:u13:computed,
+12:u04:computed,
+15:u09:be/computed,
+15:u0A:computed/to,
+14:u0B:to/include,
+14:u0D:computed/0,
+12:u12:computed,
+8:u23:comp,
+8:u33:uted,
+12:u03:computed,
+15:u09:computed/to,
+14:u0A:to/include,
+14:u0B:include/in,
+15:u0C:be/computed,
+12:u11:computed,
+12:u02:computed,
+9:u08:field,
+14:u09:to/include,
+14:u0A:include/in,
+15:u0C:computed/to,
+12:u10:computed,
+12:u01:computed,
+9:u07:field,
+14:u09:include/in,
+14:u0B:the/Length,
+14:u0C:to/include,
+12:u00:computed,
+9:u06:field,
+14:u0A:the/Length,
+16:u0B:Length/field,
+14:u0C:include/in,
+9:u14:field,
+9:u05:field,
+14:u09:the/Length,
+16:u0A:Length/field,
+12:u0B:field/of,
+9:u13:field,
+9:u04:field,
+16:u09:Length/field,
+12:u0A:field/of,
+14:u0C:the/Length,
+11:u0D:field/0,
+9:u12:field,
+7:u32:eld,
+8:u33:ield,
+9:u03:field,
+12:u09:field/of,
+11:u0B:the/Sub,
+16:u0C:Length/field,
+9:u11:field,
+9:u02:field,
+11:u0A:the/Sub,
+12:u0C:field/of,
+9:u10:field,
+9:u01:field,
+11:u09:the/Sub,
+9:u00:field,
+10:u08:result,
+14:u0B:TLVs/which,
+11:u0C:the/Sub,
+10:u07:result,
+14:u0A:TLVs/which,
+13:u0B:which/may,
+10:u06:result,
+20:u08:interoperability,
+14:u09:TLVs/which,
+13:u0A:which/may,
+14:u0B:may/result,
+10:u14:result,
+10:u05:result,
+20:u07:interoperability,
+10:u08:issues,
+13:u09:which/may,
+14:u0A:may/result,
+13:u0B:result/in,
+14:u0C:TLVs/which,
+10:u13:result,
+10:u04:result,
+20:u06:interoperability,
+10:u07:issues,
+14:u09:may/result,
+13:u0A:result/in,
+23:u0B:in/interoperability,
+13:u0C:which/may,
+12:u0D:result/0,
+10:u12:result,
+20:u14:interoperability,
+6:u31:lt,
+7:u32:ult,
+8:u33:sult,
+10:u03:result,
+20:u05:interoperability,
+10:u06:issues,
+13:u09:result/in,
+23:u0A:in/interoperability,
+27:u0B:interoperability/issues,
+14:u0C:may/result,
+10:u11:result,
+20:u13:interoperability,
+10:u14:issues,
+10:u02:result,
+20:u04:interoperability,
+10:u05:issues,
+23:u09:in/interoperability,
+27:u0A:interoperability/issues,
+12:u0B:issues/.,
+13:u0C:result/in,
+22:u0D:interoperability/0,
+10:u10:result,
+20:u12:interoperability,
+10:u13:issues,
+8:u33:lity,
+10:u01:result,
+20:u03:interoperability,
+10:u04:issues,
+11:u08:updates,
+27:u09:interoperability/issues,
+12:u0A:issues/.,
+23:u0C:in/interoperability,
+12:u0D:issues/0,
+20:u11:interoperability,
+10:u12:issues,
+7:u22:iss,
+8:u23:issu,
+7:u32:ues,
+8:u33:sues,
+10:u00:result,
+20:u02:interoperability,
+10:u03:issues,
+11:u07:updates,
+12:u09:issues/.,
+27:u0C:interoperability/issues,
+20:u10:interoperability,
+10:u11:issues,
+20:u01:interoperability,
+10:u02:issues,
+11:u06:updates,
+20:u0B:document/updates,
+12:u0C:issues/.,
+10:u10:issues,
+20:u00:interoperability,
+10:u01:issues,
+11:u05:updates,
+14:u08:clarifying,
+20:u0A:document/updates,
+19:u0B:updates/RFC8287,
+10:u00:issues,
+11:u04:updates,
+14:u07:clarifying,
+20:u09:document/updates,
+19:u0A:updates/RFC8287,
+14:u0B:RFC8287/by,
+13:u0D:updates/0,
+11:u03:updates,
+14:u06:clarifying,
+19:u09:updates/RFC8287,
+14:u0A:RFC8287/by,
+17:u0B:by/clarifying,
+20:u0C:document/updates,
+14:u14:clarifying,
+11:u02:updates,
+14:u05:clarifying,
+14:u09:RFC8287/by,
+17:u0A:by/clarifying,
+18:u0B:clarifying/the,
+19:u0C:updates/RFC8287,
+14:u13:clarifying,
+11:u01:updates,
+14:u04:clarifying,
+17:u09:by/clarifying,
+18:u0A:clarifying/the,
+14:u0C:RFC8287/by,
+16:u0D:clarifying/0,
+14:u12:clarifying,
+11:u00:updates,
+14:u03:clarifying,
+18:u09:clarifying/the,
+17:u0C:by/clarifying,
+14:u11:clarifying,
+14:u02:clarifying,
+18:u0C:clarifying/the,
+14:u10:clarifying,
+14:u01:clarifying,
+16:u0B:each/Segment,
+14:u00:clarifying,
+16:u0A:each/Segment,
+16:u09:each/Segment,
+11:u08:defined,
+16:u0C:each/Segment,
+11:u07:defined,
+11:u06:defined,
+16:u0B:TLVs/defined,
+11:u14:defined,
+11:u05:defined,
+16:u0A:TLVs/defined,
+14:u0B:defined/in,
+11:u13:defined,
+11:u04:defined,
+16:u09:TLVs/defined,
+14:u0A:defined/in,
+14:u0B:in/RFC8287,
+13:u0D:defined/0,
+11:u12:defined,
+11:u03:defined,
+14:u09:defined/in,
+14:u0A:in/RFC8287,
+13:u0B:RFC8287/.,
+16:u0C:TLVs/defined,
+11:u11:defined,
+11:u02:defined,
+14:u09:in/RFC8287,
+13:u0A:RFC8287/.,
+14:u0C:defined/in,
+11:u10:defined,
+11:u01:defined,
+13:u09:RFC8287/.,
+14:u0C:in/RFC8287,
+11:u00:defined,
+13:u0C:RFC8287/.,
+7:u0B:./-,
+7:u0A:./-,
+10:u0B:-/_x+1,
+7:u09:./-,
+10:u0A:-/_x+1,
+11:u04:BFCPbis,
+5:u07:G,
+16:u09:_x-1/BFCPbis,
+19:u0A:BFCPbis/Working,
+16:u0D:BFCPbis/_x-1,
+11:u12:bfcpbis,
+6:u21:BF,
+7:u22:BFC,
+8:u23:BFCP,
+7:u32:bis,
+8:u33:Pbis,
+5:u71:0,
+5:u72:0,
+16:uA4:_x-1/INITCAP,
+11:u03:BFCPbis,
+5:u06:G,
+13:u08:Camarillo,
+19:u09:BFCPbis/Working,
+11:u0B:Group/G,
+16:u0C:_x-1/BFCPbis,
+11:u11:bfcpbis,
+5:u14:g,
+5:u70:0,
+11:u02:BFCPbis,
+5:u05:G,
+13:u07:Camarillo,
+11:u0A:Group/G,
+7:u0B:G/.,
+19:u0C:BFCPbis/Working,
+11:u10:bfcpbis,
+5:u13:g,
+11:u01:BFCPbis,
+5:u04:G,
+13:u06:Camarillo,
+11:u09:Group/G,
+7:u0A:G/.,
+15:u0B:./Camarillo,
+7:u0D:G/0,
+5:u12:g,
+13:u14:camarillo,
+5:u21:G,
+5:u22:G,
+5:u23:G,
+5:u31:G,
+5:u32:G,
+5:u33:G,
+11:u00:BFCPbis,
+5:u03:G,
+13:u05:Camarillo,
+7:u09:G/.,
+15:u0A:./Camarillo,
+22:u0B:Camarillo/Internet,
+11:u0C:Group/G,
+5:u11:g,
+13:u13:camarillo,
+5:u02:G,
+13:u04:Camarillo,
+12:u08:Ericsson,
+15:u09:./Camarillo,
+22:u0A:Camarillo/Internet,
+7:u0C:G/.,
+15:u0D:Camarillo/0,
+5:u10:g,
+13:u12:camarillo,
+8:u23:Cama,
+7:u32:llo,
+8:u33:illo,
+5:u01:G,
+13:u03:Camarillo,
+12:u07:Ericsson,
+13:u08:Obsoletes,
+22:u09:Camarillo/Internet,
+15:u0C:./Camarillo,
+13:u11:camarillo,
+5:u00:G,
+13:u02:Camarillo,
+12:u06:Ericsson,
+13:u07:Obsoletes,
+18:u0B:Draft/Ericsson,
+22:u0C:Camarillo/Internet,
+13:u10:camarillo,
+12:u14:ericsson,
+13:u01:Camarillo,
+12:u05:Ericsson,
+13:u06:Obsoletes,
+8:u08:4583,
+18:u0A:Draft/Ericsson,
+22:u0B:Ericsson/Obsoletes,
+12:u13:ericsson,
+13:u14:obsoletes,
+13:u00:Camarillo,
+12:u04:Ericsson,
+13:u05:Obsoletes,
+8:u07:4583,
+18:u09:Draft/Ericsson,
+22:u0A:Ericsson/Obsoletes,
+15:u0B:Obsoletes/:,
+14:u0D:Ericsson/0,
+12:u12:ericsson,
+13:u13:obsoletes,
+6:u21:Er,
+7:u22:Eri,
+8:u23:Eric,
+7:u32:son,
+8:u33:sson,
+12:u03:Ericsson,
+13:u04:Obsoletes,
+8:u06:4583,
+22:u09:Ericsson/Obsoletes,
+15:u0A:Obsoletes/:,
+10:u0B::/4583,
+18:u0C:Draft/Ericsson,
+15:u0D:Obsoletes/0,
+12:u11:ericsson,
+13:u12:obsoletes,
+8:u14:4583,
+7:u22:Obs,
+8:u23:Obso,
+8:u33:etes,
+12:u02:Ericsson,
+13:u03:Obsoletes,
+8:u05:4583,
+15:u09:Obsoletes/:,
+10:u0A::/4583,
+10:u0B:4583/(,
+22:u0C:Ericsson/Obsoletes,
+12:u10:ericsson,
+13:u11:obsoletes,
+8:u13:4583,
+12:u01:Ericsson,
+13:u02:Obsoletes,
+8:u04:4583,
+10:u09::/4583,
+10:u0A:4583/(,
+15:u0C:Obsoletes/:,
+10:u0D:4583/0,
+13:u10:obsoletes,
+8:u12:4583,
+6:u21:45,
+7:u22:458,
+8:u23:4583,
+6:u31:83,
+7:u32:583,
+8:u33:4583,
+12:u00:Ericsson,
+13:u01:Obsoletes,
+8:u03:4583,
+5:u08:T,
+10:u09:4583/(,
+10:u0C::/4583,
+8:u11:4583,
+13:u00:Obsoletes,
+8:u02:4583,
+5:u07:T,
+10:u0C:4583/(,
+8:u10:4583,
+8:u01:4583,
+5:u06:T,
+14:u08:Kristensen,
+7:u0B:)/T,
+5:u14:t,
+8:u00:4583,
+5:u05:T,
+14:u07:Kristensen,
+7:u0A:)/T,
+7:u0B:T/.,
+5:u13:t,
+5:u04:T,
+14:u06:Kristensen,
+7:u09:)/T,
+7:u0A:T/.,
+16:u0B:./Kristensen,
+7:u0D:T/0,
+5:u12:t,
+14:u14:kristensen,
+5:u21:T,
+5:u22:T,
+5:u23:T,
+5:u30:T,
+5:u31:T,
+5:u32:T,
+5:u33:T,
+5:u03:T,
+14:u05:Kristensen,
+7:u09:T/.,
+16:u0A:./Kristensen,
+23:u0B:Kristensen/Intended,
+7:u0C:)/T,
+5:u11:t,
+14:u13:kristensen,
+5:u02:T,
+14:u04:Kristensen,
+16:u09:./Kristensen,
+23:u0A:Kristensen/Intended,
+7:u0C:T/.,
+16:u0D:Kristensen/0,
+5:u10:t,
+14:u12:kristensen,
+6:u21:Kr,
+7:u22:Kri,
+8:u23:Kris,
+7:u32:sen,
+8:u33:nsen,
+5:u01:T,
+14:u03:Kristensen,
+23:u09:Kristensen/Intended,
+16:u0C:./Kristensen,
+14:u11:kristensen,
+5:u00:T,
+14:u02:Kristensen,
+23:u0C:Kristensen/Intended,
+14:u10:kristensen,
+14:u01:Kristensen,
+14:u00:Kristensen,
+15:u0B:Track/Cisco,
+8:u08:June,
+15:u0A:Track/Cisco,
+17:u0B:Cisco/Expires,
+8:u07:June,
+15:u09:Track/Cisco,
+17:u0A:Cisco/Expires,
+8:u06:June,
+17:u09:Cisco/Expires,
+10:u0B::/June,
+15:u0C:Track/Cisco,
+8:u14:june,
+8:u05:June,
+10:u0A::/June,
+11:u0B:June/11,
+17:u0C:Cisco/Expires,
+8:u13:june,
+8:u04:June,
+10:u09::/June,
+11:u0A:June/11,
+10:u0D:June/0,
+8:u12:june,
+7:u22:Jun,
+8:u23:June,
+7:u32:une,
+8:u33:June,
+8:u03:June,
+11:u09:June/11,
+10:u0C::/June,
+8:u11:june,
+8:u02:June,
+12:u08:Holmberg,
+10:u0B:2019/C,
+11:u0C:June/11,
+8:u10:june,
+8:u01:June,
+12:u07:Holmberg,
+10:u0A:2019/C,
+8:u00:June,
+12:u06:Holmberg,
+12:u08:December,
+10:u09:2019/C,
+14:u0B:./Holmberg,
+12:u14:holmberg,
+12:u05:Holmberg,
+12:u07:December,
+14:u0A:./Holmberg,
+21:u0B:Holmberg/Ericsson,
+10:u0C:2019/C,
+12:u13:holmberg,
+12:u04:Holmberg,
+12:u06:December,
+14:u09:./Holmberg,
+21:u0A:Holmberg/Ericsson,
+21:u0B:Ericsson/December,
+14:u0D:Holmberg/0,
+12:u12:holmberg,
+12:u14:december,
+7:u22:Hol,
+8:u23:Holm,
+7:u32:erg,
+8:u33:berg,
+12:u03:Holmberg,
+12:u05:December,
+8:u08:2018,
+21:u09:Holmberg/Ericsson,
+21:u0A:Ericsson/December,
+14:u0B:December/8,
+14:u0C:./Holmberg,
+12:u11:holmberg,
+12:u13:december,
+12:u02:Holmberg,
+12:u04:December,
+8:u07:2018,
+11:u08:Session,
+21:u09:Ericsson/December,
+14:u0A:December/8,
+21:u0C:Holmberg/Ericsson,
+14:u0D:December/0,
+12:u10:holmberg,
+12:u12:december,
+7:u22:Dec,
+8:u23:Dece,
+12:u01:Holmberg,
+12:u03:December,
+8:u06:2018,
+11:u07:Session,
+15:u08:Description,
+14:u09:December/8,
+10:u0B:,/2018,
+21:u0C:Ericsson/December,
+12:u11:december,
+8:u14:2018,
+12:u00:Holmberg,
+12:u02:December,
+8:u05:2018,
+11:u06:Session,
+15:u07:Description,
+10:u0A:,/2018,
+16:u0B:2018/Session,
+14:u0C:December/8,
+12:u10:december,
+8:u13:2018,
+11:u14:session,
+12:u01:December,
+8:u04:2018,
+11:u05:Session,
+15:u06:Description,
+10:u09:,/2018,
+16:u0A:2018/Session,
+23:u0B:Session/Description,
+10:u0D:2018/0,
+8:u12:2018,
+11:u13:session,
+15:u14:description,
+8:u23:2018,
+6:u31:18,
+7:u32:018,
+8:u33:2018,
+12:u00:December,
+8:u03:2018,
+11:u04:Session,
+15:u05:Description,
+7:u08:SDP,
+16:u09:2018/Session,
+23:u0A:Session/Description,
+24:u0B:Description/Protocol,
+10:u0C:,/2018,
+13:u0D:Session/0,
+8:u11:2018,
+11:u12:session,
+15:u13:description,
+7:u22:Ses,
+8:u23:Sess,
+8:u33:sion,
+8:u02:2018,
+11:u03:Session,
+15:u04:Description,
+7:u07:SDP,
+23:u09:Session/Description,
+24:u0A:Description/Protocol,
+14:u0B:Protocol/(,
+16:u0C:2018/Session,
+17:u0D:Description/0,
+8:u10:2018,
+11:u11:session,
+15:u12:description,
+8:u23:Desc,
+8:u01:2018,
+11:u02:Session,
+15:u03:Description,
+7:u06:SDP,
+24:u09:Description/Protocol,
+14:u0A:Protocol/(,
+9:u0B:(/SDP,
+23:u0C:Session/Description,
+11:u10:session,
+15:u11:description,
+7:u14:sdp,
+8:u00:2018,
+11:u01:Session,
+15:u02:Description,
+7:u05:SDP,
+14:u09:Protocol/(,
+9:u0A:(/SDP,
+9:u0B:SDP/),
+24:u0C:Description/Protocol,
+15:u10:description,
+7:u13:sdp,
+11:u00:Session,
+15:u01:Description,
+7:u04:SDP,
+10:u08:Binary,
+9:u09:(/SDP,
+9:u0A:SDP/),
+12:u0B:)/Format,
+14:u0C:Protocol/(,
+9:u0D:SDP/0,
+7:u12:sdp,
+6:u21:SD,
+7:u22:SDP,
+7:u23:SDP,
+6:u31:DP,
+7:u32:SDP,
+7:u33:SDP,
+15:u00:Description,
+7:u03:SDP,
+10:u07:Binary,
+9:u08:Floor,
+9:u09:SDP/),
+12:u0A:)/Format,
+14:u0B:Format/for,
+9:u0C:(/SDP,
+7:u11:sdp,
+7:u02:SDP,
+10:u06:Binary,
+9:u07:Floor,
+11:u08:Control,
+12:u09:)/Format,
+14:u0A:Format/for,
+14:u0B:for/Binary,
+9:u0C:SDP/),
+7:u10:sdp,
+10:u14:binary,
+7:u01:SDP,
+10:u05:Binary,
+9:u06:Floor,
+11:u07:Control,
+14:u09:Format/for,
+14:u0A:for/Binary,
+16:u0B:Binary/Floor,
+12:u0C:)/Format,
+10:u13:binary,
+9:u14:floor,
+7:u00:SDP,
+10:u04:Binary,
+9:u05:Floor,
+11:u06:Control,
+14:u09:for/Binary,
+16:u0A:Binary/Floor,
+17:u0B:Floor/Control,
+14:u0C:Format/for,
+12:u0D:Binary/0,
+10:u12:binary,
+9:u13:floor,
+6:u21:Bi,
+7:u22:Bin,
+8:u23:Bina,
+8:u33:nary,
+10:u03:Binary,
+9:u04:Floor,
+11:u05:Control,
+8:u08:BFCP,
+16:u09:Binary/Floor,
+17:u0A:Floor/Control,
+20:u0B:Control/Protocol,
+14:u0C:for/Binary,
+11:u0D:Floor/0,
+10:u11:binary,
+9:u12:floor,
+8:u23:Floo,
+7:u32:oor,
+8:u33:loor,
+10:u02:Binary,
+9:u03:Floor,
+11:u04:Control,
+8:u07:BFCP,
+17:u09:Floor/Control,
+20:u0A:Control/Protocol,
+16:u0C:Binary/Floor,
+13:u0D:Control/0,
+10:u10:binary,
+9:u11:floor,
+10:u01:Binary,
+9:u02:Floor,
+11:u03:Control,
+8:u06:BFCP,
+11:u08:Streams,
+20:u09:Control/Protocol,
+10:u0B:(/BFCP,
+17:u0C:Floor/Control,
+9:u10:floor,
+8:u14:bfcp,
+10:u00:Binary,
+9:u01:Floor,
+11:u02:Control,
+8:u05:BFCP,
+11:u07:Streams,
+10:u0A:(/BFCP,
+10:u0B:BFCP/),
+20:u0C:Control/Protocol,
+8:u13:bfcp,
+9:u00:Floor,
+11:u01:Control,
+8:u04:BFCP,
+11:u06:Streams,
+10:u09:(/BFCP,
+10:u0A:BFCP/),
+13:u0B:)/Streams,
+10:u0D:BFCP/0,
+8:u12:bfcp,
+11:u14:streams,
+7:u32:FCP,
+8:u33:BFCP,
+11:u00:Control,
+8:u03:BFCP,
+11:u05:Streams,
+10:u09:BFCP/),
+13:u0A:)/Streams,
+17:u0B:Streams/draft,
+10:u0C:(/BFCP,
+8:u11:bfcp,
+11:u13:streams,
+8:u02:BFCP,
+11:u04:Streams,
+13:u09:)/Streams,
+17:u0A:Streams/draft,
+10:u0C:BFCP/),
+13:u0D:Streams/0,
+8:u10:bfcp,
+11:u12:streams,
+7:u22:Str,
+8:u23:Stre,
+7:u32:ams,
+8:u33:eams,
+8:u01:BFCP,
+11:u03:Streams,
+11:u08:bfcpbis,
+17:u09:Streams/draft,
+13:u0C:)/Streams,
+11:u11:streams,
+8:u00:BFCP,
+11:u02:Streams,
+11:u07:bfcpbis,
+17:u0C:Streams/draft,
+11:u10:streams,
+11:u01:Streams,
+11:u06:bfcpbis,
+14:u08:rfc4583bis,
+13:u0B:-/bfcpbis,
+11:u14:bfcpbis,
+11:u00:Streams,
+11:u05:bfcpbis,
+14:u07:rfc4583bis,
+13:u0A:-/bfcpbis,
+13:u0B:bfcpbis/-,
+11:u13:bfcpbis,
+11:u04:bfcpbis,
+14:u06:rfc4583bis,
+6:u08:27,
+13:u09:-/bfcpbis,
+13:u0A:bfcpbis/-,
+16:u0B:-/rfc4583bis,
+13:u0D:bfcpbis/1,
+14:u14:rfc4583bis,
+6:u21:bf,
+7:u22:bfc,
+8:u23:bfcp,
+8:u33:pbis,
+11:u03:bfcpbis,
+14:u05:rfc4583bis,
+6:u07:27,
+13:u09:bfcpbis/-,
+16:u0A:-/rfc4583bis,
+16:u0B:rfc4583bis/-,
+13:u0C:-/bfcpbis,
+14:u13:rfc4583bis,
+11:u02:bfcpbis,
+14:u04:rfc4583bis,
+6:u06:27,
+16:u09:-/rfc4583bis,
+16:u0A:rfc4583bis/-,
+8:u0B:-/27,
+13:u0C:bfcpbis/-,
+16:u0D:rfc4583bis/1,
+14:u12:rfc4583bis,
+6:u14:27,
+8:u23:rfc4,
+8:u33:3bis,
+11:u01:bfcpbis,
+14:u03:rfc4583bis,
+6:u05:27,
+16:u09:rfc4583bis/-,
+8:u0A:-/27,
+15:u0B:27/Abstract,
+16:u0C:-/rfc4583bis,
+14:u11:rfc4583bis,
+6:u13:27,
+11:u00:bfcpbis,
+14:u02:rfc4583bis,
+6:u04:27,
+8:u09:-/27,
+15:u0A:27/Abstract,
+16:u0C:rfc4583bis/-,
+8:u0D:27/1,
+14:u10:rfc4583bis,
+6:u12:27,
+6:u21:27,
+6:u22:27,
+6:u23:27,
+6:u31:27,
+6:u32:27,
+6:u33:27,
+14:u01:rfc4583bis,
+6:u03:27,
+15:u09:27/Abstract,
+8:u0C:-/27,
+6:u11:27,
+14:u00:rfc4583bis,
+6:u02:27,
+15:u0C:27/Abstract,
+6:u10:27,
+6:u01:27,
+6:u00:27,
+15:u0B:the/Session,
+15:u0A:the/Session,
+15:u09:the/Session,
+15:u0C:the/Session,
+9:u08:offer,
+9:u07:offer,
+9:u06:offer,
+10:u08:answer,
+11:u0B:)/offer,
+9:u14:offer,
+9:u05:offer,
+10:u07:answer,
+14:u08:procedures,
+11:u0A:)/offer,
+11:u0B:offer//,
+9:u13:offer,
+9:u04:offer,
+10:u06:answer,
+14:u07:procedures,
+11:u09:)/offer,
+11:u0A:offer//,
+12:u0B://answer,
+11:u0D:offer/0,
+9:u12:offer,
+10:u14:answer,
+7:u22:off,
+8:u23:offe,
+7:u32:fer,
+8:u33:ffer,
+9:u03:offer,
+10:u05:answer,
+14:u06:procedures,
+15:u08:negotiating,
+11:u09:offer//,
+12:u0A://answer,
+21:u0B:answer/procedures,
+11:u0C:)/offer,
+9:u11:offer,
+10:u13:answer,
+14:u14:procedures,
+9:u02:offer,
+10:u04:answer,
+14:u05:procedures,
+15:u07:negotiating,
+12:u09://answer,
+21:u0A:answer/procedures,
+18:u0B:procedures/for,
+11:u0C:offer//,
+12:u0D:answer/0,
+9:u10:offer,
+10:u12:answer,
+14:u13:procedures,
+7:u22:ans,
+8:u23:answ,
+7:u32:wer,
+8:u33:swer,
+9:u01:offer,
+10:u03:answer,
+14:u04:procedures,
+15:u06:negotiating,
+16:u08:establishing,
+21:u09:answer/procedures,
+18:u0A:procedures/for,
+19:u0B:for/negotiating,
+12:u0C://answer,
+16:u0D:procedures/0,
+10:u11:answer,
+14:u12:procedures,
+15:u14:negotiating,
+9:u00:offer,
+10:u02:answer,
+14:u03:procedures,
+15:u05:negotiating,
+16:u07:establishing,
+18:u09:procedures/for,
+19:u0A:for/negotiating,
+19:u0B:negotiating/and,
+21:u0C:answer/procedures,
+10:u10:answer,
+14:u11:procedures,
+15:u13:negotiating,
+10:u01:answer,
+14:u02:procedures,
+15:u04:negotiating,
+16:u06:establishing,
+19:u09:for/negotiating,
+19:u0A:negotiating/and,
+20:u0B:and/establishing,
+18:u0C:procedures/for,
+17:u0D:negotiating/0,
+14:u10:procedures,
+15:u12:negotiating,
+16:u14:establishing,
+7:u22:neg,
+8:u23:nego,
+10:u00:answer,
+14:u01:procedures,
+15:u03:negotiating,
+16:u05:establishing,
+19:u09:negotiating/and,
+20:u0A:and/establishing,
+23:u0B:establishing/Binary,
+19:u0C:for/negotiating,
+15:u11:negotiating,
+16:u13:establishing,
+14:u00:procedures,
+15:u02:negotiating,
+16:u04:establishing,
+20:u09:and/establishing,
+23:u0A:establishing/Binary,
+19:u0C:negotiating/and,
+18:u0D:establishing/0,
+15:u10:negotiating,
+16:u12:establishing,
+7:u22:est,
+8:u23:esta,
+15:u01:negotiating,
+16:u03:establishing,
+23:u09:establishing/Binary,
+20:u0C:and/establishing,
+16:u11:establishing,
+15:u00:negotiating,
+16:u02:establishing,
+23:u0C:establishing/Binary,
+16:u10:establishing,
+16:u01:establishing,
+16:u00:establishing,
+11:u08:streams,
+11:u07:streams,
+11:u06:streams,
+13:u0B:)/streams,
+11:u05:streams,
+13:u0A:)/streams,
+13:u0B:streams/.,
+11:u04:streams,
+13:u08:obsoletes,
+13:u09:)/streams,
+13:u0A:streams/.,
+13:u0D:streams/0,
+11:u03:streams,
+13:u07:obsoletes,
+13:u09:streams/.,
+13:u0C:)/streams,
+11:u02:streams,
+13:u06:obsoletes,
+22:u0B:document/obsoletes,
+13:u0C:streams/.,
+11:u01:streams,
+13:u05:obsoletes,
+22:u0A:document/obsoletes,
+17:u0B:obsoletes/RFC,
+11:u00:streams,
+13:u04:obsoletes,
+11:u08:Changes,
+22:u09:document/obsoletes,
+17:u0A:obsoletes/RFC,
+12:u0B:RFC/4583,
+15:u0D:obsoletes/0,
+13:u03:obsoletes,
+11:u07:Changes,
+17:u09:obsoletes/RFC,
+12:u0A:RFC/4583,
+10:u0B:4583/.,
+22:u0C:document/obsoletes,
+13:u02:obsoletes,
+11:u06:Changes,
+12:u09:RFC/4583,
+10:u0A:4583/.,
+13:u0B:./Changes,
+17:u0C:obsoletes/RFC,
+11:u14:changes,
+13:u01:obsoletes,
+11:u05:Changes,
+10:u09:4583/.,
+13:u0A:./Changes,
+16:u0B:Changes/from,
+12:u0C:RFC/4583,
+11:u13:changes,
+13:u00:obsoletes,
+11:u04:Changes,
+13:u09:./Changes,
+16:u0A:Changes/from,
+12:u0B:from/RFC,
+10:u0C:4583/.,
+13:u0D:Changes/0,
+11:u12:changes,
+7:u22:Cha,
+8:u23:Chan,
+8:u33:nges,
+11:u03:Changes,
+14:u08:summarized,
+16:u09:Changes/from,
+12:u0A:from/RFC,
+13:u0C:./Changes,
+11:u11:changes,
+11:u02:Changes,
+14:u07:summarized,
+12:u09:from/RFC,
+12:u0B:4583/are,
+16:u0C:Changes/from,
+11:u10:changes,
+11:u01:Changes,
+14:u06:summarized,
+12:u0A:4583/are,
+18:u0B:are/summarized,
+12:u0C:from/RFC,
+14:u14:summarized,
+11:u00:Changes,
+14:u05:summarized,
+6:u08:14,
+12:u09:4583/are,
+18:u0A:are/summarized,
+17:u0B:summarized/in,
+14:u13:summarized,
+14:u04:summarized,
+6:u07:14,
+18:u09:are/summarized,
+17:u0A:summarized/in,
+12:u0C:4583/are,
+16:u0D:summarized/0,
+14:u12:summarized,
+7:u22:sum,
+8:u23:summ,
+7:u32:zed,
+8:u33:ized,
+14:u03:summarized,
+6:u06:14,
+17:u09:summarized/in,
+14:u0B:Section/14,
+18:u0C:are/summarized,
+14:u11:summarized,
+6:u14:14,
+14:u02:summarized,
+6:u05:14,
+14:u0A:Section/14,
+8:u0B:14/.,
+17:u0C:summarized/in,
+14:u10:summarized,
+6:u13:14,
+14:u01:summarized,
+6:u04:14,
+14:u09:Section/14,
+8:u0A:14/.,
+8:u0D:14/0,
+6:u12:14,
+6:u21:14,
+6:u22:14,
+6:u23:14,
+6:u31:14,
+6:u32:14,
+6:u33:14,
+14:u00:summarized,
+6:u03:14,
+8:u09:14/.,
+14:u0C:Section/14,
+6:u11:14,
+6:u02:14,
+8:u0C:14/.,
+6:u10:14,
+6:u01:14,
+6:u00:14,
+8:u08:http,
+8:u07:http,
+8:u06:http,
+11:u0B:at/http,
+8:u14:http,
+8:u05:http,
+11:u0A:at/http,
+10:u0B:http/:,
+8:u13:http,
+8:u04:http,
+11:u09:at/http,
+10:u0A:http/:,
+10:u0D:http/0,
+8:u12:http,
+6:u31:tp,
+7:u32:ttp,
+8:u33:http,
+8:u03:http,
+10:u09:http/:,
+11:u0C:at/http,
+8:u11:http,
+8:u02:http,
+10:u0C:http/:,
+8:u10:http,
+8:u01:http,
+8:u00:http,
+11:u0B:on/June,
+11:u0A:on/June,
+11:u09:on/June,
+11:u0C:on/June,
+10:u0B:2019/.,
+10:u0A:2019/.,
+10:u09:2019/.,
+10:u0C:2019/.,
+10:u0B:)/2018,
+10:u0A:)/2018,
+13:u0B:2018/IETF,
+10:u09:)/2018,
+13:u0A:2018/IETF,
+13:u09:2018/IETF,
+10:u0C:)/2018,
+13:u0C:2018/IETF,
+10:u0B:(/http,
+10:u0A:(/http,
+10:u09:(/http,
+10:u0C:(/http,
+23:u0B:documents/Camarillo,
+23:u0A:documents/Camarillo,
+15:u0B:Camarillo/,,
+23:u09:documents/Camarillo,
+15:u0A:Camarillo/,,
+15:u09:Camarillo/,,
+23:u0C:documents/Camarillo,
+15:u0C:Camarillo/,,
+13:u0B:./Expires,
+13:u0A:./Expires,
+16:u0B:Expires/June,
+13:u09:./Expires,
+16:u0A:Expires/June,
+16:u09:Expires/June,
+13:u0C:./Expires,
+16:u0C:Expires/June,
+10:u0B:2019/[,
+10:u0A:2019/[,
+10:u09:2019/[,
+10:u0C:2019/[,
+14:u0B:Draft/BFCP,
+14:u0A:Draft/BFCP,
+17:u0B:BFCP/December,
+14:u09:Draft/BFCP,
+17:u0A:BFCP/December,
+17:u0B:December/2018,
+17:u09:BFCP/December,
+17:u0A:December/2018,
+18:u0B:2018/carefully,
+14:u0C:Draft/BFCP,
+17:u09:December/2018,
+18:u0A:2018/carefully,
+17:u0C:BFCP/December,
+18:u09:2018/carefully,
+17:u0C:December/2018,
+18:u0C:2018/carefully,
+11:u08:Gonzalo,
+11:u07:Gonzalo,
+11:u06:Gonzalo,
+13:u0B:./Gonzalo,
+11:u14:gonzalo,
+11:u05:Gonzalo,
+15:u08:Hirsalantie,
+13:u0A:./Gonzalo,
+21:u0B:Gonzalo/Camarillo,
+11:u13:gonzalo,
+11:u04:Gonzalo,
+15:u07:Hirsalantie,
+13:u09:./Gonzalo,
+21:u0A:Gonzalo/Camarillo,
+22:u0B:Camarillo/Ericsson,
+13:u0D:Gonzalo/0,
+11:u12:gonzalo,
+6:u21:Go,
+7:u22:Gon,
+8:u23:Gonz,
+8:u33:zalo,
+11:u03:Gonzalo,
+15:u06:Hirsalantie,
+6:u08:FI,
+21:u09:Gonzalo/Camarillo,
+22:u0A:Camarillo/Ericsson,
+24:u0B:Ericsson/Hirsalantie,
+13:u0C:./Gonzalo,
+11:u11:gonzalo,
+15:u14:hirsalantie,
+11:u02:Gonzalo,
+15:u05:Hirsalantie,
+6:u07:FI,
+22:u09:Camarillo/Ericsson,
+24:u0A:Ericsson/Hirsalantie,
+18:u0B:Hirsalantie/11,
+21:u0C:Gonzalo/Camarillo,
+11:u10:gonzalo,
+15:u13:hirsalantie,
+11:u01:Gonzalo,
+15:u04:Hirsalantie,
+6:u06:FI,
+9:u08:02420,
+24:u09:Ericsson/Hirsalantie,
+18:u0A:Hirsalantie/11,
+9:u0B:11/FI,
+22:u0C:Camarillo/Ericsson,
+17:u0D:Hirsalantie/0,
+15:u12:hirsalantie,
+6:u14:fi,
+7:u22:Hir,
+8:u23:Hirs,
+6:u31:ie,
+7:u32:tie,
+8:u33:ntie,
+11:u00:Gonzalo,
+15:u03:Hirsalantie,
+6:u05:FI,
+9:u07:02420,
+10:u08:Jorvas,
+18:u09:Hirsalantie/11,
+9:u0A:11/FI,
+8:u0B:FI/-,
+24:u0C:Ericsson/Hirsalantie,
+15:u11:hirsalantie,
+6:u13:fi,
+15:u02:Hirsalantie,
+6:u04:FI,
+9:u06:02420,
+10:u07:Jorvas,
+11:u08:Finland,
+9:u09:11/FI,
+8:u0A:FI/-,
+11:u0B:-/02420,
+18:u0C:Hirsalantie/11,
+8:u0D:FI/0,
+15:u10:hirsalantie,
+6:u12:fi,
+9:u14:02420,
+6:u21:FI,
+6:u22:FI,
+6:u23:FI,
+6:u31:FI,
+6:u32:FI,
+6:u33:FI,
+15:u01:Hirsalantie,
+6:u03:FI,
+9:u05:02420,
+10:u06:Jorvas,
+11:u07:Finland,
+8:u09:FI/-,
+11:u0A:-/02420,
+16:u0B:02420/Jorvas,
+9:u0C:11/FI,
+6:u11:fi,
+9:u13:02420,
+10:u14:jorvas,
+15:u00:Hirsalantie,
+6:u02:FI,
+9:u04:02420,
+10:u05:Jorvas,
+11:u06:Finland,
+11:u09:-/02420,
+16:u0A:02420/Jorvas,
+18:u0B:Jorvas/Finland,
+8:u0C:FI/-,
+11:u0D:02420/1,
+6:u10:fi,
+9:u12:02420,
+10:u13:jorvas,
+11:u14:finland,
+7:u22:024,
+8:u23:0242,
+7:u32:420,
+8:u33:2420,
+6:u01:FI,
+9:u03:02420,
+10:u04:Jorvas,
+11:u05:Finland,
+16:u09:02420/Jorvas,
+18:u0A:Jorvas/Finland,
+17:u0B:Finland/Email,
+11:u0C:-/02420,
+12:u0D:Jorvas/0,
+9:u11:02420,
+10:u12:jorvas,
+11:u13:finland,
+6:u21:Jo,
+7:u22:Jor,
+8:u23:Jorv,
+7:u32:vas,
+8:u33:rvas,
+6:u00:FI,
+9:u02:02420,
+10:u03:Jorvas,
+11:u04:Finland,
+18:u09:Jorvas/Finland,
+17:u0A:Finland/Email,
+16:u0C:02420/Jorvas,
+13:u0D:Finland/0,
+9:u10:02420,
+10:u11:jorvas,
+11:u12:finland,
+6:u21:Fi,
+7:u22:Fin,
+8:u23:Finl,
+8:u33:land,
+9:u01:02420,
+10:u02:Jorvas,
+11:u03:Finland,
+22:u08:Camarillo@ericsson,
+17:u09:Finland/Email,
+13:u0B::/Gonzalo,
+18:u0C:Jorvas/Finland,
+10:u10:jorvas,
+11:u11:finland,
+9:u00:02420,
+10:u01:Jorvas,
+11:u02:Finland,
+22:u07:Camarillo@ericsson,
+13:u0A::/Gonzalo,
+13:u0B:Gonzalo/.,
+17:u0C:Finland/Email,
+11:u10:finland,
+10:u00:Jorvas,
+11:u01:Finland,
+22:u06:Camarillo@ericsson,
+13:u09::/Gonzalo,
+13:u0A:Gonzalo/.,
+24:u0B:./Camarillo@ericsson,
+22:u14:camarillo@ericsson,
+11:u00:Finland,
+22:u05:Camarillo@ericsson,
+7:u08:Tom,
+13:u09:Gonzalo/.,
+24:u0A:./Camarillo@ericsson,
+24:u0B:Camarillo@ericsson/.,
+13:u0C::/Gonzalo,
+22:u13:camarillo@ericsson,
+22:u04:Camarillo@ericsson,
+7:u07:Tom,
+24:u09:./Camarillo@ericsson,
+24:u0A:Camarillo@ericsson/.,
+13:u0C:Gonzalo/.,
+24:u0D:Camarillo@ericsson/0,
+22:u12:camarillo@ericsson,
+22:u03:Camarillo@ericsson,
+7:u06:Tom,
+24:u09:Camarillo@ericsson/.,
+11:u0B:com/Tom,
+24:u0C:./Camarillo@ericsson,
+22:u11:camarillo@ericsson,
+7:u14:tom,
+22:u02:Camarillo@ericsson,
+7:u05:Tom,
+10:u08:Philip,
+11:u0A:com/Tom,
+18:u0B:Tom/Kristensen,
+24:u0C:Camarillo@ericsson/.,
+22:u10:camarillo@ericsson,
+7:u13:tom,
+22:u01:Camarillo@ericsson,
+7:u04:Tom,
+10:u07:Philip,
+13:u08:Pedersens,
+11:u09:com/Tom,
+18:u0A:Tom/Kristensen,
+20:u0B:Kristensen/Cisco,
+9:u0D:Tom/0,
+7:u12:tom,
+7:u22:Tom,
+7:u23:Tom,
+7:u32:Tom,
+7:u33:Tom,
+22:u00:Camarillo@ericsson,
+7:u03:Tom,
+10:u06:Philip,
+13:u07:Pedersens,
+7:u08:vei,
+18:u09:Tom/Kristensen,
+20:u0A:Kristensen/Cisco,
+16:u0B:Cisco/Philip,
+11:u0C:com/Tom,
+7:u11:tom,
+10:u14:philip,
+7:u02:Tom,
+10:u05:Philip,
+13:u06:Pedersens,
+7:u07:vei,
+20:u09:Kristensen/Cisco,
+16:u0A:Cisco/Philip,
+20:u0B:Philip/Pedersens,
+18:u0C:Tom/Kristensen,
+7:u10:tom,
+10:u13:philip,
+13:u14:pedersens,
+7:u01:Tom,
+10:u04:Philip,
+13:u05:Pedersens,
+7:u06:vei,
+6:u08:NO,
+16:u09:Cisco/Philip,
+20:u0A:Philip/Pedersens,
+17:u0B:Pedersens/vei,
+20:u0C:Kristensen/Cisco,
+12:u0D:Philip/0,
+10:u12:philip,
+13:u13:pedersens,
+7:u14:vei,
+7:u22:Phi,
+8:u23:Phil,
+6:u31:ip,
+7:u32:lip,
+8:u33:ilip,
+7:u00:Tom,
+10:u03:Philip,
+13:u04:Pedersens,
+7:u05:vei,
+6:u07:NO,
+20:u09:Philip/Pedersens,
+17:u0A:Pedersens/vei,
+9:u0B:vei/1,
+16:u0C:Cisco/Philip,
+15:u0D:Pedersens/0,
+10:u11:philip,
+13:u12:pedersens,
+7:u13:vei,
+7:u22:Ped,
+8:u23:Pede,
+7:u32:ens,
+8:u33:sens,
+10:u02:Philip,
+13:u03:Pedersens,
+7:u04:vei,
+6:u06:NO,
+8:u08:1366,
+17:u09:Pedersens/vei,
+9:u0A:vei/1,
+8:u0B:1/NO,
+20:u0C:Philip/Pedersens,
+9:u0D:vei/0,
+10:u10:philip,
+13:u11:pedersens,
+7:u12:vei,
+6:u21:ve,
+7:u22:vei,
+7:u23:vei,
+6:u31:ei,
+7:u32:vei,
+7:u33:vei,
+10:u01:Philip,
+13:u02:Pedersens,
+7:u03:vei,
+6:u05:NO,
+8:u07:1366,
+11:u08:Lysaker,
+9:u09:vei/1,
+8:u0A:1/NO,
+8:u0B:NO/-,
+17:u0C:Pedersens/vei,
+13:u10:pedersens,
+7:u11:vei,
+10:u00:Philip,
+13:u01:Pedersens,
+7:u02:vei,
+6:u04:NO,
+8:u06:1366,
+11:u07:Lysaker,
+10:u08:Norway,
+8:u09:1/NO,
+8:u0A:NO/-,
+10:u0B:-/1366,
+9:u0C:vei/1,
+8:u0D:NO/0,
+7:u10:vei,
+8:u14:1366,
+6:u21:NO,
+6:u22:NO,
+6:u23:NO,
+6:u31:NO,
+6:u32:NO,
+6:u33:NO,
+13:u00:Pedersens,
+7:u01:vei,
+6:u03:NO,
+8:u05:1366,
+11:u06:Lysaker,
+10:u07:Norway,
+8:u09:NO/-,
+10:u0A:-/1366,
+16:u0B:1366/Lysaker,
+8:u0C:1/NO,
+8:u13:1366,
+11:u14:lysaker,
+7:u00:vei,
+6:u02:NO,
+8:u04:1366,
+11:u05:Lysaker,
+10:u06:Norway,
+10:u09:-/1366,
+16:u0A:1366/Lysaker,
+18:u0B:Lysaker/Norway,
+8:u0C:NO/-,
+10:u0D:1366/1,
+8:u12:1366,
+11:u13:lysaker,
+10:u14:norway,
+6:u21:13,
+7:u22:136,
+8:u23:1366,
+6:u31:66,
+7:u32:366,
+8:u33:1366,
+6:u01:NO,
+8:u03:1366,
+11:u04:Lysaker,
+10:u05:Norway,
+18:u08:tomkrist@cisco,
+16:u09:1366/Lysaker,
+18:u0A:Lysaker/Norway,
+16:u0B:Norway/Email,
+10:u0C:-/1366,
+13:u0D:Lysaker/0,
+8:u11:1366,
+11:u12:lysaker,
+10:u13:norway,
+6:u21:Ly,
+7:u22:Lys,
+8:u23:Lysa,
+8:u33:aker,
+6:u00:NO,
+8:u02:1366,
+11:u03:Lysaker,
+10:u04:Norway,
+18:u07:tomkrist@cisco,
+18:u09:Lysaker/Norway,
+16:u0A:Norway/Email,
+16:u0C:1366/Lysaker,
+12:u0D:Norway/0,
+8:u10:1366,
+11:u11:lysaker,
+10:u12:norway,
+7:u22:Nor,
+8:u23:Norw,
+7:u32:way,
+8:u33:rway,
+8:u01:1366,
+11:u02:Lysaker,
+10:u03:Norway,
+18:u06:tomkrist@cisco,
+16:u09:Norway/Email,
+20:u0B::/tomkrist@cisco,
+18:u0C:Lysaker/Norway,
+11:u10:lysaker,
+10:u11:norway,
+18:u14:tomkrist@cisco,
+8:u00:1366,
+11:u01:Lysaker,
+10:u02:Norway,
+18:u05:tomkrist@cisco,
+20:u0A::/tomkrist@cisco,
+20:u0B:tomkrist@cisco/.,
+16:u0C:Norway/Email,
+10:u10:norway,
+18:u13:tomkrist@cisco,
+11:u00:Lysaker,
+10:u01:Norway,
+18:u04:tomkrist@cisco,
+14:u08:tomkri@ifi,
+20:u09::/tomkrist@cisco,
+20:u0A:tomkrist@cisco/.,
+20:u0D:tomkrist@cisco/0,
+18:u12:tomkrist@cisco,
+7:u22:tom,
+8:u23:tomk,
+10:u00:Norway,
+18:u03:tomkrist@cisco,
+14:u07:tomkri@ifi,
+20:u09:tomkrist@cisco/.,
+9:u0B:com/,,
+20:u0C::/tomkrist@cisco,
+18:u11:tomkrist@cisco,
+18:u02:tomkrist@cisco,
+14:u06:tomkri@ifi,
+7:u08:uio,
+9:u0A:com/,,
+16:u0B:,/tomkri@ifi,
+20:u0C:tomkrist@cisco/.,
+18:u10:tomkrist@cisco,
+14:u14:tomkri@ifi,
+18:u01:tomkrist@cisco,
+14:u05:tomkri@ifi,
+7:u07:uio,
+9:u09:com/,,
+16:u0A:,/tomkri@ifi,
+16:u0B:tomkri@ifi/.,
+14:u13:tomkri@ifi,
+18:u00:tomkrist@cisco,
+14:u04:tomkri@ifi,
+7:u06:uio,
+16:u09:,/tomkri@ifi,
+16:u0A:tomkri@ifi/.,
+9:u0B:./uio,
+9:u0C:com/,,
+16:u0D:tomkri@ifi/0,
+14:u12:tomkri@ifi,
+7:u14:uio,
+6:u31:fi,
+7:u32:ifi,
+8:u33:@ifi,
+14:u03:tomkri@ifi,
+7:u05:uio,
+12:u08:Christer,
+16:u09:tomkri@ifi/.,
+9:u0A:./uio,
+9:u0B:uio/.,
+16:u0C:,/tomkri@ifi,
+14:u11:tomkri@ifi,
+7:u13:uio,
+14:u02:tomkri@ifi,
+7:u04:uio,
+12:u07:Christer,
+9:u09:./uio,
+9:u0A:uio/.,
+8:u0B:./no,
+16:u0C:tomkri@ifi/.,
+9:u0D:uio/0,
+14:u10:tomkri@ifi,
+7:u12:uio,
+6:u21:ui,
+7:u22:uio,
+7:u23:uio,
+7:u32:uio,
+7:u33:uio,
+14:u01:tomkri@ifi,
+7:u03:uio,
+12:u06:Christer,
+9:u09:uio/.,
+8:u0A:./no,
+15:u0B:no/Christer,
+9:u0C:./uio,
+7:u11:uio,
+12:u14:christer,
+14:u00:tomkri@ifi,
+7:u02:uio,
+12:u05:Christer,
+8:u09:./no,
+15:u0A:no/Christer,
+21:u0B:Christer/Holmberg,
+9:u0C:uio/.,
+7:u10:uio,
+12:u13:christer,
+7:u01:uio,
+12:u04:Christer,
+15:u09:no/Christer,
+21:u0A:Christer/Holmberg,
+8:u0C:./no,
+14:u0D:Christer/0,
+12:u12:christer,
+7:u32:ter,
+8:u33:ster,
+7:u00:uio,
+12:u03:Christer,
+21:u09:Christer/Holmberg,
+15:u0C:no/Christer,
+12:u11:christer,
+12:u02:Christer,
+21:u0C:Christer/Holmberg,
+12:u10:christer,
+12:u01:Christer,
+13:u0B:11/Jorvas,
+12:u00:Christer,
+13:u0A:11/Jorvas,
+16:u0B:Jorvas/02420,
+13:u09:11/Jorvas,
+16:u0A:Jorvas/02420,
+17:u0B:02420/Finland,
+12:u08:christer,
+16:u09:Jorvas/02420,
+17:u0A:02420/Finland,
+13:u0C:11/Jorvas,
+11:u0D:02420/0,
+12:u07:christer,
+17:u09:02420/Finland,
+16:u0C:Jorvas/02420,
+12:u06:christer,
+21:u08:holmberg@ericsson,
+14:u0B::/christer,
+17:u0C:02420/Finland,
+12:u05:christer,
+21:u07:holmberg@ericsson,
+14:u0A::/christer,
+14:u0B:christer/.,
+12:u04:christer,
+21:u06:holmberg@ericsson,
+14:u09::/christer,
+14:u0A:christer/.,
+23:u0B:./holmberg@ericsson,
+14:u0D:christer/0,
+21:u14:holmberg@ericsson,
+6:u21:ch,
+7:u22:chr,
+8:u23:chri,
+12:u03:christer,
+21:u05:holmberg@ericsson,
+14:u09:christer/.,
+23:u0A:./holmberg@ericsson,
+23:u0B:holmberg@ericsson/.,
+14:u0C::/christer,
+21:u13:holmberg@ericsson,
+12:u02:christer,
+21:u04:holmberg@ericsson,
+23:u09:./holmberg@ericsson,
+23:u0A:holmberg@ericsson/.,
+14:u0C:christer/.,
+23:u0D:holmberg@ericsson/0,
+21:u12:holmberg@ericsson,
+7:u22:hol,
+8:u23:holm,
+12:u01:christer,
+21:u03:holmberg@ericsson,
+23:u09:holmberg@ericsson/.,
+12:u0B:com/_x+1,
+23:u0C:./holmberg@ericsson,
+21:u11:holmberg@ericsson,
+12:u00:christer,
+21:u02:holmberg@ericsson,
+12:u0A:com/_x+1,
+23:u0C:holmberg@ericsson/.,
+21:u10:holmberg@ericsson,
+12:u06:20190822,
+17:u0B:date/20190822,
+12:u14:20190822,
+12:u05:20190822,
+17:u0A:date/20190822,
+14:u0B:20190822/;,
+12:u13:20190822,
+12:u04:20190822,
+17:u09:date/20190822,
+14:u0A:20190822/;,
+14:u0D:20190822/0,
+12:u12:20190822,
+6:u31:22,
+7:u32:822,
+8:u33:0822,
+12:u03:20190822,
+14:u09:20190822/;,
+17:u0C:date/20190822,
+12:u11:20190822,
+12:u02:20190822,
+12:u08:20190824,
+14:u0C:20190822/;,
+12:u10:20190822,
+12:u01:20190822,
+12:u07:20190824,
+8:u08:DOTS,
+12:u00:20190822,
+12:u06:20190824,
+8:u07:DOTS,
+15:u0B:on/20190824,
+12:u14:20190824,
+12:u05:20190824,
+8:u06:DOTS,
+15:u0A:on/20190824,
+17:u0B:20190824/DOTS,
+12:u13:20190824,
+8:u14:dots,
+12:u04:20190824,
+8:u05:DOTS,
+8:u08:Chen,
+15:u09:on/20190824,
+17:u0A:20190824/DOTS,
+10:u0B:DOTS/M,
+14:u0D:20190824/0,
+12:u12:20190824,
+8:u13:dots,
+6:u31:24,
+7:u32:824,
+8:u33:0824,
+12:u03:20190824,
+8:u04:DOTS,
+8:u07:Chen,
+17:u09:20190824/DOTS,
+10:u0A:DOTS/M,
+15:u0C:on/20190824,
+10:u0D:DOTS/0,
+12:u11:20190824,
+8:u12:dots,
+6:u21:DO,
+7:u22:DOT,
+8:u23:DOTS,
+6:u31:TS,
+7:u32:OTS,
+8:u33:DOTS,
+12:u02:20190824,
+8:u03:DOTS,
+8:u06:Chen,
+10:u09:DOTS/M,
+10:u0B:./Chen,
+17:u0C:20190824/DOTS,
+12:u10:20190824,
+8:u11:dots,
+8:u14:chen,
+12:u01:20190824,
+8:u02:DOTS,
+8:u05:Chen,
+10:u0A:./Chen,
+17:u0B:Chen/Internet,
+10:u0C:DOTS/M,
+8:u10:dots,
+8:u13:chen,
+12:u00:20190824,
+8:u01:DOTS,
+8:u04:Chen,
+6:u08:Li,
+10:u09:./Chen,
+17:u0A:Chen/Internet,
+10:u0D:Chen/0,
+8:u12:chen,
+7:u22:Che,
+8:u23:Chen,
+7:u32:hen,
+8:u33:Chen,
+8:u00:DOTS,
+8:u03:Chen,
+6:u07:Li,
+17:u09:Chen/Internet,
+10:u0C:./Chen,
+8:u11:chen,
+8:u02:Chen,
+6:u06:Li,
+6:u08:Su,
+12:u0B:Draft/Li,
+17:u0C:Chen/Internet,
+8:u10:chen,
+6:u14:li,
+8:u01:Chen,
+6:u05:Li,
+6:u07:Su,
+12:u0A:Draft/Li,
+8:u0B:Li/.,
+6:u13:li,
+8:u00:Chen,
+6:u04:Li,
+6:u06:Su,
+12:u09:Draft/Li,
+8:u0A:Li/.,
+8:u0B:./Su,
+8:u0D:Li/0,
+6:u12:li,
+6:u14:su,
+6:u22:Li,
+6:u23:Li,
+6:u31:Li,
+6:u32:Li,
+6:u33:Li,
+6:u03:Li,
+6:u05:Su,
+8:u09:Li/.,
+8:u0A:./Su,
+15:u0B:Su/Intended,
+12:u0C:Draft/Li,
+6:u11:li,
+6:u13:su,
+6:u02:Li,
+6:u04:Su,
+8:u09:./Su,
+15:u0A:Su/Intended,
+8:u0C:Li/.,
+8:u0D:Su/0,
+6:u10:li,
+6:u12:su,
+6:u22:Su,
+6:u23:Su,
+6:u31:Su,
+6:u32:Su,
+6:u33:Su,
+6:u01:Li,
+6:u03:Su,
+15:u09:Su/Intended,
+8:u0C:./Su,
+6:u11:su,
+6:u00:Li,
+6:u02:Su,
+7:u08:Jin,
+15:u0C:Su/Intended,
+6:u10:su,
+6:u01:Su,
+7:u07:Jin,
+6:u00:Su,
+7:u06:Jin,
+8:u08:Peng,
+13:u0B:Track/Jin,
+7:u14:jin,
+7:u05:Jin,
+8:u07:Peng,
+13:u0A:Track/Jin,
+9:u0B:Jin/.,
+7:u13:jin,
+7:u04:Jin,
+8:u06:Peng,
+13:u09:Track/Jin,
+9:u0A:Jin/.,
+10:u0B:./Peng,
+9:u0D:Jin/0,
+7:u12:jin,
+8:u14:peng,
+6:u21:Ji,
+7:u22:Jin,
+7:u23:Jin,
+7:u32:Jin,
+7:u33:Jin,
+7:u03:Jin,
+8:u05:Peng,
+9:u09:Jin/.,
+10:u0A:./Peng,
+16:u0B:Peng/Expires,
+13:u0C:Track/Jin,
+7:u11:jin,
+8:u13:peng,
+7:u02:Jin,
+8:u04:Peng,
+6:u08:23,
+10:u09:./Peng,
+16:u0A:Peng/Expires,
+9:u0C:Jin/.,
+10:u0D:Peng/0,
+7:u10:jin,
+8:u12:peng,
+7:u22:Pen,
+8:u23:Peng,
+7:u32:eng,
+8:u33:Peng,
+7:u01:Jin,
+8:u03:Peng,
+6:u07:23,
+16:u09:Peng/Expires,
+10:u0C:./Peng,
+8:u11:peng,
+7:u00:Jin,
+8:u02:Peng,
+6:u06:23,
+15:u0B:February/23,
+16:u0C:Peng/Expires,
+8:u10:peng,
+6:u14:23,
+8:u01:Peng,
+6:u05:23,
+8:u08:CMCC,
+15:u0A:February/23,
+8:u0B:23/,,
+6:u13:23,
+8:u00:Peng,
+6:u04:23,
+8:u07:CMCC,
+15:u09:February/23,
+8:u0A:23/,,
+8:u0D:23/0,
+6:u12:23,
+6:u21:23,
+6:u22:23,
+6:u23:23,
+6:u31:23,
+6:u32:23,
+6:u33:23,
+6:u03:23,
+8:u06:CMCC,
+6:u08:22,
+8:u09:23/,,
+13:u0B:2020/CMCC,
+15:u0C:February/23,
+6:u11:23,
+8:u14:cmcc,
+6:u02:23,
+8:u05:CMCC,
+6:u07:22,
+13:u0A:2020/CMCC,
+15:u0B:CMCC/August,
+8:u0C:23/,,
+6:u10:23,
+8:u13:cmcc,
+6:u01:23,
+8:u04:CMCC,
+6:u06:22,
+13:u09:2020/CMCC,
+15:u0A:CMCC/August,
+13:u0B:August/22,
+10:u0D:CMCC/0,
+8:u12:cmcc,
+6:u14:22,
+6:u21:CM,
+7:u22:CMC,
+8:u23:CMCC,
+6:u31:CC,
+7:u32:MCC,
+8:u33:CMCC,
+6:u00:23,
+8:u03:CMCC,
+6:u05:22,
+15:u09:CMCC/August,
+13:u0A:August/22,
+8:u0B:22/,,
+13:u0C:2020/CMCC,
+8:u11:cmcc,
+6:u13:22,
+8:u02:CMCC,
+6:u04:22,
+10:u08:client,
+13:u09:August/22,
+8:u0A:22/,,
+15:u0C:CMCC/August,
+8:u0D:22/0,
+8:u10:cmcc,
+6:u12:22,
+6:u21:22,
+6:u22:22,
+6:u23:22,
+6:u32:22,
+6:u33:22,
+8:u01:CMCC,
+6:u03:22,
+10:u07:client,
+9:u08:carry,
+8:u09:22/,,
+13:u0B:2019/DOTS,
+13:u0C:August/22,
+6:u11:22,
+8:u00:CMCC,
+6:u02:22,
+10:u06:client,
+9:u07:carry,
+8:u08:ddos,
+13:u0A:2019/DOTS,
+15:u0B:DOTS/client,
+8:u0C:22/,,
+6:u10:22,
+10:u14:client,
+6:u01:22,
+10:u05:client,
+9:u06:carry,
+8:u07:ddos,
+10:u08:attack,
+13:u09:2019/DOTS,
+15:u0A:DOTS/client,
+16:u0B:client/carry,
+10:u13:client,
+9:u14:carry,
+6:u00:22,
+10:u04:client,
+9:u05:carry,
+8:u06:ddos,
+10:u07:attack,
+16:u08:informations,
+15:u09:DOTS/client,
+16:u0A:client/carry,
+14:u0B:carry/ddos,
+13:u0C:2019/DOTS,
+12:u0D:client/0,
+10:u12:client,
+9:u13:carry,
+8:u14:ddos,
+7:u22:cli,
+8:u23:clie,
+8:u33:ient,
+10:u03:client,
+9:u04:carry,
+8:u05:ddos,
+10:u06:attack,
+16:u07:informations,
+16:u09:client/carry,
+14:u0A:carry/ddos,
+15:u0B:ddos/attack,
+15:u0C:DOTS/client,
+11:u0D:carry/0,
+10:u11:client,
+9:u12:carry,
+8:u13:ddos,
+10:u14:attack,
+7:u32:rry,
+8:u33:arry,
+10:u02:client,
+9:u03:carry,
+8:u04:ddos,
+10:u05:attack,
+16:u06:informations,
+10:u08:signal,
+14:u09:carry/ddos,
+15:u0A:ddos/attack,
+23:u0B:attack/informations,
+16:u0C:client/carry,
+10:u0D:ddos/0,
+10:u10:client,
+9:u11:carry,
+8:u12:ddos,
+10:u13:attack,
+16:u14:informations,
+6:u21:dd,
+7:u22:ddo,
+8:u23:ddos,
+6:u31:os,
+7:u32:dos,
+8:u33:ddos,
+10:u01:client,
+9:u02:carry,
+8:u03:ddos,
+10:u04:attack,
+16:u05:informations,
+10:u07:signal,
+11:u08:channel,
+15:u09:ddos/attack,
+23:u0A:attack/informations,
+19:u0B:informations/in,
+14:u0C:carry/ddos,
+12:u0D:attack/0,
+9:u10:carry,
+8:u11:ddos,
+10:u12:attack,
+16:u13:informations,
+10:u00:client,
+9:u01:carry,
+8:u02:ddos,
+10:u03:attack,
+16:u04:informations,
+10:u06:signal,
+11:u07:channel,
+23:u09:attack/informations,
+19:u0A:informations/in,
+13:u0B:in/signal,
+15:u0C:ddos/attack,
+18:u0D:informations/0,
+8:u10:ddos,
+10:u11:attack,
+16:u12:informations,
+10:u14:signal,
+9:u00:carry,
+8:u01:ddos,
+10:u02:attack,
+16:u03:informations,
+10:u05:signal,
+11:u06:channel,
+19:u09:informations/in,
+13:u0A:in/signal,
+18:u0B:signal/channel,
+23:u0C:attack/informations,
+10:u10:attack,
+16:u11:informations,
+10:u13:signal,
+11:u14:channel,
+8:u00:ddos,
+10:u01:attack,
+16:u02:informations,
+10:u04:signal,
+11:u05:channel,
+8:u08:chen,
+13:u09:in/signal,
+18:u0A:signal/channel,
+17:u0B:channel/draft,
+19:u0C:informations/in,
+12:u0D:signal/0,
+16:u10:informations,
+10:u12:signal,
+11:u13:channel,
+8:u33:gnal,
+10:u00:attack,
+16:u01:informations,
+10:u03:signal,
+11:u04:channel,
+8:u07:chen,
+18:u09:signal/channel,
+17:u0A:channel/draft,
+13:u0C:in/signal,
+13:u0D:channel/0,
+10:u11:signal,
+11:u12:channel,
+7:u22:cha,
+8:u23:chan,
+7:u32:nel,
+8:u33:nnel,
+16:u00:informations,
+10:u02:signal,
+11:u03:channel,
+8:u06:chen,
+8:u08:dots,
+17:u09:channel/draft,
+10:u0B:-/chen,
+18:u0C:signal/channel,
+10:u10:signal,
+11:u11:channel,
+10:u01:signal,
+11:u02:channel,
+8:u05:chen,
+8:u07:dots,
+10:u0A:-/chen,
+10:u0B:chen/-,
+17:u0C:channel/draft,
+11:u10:channel,
+10:u00:signal,
+11:u01:channel,
+8:u04:chen,
+8:u06:dots,
+10:u09:-/chen,
+10:u0A:chen/-,
+10:u0B:-/dots,
+10:u0D:chen/1,
+7:u22:che,
+8:u23:chen,
+8:u33:chen,
+11:u00:channel,
+8:u03:chen,
+8:u05:dots,
+10:u09:chen/-,
+10:u0A:-/dots,
+10:u0B:dots/-,
+10:u0C:-/chen,
+8:u02:chen,
+8:u04:dots,
+10:u09:-/dots,
+10:u0A:dots/-,
+12:u0B:-/attack,
+10:u0C:chen/-,
+10:u0D:dots/1,
+7:u22:dot,
+8:u23:dots,
+7:u32:ots,
+8:u33:dots,
+8:u01:chen,
+8:u03:dots,
+10:u09:dots/-,
+12:u0A:-/attack,
+12:u0B:attack/-,
+10:u0C:-/dots,
+8:u00:chen,
+8:u02:dots,
+12:u09:-/attack,
+12:u0A:attack/-,
+18:u0B:-/informations,
+10:u0C:dots/-,
+12:u0D:attack/1,
+8:u01:dots,
+12:u09:attack/-,
+18:u0A:-/informations,
+18:u0B:informations/-,
+12:u0C:-/attack,
+8:u00:dots,
+18:u09:-/informations,
+18:u0A:informations/-,
+12:u0C:attack/-,
+18:u0D:informations/1,
+18:u09:informations/-,
+18:u0C:-/informations,
+18:u0C:informations/-,
+8:u08:DDoS,
+8:u07:DDoS,
+8:u06:DDoS,
+15:u08:information,
+18:u0B:describes/DDoS,
+8:u05:DDoS,
+15:u07:information,
+18:u0A:describes/DDoS,
+15:u0B:DDoS/attack,
+8:u04:DDoS,
+15:u06:information,
+18:u09:describes/DDoS,
+15:u0A:DDoS/attack,
+22:u0B:attack/information,
+10:u0D:DDoS/0,
+6:u21:DD,
+7:u22:DDo,
+8:u23:DDoS,
+6:u31:oS,
+7:u32:DoS,
+8:u33:DDoS,
+8:u03:DDoS,
+15:u05:information,
+15:u09:DDoS/attack,
+22:u0A:attack/information,
+21:u0B:information/which,
+18:u0C:describes/DDoS,
+8:u02:DDoS,
+15:u04:information,
+22:u09:attack/information,
+21:u0A:information/which,
+13:u0B:which/can,
+15:u0C:DDoS/attack,
+17:u0D:information/0,
+8:u01:DDoS,
+15:u03:information,
+21:u09:information/which,
+13:u0A:which/can,
+22:u0C:attack/information,
+8:u00:DDoS,
+15:u02:information,
+13:u09:which/can,
+21:u0C:information/which,
+15:u01:information,
+15:u0B:obtained/by,
+13:u0C:which/can,
+15:u00:information,
+8:u08:when,
+15:u0A:obtained/by,
+11:u0B:by/DOTS,
+8:u07:when,
+15:u09:obtained/by,
+11:u0A:by/DOTS,
+8:u06:when,
+14:u08:enterprise,
+11:u09:by/DOTS,
+15:u0B:client/when,
+15:u0C:obtained/by,
+8:u14:when,
+8:u05:when,
+14:u07:enterprise,
+12:u08:suspects,
+15:u0A:client/when,
+12:u0B:when/the,
+11:u0C:by/DOTS,
+8:u13:when,
+8:u04:when,
+14:u06:enterprise,
+12:u07:suspects,
+15:u09:client/when,
+12:u0A:when/the,
+18:u0B:the/enterprise,
+10:u0D:when/0,
+8:u12:when,
+14:u14:enterprise,
+8:u23:when,
+8:u33:when,
+8:u03:when,
+14:u05:enterprise,
+12:u06:suspects,
+12:u09:when/the,
+18:u0A:the/enterprise,
+23:u0B:enterprise/suspects,
+15:u0C:client/when,
+8:u11:when,
+14:u13:enterprise,
+12:u14:suspects,
+8:u02:when,
+14:u04:enterprise,
+12:u05:suspects,
+9:u08:under,
+18:u09:the/enterprise,
+23:u0A:enterprise/suspects,
+15:u0B:suspects/it,
+12:u0C:when/the,
+16:u0D:enterprise/0,
+8:u10:when,
+14:u12:enterprise,
+12:u13:suspects,
+7:u22:ent,
+8:u23:ente,
+7:u32:ise,
+8:u33:rise,
+8:u01:when,
+14:u03:enterprise,
+12:u04:suspects,
+9:u07:under,
+23:u09:enterprise/suspects,
+15:u0A:suspects/it,
+18:u0C:the/enterprise,
+14:u0D:suspects/0,
+14:u11:enterprise,
+12:u12:suspects,
+7:u22:sus,
+8:u23:susp,
+8:u00:when,
+14:u02:enterprise,
+12:u03:suspects,
+9:u06:under,
+15:u09:suspects/it,
+12:u0B:is/under,
+23:u0C:enterprise/suspects,
+14:u10:enterprise,
+12:u11:suspects,
+9:u14:under,
+14:u01:enterprise,
+12:u02:suspects,
+9:u05:under,
+12:u0A:is/under,
+14:u0B:under/DDoS,
+15:u0C:suspects/it,
+12:u10:suspects,
+9:u13:under,
+14:u00:enterprise,
+12:u01:suspects,
+9:u04:under,
+12:u09:is/under,
+14:u0A:under/DDoS,
+11:u0D:under/0,
+9:u12:under,
+7:u22:und,
+8:u23:unde,
+7:u32:der,
+8:u33:nder,
+12:u00:suspects,
+9:u03:under,
+14:u09:under/DDoS,
+12:u0B:attack/,,
+12:u0C:is/under,
+9:u11:under,
+9:u02:under,
+12:u0A:attack/,,
+11:u0B:,/these,
+14:u0C:under/DDoS,
+9:u10:under,
+9:u01:under,
+12:u09:attack/,,
+11:u0A:,/these,
+22:u0B:these/informations,
+9:u00:under,
+8:u08:send,
+11:u09:,/these,
+22:u0A:these/informations,
+21:u0B:informations/will,
+12:u0C:attack/,,
+8:u07:send,
+22:u09:these/informations,
+21:u0A:informations/will,
+11:u0B:will/be,
+11:u0C:,/these,
+8:u06:send,
+21:u09:informations/will,
+11:u0A:will/be,
+11:u0B:be/send,
+22:u0C:these/informations,
+8:u14:send,
+8:u05:send,
+11:u09:will/be,
+11:u0A:be/send,
+13:u0B:send/from,
+21:u0C:informations/will,
+8:u13:send,
+8:u04:send,
+11:u09:be/send,
+13:u0A:send/from,
+13:u0B:from/DOTS,
+11:u0C:will/be,
+10:u0D:send/0,
+8:u12:send,
+7:u22:sen,
+8:u23:send,
+7:u32:end,
+8:u33:send,
+8:u03:send,
+13:u09:send/from,
+13:u0A:from/DOTS,
+11:u0C:be/send,
+8:u11:send,
+8:u02:send,
+10:u08:server,
+13:u09:from/DOTS,
+13:u0B:client/to,
+13:u0C:send/from,
+8:u10:send,
+8:u01:send,
+10:u07:server,
+13:u0A:client/to,
+11:u0B:to/DOTS,
+13:u0C:from/DOTS,
+8:u00:send,
+10:u06:server,
+14:u08:mitigation,
+13:u09:client/to,
+11:u0A:to/DOTS,
+15:u0B:DOTS/server,
+10:u14:server,
+10:u05:server,
+14:u07:mitigation,
+11:u08:request,
+11:u09:to/DOTS,
+15:u0A:DOTS/server,
+13:u0B:server/in,
+13:u0C:client/to,
+10:u13:server,
+14:u06:mitigation,
+11:u07:request,
+9:u08:using,
+15:u09:DOTS/server,
+13:u0A:server/in,
+17:u0B:in/mitigation,
+11:u0C:to/DOTS,
+12:u0D:server/0,
+14:u14:mitigation,
+14:u05:mitigation,
+11:u06:request,
+9:u07:using,
+10:u08:Signal,
+13:u09:server/in,
+17:u0A:in/mitigation,
+22:u0B:mitigation/request,
+15:u0C:DOTS/server,
+14:u13:mitigation,
+14:u04:mitigation,
+11:u05:request,
+9:u06:using,
+10:u07:Signal,
+17:u09:in/mitigation,
+22:u0A:mitigation/request,
+17:u0B:request/using,
+13:u0C:server/in,
+16:u0D:mitigation/0,
+14:u12:mitigation,
+9:u14:using,
+7:u22:mit,
+8:u23:miti,
+14:u03:mitigation,
+11:u04:request,
+9:u05:using,
+10:u06:Signal,
+22:u09:mitigation/request,
+17:u0A:request/using,
+16:u0B:using/Signal,
+17:u0C:in/mitigation,
+13:u0D:request/0,
+14:u11:mitigation,
+9:u13:using,
+14:u02:mitigation,
+11:u03:request,
+9:u04:using,
+10:u05:Signal,
+17:u09:request/using,
+16:u0A:using/Signal,
+18:u0B:Signal/channel,
+22:u0C:mitigation/request,
+11:u0D:using/0,
+14:u10:mitigation,
+9:u12:using,
+7:u22:usi,
+8:u23:usin,
+8:u33:sing,
+14:u01:mitigation,
+11:u02:request,
+9:u03:using,
+10:u04:Signal,
+16:u09:using/Signal,
+18:u0A:Signal/channel,
+14:u0B:channel/or,
+17:u0C:request/using,
+12:u0D:Signal/0,
+9:u11:using,
+7:u22:Sig,
+8:u23:Sign,
+14:u00:mitigation,
+11:u01:request,
+9:u02:using,
+10:u03:Signal,
+18:u09:Signal/channel,
+14:u0A:channel/or,
+11:u0B:or/Data,
+16:u0C:using/Signal,
+9:u10:using,
+11:u00:request,
+9:u01:using,
+10:u02:Signal,
+14:u09:channel/or,
+11:u0A:or/Data,
+16:u0B:Data/channel,
+18:u0C:Signal/channel,
+9:u00:using,
+10:u01:Signal,
+11:u09:or/Data,
+16:u0A:Data/channel,
+13:u0B:channel/.,
+14:u0C:channel/or,
+10:u00:Signal,
+16:u09:Data/channel,
+13:u0A:channel/.,
+11:u0C:or/Data,
+13:u09:channel/.,
+16:u0C:Data/channel,
+13:u0C:channel/.,
+11:u08:Meiling,
+11:u07:Meiling,
+11:u06:Meiling,
+13:u0B:./Meiling,
+11:u14:meiling,
+11:u05:Meiling,
+6:u08:32,
+13:u0A:./Meiling,
+16:u0B:Meiling/Chen,
+11:u13:meiling,
+11:u04:Meiling,
+6:u07:32,
+13:u09:./Meiling,
+16:u0A:Meiling/Chen,
+13:u0B:Chen/CMCC,
+13:u0D:Meiling/0,
+11:u12:meiling,
+7:u22:Mei,
+8:u23:Meil,
+11:u03:Meiling,
+6:u06:32,
+13:u08:Xuanwumen,
+16:u09:Meiling/Chen,
+13:u0A:Chen/CMCC,
+11:u0B:CMCC/32,
+13:u0C:./Meiling,
+11:u11:meiling,
+6:u14:32,
+11:u02:Meiling,
+6:u05:32,
+13:u07:Xuanwumen,
+8:u08:West,
+13:u09:Chen/CMCC,
+11:u0A:CMCC/32,
+8:u0B:32/,,
+16:u0C:Meiling/Chen,
+11:u10:meiling,
+6:u13:32,
+11:u01:Meiling,
+6:u04:32,
+13:u06:Xuanwumen,
+8:u07:West,
+11:u08:BeiJing,
+11:u09:CMCC/32,
+8:u0A:32/,,
+15:u0B:,/Xuanwumen,
+13:u0C:Chen/CMCC,
+8:u0D:32/0,
+6:u12:32,
+13:u14:xuanwumen,
+6:u21:32,
+6:u22:32,
+6:u23:32,
+6:u31:32,
+6:u32:32,
+6:u33:32,
+11:u00:Meiling,
+6:u03:32,
+13:u05:Xuanwumen,
+8:u06:West,
+11:u07:BeiJing,
+8:u09:32/,,
+15:u0A:,/Xuanwumen,
+18:u0B:Xuanwumen/West,
+11:u0C:CMCC/32,
+6:u11:32,
+13:u13:xuanwumen,
+8:u14:west,
+6:u02:32,
+13:u04:Xuanwumen,
+8:u05:West,
+11:u06:BeiJing,
+15:u09:,/Xuanwumen,
+18:u0A:Xuanwumen/West,
+16:u0B:West/BeiJing,
+8:u0C:32/,,
+15:u0D:Xuanwumen/0,
+6:u10:32,
+13:u12:xuanwumen,
+8:u13:west,
+11:u14:beijing,
+5:u20:X,
+6:u21:Xu,
+7:u22:Xua,
+8:u23:Xuan,
+7:u32:men,
+8:u33:umen,
+6:u01:32,
+13:u03:Xuanwumen,
+8:u04:West,
+11:u05:BeiJing,
+10:u08:100053,
+18:u09:Xuanwumen/West,
+16:u0A:West/BeiJing,
+13:u0B:BeiJing/,,
+15:u0C:,/Xuanwumen,
+10:u0D:West/0,
+13:u11:xuanwumen,
+8:u12:west,
+11:u13:beijing,
+6:u21:We,
+7:u22:Wes,
+8:u23:West,
+8:u33:West,
+6:u00:32,
+13:u02:Xuanwumen,
+8:u03:West,
+11:u04:BeiJing,
+10:u07:100053,
+9:u08:China,
+16:u09:West/BeiJing,
+13:u0A:BeiJing/,,
+13:u0B:,/BeiJing,
+18:u0C:Xuanwumen/West,
+13:u0D:BeiJing/0,
+13:u10:xuanwumen,
+8:u11:west,
+11:u12:beijing,
+6:u21:Be,
+7:u22:Bei,
+8:u23:BeiJ,
+8:u33:Jing,
+13:u01:Xuanwumen,
+8:u02:West,
+11:u03:BeiJing,
+10:u06:100053,
+9:u07:China,
+13:u09:BeiJing/,,
+13:u0A:,/BeiJing,
+18:u0B:BeiJing/100053,
+16:u0C:West/BeiJing,
+8:u10:west,
+11:u11:beijing,
+10:u14:100053,
+13:u00:Xuanwumen,
+8:u01:West,
+11:u02:BeiJing,
+10:u05:100053,
+9:u06:China,
+13:u09:,/BeiJing,
+18:u0A:BeiJing/100053,
+16:u0B:100053/China,
+13:u0C:BeiJing/,,
+11:u10:beijing,
+10:u13:100053,
+9:u14:china,
+8:u00:West,
+11:u01:BeiJing,
+10:u04:100053,
+9:u05:China,
+27:u08:chenmeiling@chinamobile,
+18:u09:BeiJing/100053,
+16:u0A:100053/China,
+15:u0B:China/Email,
+13:u0C:,/BeiJing,
+12:u0D:100053/0,
+10:u12:100053,
+9:u13:china,
+7:u22:100,
+8:u23:1000,
+6:u31:53,
+7:u32:053,
+8:u33:0053,
+11:u00:BeiJing,
+10:u03:100053,
+9:u04:China,
+27:u07:chenmeiling@chinamobile,
+16:u09:100053/China,
+15:u0A:China/Email,
+18:u0C:BeiJing/100053,
+11:u0D:China/0,
+10:u11:100053,
+9:u12:china,
+7:u22:Chi,
+8:u23:Chin,
+6:u31:na,
+7:u32:ina,
+8:u33:hina,
+10:u02:100053,
+9:u03:China,
+27:u06:chenmeiling@chinamobile,
+15:u09:China/Email,
+29:u0B::/chenmeiling@chinamobile,
+16:u0C:100053/China,
+10:u10:100053,
+9:u11:china,
+27:u14:chenmeiling@chinamobile,
+10:u01:100053,
+9:u02:China,
+27:u05:chenmeiling@chinamobile,
+29:u0A::/chenmeiling@chinamobile,
+29:u0B:chenmeiling@chinamobile/.,
+15:u0C:China/Email,
+9:u10:china,
+27:u13:chenmeiling@chinamobile,
+10:u00:100053,
+9:u01:China,
+27:u04:chenmeiling@chinamobile,
+29:u09::/chenmeiling@chinamobile,
+29:u0A:chenmeiling@chinamobile/.,
+29:u0D:chenmeiling@chinamobile/0,
+27:u12:chenmeiling@chinamobile,
+8:u33:bile,
+9:u00:China,
+27:u03:chenmeiling@chinamobile,
+29:u09:chenmeiling@chinamobile/.,
+10:u0B:com/Li,
+29:u0C::/chenmeiling@chinamobile,
+27:u11:chenmeiling@chinamobile,
+27:u02:chenmeiling@chinamobile,
+10:u0A:com/Li,
+9:u0B:Li/Su,
+29:u0C:chenmeiling@chinamobile/.,
+27:u10:chenmeiling@chinamobile,
+27:u01:chenmeiling@chinamobile,
+10:u09:com/Li,
+9:u0A:Li/Su,
+11:u0B:Su/CMCC,
+27:u00:chenmeiling@chinamobile,
+9:u09:Li/Su,
+11:u0A:Su/CMCC,
+10:u0C:com/Li,
+11:u09:Su/CMCC,
+9:u0C:Li/Su,
+11:u0C:Su/CMCC,
+20:u08:suli@chinamobile,
+20:u07:suli@chinamobile,
+20:u06:suli@chinamobile,
+22:u0B::/suli@chinamobile,
+20:u14:suli@chinamobile,
+20:u05:suli@chinamobile,
+22:u0A::/suli@chinamobile,
+22:u0B:suli@chinamobile/.,
+20:u13:suli@chinamobile,
+20:u04:suli@chinamobile,
+22:u09::/suli@chinamobile,
+22:u0A:suli@chinamobile/.,
+22:u0D:suli@chinamobile/0,
+20:u12:suli@chinamobile,
+7:u22:sul,
+8:u23:suli,
+20:u03:suli@chinamobile,
+22:u09:suli@chinamobile/.,
+11:u0B:com/Jin,
+22:u0C::/suli@chinamobile,
+20:u11:suli@chinamobile,
+20:u02:suli@chinamobile,
+11:u0A:com/Jin,
+12:u0B:Jin/Peng,
+22:u0C:suli@chinamobile/.,
+20:u10:suli@chinamobile,
+20:u01:suli@chinamobile,
+11:u09:com/Jin,
+12:u0A:Jin/Peng,
+13:u0B:Peng/CMCC,
+20:u00:suli@chinamobile,
+12:u09:Jin/Peng,
+13:u0A:Peng/CMCC,
+11:u0C:com/Jin,
+13:u09:Peng/CMCC,
+12:u0C:Jin/Peng,
+13:u0C:Peng/CMCC,
+23:u08:pengjin@chinamobile,
+23:u07:pengjin@chinamobile,
+23:u06:pengjin@chinamobile,
+25:u0B::/pengjin@chinamobile,
+23:u14:pengjin@chinamobile,
+23:u05:pengjin@chinamobile,
+25:u0A::/pengjin@chinamobile,
+25:u0B:pengjin@chinamobile/.,
+23:u13:pengjin@chinamobile,
+23:u04:pengjin@chinamobile,
+25:u09::/pengjin@chinamobile,
+25:u0A:pengjin@chinamobile/.,
+25:u0D:pengjin@chinamobile/0,
+23:u12:pengjin@chinamobile,
+7:u22:pen,
+8:u23:peng,
+23:u03:pengjin@chinamobile,
+25:u09:pengjin@chinamobile/.,
+25:u0C::/pengjin@chinamobile,
+23:u11:pengjin@chinamobile,
+23:u02:pengjin@chinamobile,
+25:u0C:pengjin@chinamobile/.,
+23:u10:pengjin@chinamobile,
+12:u06:20190907,
+17:u0B:date/20190907,
+12:u14:20190907,
+12:u05:20190907,
+17:u0A:date/20190907,
+14:u0B:20190907/;,
+12:u13:20190907,
+12:u04:20190907,
+17:u09:date/20190907,
+14:u0A:20190907/;,
+14:u0D:20190907/0,
+12:u12:20190907,
+6:u31:07,
+7:u32:907,
+8:u33:0907,
+12:u03:20190907,
+14:u09:20190907/;,
+17:u0C:date/20190907,
+12:u11:20190907,
+12:u02:20190907,
+12:u08:20190908,
+14:u0C:20190907/;,
+12:u10:20190907,
+12:u01:20190907,
+12:u07:20190908,
+7:u08:SFC,
+12:u00:20190907,
+12:u06:20190908,
+7:u07:SFC,
+6:u08:WG,
+15:u0B:on/20190908,
+12:u14:20190908,
+12:u05:20190908,
+7:u06:SFC,
+6:u07:WG,
+6:u08:CJ,
+15:u0A:on/20190908,
+16:u0B:20190908/SFC,
+12:u13:20190908,
+7:u14:sfc,
+12:u04:20190908,
+7:u05:SFC,
+6:u06:WG,
+6:u07:CJ,
+15:u09:on/20190908,
+16:u0A:20190908/SFC,
+10:u0B:SFC/WG,
+14:u0D:20190908/0,
+12:u12:20190908,
+7:u13:sfc,
+6:u14:wg,
+7:u32:908,
+8:u33:0908,
+12:u03:20190908,
+7:u04:SFC,
+6:u05:WG,
+6:u06:CJ,
+13:u08:Bernardos,
+16:u09:20190908/SFC,
+10:u0A:SFC/WG,
+9:u0B:WG/CJ,
+15:u0C:on/20190908,
+9:u0D:SFC/0,
+12:u11:20190908,
+7:u12:sfc,
+6:u13:wg,
+6:u14:cj,
+6:u21:SF,
+7:u22:SFC,
+7:u23:SFC,
+7:u32:SFC,
+7:u33:SFC,
+12:u02:20190908,
+7:u03:SFC,
+6:u04:WG,
+6:u05:CJ,
+13:u07:Bernardos,
+10:u09:SFC/WG,
+9:u0A:WG/CJ,
+8:u0B:CJ/.,
+16:u0C:20190908/SFC,
+8:u0D:WG/0,
+12:u10:20190908,
+7:u11:sfc,
+6:u12:wg,
+6:u13:cj,
+6:u21:WG,
+6:u22:WG,
+6:u23:WG,
+6:u31:WG,
+6:u32:WG,
+6:u33:WG,
+12:u01:20190908,
+7:u02:SFC,
+6:u03:WG,
+6:u04:CJ,
+13:u06:Bernardos,
+9:u09:WG/CJ,
+8:u0A:CJ/.,
+15:u0B:./Bernardos,
+10:u0C:SFC/WG,
+8:u0D:CJ/0,
+7:u10:sfc,
+6:u11:wg,
+6:u12:cj,
+13:u14:bernardos,
+6:u21:CJ,
+6:u22:CJ,
+6:u23:CJ,
+5:u30:J,
+6:u31:CJ,
+6:u32:CJ,
+6:u33:CJ,
+12:u00:20190908,
+7:u01:SFC,
+6:u02:WG,
+6:u03:CJ,
+13:u05:Bernardos,
+8:u09:CJ/.,
+15:u0A:./Bernardos,
+22:u0B:Bernardos/Internet,
+9:u0C:WG/CJ,
+6:u10:wg,
+6:u11:cj,
+13:u13:bernardos,
+7:u00:SFC,
+6:u01:WG,
+6:u02:CJ,
+13:u04:Bernardos,
+8:u08:UC3M,
+15:u09:./Bernardos,
+22:u0A:Bernardos/Internet,
+8:u0C:CJ/.,
+15:u0D:Bernardos/0,
+6:u10:cj,
+13:u12:bernardos,
+7:u22:Ber,
+8:u23:Bern,
+8:u33:rdos,
+6:u00:WG,
+6:u01:CJ,
+13:u03:Bernardos,
+8:u07:UC3M,
+22:u09:Bernardos/Internet,
+15:u0C:./Bernardos,
+13:u11:bernardos,
+6:u00:CJ,
+13:u02:Bernardos,
+8:u06:UC3M,
+14:u0B:Draft/UC3M,
+22:u0C:Bernardos/Internet,
+13:u10:bernardos,
+8:u14:uc3m,
+13:u01:Bernardos,
+8:u05:UC3M,
+14:u0A:Draft/UC3M,
+17:u0B:UC3M/Intended,
+8:u13:uc3m,
+13:u00:Bernardos,
+8:u04:UC3M,
+14:u09:Draft/UC3M,
+17:u0A:UC3M/Intended,
+10:u0D:UC3M/0,
+8:u12:uc3m,
+6:u21:UC,
+7:u22:UC3,
+8:u23:UC3M,
+6:u31:3M,
+7:u32:C3M,
+8:u33:UC3M,
+8:u03:UC3M,
+17:u09:UC3M/Intended,
+14:u0C:Draft/UC3M,
+8:u11:uc3m,
+8:u02:UC3M,
+17:u0C:UC3M/Intended,
+8:u10:uc3m,
+8:u01:UC3M,
+10:u08:Rahman,
+19:u0B:Informational/A,
+8:u00:UC3M,
+10:u07:Rahman,
+19:u0A:Informational/A,
+10:u06:Rahman,
+19:u09:Informational/A,
+12:u0B:./Rahman,
+10:u14:rahman,
+10:u05:Rahman,
+12:u0A:./Rahman,
+18:u0B:Rahman/Expires,
+19:u0C:Informational/A,
+10:u13:rahman,
+10:u04:Rahman,
+12:u09:./Rahman,
+18:u0A:Rahman/Expires,
+12:u0D:Rahman/0,
+10:u12:rahman,
+6:u21:Ra,
+7:u22:Rah,
+8:u23:Rahm,
+7:u32:man,
+8:u33:hman,
+10:u03:Rahman,
+18:u09:Rahman/Expires,
+12:u0C:./Rahman,
+10:u11:rahman,
+10:u02:Rahman,
+12:u0B:March/10,
+18:u0C:Rahman/Expires,
+10:u10:rahman,
+10:u01:Rahman,
+12:u0A:March/10,
+10:u00:Rahman,
+12:u09:March/10,
+10:u08:Mourad,
+12:u0C:March/10,
+10:u07:Mourad,
+16:u08:InterDigital,
+10:u06:Mourad,
+16:u07:InterDigital,
+12:u0B:./Mourad,
+10:u14:mourad,
+10:u05:Mourad,
+16:u06:InterDigital,
+5:u08:7,
+12:u0A:./Mourad,
+23:u0B:Mourad/InterDigital,
+10:u13:mourad,
+16:u14:interdigital,
+10:u04:Mourad,
+16:u05:InterDigital,
+5:u07:7,
+12:u09:./Mourad,
+23:u0A:Mourad/InterDigital,
+26:u0B:InterDigital/September,
+12:u0D:Mourad/0,
+10:u12:mourad,
+16:u13:interdigital,
+8:u23:Mour,
+6:u31:ad,
+7:u32:rad,
+8:u33:urad,
+10:u03:Mourad,
+16:u04:InterDigital,
+5:u06:7,
+23:u09:Mourad/InterDigital,
+26:u0A:InterDigital/September,
+15:u0B:September/7,
+12:u0C:./Mourad,
+18:u0D:InterDigital/0,
+10:u11:mourad,
+16:u12:interdigital,
+5:u14:7,
+10:u02:Mourad,
+16:u03:InterDigital,
+5:u05:7,
+11:u08:Service,
+26:u09:InterDigital/September,
+15:u0A:September/7,
+7:u0B:7/,,
+23:u0C:Mourad/InterDigital,
+10:u10:mourad,
+16:u11:interdigital,
+5:u13:7,
+10:u01:Mourad,
+16:u02:InterDigital,
+5:u04:7,
+11:u07:Service,
+12:u08:Function,
+15:u09:September/7,
+7:u0A:7/,,
+26:u0C:InterDigital/September,
+7:u0D:7/0,
+16:u10:interdigital,
+5:u12:7,
+5:u21:7,
+5:u22:7,
+5:u23:7,
+5:u31:7,
+5:u32:7,
+5:u33:7,
+10:u00:Mourad,
+16:u01:InterDigital,
+5:u03:7,
+11:u06:Service,
+12:u07:Function,
+12:u08:Chaining,
+7:u09:7/,,
+16:u0B:2019/Service,
+15:u0C:September/7,
+5:u11:7,
+11:u14:service,
+16:u00:InterDigital,
+5:u02:7,
+11:u05:Service,
+12:u06:Function,
+12:u07:Chaining,
+7:u08:Use,
+16:u0A:2019/Service,
+20:u0B:Service/Function,
+7:u0C:7/,,
+5:u10:7,
+11:u13:service,
+12:u14:function,
+5:u01:7,
+11:u04:Service,
+12:u05:Function,
+12:u06:Chaining,
+7:u07:Use,
+9:u08:Cases,
+16:u09:2019/Service,
+20:u0A:Service/Function,
+21:u0B:Function/Chaining,
+13:u0D:Service/0,
+11:u12:service,
+12:u13:function,
+12:u14:chaining,
+7:u22:Ser,
+8:u23:Serv,
+8:u33:vice,
+5:u00:7,
+11:u03:Service,
+12:u04:Function,
+12:u05:Chaining,
+7:u06:Use,
+9:u07:Cases,
+20:u09:Service/Function,
+21:u0A:Function/Chaining,
+16:u0B:Chaining/Use,
+16:u0C:2019/Service,
+14:u0D:Function/0,
+11:u11:service,
+12:u12:function,
+12:u13:chaining,
+6:u21:Fu,
+7:u22:Fun,
+8:u23:Func,
+11:u02:Service,
+12:u03:Function,
+12:u04:Chaining,
+7:u05:Use,
+9:u06:Cases,
+7:u08:Fog,
+21:u09:Function/Chaining,
+16:u0A:Chaining/Use,
+13:u0B:Use/Cases,
+20:u0C:Service/Function,
+14:u0D:Chaining/0,
+11:u10:service,
+12:u11:function,
+12:u12:chaining,
+9:u14:cases,
+8:u23:Chai,
+11:u01:Service,
+12:u02:Function,
+12:u03:Chaining,
+7:u04:Use,
+9:u05:Cases,
+7:u07:Fog,
+7:u08:RAN,
+16:u09:Chaining/Use,
+13:u0A:Use/Cases,
+12:u0B:Cases/in,
+21:u0C:Function/Chaining,
+9:u0D:Use/0,
+12:u10:function,
+12:u11:chaining,
+9:u13:cases,
+6:u21:Us,
+7:u22:Use,
+7:u23:Use,
+7:u32:Use,
+7:u33:Use,
+11:u00:Service,
+12:u01:Function,
+12:u02:Chaining,
+7:u03:Use,
+9:u04:Cases,
+7:u06:Fog,
+7:u07:RAN,
+13:u09:Use/Cases,
+12:u0A:Cases/in,
+10:u0B:in/Fog,
+16:u0C:Chaining/Use,
+11:u0D:Cases/0,
+12:u10:chaining,
+9:u12:cases,
+7:u14:fog,
+7:u22:Cas,
+8:u23:Case,
+8:u33:ases,
+12:u00:Function,
+12:u01:Chaining,
+7:u02:Use,
+9:u03:Cases,
+7:u05:Fog,
+7:u06:RAN,
+12:u09:Cases/in,
+10:u0A:in/Fog,
+11:u0B:Fog/RAN,
+13:u0C:Use/Cases,
+9:u11:cases,
+7:u13:fog,
+7:u14:ran,
+12:u00:Chaining,
+7:u01:Use,
+9:u02:Cases,
+7:u04:Fog,
+7:u05:RAN,
+13:u08:bernardos,
+10:u09:in/Fog,
+11:u0A:Fog/RAN,
+13:u0B:RAN/draft,
+12:u0C:Cases/in,
+9:u0D:Fog/0,
+9:u10:cases,
+7:u12:fog,
+7:u13:ran,
+7:u22:Fog,
+7:u23:Fog,
+6:u31:og,
+7:u32:Fog,
+7:u33:Fog,
+7:u00:Use,
+9:u01:Cases,
+7:u03:Fog,
+7:u04:RAN,
+13:u07:bernardos,
+11:u09:Fog/RAN,
+13:u0A:RAN/draft,
+10:u0C:in/Fog,
+9:u0D:RAN/0,
+7:u11:fog,
+7:u12:ran,
+6:u21:RA,
+7:u22:RAN,
+7:u23:RAN,
+6:u31:AN,
+7:u32:RAN,
+7:u33:RAN,
+9:u00:Cases,
+7:u02:Fog,
+7:u03:RAN,
+13:u06:bernardos,
+7:u08:sfc,
+13:u09:RAN/draft,
+15:u0B:-/bernardos,
+11:u0C:Fog/RAN,
+7:u10:fog,
+7:u11:ran,
+7:u01:Fog,
+7:u02:RAN,
+13:u05:bernardos,
+7:u07:sfc,
+15:u0A:-/bernardos,
+15:u0B:bernardos/-,
+13:u0C:RAN/draft,
+7:u10:ran,
+7:u00:Fog,
+7:u01:RAN,
+13:u04:bernardos,
+7:u06:sfc,
+7:u08:fog,
+15:u09:-/bernardos,
+15:u0A:bernardos/-,
+9:u0B:-/sfc,
+15:u0D:bernardos/1,
+7:u22:ber,
+8:u23:bern,
+7:u00:RAN,
+13:u03:bernardos,
+7:u05:sfc,
+7:u07:fog,
+15:u09:bernardos/-,
+9:u0A:-/sfc,
+9:u0B:sfc/-,
+15:u0C:-/bernardos,
+13:u02:bernardos,
+7:u04:sfc,
+7:u06:fog,
+7:u08:ran,
+9:u09:-/sfc,
+9:u0A:sfc/-,
+9:u0B:-/fog,
+15:u0C:bernardos/-,
+9:u0D:sfc/1,
+6:u21:sf,
+7:u22:sfc,
+7:u23:sfc,
+7:u32:sfc,
+7:u33:sfc,
+13:u01:bernardos,
+7:u03:sfc,
+7:u05:fog,
+7:u07:ran,
+9:u09:sfc/-,
+9:u0A:-/fog,
+9:u0B:fog/-,
+9:u0C:-/sfc,
+13:u00:bernardos,
+7:u02:sfc,
+7:u04:fog,
+7:u06:ran,
+6:u08:06,
+9:u09:-/fog,
+9:u0A:fog/-,
+9:u0B:-/ran,
+9:u0C:sfc/-,
+9:u0D:fog/1,
+7:u22:fog,
+7:u23:fog,
+7:u32:fog,
+7:u33:fog,
+7:u01:sfc,
+7:u03:fog,
+7:u05:ran,
+6:u07:06,
+9:u09:fog/-,
+9:u0A:-/ran,
+9:u0B:ran/-,
+9:u0C:-/fog,
+7:u00:sfc,
+7:u02:fog,
+7:u04:ran,
+6:u06:06,
+9:u09:-/ran,
+9:u0A:ran/-,
+8:u0B:-/06,
+9:u0C:fog/-,
+9:u0D:ran/1,
+6:u14:06,
+7:u23:ran,
+7:u33:ran,
+7:u01:fog,
+7:u03:ran,
+6:u05:06,
+9:u08:Radio,
+9:u09:ran/-,
+8:u0A:-/06,
+15:u0B:06/Abstract,
+9:u0C:-/ran,
+6:u13:06,
+7:u00:fog,
+7:u02:ran,
+6:u04:06,
+9:u07:Radio,
+10:u08:Access,
+8:u09:-/06,
+15:u0A:06/Abstract,
+16:u0B:Abstract/Fog,
+9:u0C:ran/-,
+8:u0D:06/1,
+6:u12:06,
+6:u21:06,
+6:u22:06,
+6:u23:06,
+6:u32:06,
+6:u33:06,
+7:u01:ran,
+6:u03:06,
+9:u06:Radio,
+10:u07:Access,
+12:u08:Networks,
+15:u09:06/Abstract,
+16:u0A:Abstract/Fog,
+13:u0B:Fog/Radio,
+8:u0C:-/06,
+6:u11:06,
+9:u14:radio,
+7:u00:ran,
+6:u02:06,
+9:u05:Radio,
+10:u06:Access,
+12:u07:Networks,
+16:u09:Abstract/Fog,
+13:u0A:Fog/Radio,
+16:u0B:Radio/Access,
+15:u0C:06/Abstract,
+6:u10:06,
+9:u13:radio,
+10:u14:access,
+6:u01:06,
+9:u04:Radio,
+10:u05:Access,
+12:u06:Networks,
+13:u09:Fog/Radio,
+16:u0A:Radio/Access,
+19:u0B:Access/Networks,
+16:u0C:Abstract/Fog,
+11:u0D:Radio/0,
+9:u12:radio,
+10:u13:access,
+7:u22:Rad,
+8:u23:Radi,
+7:u32:dio,
+8:u33:adio,
+6:u00:06,
+9:u03:Radio,
+10:u04:Access,
+12:u05:Networks,
+16:u09:Radio/Access,
+19:u0A:Access/Networks,
+14:u0B:Networks/(,
+13:u0C:Fog/Radio,
+12:u0D:Access/0,
+9:u11:radio,
+10:u12:access,
+6:u21:Ac,
+7:u22:Acc,
+8:u23:Acce,
+9:u02:Radio,
+10:u03:Access,
+12:u04:Networks,
+10:u08:refers,
+19:u09:Access/Networks,
+14:u0A:Networks/(,
+9:u0B:(/RAN,
+16:u0C:Radio/Access,
+14:u0D:Networks/0,
+9:u10:radio,
+10:u11:access,
+9:u01:Radio,
+10:u02:Access,
+12:u03:Networks,
+10:u07:refers,
+14:u09:Networks/(,
+9:u0A:(/RAN,
+9:u0B:RAN/),
+19:u0C:Access/Networks,
+10:u10:access,
+9:u00:Radio,
+10:u01:Access,
+12:u02:Networks,
+10:u06:refers,
+9:u09:(/RAN,
+9:u0A:RAN/),
+12:u0B:)/refers,
+14:u0C:Networks/(,
+10:u14:refers,
+10:u00:Access,
+12:u01:Networks,
+10:u05:refers,
+9:u09:RAN/),
+12:u0A:)/refers,
+13:u0B:refers/to,
+9:u0C:(/RAN,
+10:u13:refers,
+12:u00:Networks,
+10:u04:refers,
+12:u09:)/refers,
+13:u0A:refers/to,
+9:u0C:RAN/),
+12:u0D:refers/0,
+10:u12:refers,
+8:u33:fers,
+10:u03:refers,
+13:u09:refers/to,
+12:u0B:the/part,
+12:u0C:)/refers,
+10:u11:refers,
+10:u02:refers,
+12:u0A:the/part,
+13:u0C:refers/to,
+10:u10:refers,
+10:u01:refers,
+12:u09:the/part,
+10:u00:refers,
+11:u0B:the/RAN,
+12:u0C:the/part,
+15:u08:virtualized,
+11:u0A:the/RAN,
+12:u0B:RAN/that,
+15:u07:virtualized,
+11:u09:the/RAN,
+12:u0A:RAN/that,
+11:u0B:that/is,
+15:u06:virtualized,
+12:u09:RAN/that,
+11:u0A:that/is,
+18:u0B:is/virtualized,
+11:u0C:the/RAN,
+15:u14:virtualized,
+15:u05:virtualized,
+8:u08:very,
+11:u09:that/is,
+18:u0A:is/virtualized,
+18:u0B:virtualized/at,
+12:u0C:RAN/that,
+15:u13:virtualized,
+15:u04:virtualized,
+8:u07:very,
+8:u08:edge,
+18:u09:is/virtualized,
+18:u0A:virtualized/at,
+11:u0C:that/is,
+17:u0D:virtualized/0,
+15:u12:virtualized,
+6:u21:vi,
+7:u22:vir,
+8:u23:virt,
+15:u03:virtualized,
+8:u06:very,
+8:u07:edge,
+18:u09:virtualized/at,
+12:u0B:the/very,
+18:u0C:is/virtualized,
+15:u11:virtualized,
+8:u14:very,
+15:u02:virtualized,
+8:u05:very,
+8:u06:edge,
+12:u0A:the/very,
+13:u0B:very/edge,
+18:u0C:virtualized/at,
+15:u10:virtualized,
+8:u13:very,
+8:u14:edge,
+15:u01:virtualized,
+8:u04:very,
+8:u05:edge,
+12:u09:the/very,
+13:u0A:very/edge,
+11:u0B:edge/of,
+10:u0D:very/0,
+8:u12:very,
+8:u13:edge,
+7:u22:ver,
+8:u23:very,
+7:u32:ery,
+8:u33:very,
+15:u00:virtualized,
+8:u03:very,
+8:u04:edge,
+13:u09:very/edge,
+11:u0A:edge/of,
+12:u0C:the/very,
+10:u0D:edge/0,
+8:u11:very,
+8:u12:edge,
+7:u22:edg,
+8:u23:edge,
+8:u33:edge,
+8:u02:very,
+8:u03:edge,
+8:u08:even,
+11:u09:edge/of,
+13:u0C:very/edge,
+8:u10:very,
+8:u11:edge,
+8:u01:very,
+8:u02:edge,
+8:u07:even,
+13:u0B:network/,,
+11:u0C:edge/of,
+8:u10:edge,
+8:u00:very,
+8:u01:edge,
+8:u06:even,
+13:u0A:network/,,
+10:u0B:,/even,
+8:u14:even,
+8:u00:edge,
+8:u05:even,
+7:u08:end,
+13:u09:network/,,
+10:u0A:,/even,
+11:u0B:even/at,
+8:u13:even,
+8:u04:even,
+7:u07:end,
+10:u09:,/even,
+11:u0A:even/at,
+13:u0C:network/,,
+10:u0D:even/0,
+8:u12:even,
+7:u22:eve,
+8:u23:even,
+7:u32:ven,
+8:u33:even,
+8:u03:even,
+7:u06:end,
+11:u09:even/at,
+11:u0B:the/end,
+10:u0C:,/even,
+8:u11:even,
+7:u14:end,
+8:u02:even,
+7:u05:end,
+10:u08:device,
+11:u0A:the/end,
+9:u0B:end/-,
+11:u0C:even/at,
+8:u10:even,
+7:u13:end,
+8:u01:even,
+7:u04:end,
+10:u07:device,
+11:u09:the/end,
+9:u0A:end/-,
+10:u0B:-/user,
+9:u0D:end/0,
+7:u12:end,
+7:u22:end,
+7:u23:end,
+7:u33:end,
+8:u00:even,
+7:u03:end,
+10:u06:device,
+9:u09:end/-,
+10:u0A:-/user,
+15:u0B:user/device,
+11:u0C:the/end,
+7:u11:end,
+10:u14:device,
+7:u02:end,
+10:u05:device,
+10:u09:-/user,
+15:u0A:user/device,
+12:u0B:device/.,
+9:u0C:end/-,
+10:u0D:user/1,
+7:u10:end,
+10:u13:device,
+7:u01:end,
+10:u04:device,
+11:u08:support,
+15:u09:user/device,
+12:u0A:device/.,
+9:u0B:./Fog,
+10:u0C:-/user,
+12:u0D:device/0,
+10:u12:device,
+8:u23:devi,
+7:u00:end,
+10:u03:device,
+11:u07:support,
+12:u09:device/.,
+9:u0A:./Fog,
+15:u0C:user/device,
+10:u11:device,
+10:u02:device,
+11:u06:support,
+14:u08:considered,
+9:u09:./Fog,
+15:u0B:RAN/support,
+12:u0C:device/.,
+10:u10:device,
+11:u14:support,
+10:u01:device,
+11:u05:support,
+14:u07:considered,
+12:u08:critical,
+15:u0A:RAN/support,
+14:u0B:support/is,
+9:u0C:./Fog,
+11:u13:support,
+10:u00:device,
+11:u04:support,
+14:u06:considered,
+12:u07:critical,
+15:u09:RAN/support,
+14:u0A:support/is,
+17:u0B:is/considered,
+13:u0D:support/0,
+11:u12:support,
+14:u14:considered,
+7:u22:sup,
+8:u23:supp,
+7:u32:ort,
+8:u33:port,
+11:u03:support,
+14:u05:considered,
+12:u06:critical,
+14:u09:support/is,
+17:u0A:is/considered,
+23:u0B:considered/critical,
+15:u0C:RAN/support,
+11:u11:support,
+14:u13:considered,
+12:u14:critical,
+11:u02:support,
+14:u04:considered,
+12:u05:critical,
+6:u08:5G,
+17:u09:is/considered,
+23:u0A:considered/critical,
+16:u0B:critical/for,
+14:u0C:support/is,
+16:u0D:considered/0,
+11:u10:support,
+14:u12:considered,
+12:u13:critical,
+7:u32:red,
+8:u33:ered,
+11:u01:support,
+14:u03:considered,
+12:u04:critical,
+6:u07:5G,
+10:u08:mobile,
+23:u09:considered/critical,
+16:u0A:critical/for,
+17:u0C:is/considered,
+14:u0D:critical/0,
+14:u11:considered,
+12:u12:critical,
+6:u21:cr,
+7:u22:cri,
+8:u23:crit,
+11:u00:support,
+14:u02:considered,
+12:u03:critical,
+6:u06:5G,
+10:u07:mobile,
+16:u09:critical/for,
+10:u0B:the/5G,
+23:u0C:considered/critical,
+14:u10:considered,
+12:u11:critical,
+6:u14:5g,
+14:u01:considered,
+12:u02:critical,
+6:u05:5G,
+10:u06:mobile,
+10:u0A:the/5G,
+13:u0B:5G/mobile,
+16:u0C:critical/for,
+12:u10:critical,
+6:u13:5g,
+10:u14:mobile,
+14:u00:considered,
+12:u01:critical,
+6:u04:5G,
+10:u05:mobile,
+10:u09:the/5G,
+13:u0A:5G/mobile,
+18:u0B:mobile/network,
+8:u0D:5G/0,
+6:u12:5g,
+10:u13:mobile,
+6:u21:5G,
+6:u22:5G,
+6:u23:5G,
+6:u31:5G,
+6:u32:5G,
+6:u33:5G,
+12:u00:critical,
+6:u03:5G,
+10:u04:mobile,
+9:u08:being,
+13:u09:5G/mobile,
+18:u0A:mobile/network,
+25:u0B:network/architectures,
+10:u0C:the/5G,
+12:u0D:mobile/0,
+6:u11:5g,
+10:u12:mobile,
+7:u22:mob,
+8:u23:mobi,
+6:u02:5G,
+10:u03:mobile,
+9:u07:being,
+13:u08:developed,
+18:u09:mobile/network,
+25:u0A:network/architectures,
+27:u0B:architectures/currently,
+13:u0C:5G/mobile,
+6:u10:5g,
+10:u11:mobile,
+6:u01:5G,
+10:u02:mobile,
+9:u06:being,
+13:u07:developed,
+25:u09:network/architectures,
+27:u0A:architectures/currently,
+19:u0B:currently/being,
+18:u0C:mobile/network,
+10:u10:mobile,
+9:u14:being,
+6:u00:5G,
+10:u01:mobile,
+9:u05:being,
+13:u06:developed,
+11:u08:various,
+27:u09:architectures/currently,
+19:u0A:currently/being,
+19:u0B:being/developed,
+25:u0C:network/architectures,
+9:u13:being,
+13:u14:developed,
+10:u00:mobile,
+9:u04:being,
+13:u05:developed,
+11:u07:various,
+19:u09:currently/being,
+19:u0A:being/developed,
+16:u0B:developed/in,
+27:u0C:architectures/currently,
+11:u0D:being/0,
+9:u12:being,
+13:u13:developed,
+7:u22:bei,
+8:u23:bein,
+8:u33:eing,
+9:u03:being,
+13:u04:developed,
+11:u06:various,
+19:u09:being/developed,
+16:u0A:developed/in,
+14:u0B:in/various,
+19:u0C:currently/being,
+15:u0D:developed/0,
+9:u11:being,
+13:u12:developed,
+11:u14:various,
+7:u32:ped,
+8:u33:oped,
+9:u02:being,
+13:u03:developed,
+11:u05:various,
+19:u08:standardization,
+16:u09:developed/in,
+14:u0A:in/various,
+20:u0B:various/research,
+19:u0C:being/developed,
+9:u10:being,
+13:u11:developed,
+11:u13:various,
+9:u01:being,
+13:u02:developed,
+11:u04:various,
+19:u07:standardization,
+14:u09:in/various,
+20:u0A:various/research,
+14:u0B:research/,,
+16:u0C:developed/in,
+13:u0D:various/0,
+13:u10:developed,
+11:u12:various,
+9:u00:being,
+13:u01:developed,
+11:u03:various,
+19:u06:standardization,
+20:u09:various/research,
+14:u0A:research/,,
+21:u0B:,/standardization,
+14:u0C:in/various,
+11:u11:various,
+19:u14:standardization,
+13:u00:developed,
+11:u02:various,
+19:u05:standardization,
+10:u08:forums,
+14:u09:research/,,
+21:u0A:,/standardization,
+23:u0B:standardization/and,
+20:u0C:various/research,
+11:u10:various,
+19:u13:standardization,
+11:u01:various,
+19:u04:standardization,
+10:u07:forums,
+21:u09:,/standardization,
+23:u0A:standardization/and,
+16:u0B:and/industry,
+14:u0C:research/,,
+21:u0D:standardization/0,
+19:u12:standardization,
+11:u00:various,
+19:u03:standardization,
+10:u06:forums,
+23:u09:standardization/and,
+16:u0A:and/industry,
+19:u0B:industry/forums,
+21:u0C:,/standardization,
+19:u11:standardization,
+10:u14:forums,
+19:u02:standardization,
+10:u05:forums,
+16:u09:and/industry,
+19:u0A:industry/forums,
+12:u0B:forums/.,
+23:u0C:standardization/and,
+19:u10:standardization,
+10:u13:forums,
+19:u01:standardization,
+10:u04:forums,
+19:u09:industry/forums,
+12:u0A:forums/.,
+16:u0C:and/industry,
+12:u0D:forums/0,
+10:u12:forums,
+8:u23:foru,
+7:u32:ums,
+8:u33:rums,
+19:u00:standardization,
+10:u03:forums,
+10:u08:builds,
+12:u09:forums/.,
+13:u0B:Since/fog,
+19:u0C:industry/forums,
+10:u11:forums,
+10:u02:forums,
+10:u07:builds,
+13:u0A:Since/fog,
+11:u0B:fog/RAN,
+12:u0C:forums/.,
+10:u10:forums,
+10:u01:forums,
+10:u06:builds,
+7:u08:top,
+13:u09:Since/fog,
+11:u0A:fog/RAN,
+14:u0B:RAN/builds,
+9:u0D:fog/0,
+10:u14:builds,
+10:u00:forums,
+10:u05:builds,
+7:u07:top,
+11:u09:fog/RAN,
+14:u0A:RAN/builds,
+13:u0B:builds/on,
+13:u0C:Since/fog,
+10:u13:builds,
+10:u04:builds,
+7:u06:top,
+18:u08:virtualization,
+14:u09:RAN/builds,
+13:u0A:builds/on,
+10:u0B:on/top,
+11:u0C:fog/RAN,
+12:u0D:builds/0,
+10:u12:builds,
+7:u14:top,
+6:u21:bu,
+7:u22:bui,
+8:u23:buil,
+8:u33:ilds,
+10:u03:builds,
+7:u05:top,
+18:u07:virtualization,
+13:u09:builds/on,
+10:u0A:on/top,
+10:u0B:top/of,
+14:u0C:RAN/builds,
+10:u11:builds,
+7:u13:top,
+10:u02:builds,
+7:u04:top,
+18:u06:virtualization,
+10:u09:on/top,
+10:u0A:top/of,
+21:u0B:of/virtualization,
+13:u0C:builds/on,
+9:u0D:top/0,
+10:u10:builds,
+7:u12:top,
+18:u14:virtualization,
+7:u22:top,
+7:u23:top,
+7:u32:top,
+7:u33:top,
+10:u01:builds,
+7:u03:top,
+18:u05:virtualization,
+11:u08:involve,
+10:u09:top/of,
+21:u0A:of/virtualization,
+22:u0B:virtualization/and,
+10:u0C:on/top,
+7:u11:top,
+18:u13:virtualization,
+10:u00:builds,
+7:u02:top,
+18:u04:virtualization,
+11:u07:involve,
+11:u08:several,
+21:u09:of/virtualization,
+22:u0A:virtualization/and,
+11:u0B:and/can,
+10:u0C:top/of,
+20:u0D:virtualization/0,
+7:u10:top,
+18:u12:virtualization,
+7:u01:top,
+18:u03:virtualization,
+11:u06:involve,
+11:u07:several,
+11:u08:virtual,
+22:u09:virtualization/and,
+11:u0A:and/can,
+15:u0B:can/involve,
+21:u0C:of/virtualization,
+18:u11:virtualization,
+11:u14:involve,
+7:u00:top,
+18:u02:virtualization,
+11:u05:involve,
+11:u06:several,
+11:u07:virtual,
+13:u08:functions,
+11:u09:and/can,
+15:u0A:can/involve,
+19:u0B:involve/several,
+22:u0C:virtualization/and,
+18:u10:virtualization,
+11:u13:involve,
+11:u14:several,
+18:u01:virtualization,
+11:u04:involve,
+11:u05:several,
+11:u06:virtual,
+13:u07:functions,
+11:u08:running,
+15:u09:can/involve,
+19:u0A:involve/several,
+19:u0B:several/virtual,
+11:u0C:and/can,
+13:u0D:involve/0,
+11:u12:involve,
+11:u13:several,
+11:u14:virtual,
+7:u32:lve,
+8:u33:olve,
+18:u00:virtualization,
+11:u03:involve,
+11:u04:several,
+11:u05:virtual,
+13:u06:functions,
+11:u07:running,
+19:u09:involve/several,
+19:u0A:several/virtual,
+21:u0B:virtual/functions,
+15:u0C:can/involve,
+13:u0D:several/0,
+11:u11:involve,
+11:u12:several,
+11:u13:virtual,
+13:u14:functions,
+7:u22:sev,
+8:u23:seve,
+7:u32:ral,
+8:u33:eral,
+11:u02:involve,
+11:u03:several,
+11:u04:virtual,
+13:u05:functions,
+11:u06:running,
+13:u08:different,
+19:u09:several/virtual,
+21:u0A:virtual/functions,
+21:u0B:functions/running,
+19:u0C:involve/several,
+13:u0D:virtual/0,
+11:u10:involve,
+11:u11:several,
+11:u12:virtual,
+13:u13:functions,
+11:u14:running,
+8:u33:tual,
+11:u01:involve,
+11:u02:several,
+11:u03:virtual,
+13:u04:functions,
+11:u05:running,
+13:u07:different,
+21:u09:virtual/functions,
+21:u0A:functions/running,
+14:u0B:running/on,
+19:u0C:several/virtual,
+15:u0D:functions/0,
+11:u10:several,
+11:u11:virtual,
+13:u12:functions,
+11:u13:running,
+11:u00:involve,
+11:u01:several,
+11:u02:virtual,
+13:u03:functions,
+11:u04:running,
+13:u06:different,
+13:u08:resources,
+21:u09:functions/running,
+14:u0A:running/on,
+16:u0B:on/different,
+21:u0C:virtual/functions,
+13:u0D:running/0,
+11:u10:virtual,
+13:u11:functions,
+11:u12:running,
+13:u14:different,
+6:u21:ru,
+7:u22:run,
+8:u23:runn,
+11:u00:several,
+11:u01:virtual,
+13:u02:functions,
+11:u03:running,
+13:u05:different,
+13:u07:resources,
+14:u09:running/on,
+16:u0A:on/different,
+25:u0B:different/virtualized,
+21:u0C:functions/running,
+13:u10:functions,
+11:u11:running,
+13:u13:different,
+11:u00:virtual,
+13:u01:functions,
+11:u02:running,
+13:u04:different,
+13:u06:resources,
+16:u09:on/different,
+25:u0A:different/virtualized,
+25:u0B:virtualized/resources,
+14:u0C:running/on,
+15:u0D:different/0,
+11:u10:running,
+13:u12:different,
+13:u14:resources,
+7:u22:dif,
+8:u23:diff,
+13:u00:functions,
+11:u01:running,
+13:u03:different,
+13:u05:resources,
+12:u08:function,
+25:u09:different/virtualized,
+25:u0A:virtualized/resources,
+15:u0B:resources/,,
+16:u0C:on/different,
+13:u11:different,
+13:u13:resources,
+11:u00:running,
+13:u02:different,
+13:u04:resources,
+12:u07:function,
+12:u08:chaining,
+25:u09:virtualized/resources,
+15:u0A:resources/,,
+13:u0B:,/Service,
+25:u0C:different/virtualized,
+15:u0D:resources/0,
+13:u10:different,
+13:u12:resources,
+8:u23:reso,
+13:u01:different,
+13:u03:resources,
+12:u06:function,
+12:u07:chaining,
+15:u09:resources/,,
+13:u0A:,/Service,
+20:u0B:Service/function,
+25:u0C:virtualized/resources,
+13:u11:resources,
+13:u00:different,
+13:u02:resources,
+12:u05:function,
+12:u06:chaining,
+13:u09:,/Service,
+20:u0A:Service/function,
+21:u0B:function/chaining,
+15:u0C:resources/,,
+13:u10:resources,
+13:u01:resources,
+12:u04:function,
+12:u05:chaining,
+20:u09:Service/function,
+21:u0A:function/chaining,
+14:u0B:chaining/(,
+13:u0C:,/Service,
+14:u0D:function/0,
+13:u00:resources,
+12:u03:function,
+12:u04:chaining,
+21:u09:function/chaining,
+14:u0A:chaining/(,
+9:u0B:(/SFC,
+20:u0C:Service/function,
+14:u0D:chaining/0,
+8:u23:chai,
+12:u02:function,
+12:u03:chaining,
+14:u09:chaining/(,
+9:u0A:(/SFC,
+9:u0B:SFC/),
+21:u0C:function/chaining,
+12:u01:function,
+12:u02:chaining,
+9:u09:(/SFC,
+9:u0A:SFC/),
+13:u0B:)/support,
+14:u0C:chaining/(,
+12:u00:function,
+12:u01:chaining,
+9:u09:SFC/),
+13:u0A:)/support,
+15:u0B:support/for,
+9:u0C:(/SFC,
+12:u00:chaining,
+13:u09:)/support,
+15:u0A:support/for,
+9:u0C:SFC/),
+15:u09:support/for,
+11:u0B:the/fog,
+13:u0C:)/support,
+11:u0A:the/fog,
+15:u0C:support/for,
+11:u09:the/fog,
+12:u0B:RAN/will,
+12:u0A:RAN/will,
+11:u0C:the/fog,
+12:u09:RAN/will,
+15:u0B:be/critical,
+15:u0A:be/critical,
+14:u0B:critical/.,
+12:u0C:RAN/will,
+15:u09:be/critical,
+14:u0A:critical/.,
+14:u09:critical/.,
+15:u0C:be/critical,
+11:u08:overall,
+14:u0C:critical/.,
+11:u07:overall,
+11:u06:overall,
+15:u0B:the/overall,
+11:u14:overall,
+11:u05:overall,
+12:u08:approach,
+15:u0A:the/overall,
+15:u0B:overall/fog,
+11:u13:overall,
+11:u04:overall,
+12:u07:approach,
+15:u09:the/overall,
+15:u0A:overall/fog,
+13:u0D:overall/0,
+11:u12:overall,
+6:u21:ov,
+7:u22:ove,
+8:u23:over,
+7:u32:all,
+8:u33:rall,
+11:u03:overall,
+12:u06:approach,
+15:u09:overall/fog,
+16:u0B:RAN/approach,
+15:u0C:the/overall,
+11:u11:overall,
+12:u14:approach,
+11:u02:overall,
+12:u05:approach,
+9:u08:gives,
+16:u0A:RAN/approach,
+16:u0B:approach/and,
+15:u0C:overall/fog,
+11:u10:overall,
+12:u13:approach,
+11:u01:overall,
+12:u04:approach,
+9:u07:gives,
+16:u09:RAN/approach,
+16:u0A:approach/and,
+12:u0B:and/also,
+14:u0D:approach/0,
+12:u12:approach,
+8:u33:oach,
+11:u00:overall,
+12:u03:approach,
+9:u06:gives,
+16:u09:approach/and,
+12:u0A:and/also,
+14:u0B:also/gives,
+16:u0C:RAN/approach,
+12:u11:approach,
+9:u14:gives,
+12:u02:approach,
+9:u05:gives,
+9:u08:cases,
+12:u09:and/also,
+14:u0A:also/gives,
+14:u0B:gives/some,
+16:u0C:approach/and,
+12:u10:approach,
+9:u13:gives,
+12:u01:approach,
+9:u04:gives,
+9:u07:cases,
+14:u09:also/gives,
+14:u0A:gives/some,
+12:u0B:some/use,
+12:u0C:and/also,
+11:u0D:gives/0,
+9:u12:gives,
+7:u32:ves,
+8:u33:ives,
+12:u00:approach,
+9:u03:gives,
+9:u06:cases,
+11:u08:Finally,
+14:u09:gives/some,
+12:u0A:some/use,
+13:u0B:use/cases,
+14:u0C:also/gives,
+9:u11:gives,
+9:u02:gives,
+9:u05:cases,
+11:u07:Finally,
+12:u09:some/use,
+13:u0A:use/cases,
+11:u0B:cases/.,
+14:u0C:gives/some,
+9:u10:gives,
+9:u01:gives,
+9:u04:cases,
+11:u06:Finally,
+13:u09:use/cases,
+11:u0A:cases/.,
+13:u0B:./Finally,
+12:u0C:some/use,
+11:u0D:cases/0,
+11:u14:finally,
+7:u22:cas,
+8:u23:case,
+9:u00:gives,
+9:u03:cases,
+11:u05:Finally,
+11:u09:cases/.,
+13:u0A:./Finally,
+14:u0B:Finally/it,
+13:u0C:use/cases,
+11:u13:finally,
+9:u02:cases,
+11:u04:Finally,
+16:u08:requirements,
+13:u09:./Finally,
+14:u0A:Finally/it,
+15:u0B:it/proposes,
+11:u0C:cases/.,
+13:u0D:Finally/0,
+11:u12:finally,
+8:u23:Fina,
+9:u01:cases,
+11:u03:Finally,
+16:u07:requirements,
+14:u09:Finally/it,
+15:u0A:it/proposes,
+17:u0B:proposes/some,
+13:u0C:./Finally,
+11:u11:finally,
+9:u00:cases,
+11:u02:Finally,
+16:u06:requirements,
+15:u09:it/proposes,
+17:u0A:proposes/some,
+21:u0B:some/requirements,
+14:u0C:Finally/it,
+11:u10:finally,
+16:u14:requirements,
+11:u01:Finally,
+16:u05:requirements,
+17:u09:proposes/some,
+21:u0A:some/requirements,
+19:u0B:requirements/to,
+15:u0C:it/proposes,
+16:u13:requirements,
+11:u00:Finally,
+16:u04:requirements,
+21:u09:some/requirements,
+19:u0A:requirements/to,
+9:u0B:to/be,
+17:u0C:proposes/some,
+18:u0D:requirements/0,
+16:u12:requirements,
+16:u03:requirements,
+19:u09:requirements/to,
+9:u0A:to/be,
+17:u0B:be/considered,
+21:u0C:some/requirements,
+16:u11:requirements,
+16:u02:requirements,
+9:u09:to/be,
+17:u0A:be/considered,
+17:u0B:considered/in,
+19:u0C:requirements/to,
+16:u10:requirements,
+16:u01:requirements,
+17:u09:be/considered,
+17:u0A:considered/in,
+9:u0C:to/be,
+16:u00:requirements,
+17:u09:considered/in,
+19:u0B:the/development,
+17:u0C:be/considered,
+19:u0A:the/development,
+18:u0B:development/of,
+17:u0C:considered/in,
+19:u09:the/development,
+18:u0A:development/of,
+18:u09:development/of,
+11:u0B:the/SFC,
+19:u0C:the/development,
+11:u0A:the/SFC,
+20:u0B:SFC/architecture,
+18:u0C:development/of,
+11:u09:the/SFC,
+20:u0A:SFC/architecture,
+20:u09:SFC/architecture,
+15:u0B:and/related,
+11:u0C:the/SFC,
+15:u0A:and/related,
+21:u0B:related/protocols,
+20:u0C:SFC/architecture,
+15:u09:and/related,
+21:u0A:related/protocols,
+15:u0B:protocols/.,
+13:u0D:related/0,
+21:u09:related/protocols,
+15:u0A:protocols/.,
+15:u0C:and/related,
+15:u09:protocols/.,
+21:u0C:related/protocols,
+15:u0C:protocols/.,
+15:u0B:Bernardos/,,
+15:u0A:Bernardos/,,
+15:u09:Bernardos/,,
+15:u0C:Bernardos/,,
+17:u0B:Expires/March,
+17:u0A:Expires/March,
+17:u09:Expires/March,
+17:u0C:Expires/March,
+13:u0B:Draft/Fog,
+13:u0A:Draft/Fog,
+13:u09:Draft/Fog,
+11:u0B:RAN/SFC,
+11:u0A:RAN/SFC,
+17:u0B:SFC/September,
+13:u0C:Draft/Fog,
+11:u09:RAN/SFC,
+17:u0A:SFC/September,
+18:u0B:September/2019,
+17:u09:SFC/September,
+18:u0A:September/2019,
+11:u0C:RAN/SFC,
+18:u09:September/2019,
+17:u0C:SFC/September,
+18:u0C:September/2019,
+10:u08:Carlos,
+10:u07:Carlos,
+5:u08:J,
+10:u06:Carlos,
+5:u07:J,
+12:u0B:./Carlos,
+10:u14:carlos,
+10:u05:Carlos,
+5:u06:J,
+12:u0A:./Carlos,
+12:u0B:Carlos/J,
+10:u13:carlos,
+5:u14:j,
+10:u04:Carlos,
+5:u05:J,
+15:u08:Universidad,
+12:u09:./Carlos,
+12:u0A:Carlos/J,
+7:u0B:J/.,
+12:u0D:Carlos/0,
+10:u12:carlos,
+5:u13:j,
+7:u22:Car,
+8:u23:Carl,
+7:u32:los,
+8:u33:rlos,
+10:u03:Carlos,
+5:u04:J,
+15:u07:Universidad,
+12:u09:Carlos/J,
+7:u0A:J/.,
+12:u0C:./Carlos,
+7:u0D:J/0,
+10:u11:carlos,
+5:u12:j,
+5:u21:J,
+5:u22:J,
+5:u23:J,
+5:u31:J,
+5:u32:J,
+5:u33:J,
+10:u02:Carlos,
+5:u03:J,
+15:u06:Universidad,
+7:u08:III,
+7:u09:J/.,
+25:u0B:Bernardos/Universidad,
+12:u0C:Carlos/J,
+10:u10:carlos,
+5:u11:j,
+15:u14:universidad,
+10:u01:Carlos,
+5:u02:J,
+15:u05:Universidad,
+7:u07:III,
+6:u08:de,
+25:u0A:Bernardos/Universidad,
+22:u0B:Universidad/Carlos,
+7:u0C:J/.,
+5:u10:j,
+15:u13:universidad,
+10:u00:Carlos,
+5:u01:J,
+15:u04:Universidad,
+7:u06:III,
+6:u07:de,
+10:u08:Madrid,
+25:u09:Bernardos/Universidad,
+22:u0A:Universidad/Carlos,
+14:u0B:Carlos/III,
+17:u0D:Universidad/0,
+15:u12:universidad,
+7:u14:iii,
+7:u32:dad,
+8:u33:idad,
+5:u00:J,
+15:u03:Universidad,
+7:u05:III,
+6:u06:de,
+10:u07:Madrid,
+6:u08:Av,
+22:u09:Universidad/Carlos,
+14:u0A:Carlos/III,
+10:u0B:III/de,
+25:u0C:Bernardos/Universidad,
+15:u11:universidad,
+7:u13:iii,
+6:u14:de,
+15:u02:Universidad,
+7:u04:III,
+6:u05:de,
+10:u06:Madrid,
+6:u07:Av,
+14:u09:Carlos/III,
+10:u0A:III/de,
+13:u0B:de/Madrid,
+22:u0C:Universidad/Carlos,
+9:u0D:III/0,
+15:u10:universidad,
+7:u12:iii,
+6:u13:de,
+10:u14:madrid,
+6:u21:II,
+7:u22:III,
+7:u23:III,
+6:u31:II,
+7:u32:III,
+7:u33:III,
+15:u01:Universidad,
+7:u03:III,
+6:u04:de,
+10:u05:Madrid,
+6:u06:Av,
+10:u09:III/de,
+13:u0A:de/Madrid,
+13:u0B:Madrid/Av,
+14:u0C:Carlos/III,
+8:u0D:de/0,
+7:u11:iii,
+6:u12:de,
+10:u13:madrid,
+6:u14:av,
+6:u22:de,
+6:u23:de,
+6:u32:de,
+6:u33:de,
+15:u00:Universidad,
+7:u02:III,
+6:u03:de,
+10:u04:Madrid,
+6:u05:Av,
+13:u09:de/Madrid,
+13:u0A:Madrid/Av,
+8:u0B:Av/.,
+10:u0C:III/de,
+12:u0D:Madrid/0,
+7:u10:iii,
+6:u11:de,
+10:u12:madrid,
+6:u13:av,
+7:u22:Mad,
+8:u23:Madr,
+7:u32:rid,
+8:u33:drid,
+7:u01:III,
+6:u02:de,
+10:u03:Madrid,
+6:u04:Av,
+6:u08:30,
+13:u09:Madrid/Av,
+8:u0A:Av/.,
+17:u0B:./Universidad,
+13:u0C:de/Madrid,
+8:u0D:Av/0,
+6:u10:de,
+10:u11:madrid,
+6:u12:av,
+6:u21:Av,
+6:u22:Av,
+6:u23:Av,
+5:u30:v,
+6:u31:Av,
+6:u32:Av,
+6:u33:Av,
+7:u00:III,
+6:u01:de,
+10:u02:Madrid,
+6:u03:Av,
+6:u07:30,
+11:u08:Leganes,
+8:u09:Av/.,
+17:u0A:./Universidad,
+17:u0B:Universidad/,,
+13:u0C:Madrid/Av,
+10:u10:madrid,
+6:u11:av,
+6:u00:de,
+10:u01:Madrid,
+6:u02:Av,
+6:u06:30,
+11:u07:Leganes,
+17:u09:./Universidad,
+17:u0A:Universidad/,,
+8:u0B:,/30,
+8:u0C:Av/.,
+6:u10:av,
+6:u14:30,
+10:u00:Madrid,
+6:u01:Av,
+6:u05:30,
+11:u06:Leganes,
+17:u09:Universidad/,,
+8:u0A:,/30,
+14:u0B:30/Leganes,
+17:u0C:./Universidad,
+6:u13:30,
+11:u14:leganes,
+6:u00:Av,
+6:u04:30,
+11:u05:Leganes,
+9:u08:28911,
+8:u09:,/30,
+14:u0A:30/Leganes,
+13:u0B:Leganes/,,
+17:u0C:Universidad/,,
+8:u0D:30/0,
+6:u12:30,
+11:u13:leganes,
+6:u21:30,
+6:u22:30,
+6:u23:30,
+6:u32:30,
+6:u33:30,
+6:u03:30,
+11:u04:Leganes,
+9:u07:28911,
+9:u08:Spain,
+14:u09:30/Leganes,
+13:u0A:Leganes/,,
+12:u0B:,/Madrid,
+8:u0C:,/30,
+13:u0D:Leganes/0,
+6:u11:30,
+11:u12:leganes,
+8:u33:anes,
+6:u02:30,
+11:u03:Leganes,
+9:u06:28911,
+9:u07:Spain,
+13:u09:Leganes/,,
+12:u0A:,/Madrid,
+16:u0B:Madrid/28911,
+14:u0C:30/Leganes,
+6:u10:30,
+11:u11:leganes,
+9:u14:28911,
+6:u01:30,
+11:u02:Leganes,
+9:u05:28911,
+9:u06:Spain,
+12:u09:,/Madrid,
+16:u0A:Madrid/28911,
+15:u0B:28911/Spain,
+13:u0C:Leganes/,,
+11:u10:leganes,
+9:u13:28911,
+9:u14:spain,
+6:u00:30,
+11:u01:Leganes,
+9:u04:28911,
+9:u05:Spain,
+7:u08:+34,
+16:u09:Madrid/28911,
+15:u0A:28911/Spain,
+15:u0B:Spain/Phone,
+12:u0C:,/Madrid,
+11:u0D:28911/0,
+9:u12:28911,
+9:u13:spain,
+6:u21:28,
+7:u22:289,
+8:u23:2891,
+7:u32:911,
+8:u33:8911,
+11:u00:Leganes,
+9:u03:28911,
+9:u04:Spain,
+7:u07:+34,
+9:u08:91624,
+15:u09:28911/Spain,
+15:u0A:Spain/Phone,
+16:u0C:Madrid/28911,
+11:u0D:Spain/0,
+9:u11:28911,
+9:u12:spain,
+6:u21:Sp,
+7:u22:Spa,
+8:u23:Spai,
+8:u33:pain,
+9:u02:28911,
+9:u03:Spain,
+7:u06:+34,
+9:u07:91624,
+8:u08:6236,
+15:u09:Spain/Phone,
+9:u0B::/+34,
+15:u0C:28911/Spain,
+9:u10:28911,
+9:u11:spain,
+7:u14:+34,
+9:u01:28911,
+9:u02:Spain,
+7:u05:+34,
+9:u06:91624,
+8:u07:6236,
+9:u0A::/+34,
+13:u0B:+34/91624,
+15:u0C:Spain/Phone,
+9:u10:spain,
+7:u13:+34,
+9:u14:91624,
+9:u00:28911,
+9:u01:Spain,
+7:u04:+34,
+9:u05:91624,
+8:u06:6236,
+9:u09::/+34,
+13:u0A:+34/91624,
+14:u0B:91624/6236,
+9:u0D:+34/0,
+7:u12:+34,
+9:u13:91624,
+8:u14:6236,
+6:u21:+3,
+7:u22:+34,
+7:u23:+34,
+6:u31:34,
+7:u32:+34,
+7:u33:+34,
+9:u00:Spain,
+7:u03:+34,
+9:u04:91624,
+8:u05:6236,
+11:u08:cjbc@it,
+13:u09:+34/91624,
+14:u0A:91624/6236,
+14:u0B:6236/Email,
+9:u0C::/+34,
+11:u0D:91624/0,
+7:u11:+34,
+9:u12:91624,
+8:u13:6236,
+6:u21:91,
+7:u22:916,
+8:u23:9162,
+7:u32:624,
+8:u33:1624,
+7:u02:+34,
+9:u03:91624,
+8:u04:6236,
+11:u07:cjbc@it,
+14:u09:91624/6236,
+14:u0A:6236/Email,
+13:u0C:+34/91624,
+10:u0D:6236/0,
+7:u10:+34,
+9:u11:91624,
+8:u12:6236,
+6:u21:62,
+7:u22:623,
+8:u23:6236,
+6:u31:36,
+7:u32:236,
+8:u33:6236,
+7:u01:+34,
+9:u02:91624,
+8:u03:6236,
+11:u06:cjbc@it,
+8:u08:uc3m,
+14:u09:6236/Email,
+13:u0B::/cjbc@it,
+14:u0C:91624/6236,
+9:u10:91624,
+8:u11:6236,
+11:u14:cjbc@it,
+7:u00:+34,
+9:u01:91624,
+8:u02:6236,
+11:u05:cjbc@it,
+8:u07:uc3m,
+13:u0A::/cjbc@it,
+13:u0B:cjbc@it/.,
+14:u0C:6236/Email,
+8:u10:6236,
+11:u13:cjbc@it,
+9:u00:91624,
+8:u01:6236,
+11:u04:cjbc@it,
+8:u06:uc3m,
+6:u08:es,
+13:u09::/cjbc@it,
+13:u0A:cjbc@it/.,
+10:u0B:./uc3m,
+13:u0D:cjbc@it/0,
+11:u12:cjbc@it,
+6:u21:cj,
+7:u22:cjb,
+8:u23:cjbc,
+7:u32:@it,
+8:u33:c@it,
+8:u00:6236,
+11:u03:cjbc@it,
+8:u05:uc3m,
+6:u07:es,
+7:u08:URI,
+13:u09:cjbc@it/.,
+10:u0A:./uc3m,
+10:u0B:uc3m/.,
+13:u0C::/cjbc@it,
+11:u11:cjbc@it,
+11:u02:cjbc@it,
+8:u04:uc3m,
+6:u06:es,
+7:u07:URI,
+10:u09:./uc3m,
+10:u0A:uc3m/.,
+8:u0B:./es,
+13:u0C:cjbc@it/.,
+10:u0D:uc3m/0,
+11:u10:cjbc@it,
+6:u14:es,
+6:u21:uc,
+7:u22:uc3,
+8:u23:uc3m,
+6:u31:3m,
+7:u32:c3m,
+8:u33:uc3m,
+11:u01:cjbc@it,
+8:u03:uc3m,
+6:u05:es,
+7:u06:URI,
+10:u09:uc3m/.,
+8:u0A:./es,
+10:u0B:es/URI,
+10:u0C:./uc3m,
+6:u13:es,
+7:u14:uri,
+11:u00:cjbc@it,
+8:u02:uc3m,
+6:u04:es,
+7:u05:URI,
+8:u09:./es,
+10:u0A:es/URI,
+9:u0B:URI/:,
+10:u0C:uc3m/.,
+8:u0D:es/0,
+6:u12:es,
+7:u13:uri,
+6:u22:es,
+6:u23:es,
+6:u32:es,
+6:u33:es,
+8:u01:uc3m,
+6:u03:es,
+7:u04:URI,
+10:u09:es/URI,
+9:u0A:URI/:,
+10:u0B::/http,
+8:u0C:./es,
+9:u0D:URI/0,
+6:u11:es,
+7:u12:uri,
+6:u21:UR,
+7:u22:URI,
+7:u23:URI,
+6:u31:RI,
+7:u32:URI,
+7:u33:URI,
+8:u00:uc3m,
+6:u02:es,
+7:u03:URI,
+9:u09:URI/:,
+10:u0A::/http,
+10:u0C:es/URI,
+6:u10:es,
+7:u11:uri,
+6:u01:es,
+7:u02:URI,
+10:u09::/http,
+9:u0C:URI/:,
+7:u10:uri,
+6:u00:es,
+7:u01:URI,
+10:u0C::/http,
+7:u00:URI,
+8:u0B:./it,
+8:u0A:./it,
+8:u0B:it/.,
+8:u09:./it,
+8:u0A:it/.,
+8:u09:it/.,
+8:u0C:./it,
+8:u08:cjbc,
+8:u0C:it/.,
+8:u07:cjbc,
+8:u0B:es//,
+8:u06:cjbc,
+9:u08:Akbar,
+8:u0A:es//,
+10:u0B://cjbc,
+8:u14:cjbc,
+8:u05:cjbc,
+9:u07:Akbar,
+8:u09:es//,
+10:u0A://cjbc,
+10:u0B:cjbc//,
+8:u13:cjbc,
+8:u04:cjbc,
+9:u06:Akbar,
+10:u09://cjbc,
+10:u0A:cjbc//,
+11:u0B://Akbar,
+8:u0C:es//,
+10:u0D:cjbc/0,
+8:u12:cjbc,
+9:u14:akbar,
+6:u31:bc,
+7:u32:jbc,
+8:u33:cjbc,
+8:u03:cjbc,
+9:u05:Akbar,
+18:u08:Communications,
+10:u09:cjbc//,
+11:u0A://Akbar,
+16:u0B:Akbar/Rahman,
+10:u0C://cjbc,
+8:u11:cjbc,
+9:u13:akbar,
+8:u02:cjbc,
+9:u04:Akbar,
+18:u07:Communications,
+11:u09://Akbar,
+16:u0A:Akbar/Rahman,
+23:u0B:Rahman/InterDigital,
+10:u0C:cjbc//,
+11:u0D:Akbar/0,
+8:u10:cjbc,
+9:u12:akbar,
+6:u21:Ak,
+7:u22:Akb,
+8:u23:Akba,
+7:u32:bar,
+8:u33:kbar,
+8:u01:cjbc,
+9:u03:Akbar,
+18:u06:Communications,
+7:u08:LLC,
+16:u09:Akbar/Rahman,
+23:u0A:Rahman/InterDigital,
+31:u0B:InterDigital/Communications,
+11:u0C://Akbar,
+9:u11:akbar,
+18:u14:communications,
+8:u00:cjbc,
+9:u02:Akbar,
+18:u05:Communications,
+7:u07:LLC,
+8:u08:1000,
+23:u09:Rahman/InterDigital,
+31:u0A:InterDigital/Communications,
+20:u0B:Communications/,,
+16:u0C:Akbar/Rahman,
+9:u10:akbar,
+18:u13:communications,
+9:u01:Akbar,
+18:u04:Communications,
+7:u06:LLC,
+8:u07:1000,
+14:u08:Sherbrooke,
+31:u09:InterDigital/Communications,
+20:u0A:Communications/,,
+9:u0B:,/LLC,
+23:u0C:Rahman/InterDigital,
+20:u0D:Communications/0,
+18:u12:communications,
+7:u14:llc,
+9:u00:Akbar,
+18:u03:Communications,
+7:u05:LLC,
+8:u06:1000,
+14:u07:Sherbrooke,
+10:u08:Street,
+20:u09:Communications/,,
+9:u0A:,/LLC,
+12:u0B:LLC/1000,
+31:u0C:InterDigital/Communications,
+18:u11:communications,
+7:u13:llc,
+8:u14:1000,
+18:u02:Communications,
+7:u04:LLC,
+8:u05:1000,
+14:u06:Sherbrooke,
+10:u07:Street,
+9:u09:,/LLC,
+12:u0A:LLC/1000,
+19:u0B:1000/Sherbrooke,
+20:u0C:Communications/,,
+9:u0D:LLC/0,
+18:u10:communications,
+7:u12:llc,
+8:u13:1000,
+14:u14:sherbrooke,
+6:u21:LL,
+7:u22:LLC,
+7:u23:LLC,
+6:u31:LC,
+7:u32:LLC,
+7:u33:LLC,
+18:u01:Communications,
+7:u03:LLC,
+8:u04:1000,
+14:u05:Sherbrooke,
+10:u06:Street,
+12:u09:LLC/1000,
+19:u0A:1000/Sherbrooke,
+21:u0B:Sherbrooke/Street,
+9:u0C:,/LLC,
+10:u0D:1000/0,
+7:u11:llc,
+8:u12:1000,
+14:u13:sherbrooke,
+10:u14:street,
+7:u32:000,
+8:u33:1000,
+18:u00:Communications,
+7:u02:LLC,
+8:u03:1000,
+14:u04:Sherbrooke,
+10:u05:Street,
+8:u08:10th,
+19:u09:1000/Sherbrooke,
+21:u0A:Sherbrooke/Street,
+15:u0B:Street/West,
+12:u0C:LLC/1000,
+16:u0D:Sherbrooke/0,
+7:u10:llc,
+8:u11:1000,
+14:u12:sherbrooke,
+10:u13:street,
+7:u22:She,
+8:u23:Sher,
+6:u31:ke,
+7:u32:oke,
+8:u33:ooke,
+7:u01:LLC,
+8:u02:1000,
+14:u03:Sherbrooke,
+10:u04:Street,
+8:u07:10th,
+9:u08:floor,
+21:u09:Sherbrooke/Street,
+15:u0A:Street/West,
+10:u0B:West/,,
+19:u0C:1000/Sherbrooke,
+12:u0D:Street/0,
+8:u10:1000,
+14:u11:sherbrooke,
+10:u12:street,
+7:u32:eet,
+8:u33:reet,
+7:u00:LLC,
+8:u01:1000,
+14:u02:Sherbrooke,
+10:u03:Street,
+8:u06:10th,
+9:u07:floor,
+12:u08:Montreal,
+15:u09:Street/West,
+10:u0A:West/,,
+10:u0B:,/10th,
+21:u0C:Sherbrooke/Street,
+14:u10:sherbrooke,
+10:u11:street,
+8:u14:10th,
+8:u00:1000,
+14:u01:Sherbrooke,
+10:u02:Street,
+8:u05:10th,
+9:u06:floor,
+12:u07:Montreal,
+10:u09:West/,,
+10:u0A:,/10th,
+14:u0B:10th/floor,
+15:u0C:Street/West,
+10:u10:street,
+8:u13:10th,
+14:u00:Sherbrooke,
+10:u01:Street,
+8:u04:10th,
+9:u05:floor,
+12:u06:Montreal,
+10:u08:Quebec,
+10:u09:,/10th,
+14:u0A:10th/floor,
+18:u0B:floor/Montreal,
+10:u0C:West/,,
+10:u0D:10th/0,
+8:u12:10th,
+12:u14:montreal,
+7:u22:10t,
+8:u23:10th,
+7:u32:0th,
+8:u33:10th,
+10:u00:Street,
+8:u03:10th,
+9:u04:floor,
+12:u05:Montreal,
+10:u07:Quebec,
+7:u08:H3A,
+14:u09:10th/floor,
+18:u0A:floor/Montreal,
+14:u0B:Montreal/,,
+10:u0C:,/10th,
+11:u0D:floor/0,
+8:u11:10th,
+12:u13:montreal,
+8:u23:floo,
+8:u02:10th,
+9:u03:floor,
+12:u04:Montreal,
+10:u06:Quebec,
+7:u07:H3A,
+7:u08:3G4,
+18:u09:floor/Montreal,
+14:u0A:Montreal/,,
+12:u0B:,/Quebec,
+14:u0C:10th/floor,
+14:u0D:Montreal/0,
+8:u10:10th,
+12:u12:montreal,
+10:u14:quebec,
+7:u22:Mon,
+8:u23:Mont,
+8:u33:real,
+8:u01:10th,
+9:u02:floor,
+12:u03:Montreal,
+10:u05:Quebec,
+7:u06:H3A,
+7:u07:3G4,
+10:u08:Canada,
+14:u09:Montreal/,,
+12:u0A:,/Quebec,
+14:u0B:Quebec/H3A,
+18:u0C:floor/Montreal,
+12:u11:montreal,
+10:u13:quebec,
+7:u14:h3a,
+8:u00:10th,
+9:u01:floor,
+12:u02:Montreal,
+10:u04:Quebec,
+7:u05:H3A,
+7:u06:3G4,
+10:u07:Canada,
+12:u09:,/Quebec,
+14:u0A:Quebec/H3A,
+11:u0B:H3A/3G4,
+14:u0C:Montreal/,,
+12:u0D:Quebec/0,
+12:u10:montreal,
+10:u12:quebec,
+7:u13:h3a,
+7:u14:3g4,
+5:u20:Q,
+6:u21:Qu,
+7:u22:Que,
+8:u23:Queb,
+6:u31:ec,
+7:u32:bec,
+8:u33:ebec,
+9:u00:floor,
+12:u01:Montreal,
+10:u03:Quebec,
+7:u04:H3A,
+7:u05:3G4,
+10:u06:Canada,
+14:u09:Quebec/H3A,
+11:u0A:H3A/3G4,
+14:u0B:3G4/Canada,
+12:u0C:,/Quebec,
+9:u0D:H3A/0,
+10:u11:quebec,
+7:u12:h3a,
+7:u13:3g4,
+10:u14:canada,
+6:u21:H3,
+7:u22:H3A,
+7:u23:H3A,
+6:u31:3A,
+7:u32:H3A,
+7:u33:H3A,
+12:u00:Montreal,
+10:u02:Quebec,
+7:u03:H3A,
+7:u04:3G4,
+10:u05:Canada,
+11:u09:H3A/3G4,
+14:u0A:3G4/Canada,
+16:u0B:Canada/Email,
+14:u0C:Quebec/H3A,
+9:u0D:3G4/0,
+10:u10:quebec,
+7:u11:h3a,
+7:u12:3g4,
+10:u13:canada,
+6:u21:3G,
+7:u22:3G4,
+7:u23:3G4,
+6:u31:G4,
+7:u32:3G4,
+7:u33:3G4,
+10:u01:Quebec,
+7:u02:H3A,
+7:u03:3G4,
+10:u04:Canada,
+14:u09:3G4/Canada,
+16:u0A:Canada/Email,
+11:u0C:H3A/3G4,
+12:u0D:Canada/0,
+7:u10:h3a,
+7:u11:3g4,
+10:u12:canada,
+7:u22:Can,
+8:u23:Cana,
+6:u31:da,
+7:u32:ada,
+8:u33:nada,
+10:u00:Quebec,
+7:u01:H3A,
+7:u02:3G4,
+10:u03:Canada,
+23:u08:Rahman@InterDigital,
+16:u09:Canada/Email,
+11:u0B::/Akbar,
+14:u0C:3G4/Canada,
+7:u10:3g4,
+10:u11:canada,
+7:u00:H3A,
+7:u01:3G4,
+10:u02:Canada,
+23:u07:Rahman@InterDigital,
+11:u0A::/Akbar,
+11:u0B:Akbar/.,
+16:u0C:Canada/Email,
+10:u10:canada,
+7:u00:3G4,
+10:u01:Canada,
+23:u06:Rahman@InterDigital,
+11:u09::/Akbar,
+11:u0A:Akbar/.,
+25:u0B:./Rahman@InterDigital,
+23:u14:rahman@interdigital,
+10:u00:Canada,
+23:u05:Rahman@InterDigital,
+11:u09:Akbar/.,
+25:u0A:./Rahman@InterDigital,
+25:u0B:Rahman@InterDigital/.,
+11:u0C::/Akbar,
+23:u13:rahman@interdigital,
+23:u04:Rahman@InterDigital,
+25:u09:./Rahman@InterDigital,
+25:u0A:Rahman@InterDigital/.,
+11:u0C:Akbar/.,
+25:u0D:Rahman@InterDigital/0,
+23:u12:rahman@interdigital,
+23:u03:Rahman@InterDigital,
+25:u09:Rahman@InterDigital/.,
+11:u0B:com/URI,
+25:u0C:./Rahman@InterDigital,
+23:u11:rahman@interdigital,
+23:u02:Rahman@InterDigital,
+11:u0A:com/URI,
+25:u0C:Rahman@InterDigital/.,
+23:u10:rahman@interdigital,
+23:u01:Rahman@InterDigital,
+11:u09:com/URI,
+23:u00:Rahman@InterDigital,
+11:u0C:com/URI,
+18:u0B:./InterDigital,
+18:u0A:./InterDigital,
+18:u0B:InterDigital/.,
+9:u08:Alain,
+18:u09:./InterDigital,
+18:u0A:InterDigital/.,
+9:u07:Alain,
+18:u09:InterDigital/.,
+18:u0C:./InterDigital,
+9:u06:Alain,
+11:u0B://Alain,
+18:u0C:InterDigital/.,
+9:u14:alain,
+9:u05:Alain,
+10:u08:Europe,
+11:u0A://Alain,
+16:u0B:Alain/Mourad,
+9:u13:alain,
+9:u04:Alain,
+10:u07:Europe,
+11:u09://Alain,
+16:u0A:Alain/Mourad,
+11:u0D:Alain/0,
+9:u12:alain,
+7:u22:Ala,
+8:u23:Alai,
+8:u33:lain,
+9:u03:Alain,
+10:u06:Europe,
+16:u09:Alain/Mourad,
+23:u0B:InterDigital/Europe,
+11:u0C://Alain,
+9:u11:alain,
+10:u14:europe,
+9:u02:Alain,
+10:u05:Europe,
+23:u0A:InterDigital/Europe,
+16:u0B:Europe/Email,
+16:u0C:Alain/Mourad,
+9:u10:alain,
+10:u13:europe,
+9:u01:Alain,
+10:u04:Europe,
+23:u09:InterDigital/Europe,
+16:u0A:Europe/Email,
+12:u0D:Europe/0,
+10:u12:europe,
+6:u21:Eu,
+7:u22:Eur,
+8:u23:Euro,
+6:u31:pe,
+7:u32:ope,
+8:u33:rope,
+9:u00:Alain,
+10:u03:Europe,
+23:u08:Mourad@InterDigital,
+16:u09:Europe/Email,
+11:u0B::/Alain,
+23:u0C:InterDigital/Europe,
+10:u11:europe,
+10:u02:Europe,
+23:u07:Mourad@InterDigital,
+11:u0A::/Alain,
+11:u0B:Alain/.,
+16:u0C:Europe/Email,
+10:u10:europe,
+10:u01:Europe,
+23:u06:Mourad@InterDigital,
+11:u09::/Alain,
+11:u0A:Alain/.,
+25:u0B:./Mourad@InterDigital,
+23:u14:mourad@interdigital,
+10:u00:Europe,
+23:u05:Mourad@InterDigital,
+11:u09:Alain/.,
+25:u0A:./Mourad@InterDigital,
+25:u0B:Mourad@InterDigital/.,
+11:u0C::/Alain,
+23:u13:mourad@interdigital,
+23:u04:Mourad@InterDigital,
+25:u09:./Mourad@InterDigital,
+25:u0A:Mourad@InterDigital/.,
+11:u0C:Alain/.,
+25:u0D:Mourad@InterDigital/0,
+23:u12:mourad@interdigital,
+23:u03:Mourad@InterDigital,
+25:u09:Mourad@InterDigital/.,
+25:u0C:./Mourad@InterDigital,
+23:u11:mourad@interdigital,
+23:u02:Mourad@InterDigital,
+25:u0C:Mourad@InterDigital/.,
+23:u10:mourad@interdigital,
+23:u01:Mourad@InterDigital,
+23:u00:Mourad@InterDigital,
+10:u0B://_x+1,
+10:u0A://_x+1,
+9:u08:Arkko,
+7:u0B:)/J,
+9:u07:Arkko,
+7:u0A:)/J,
+9:u06:Arkko,
+7:u09:)/J,
+11:u0B:./Arkko,
+9:u14:arkko,
+9:u05:Arkko,
+11:u0A:./Arkko,
+17:u0B:Arkko/Request,
+7:u0C:)/J,
+9:u13:arkko,
+9:u04:Arkko,
+11:u09:./Arkko,
+17:u0A:Arkko/Request,
+11:u0D:Arkko/0,
+9:u12:arkko,
+6:u21:Ar,
+7:u22:Ark,
+8:u23:Arkk,
+7:u32:kko,
+8:u33:rkko,
+9:u03:Arkko,
+8:u08:8602,
+17:u09:Arkko/Request,
+11:u0C:./Arkko,
+9:u11:arkko,
+9:u02:Arkko,
+8:u07:8602,
+17:u0C:Arkko/Request,
+9:u10:arkko,
+9:u01:Arkko,
+8:u06:8602,
+10:u0B::/8602,
+8:u14:8602,
+9:u00:Arkko,
+8:u05:8602,
+10:u0A::/8602,
+17:u0B:8602/Ericsson,
+8:u13:8602,
+8:u04:8602,
+8:u08:3219,
+10:u09::/8602,
+17:u0A:8602/Ericsson,
+20:u0B:Ericsson/Updates,
+10:u0D:8602/0,
+8:u12:8602,
+8:u23:8602,
+7:u32:602,
+8:u33:8602,
+8:u03:8602,
+8:u07:3219,
+17:u09:8602/Ericsson,
+20:u0A:Ericsson/Updates,
+10:u0C::/8602,
+8:u11:8602,
+8:u02:8602,
+8:u06:3219,
+20:u09:Ericsson/Updates,
+10:u0B::/3219,
+17:u0C:8602/Ericsson,
+8:u10:8602,
+8:u14:3219,
+8:u01:8602,
+8:u05:3219,
+10:u08:Hardie,
+10:u0A::/3219,
+10:u0B:3219/T,
+20:u0C:Ericsson/Updates,
+8:u13:3219,
+8:u00:8602,
+8:u04:3219,
+10:u07:Hardie,
+10:u09::/3219,
+10:u0A:3219/T,
+10:u0D:3219/0,
+8:u12:3219,
+7:u22:321,
+8:u23:3219,
+7:u32:219,
+8:u33:3219,
+8:u03:3219,
+10:u06:Hardie,
+10:u09:3219/T,
+12:u0B:./Hardie,
+10:u0C::/3219,
+8:u11:3219,
+10:u14:hardie,
+8:u02:3219,
+10:u05:Hardie,
+12:u0A:./Hardie,
+19:u0B:Hardie/Category,
+10:u0C:3219/T,
+8:u10:3219,
+10:u13:hardie,
+8:u01:3219,
+10:u04:Hardie,
+12:u09:./Hardie,
+19:u0A:Hardie/Category,
+12:u0D:Hardie/0,
+10:u12:hardie,
+6:u21:Ha,
+7:u22:Har,
+8:u23:Hard,
+7:u32:die,
+8:u33:rdie,
+8:u00:3219,
+10:u03:Hardie,
+19:u09:Hardie/Category,
+12:u0C:./Hardie,
+10:u11:hardie,
+10:u02:Hardie,
+19:u0C:Hardie/Category,
+10:u10:hardie,
+10:u01:Hardie,
+14:u0B:Track/July,
+10:u00:Hardie,
+14:u0A:Track/July,
+14:u09:Track/July,
+13:u0B:2019/ISSN,
+13:u0A:2019/ISSN,
+14:u0C:Track/July,
+13:u09:2019/ISSN,
+10:u08:Update,
+13:u0C:2019/ISSN,
+10:u07:Update,
+10:u06:Update,
+15:u0B:1721/Update,
+10:u14:update,
+10:u05:Update,
+13:u08:Telephony,
+15:u0A:1721/Update,
+13:u0B:Update/to,
+10:u13:update,
+10:u04:Update,
+13:u07:Telephony,
+15:u09:1721/Update,
+13:u0A:Update/to,
+12:u0D:Update/0,
+10:u12:update,
+10:u03:Update,
+13:u06:Telephony,
+8:u08:over,
+13:u09:Update/to,
+17:u0B:the/Telephony,
+15:u0C:1721/Update,
+10:u11:update,
+13:u14:telephony,
+10:u02:Update,
+13:u05:Telephony,
+8:u07:over,
+6:u08:IP,
+17:u0A:the/Telephony,
+21:u0B:Telephony/Routing,
+13:u0C:Update/to,
+10:u10:update,
+13:u13:telephony,
+10:u01:Update,
+13:u04:Telephony,
+8:u06:over,
+6:u07:IP,
+17:u09:the/Telephony,
+21:u0A:Telephony/Routing,
+16:u0B:Routing/over,
+15:u0D:Telephony/0,
+13:u12:telephony,
+8:u14:over,
+7:u32:ony,
+8:u33:hony,
+10:u00:Update,
+13:u03:Telephony,
+8:u05:over,
+6:u06:IP,
+8:u08:TRIP,
+21:u09:Telephony/Routing,
+16:u0A:Routing/over,
+11:u0B:over/IP,
+17:u0C:the/Telephony,
+13:u11:telephony,
+8:u13:over,
+6:u14:ip,
+13:u02:Telephony,
+8:u04:over,
+6:u05:IP,
+8:u07:TRIP,
+16:u09:Routing/over,
+11:u0A:over/IP,
+8:u0B:IP/(,
+21:u0C:Telephony/Routing,
+10:u0D:over/0,
+13:u10:telephony,
+8:u12:over,
+6:u13:ip,
+8:u33:over,
+13:u01:Telephony,
+8:u03:over,
+6:u04:IP,
+8:u06:TRIP,
+8:u08:IANA,
+11:u09:over/IP,
+8:u0A:IP/(,
+10:u0B:(/TRIP,
+16:u0C:Routing/over,
+8:u0D:IP/0,
+8:u11:over,
+6:u12:ip,
+8:u14:trip,
+6:u21:IP,
+6:u22:IP,
+6:u23:IP,
+6:u31:IP,
+6:u32:IP,
+6:u33:IP,
+13:u00:Telephony,
+8:u02:over,
+6:u03:IP,
+8:u05:TRIP,
+8:u07:IANA,
+12:u08:Registry,
+8:u09:IP/(,
+10:u0A:(/TRIP,
+10:u0B:TRIP/),
+11:u0C:over/IP,
+8:u10:over,
+6:u11:ip,
+8:u13:trip,
+8:u01:over,
+6:u02:IP,
+8:u04:TRIP,
+8:u06:IANA,
+12:u07:Registry,
+9:u08:Rules,
+10:u09:(/TRIP,
+10:u0A:TRIP/),
+10:u0B:)/IANA,
+8:u0C:IP/(,
+10:u0D:TRIP/0,
+6:u10:ip,
+8:u12:trip,
+8:u14:iana,
+6:u21:TR,
+7:u22:TRI,
+8:u23:TRIP,
+7:u32:RIP,
+8:u33:TRIP,
+8:u00:over,
+6:u01:IP,
+8:u03:TRIP,
+8:u05:IANA,
+12:u06:Registry,
+9:u07:Rules,
+13:u08:regarding,
+10:u09:TRIP/),
+10:u0A:)/IANA,
+17:u0B:IANA/Registry,
+10:u0C:(/TRIP,
+8:u11:trip,
+8:u13:iana,
+12:u14:registry,
+6:u00:IP,
+8:u02:TRIP,
+8:u04:IANA,
+12:u05:Registry,
+9:u06:Rules,
+13:u07:regarding,
+10:u08:Postal,
+10:u09:)/IANA,
+17:u0A:IANA/Registry,
+18:u0B:Registry/Rules,
+10:u0C:TRIP/),
+10:u0D:IANA/0,
+8:u10:trip,
+8:u12:iana,
+12:u13:registry,
+9:u14:rules,
+6:u21:IA,
+7:u22:IAN,
+8:u23:IANA,
+6:u31:NA,
+7:u32:ANA,
+8:u33:IANA,
+8:u01:TRIP,
+8:u03:IANA,
+12:u04:Registry,
+9:u05:Rules,
+13:u06:regarding,
+10:u07:Postal,
+13:u08:Addresses,
+17:u09:IANA/Registry,
+18:u0A:Registry/Rules,
+19:u0B:Rules/regarding,
+10:u0C:)/IANA,
+14:u0D:Registry/0,
+8:u11:iana,
+12:u12:registry,
+9:u13:rules,
+13:u14:regarding,
+7:u22:Reg,
+8:u23:Regi,
+8:u00:TRIP,
+8:u02:IANA,
+12:u03:Registry,
+9:u04:Rules,
+13:u05:regarding,
+10:u06:Postal,
+13:u07:Addresses,
+18:u09:Registry/Rules,
+19:u0A:Rules/regarding,
+20:u0B:regarding/Postal,
+17:u0C:IANA/Registry,
+11:u0D:Rules/0,
+8:u10:iana,
+12:u11:registry,
+9:u12:rules,
+13:u13:regarding,
+10:u14:postal,
+6:u21:Ru,
+7:u22:Rul,
+8:u23:Rule,
+7:u32:les,
+8:u33:ules,
+8:u01:IANA,
+12:u02:Registry,
+9:u03:Rules,
+13:u04:regarding,
+10:u05:Postal,
+13:u06:Addresses,
+19:u09:Rules/regarding,
+20:u0A:regarding/Postal,
+20:u0B:Postal/Addresses,
+18:u0C:Registry/Rules,
+15:u0D:regarding/0,
+12:u10:registry,
+9:u11:rules,
+13:u12:regarding,
+10:u13:postal,
+13:u14:addresses,
+7:u22:reg,
+8:u23:rega,
+8:u00:IANA,
+12:u01:Registry,
+9:u02:Rules,
+13:u03:regarding,
+10:u04:Postal,
+13:u05:Addresses,
+8:u08:memo,
+20:u09:regarding/Postal,
+20:u0A:Postal/Addresses,
+22:u0B:Addresses/Abstract,
+19:u0C:Rules/regarding,
+12:u0D:Postal/0,
+9:u10:rules,
+13:u11:regarding,
+10:u12:postal,
+13:u13:addresses,
+6:u21:Po,
+7:u22:Pos,
+8:u23:Post,
+8:u33:stal,
+12:u00:Registry,
+9:u01:Rules,
+13:u02:regarding,
+10:u03:Postal,
+13:u04:Addresses,
+8:u07:memo,
+20:u09:Postal/Addresses,
+22:u0A:Addresses/Abstract,
+20:u0C:regarding/Postal,
+15:u0D:Addresses/0,
+13:u10:regarding,
+10:u11:postal,
+13:u12:addresses,
+7:u22:Add,
+8:u23:Addr,
+8:u33:sses,
+9:u00:Rules,
+13:u01:regarding,
+10:u02:Postal,
+13:u03:Addresses,
+8:u06:memo,
+22:u09:Addresses/Abstract,
+13:u0B:This/memo,
+20:u0C:Postal/Addresses,
+10:u10:postal,
+13:u11:addresses,
+13:u00:regarding,
+10:u01:Postal,
+13:u02:Addresses,
+8:u05:memo,
+13:u0A:This/memo,
+16:u0B:memo/updates,
+22:u0C:Addresses/Abstract,
+13:u10:addresses,
+10:u00:Postal,
+13:u01:Addresses,
+8:u04:memo,
+12:u08:registry,
+13:u09:This/memo,
+16:u0A:memo/updates,
+15:u0B:updates/the,
+10:u0D:memo/0,
+7:u22:mem,
+8:u23:memo,
+8:u33:memo,
+13:u00:Addresses,
+8:u03:memo,
+12:u07:registry,
+9:u08:rules,
+16:u09:memo/updates,
+15:u0A:updates/the,
+12:u0B:the/IANA,
+13:u0C:This/memo,
+8:u02:memo,
+12:u06:registry,
+9:u07:rules,
+15:u09:updates/the,
+12:u0A:the/IANA,
+17:u0B:IANA/registry,
+16:u0C:memo/updates,
+8:u01:memo,
+12:u05:registry,
+9:u06:rules,
+12:u09:the/IANA,
+17:u0A:IANA/registry,
+18:u0B:registry/rules,
+15:u0C:updates/the,
+8:u00:memo,
+12:u04:registry,
+9:u05:rules,
+17:u09:IANA/registry,
+18:u0A:registry/rules,
+13:u0B:rules/for,
+12:u0C:the/IANA,
+14:u0D:registry/0,
+8:u23:regi,
+12:u03:registry,
+9:u04:rules,
+18:u09:registry/rules,
+13:u0A:rules/for,
+17:u0C:IANA/registry,
+11:u0D:rules/0,
+7:u22:rul,
+8:u23:rule,
+12:u02:registry,
+9:u03:rules,
+13:u09:rules/for,
+18:u0C:registry/rules,
+12:u01:registry,
+9:u02:rules,
+13:u0C:rules/for,
+12:u00:registry,
+9:u01:rules,
+9:u00:rules,
+14:u0B:)/protocol,
+14:u0A:)/protocol,
+14:u0B:protocol/,,
+10:u08:longer,
+14:u09:)/protocol,
+14:u0A:protocol/,,
+8:u0B:,/by,
+10:u07:longer,
+13:u08:requiring,
+14:u09:protocol/,,
+8:u0A:,/by,
+9:u0B:by/no,
+14:u0C:)/protocol,
+10:u06:longer,
+13:u07:requiring,
+8:u09:,/by,
+9:u0A:by/no,
+13:u0B:no/longer,
+14:u0C:protocol/,,
+10:u14:longer,
+10:u05:longer,
+13:u06:requiring,
+10:u08:postal,
+9:u09:by/no,
+13:u0A:no/longer,
+20:u0B:longer/requiring,
+8:u0C:,/by,
+10:u13:longer,
+13:u14:requiring,
+10:u04:longer,
+13:u05:requiring,
+10:u07:postal,
+13:u08:addresses,
+13:u09:no/longer,
+20:u0A:longer/requiring,
+18:u0B:requiring/that,
+9:u0C:by/no,
+12:u0D:longer/0,
+10:u12:longer,
+13:u13:requiring,
+7:u22:lon,
+8:u23:long,
+7:u32:ger,
+8:u33:nger,
+10:u03:longer,
+13:u04:requiring,
+10:u06:postal,
+13:u07:addresses,
+20:u09:longer/requiring,
+18:u0A:requiring/that,
+15:u0B:that/postal,
+13:u0C:no/longer,
+15:u0D:requiring/0,
+10:u11:longer,
+13:u12:requiring,
+10:u02:longer,
+13:u03:requiring,
+10:u05:postal,
+13:u06:addresses,
+12:u08:included,
+18:u09:requiring/that,
+15:u0A:that/postal,
+20:u0B:postal/addresses,
+20:u0C:longer/requiring,
+10:u10:longer,
+13:u11:requiring,
+10:u01:longer,
+13:u02:requiring,
+10:u04:postal,
+13:u05:addresses,
+12:u07:included,
+15:u09:that/postal,
+20:u0A:postal/addresses,
+16:u0B:addresses/be,
+18:u0C:requiring/that,
+12:u0D:postal/0,
+13:u10:requiring,
+6:u21:po,
+7:u22:pos,
+8:u23:post,
+10:u00:longer,
+13:u01:requiring,
+10:u03:postal,
+13:u04:addresses,
+12:u06:included,
+11:u08:contact,
+20:u09:postal/addresses,
+16:u0A:addresses/be,
+15:u0B:be/included,
+15:u0C:that/postal,
+15:u0D:addresses/0,
+12:u14:included,
+13:u00:requiring,
+10:u02:postal,
+13:u03:addresses,
+12:u05:included,
+11:u07:contact,
+16:u09:addresses/be,
+15:u0A:be/included,
+15:u0B:included/in,
+20:u0C:postal/addresses,
+12:u13:included,
+10:u01:postal,
+13:u02:addresses,
+12:u04:included,
+11:u06:contact,
+15:u09:be/included,
+15:u0A:included/in,
+14:u0B:in/contact,
+16:u0C:addresses/be,
+14:u0D:included/0,
+12:u12:included,
+11:u14:contact,
+8:u33:uded,
+10:u00:postal,
+13:u01:addresses,
+12:u03:included,
+11:u05:contact,
+15:u09:included/in,
+14:u0A:in/contact,
+23:u0B:contact/information,
+15:u0C:be/included,
+12:u11:included,
+11:u13:contact,
+13:u00:addresses,
+12:u02:included,
+11:u04:contact,
+14:u09:in/contact,
+23:u0A:contact/information,
+17:u0B:information/.,
+15:u0C:included/in,
+13:u0D:contact/0,
+12:u10:included,
+11:u12:contact,
+8:u33:tact,
+12:u01:included,
+11:u03:contact,
+23:u09:contact/information,
+17:u0A:information/.,
+14:u0C:in/contact,
+11:u11:contact,
+12:u00:included,
+11:u02:contact,
+17:u09:information/.,
+23:u0C:contact/information,
+11:u10:contact,
+11:u01:contact,
+17:u0C:information/.,
+11:u00:contact,
+15:u0B:updates/RFC,
+15:u0A:updates/RFC,
+12:u0B:RFC/3219,
+15:u09:updates/RFC,
+12:u0A:RFC/3219,
+10:u0B:3219/.,
+12:u09:RFC/3219,
+10:u0A:3219/.,
+15:u0C:updates/RFC,
+10:u09:3219/.,
+12:u0C:RFC/3219,
+10:u0C:3219/.,
+11:u0B:This/is,
+11:u0A:This/is,
+9:u0B:is/an,
+11:u09:This/is,
+9:u0A:is/an,
+9:u09:is/an,
+11:u0C:This/is,
+9:u0C:is/an,
+18:u0B:Track/document,
+18:u0A:Track/document,
+18:u09:Track/document,
+18:u0C:Track/document,
+17:u0B:It/represents,
+17:u0A:It/represents,
+17:u09:It/represents,
+17:u0C:It/represents,
+18:u0B:IETF/community,
+18:u0A:IETF/community,
+18:u09:IETF/community,
+10:u08:public,
+10:u0B:It/has,
+18:u0C:IETF/community,
+10:u07:public,
+10:u0A:It/has,
+16:u0B:has/received,
+10:u06:public,
+10:u09:It/has,
+16:u0A:has/received,
+19:u0B:received/public,
+10:u14:public,
+10:u05:public,
+16:u09:has/received,
+19:u0A:received/public,
+17:u0B:public/review,
+10:u0C:It/has,
+10:u13:public,
+10:u04:public,
+8:u08:been,
+19:u09:received/public,
+17:u0A:public/review,
+14:u0B:review/and,
+16:u0C:has/received,
+12:u0D:public/0,
+10:u12:public,
+7:u32:lic,
+8:u33:blic,
+10:u03:public,
+8:u07:been,
+17:u09:public/review,
+14:u0A:review/and,
+19:u0C:received/public,
+10:u11:public,
+10:u02:public,
+8:u06:been,
+14:u09:review/and,
+12:u0B:has/been,
+17:u0C:public/review,
+10:u10:public,
+8:u14:been,
+10:u01:public,
+8:u05:been,
+12:u0A:has/been,
+17:u0B:been/approved,
+14:u0C:review/and,
+8:u13:been,
+10:u00:public,
+8:u04:been,
+12:u09:has/been,
+17:u0A:been/approved,
+10:u0D:been/0,
+8:u12:been,
+7:u22:bee,
+8:u23:been,
+8:u33:been,
+8:u03:been,
+17:u09:been/approved,
+12:u0C:has/been,
+8:u11:been,
+8:u02:been,
+17:u0C:been/approved,
+8:u10:been,
+8:u01:been,
+8:u00:been,
+12:u08:Steering,
+12:u07:Steering,
+12:u06:Steering,
+24:u0B:Engineering/Steering,
+12:u14:steering,
+12:u05:Steering,
+8:u08:IESG,
+24:u0A:Engineering/Steering,
+18:u0B:Steering/Group,
+12:u13:steering,
+12:u04:Steering,
+8:u07:IESG,
+24:u09:Engineering/Steering,
+18:u0A:Steering/Group,
+14:u0D:Steering/0,
+12:u12:steering,
+7:u22:Ste,
+8:u23:Stee,
+12:u03:Steering,
+8:u06:IESG,
+18:u09:Steering/Group,
+10:u0B:(/IESG,
+24:u0C:Engineering/Steering,
+12:u11:steering,
+8:u14:iesg,
+12:u02:Steering,
+8:u05:IESG,
+11:u08:Further,
+10:u0A:(/IESG,
+10:u0B:IESG/),
+18:u0C:Steering/Group,
+12:u10:steering,
+8:u13:iesg,
+12:u01:Steering,
+8:u04:IESG,
+11:u07:Further,
+10:u09:(/IESG,
+10:u0A:IESG/),
+10:u0D:IESG/0,
+8:u12:iesg,
+7:u22:IES,
+8:u23:IESG,
+7:u32:ESG,
+8:u33:IESG,
+12:u00:Steering,
+8:u03:IESG,
+11:u06:Further,
+10:u09:IESG/),
+13:u0B:./Further,
+10:u0C:(/IESG,
+8:u11:iesg,
+11:u14:further,
+8:u02:IESG,
+11:u05:Further,
+13:u0A:./Further,
+23:u0B:Further/information,
+10:u0C:IESG/),
+8:u10:iesg,
+11:u13:further,
+8:u01:IESG,
+11:u04:Further,
+13:u09:./Further,
+23:u0A:Further/information,
+18:u0B:information/on,
+13:u0D:Further/0,
+11:u12:further,
+7:u22:Fur,
+8:u23:Furt,
+8:u00:IESG,
+11:u03:Further,
+23:u09:Further/information,
+18:u0A:information/on,
+15:u0B:on/Internet,
+13:u0C:./Further,
+11:u11:further,
+11:u02:Further,
+13:u08:available,
+18:u09:information/on,
+15:u0A:on/Internet,
+23:u0C:Further/information,
+11:u10:further,
+11:u01:Further,
+13:u07:available,
+15:u09:on/Internet,
+16:u0B:Standards/is,
+18:u0C:information/on,
+11:u00:Further,
+13:u06:available,
+16:u0A:Standards/is,
+16:u0B:is/available,
+15:u0C:on/Internet,
+13:u14:available,
+13:u05:available,
+16:u09:Standards/is,
+16:u0A:is/available,
+16:u0B:available/in,
+13:u13:available,
+13:u04:available,
+16:u09:is/available,
+16:u0A:available/in,
+16:u0C:Standards/is,
+15:u0D:available/0,
+13:u12:available,
+6:u21:av,
+7:u22:ava,
+8:u23:avai,
+13:u03:available,
+16:u09:available/in,
+16:u0C:is/available,
+13:u11:available,
+13:u02:available,
+16:u0C:available/in,
+13:u10:available,
+13:u01:available,
+13:u00:available,
+11:u08:rfc8602,
+11:u07:rfc8602,
+11:u06:rfc8602,
+13:u0B://rfc8602,
+11:u14:rfc8602,
+11:u05:rfc8602,
+13:u0A://rfc8602,
+13:u0B:rfc8602/.,
+11:u13:rfc8602,
+11:u04:rfc8602,
+13:u09://rfc8602,
+13:u0A:rfc8602/.,
+13:u0D:rfc8602/0,
+11:u12:rfc8602,
+11:u03:rfc8602,
+13:u09:rfc8602/.,
+13:u0C://rfc8602,
+11:u11:rfc8602,
+11:u02:rfc8602,
+13:u0C:rfc8602/.,
+11:u10:rfc8602,
+11:u01:rfc8602,
+11:u00:rfc8602,
+8:u08:Jari,
+8:u07:Jari,
+8:u06:Jari,
+10:u0B:./Jari,
+8:u14:jari,
+8:u05:Jari,
+14:u08:Kauniainen,
+10:u0A:./Jari,
+14:u0B:Jari/Arkko,
+8:u13:jari,
+8:u04:Jari,
+14:u07:Kauniainen,
+9:u08:02700,
+10:u09:./Jari,
+14:u0A:Jari/Arkko,
+18:u0B:Arkko/Ericsson,
+10:u0D:Jari/0,
+8:u12:jari,
+7:u22:Jar,
+8:u23:Jari,
+6:u31:ri,
+7:u32:ari,
+8:u33:Jari,
+8:u03:Jari,
+14:u06:Kauniainen,
+9:u07:02700,
+14:u09:Jari/Arkko,
+18:u0A:Arkko/Ericsson,
+23:u0B:Ericsson/Kauniainen,
+10:u0C:./Jari,
+8:u11:jari,
+14:u14:kauniainen,
+8:u02:Jari,
+14:u05:Kauniainen,
+9:u06:02700,
+18:u09:Arkko/Ericsson,
+23:u0A:Ericsson/Kauniainen,
+20:u0B:Kauniainen/02700,
+14:u0C:Jari/Arkko,
+8:u10:jari,
+14:u13:kauniainen,
+9:u14:02700,
+8:u01:Jari,
+14:u04:Kauniainen,
+9:u05:02700,
+23:u09:Ericsson/Kauniainen,
+20:u0A:Kauniainen/02700,
+17:u0B:02700/Finland,
+18:u0C:Arkko/Ericsson,
+16:u0D:Kauniainen/0,
+14:u12:kauniainen,
+9:u13:02700,
+7:u22:Kau,
+8:u23:Kaun,
+7:u32:nen,
+8:u33:inen,
+8:u00:Jari,
+14:u03:Kauniainen,
+9:u04:02700,
+8:u08:jari,
+20:u09:Kauniainen/02700,
+17:u0A:02700/Finland,
+23:u0C:Ericsson/Kauniainen,
+11:u0D:02700/0,
+14:u11:kauniainen,
+9:u12:02700,
+7:u22:027,
+8:u23:0270,
+7:u32:700,
+8:u33:2700,
+14:u02:Kauniainen,
+9:u03:02700,
+8:u07:jari,
+17:u09:02700/Finland,
+20:u0C:Kauniainen/02700,
+14:u10:kauniainen,
+9:u11:02700,
+14:u01:Kauniainen,
+9:u02:02700,
+8:u06:jari,
+15:u08:arkko@piuha,
+10:u0B::/jari,
+17:u0C:02700/Finland,
+9:u10:02700,
+14:u00:Kauniainen,
+9:u01:02700,
+8:u05:jari,
+15:u07:arkko@piuha,
+10:u0A::/jari,
+10:u0B:jari/.,
+9:u00:02700,
+8:u04:jari,
+15:u06:arkko@piuha,
+10:u09::/jari,
+10:u0A:jari/.,
+17:u0B:./arkko@piuha,
+10:u0D:jari/0,
+15:u14:arkko@piuha,
+5:u20:j,
+6:u21:ja,
+7:u22:jar,
+8:u23:jari,
+8:u33:jari,
+8:u03:jari,
+15:u05:arkko@piuha,
+7:u08:Ted,
+10:u09:jari/.,
+17:u0A:./arkko@piuha,
+17:u0B:arkko@piuha/.,
+10:u0C::/jari,
+15:u13:arkko@piuha,
+8:u02:jari,
+15:u04:arkko@piuha,
+7:u07:Ted,
+17:u09:./arkko@piuha,
+17:u0A:arkko@piuha/.,
+10:u0C:jari/.,
+17:u0D:arkko@piuha/0,
+15:u12:arkko@piuha,
+7:u22:ark,
+8:u23:arkk,
+6:u31:ha,
+7:u32:uha,
+8:u33:iuha,
+8:u01:jari,
+15:u03:arkko@piuha,
+7:u06:Ted,
+17:u09:arkko@piuha/.,
+11:u0B:net/Ted,
+17:u0C:./arkko@piuha,
+15:u11:arkko@piuha,
+7:u14:ted,
+8:u00:jari,
+15:u02:arkko@piuha,
+7:u05:Ted,
+11:u0A:net/Ted,
+14:u0B:Ted/Hardie,
+17:u0C:arkko@piuha/.,
+15:u10:arkko@piuha,
+7:u13:ted,
+15:u01:arkko@piuha,
+7:u03:net,
+7:u04:Ted,
+7:u08:ted,
+11:u09:net/Ted,
+14:u0A:Ted/Hardie,
+16:u0B:Hardie/Email,
+9:u0C:./net,
+9:u0D:Ted/0,
+7:u11:net,
+7:u12:ted,
+7:u22:Ted,
+7:u23:Ted,
+7:u32:Ted,
+7:u33:Ted,
+15:u00:arkko@piuha,
+7:u02:net,
+7:u03:Ted,
+7:u07:ted,
+14:u09:Ted/Hardie,
+16:u0A:Hardie/Email,
+11:u0C:net/Ted,
+7:u10:net,
+7:u11:ted,
+7:u01:net,
+7:u02:Ted,
+7:u06:ted,
+14:u08:ietf@gmail,
+16:u09:Hardie/Email,
+9:u0B::/ted,
+14:u0C:Ted/Hardie,
+7:u10:ted,
+7:u00:net,
+7:u01:Ted,
+7:u05:ted,
+14:u07:ietf@gmail,
+9:u0A::/ted,
+9:u0B:ted/.,
+16:u0C:Hardie/Email,
+7:u00:Ted,
+7:u04:ted,
+14:u06:ietf@gmail,
+9:u09::/ted,
+9:u0A:ted/.,
+16:u0B:./ietf@gmail,
+9:u0D:ted/0,
+14:u14:ietf@gmail,
+7:u22:ted,
+7:u23:ted,
+7:u33:ted,
+7:u03:ted,
+14:u05:ietf@gmail,
+9:u09:ted/.,
+16:u0A:./ietf@gmail,
+16:u0B:ietf@gmail/.,
+9:u0C::/ted,
+14:u13:ietf@gmail,
+7:u02:ted,
+14:u04:ietf@gmail,
+16:u09:./ietf@gmail,
+16:u0A:ietf@gmail/.,
+9:u0C:ted/.,
+16:u0D:ietf@gmail/0,
+14:u12:ietf@gmail,
+7:u01:ted,
+14:u03:ietf@gmail,
+16:u09:ietf@gmail/.,
+16:u0C:./ietf@gmail,
+14:u11:ietf@gmail,
+7:u00:ted,
+14:u02:ietf@gmail,
+16:u0C:ietf@gmail/.,
+14:u10:ietf@gmail,
+17:u09:_x-1/Internet,
+17:u0D:Internet/_x-1,
+17:u0C:_x-1/Internet,
+5:u08:S,
+5:u07:S,
+5:u06:S,
+9:u08:Banks,
+7:u0B:)/S,
+5:u05:S,
+9:u07:Banks,
+7:u0A:)/S,
+7:u0B:S/.,
+5:u04:S,
+9:u06:Banks,
+7:u09:)/S,
+7:u0A:S/.,
+11:u0B:./Banks,
+7:u0D:S/0,
+9:u14:banks,
+5:u21:S,
+5:u22:S,
+5:u23:S,
+5:u31:S,
+5:u32:S,
+5:u33:S,
+5:u03:S,
+9:u05:Banks,
+7:u09:S/.,
+11:u0A:./Banks,
+17:u0B:Banks/Request,
+7:u0C:)/S,
+9:u13:banks,
+5:u02:S,
+9:u04:Banks,
+11:u09:./Banks,
+17:u0A:Banks/Request,
+7:u0C:S/.,
+11:u0D:Banks/0,
+9:u12:banks,
+7:u22:Ban,
+8:u23:Bank,
+7:u32:nks,
+8:u33:anks,
+5:u01:S,
+9:u03:Banks,
+8:u08:7654,
+17:u09:Banks/Request,
+11:u0C:./Banks,
+9:u11:banks,
+5:u00:S,
+9:u02:Banks,
+8:u07:7654,
+7:u08:VSS,
+17:u0C:Banks/Request,
+9:u10:banks,
+9:u01:Banks,
+8:u06:7654,
+7:u07:VSS,
+14:u08:Monitoring,
+10:u0B::/7654,
+8:u14:7654,
+9:u00:Banks,
+8:u05:7654,
+7:u06:VSS,
+14:u07:Monitoring,
+10:u0A::/7654,
+12:u0B:7654/VSS,
+8:u13:7654,
+7:u14:vss,
+8:u04:7654,
+7:u05:VSS,
+14:u06:Monitoring,
+10:u09::/7654,
+12:u0A:7654/VSS,
+18:u0B:VSS/Monitoring,
+10:u0D:7654/0,
+8:u12:7654,
+7:u13:vss,
+14:u14:monitoring,
+6:u21:76,
+7:u22:765,
+8:u23:7654,
+6:u31:54,
+7:u32:654,
+8:u33:7654,
+8:u03:7654,
+7:u04:VSS,
+14:u05:Monitoring,
+12:u09:7654/VSS,
+18:u0A:VSS/Monitoring,
+23:u0B:Monitoring/Category,
+10:u0C::/7654,
+9:u0D:VSS/0,
+8:u11:7654,
+7:u12:vss,
+14:u13:monitoring,
+6:u21:VS,
+7:u22:VSS,
+7:u23:VSS,
+6:u31:SS,
+7:u32:VSS,
+7:u33:VSS,
+8:u02:7654,
+7:u03:VSS,
+14:u04:Monitoring,
+18:u09:VSS/Monitoring,
+23:u0A:Monitoring/Category,
+12:u0C:7654/VSS,
+16:u0D:Monitoring/0,
+8:u10:7654,
+7:u11:vss,
+14:u12:monitoring,
+8:u23:Moni,
+8:u01:7654,
+7:u02:VSS,
+14:u03:Monitoring,
+23:u09:Monitoring/Category,
+18:u0C:VSS/Monitoring,
+7:u10:vss,
+14:u11:monitoring,
+8:u00:7654,
+7:u01:VSS,
+14:u02:Monitoring,
+12:u08:Calabria,
+19:u0B:Informational/F,
+23:u0C:Monitoring/Category,
+14:u10:monitoring,
+7:u00:VSS,
+14:u01:Monitoring,
+12:u07:Calabria,
+19:u0A:Informational/F,
+14:u00:Monitoring,
+12:u06:Calabria,
+19:u09:Informational/F,
+14:u0B:./Calabria,
+12:u14:calabria,
+12:u05:Calabria,
+14:u0A:./Calabria,
+17:u0B:Calabria/ISSN,
+19:u0C:Informational/F,
+12:u13:calabria,
+12:u04:Calabria,
+14:u09:./Calabria,
+17:u0A:Calabria/ISSN,
+14:u0D:Calabria/0,
+12:u12:calabria,
+8:u23:Cala,
+7:u32:ria,
+8:u33:bria,
+12:u03:Calabria,
+17:u09:Calabria/ISSN,
+14:u0C:./Calabria,
+12:u11:calabria,
+12:u02:Calabria,
+17:u0C:Calabria/ISSN,
+12:u10:calabria,
+12:u01:Calabria,
+12:u00:Calabria,
+5:u08:G,
+14:u0B:1721/Cisco,
+14:u0A:1721/Cisco,
+11:u08:Czirjak,
+14:u09:1721/Cisco,
+13:u0B:Systems/G,
+11:u07:Czirjak,
+13:u0A:Systems/G,
+14:u0C:1721/Cisco,
+11:u06:Czirjak,
+13:u09:Systems/G,
+13:u0B:./Czirjak,
+11:u14:czirjak,
+11:u05:Czirjak,
+10:u08:Machat,
+13:u0A:./Czirjak,
+13:u0B:Czirjak/R,
+13:u0C:Systems/G,
+11:u13:czirjak,
+11:u04:Czirjak,
+10:u07:Machat,
+11:u08:Juniper,
+13:u09:./Czirjak,
+13:u0A:Czirjak/R,
+13:u0D:Czirjak/0,
+11:u12:czirjak,
+6:u21:Cz,
+7:u22:Czi,
+8:u23:Czir,
+6:u31:ak,
+7:u32:jak,
+8:u33:rjak,
+11:u03:Czirjak,
+10:u06:Machat,
+11:u07:Juniper,
+13:u09:Czirjak/R,
+12:u0B:./Machat,
+13:u0C:./Czirjak,
+11:u11:czirjak,
+10:u14:machat,
+11:u02:Czirjak,
+10:u05:Machat,
+11:u06:Juniper,
+11:u08:October,
+12:u0A:./Machat,
+18:u0B:Machat/Juniper,
+13:u0C:Czirjak/R,
+11:u10:czirjak,
+10:u13:machat,
+11:u14:juniper,
+11:u01:Czirjak,
+10:u04:Machat,
+11:u05:Juniper,
+11:u07:October,
+8:u08:2015,
+12:u09:./Machat,
+18:u0A:Machat/Juniper,
+20:u0B:Juniper/Networks,
+12:u0D:Machat/0,
+10:u12:machat,
+11:u13:juniper,
+7:u22:Mac,
+8:u23:Mach,
+8:u33:chat,
+11:u00:Czirjak,
+10:u03:Machat,
+11:u04:Juniper,
+11:u06:October,
+8:u07:2015,
+16:u08:Benchmarking,
+18:u09:Machat/Juniper,
+20:u0A:Juniper/Networks,
+20:u0B:Networks/October,
+12:u0C:./Machat,
+13:u0D:Juniper/0,
+10:u11:machat,
+11:u12:juniper,
+11:u14:october,
+8:u23:Juni,
+7:u32:per,
+8:u33:iper,
+10:u02:Machat,
+11:u03:Juniper,
+11:u05:October,
+8:u06:2015,
+16:u07:Benchmarking,
+15:u08:Methodology,
+20:u09:Juniper/Networks,
+20:u0A:Networks/October,
+16:u0B:October/2015,
+18:u0C:Machat/Juniper,
+10:u10:machat,
+11:u11:juniper,
+11:u13:october,
+8:u14:2015,
+10:u01:Machat,
+11:u02:Juniper,
+11:u04:October,
+8:u05:2015,
+16:u06:Benchmarking,
+15:u07:Methodology,
+20:u09:Networks/October,
+16:u0A:October/2015,
+21:u0B:2015/Benchmarking,
+20:u0C:Juniper/Networks,
+13:u0D:October/0,
+11:u10:juniper,
+11:u12:october,
+8:u13:2015,
+16:u14:benchmarking,
+6:u21:Oc,
+7:u22:Oct,
+8:u23:Octo,
+8:u33:ober,
+10:u00:Machat,
+11:u01:Juniper,
+11:u03:October,
+8:u04:2015,
+16:u05:Benchmarking,
+15:u06:Methodology,
+6:u08:In,
+16:u09:October/2015,
+21:u0A:2015/Benchmarking,
+28:u0B:Benchmarking/Methodology,
+20:u0C:Networks/October,
+10:u0D:2015/0,
+11:u11:october,
+8:u12:2015,
+16:u13:benchmarking,
+15:u14:methodology,
+8:u23:2015,
+7:u32:015,
+8:u33:2015,
+11:u00:Juniper,
+11:u02:October,
+8:u03:2015,
+16:u04:Benchmarking,
+15:u05:Methodology,
+6:u07:In,
+21:u09:2015/Benchmarking,
+28:u0A:Benchmarking/Methodology,
+19:u0B:Methodology/for,
+16:u0C:October/2015,
+18:u0D:Benchmarking/0,
+11:u10:october,
+8:u11:2015,
+16:u12:benchmarking,
+15:u13:methodology,
+7:u22:Ben,
+8:u23:Benc,
+11:u01:October,
+8:u02:2015,
+16:u03:Benchmarking,
+15:u04:Methodology,
+6:u06:In,
+28:u09:Benchmarking/Methodology,
+19:u0A:Methodology/for,
+10:u0B:for/In,
+21:u0C:2015/Benchmarking,
+17:u0D:Methodology/0,
+8:u10:2015,
+16:u11:benchmarking,
+15:u12:methodology,
+7:u22:Met,
+8:u23:Meth,
+6:u31:gy,
+7:u32:ogy,
+8:u33:logy,
+11:u00:October,
+8:u01:2015,
+16:u02:Benchmarking,
+15:u03:Methodology,
+6:u05:In,
+12:u08:Software,
+19:u09:Methodology/for,
+10:u0A:for/In,
+8:u0B:In/-,
+28:u0C:Benchmarking/Methodology,
+16:u10:benchmarking,
+15:u11:methodology,
+8:u00:2015,
+16:u01:Benchmarking,
+15:u02:Methodology,
+6:u04:In,
+12:u07:Software,
+11:u08:Upgrade,
+10:u09:for/In,
+8:u0A:In/-,
+13:u0B:-/Service,
+19:u0C:Methodology/for,
+8:u0D:In/0,
+15:u10:methodology,
+6:u22:In,
+6:u23:In,
+6:u32:In,
+6:u33:In,
+16:u00:Benchmarking,
+15:u01:Methodology,
+6:u03:In,
+12:u06:Software,
+11:u07:Upgrade,
+8:u09:In/-,
+13:u0A:-/Service,
+20:u0B:Service/Software,
+10:u0C:for/In,
+12:u14:software,
+15:u00:Methodology,
+6:u02:In,
+12:u05:Software,
+11:u06:Upgrade,
+8:u08:ISSU,
+13:u09:-/Service,
+20:u0A:Service/Software,
+20:u0B:Software/Upgrade,
+8:u0C:In/-,
+13:u0D:Service/1,
+12:u13:software,
+11:u14:upgrade,
+6:u01:In,
+12:u04:Software,
+11:u05:Upgrade,
+8:u07:ISSU,
+20:u09:Service/Software,
+20:u0A:Software/Upgrade,
+13:u0B:Upgrade/(,
+13:u0C:-/Service,
+14:u0D:Software/0,
+12:u12:software,
+11:u13:upgrade,
+7:u22:Sof,
+8:u23:Soft,
+8:u33:ware,
+6:u00:In,
+12:u03:Software,
+11:u04:Upgrade,
+8:u06:ISSU,
+20:u09:Software/Upgrade,
+13:u0A:Upgrade/(,
+10:u0B:(/ISSU,
+20:u0C:Service/Software,
+13:u0D:Upgrade/0,
+12:u11:software,
+11:u12:upgrade,
+8:u14:issu,
+7:u22:Upg,
+8:u23:Upgr,
+7:u32:ade,
+8:u33:rade,
+12:u02:Software,
+11:u03:Upgrade,
+8:u05:ISSU,
+10:u08:Modern,
+13:u09:Upgrade/(,
+10:u0A:(/ISSU,
+10:u0B:ISSU/),
+20:u0C:Software/Upgrade,
+12:u10:software,
+11:u11:upgrade,
+8:u13:issu,
+12:u01:Software,
+11:u02:Upgrade,
+8:u04:ISSU,
+10:u07:Modern,
+14:u08:forwarding,
+10:u09:(/ISSU,
+10:u0A:ISSU/),
+14:u0B:)/Abstract,
+13:u0C:Upgrade/(,
+10:u0D:ISSU/0,
+11:u10:upgrade,
+8:u12:issu,
+8:u23:ISSU,
+6:u31:SU,
+7:u32:SSU,
+8:u33:ISSU,
+12:u00:Software,
+11:u01:Upgrade,
+8:u03:ISSU,
+10:u06:Modern,
+14:u07:forwarding,
+11:u08:devices,
+10:u09:ISSU/),
+14:u0A:)/Abstract,
+19:u0B:Abstract/Modern,
+10:u0C:(/ISSU,
+8:u11:issu,
+10:u14:modern,
+11:u00:Upgrade,
+8:u02:ISSU,
+10:u05:Modern,
+14:u06:forwarding,
+11:u07:devices,
+11:u08:attempt,
+14:u09:)/Abstract,
+19:u0A:Abstract/Modern,
+21:u0B:Modern/forwarding,
+10:u0C:ISSU/),
+8:u10:issu,
+10:u13:modern,
+14:u14:forwarding,
+8:u01:ISSU,
+10:u04:Modern,
+14:u05:forwarding,
+11:u06:devices,
+11:u07:attempt,
+19:u09:Abstract/Modern,
+21:u0A:Modern/forwarding,
+22:u0B:forwarding/devices,
+14:u0C:)/Abstract,
+12:u0D:Modern/0,
+10:u12:modern,
+14:u13:forwarding,
+11:u14:devices,
+7:u22:Mod,
+8:u23:Mode,
+7:u32:ern,
+8:u33:dern,
+8:u00:ISSU,
+10:u03:Modern,
+14:u04:forwarding,
+11:u05:devices,
+11:u06:attempt,
+12:u08:minimize,
+21:u09:Modern/forwarding,
+22:u0A:forwarding/devices,
+19:u0B:devices/attempt,
+19:u0C:Abstract/Modern,
+16:u0D:forwarding/0,
+10:u11:modern,
+14:u12:forwarding,
+11:u13:devices,
+11:u14:attempt,
+10:u02:Modern,
+14:u03:forwarding,
+11:u04:devices,
+11:u05:attempt,
+12:u07:minimize,
+22:u09:forwarding/devices,
+19:u0A:devices/attempt,
+14:u0B:attempt/to,
+21:u0C:Modern/forwarding,
+13:u0D:devices/0,
+10:u10:modern,
+14:u11:forwarding,
+11:u12:devices,
+11:u13:attempt,
+8:u33:ices,
+10:u01:Modern,
+14:u02:forwarding,
+11:u03:devices,
+11:u04:attempt,
+12:u06:minimize,
+19:u09:devices/attempt,
+14:u0A:attempt/to,
+15:u0B:to/minimize,
+22:u0C:forwarding/devices,
+13:u0D:attempt/0,
+14:u10:forwarding,
+11:u11:devices,
+11:u12:attempt,
+12:u14:minimize,
+8:u23:atte,
+6:u31:pt,
+7:u32:mpt,
+8:u33:empt,
+10:u00:Modern,
+14:u01:forwarding,
+11:u02:devices,
+11:u03:attempt,
+12:u05:minimize,
+14:u09:attempt/to,
+15:u0A:to/minimize,
+16:u0B:minimize/any,
+19:u0C:devices/attempt,
+11:u10:devices,
+11:u11:attempt,
+12:u13:minimize,
+14:u00:forwarding,
+11:u01:devices,
+11:u02:attempt,
+12:u04:minimize,
+15:u09:to/minimize,
+16:u0A:minimize/any,
+15:u0B:any/control,
+14:u0C:attempt/to,
+14:u0D:minimize/0,
+11:u10:attempt,
+12:u12:minimize,
+7:u22:min,
+8:u23:mini,
+6:u31:ze,
+7:u32:ize,
+8:u33:mize,
+11:u00:devices,
+11:u01:attempt,
+12:u03:minimize,
+16:u09:minimize/any,
+15:u0A:any/control,
+13:u0B:control/-,
+15:u0C:to/minimize,
+12:u11:minimize,
+11:u00:attempt,
+12:u02:minimize,
+15:u09:any/control,
+13:u0A:control/-,
+9:u0B:-/and,
+16:u0C:minimize/any,
+12:u10:minimize,
+12:u01:minimize,
+13:u09:control/-,
+9:u0A:-/and,
+12:u0B:and/data,
+15:u0C:any/control,
+12:u00:minimize,
+15:u08:disruptions,
+9:u09:-/and,
+12:u0A:and/data,
+10:u0B:data/-,
+13:u0C:control/-,
+9:u0D:and/1,
+15:u07:disruptions,
+9:u08:while,
+12:u09:and/data,
+10:u0A:data/-,
+11:u0B:-/plane,
+9:u0C:-/and,
+15:u06:disruptions,
+9:u07:while,
+14:u08:performing,
+10:u09:data/-,
+11:u0A:-/plane,
+21:u0B:plane/disruptions,
+12:u0C:and/data,
+15:u14:disruptions,
+15:u05:disruptions,
+9:u06:while,
+14:u07:performing,
+11:u08:planned,
+11:u09:-/plane,
+21:u0A:plane/disruptions,
+21:u0B:disruptions/while,
+10:u0C:data/-,
+11:u0D:plane/1,
+15:u13:disruptions,
+15:u04:disruptions,
+9:u05:while,
+14:u06:performing,
+11:u07:planned,
+12:u08:software,
+21:u09:plane/disruptions,
+21:u0A:disruptions/while,
+20:u0B:while/performing,
+11:u0C:-/plane,
+17:u0D:disruptions/0,
+15:u12:disruptions,
+8:u23:disr,
+15:u03:disruptions,
+9:u04:while,
+14:u05:performing,
+11:u06:planned,
+12:u07:software,
+11:u08:changes,
+21:u09:disruptions/while,
+20:u0A:while/performing,
+22:u0B:performing/planned,
+21:u0C:plane/disruptions,
+11:u0D:while/0,
+15:u11:disruptions,
+11:u14:planned,
+8:u23:whil,
+15:u02:disruptions,
+9:u03:while,
+14:u04:performing,
+11:u05:planned,
+12:u06:software,
+11:u07:changes,
+20:u09:while/performing,
+22:u0A:performing/planned,
+20:u0B:planned/software,
+21:u0C:disruptions/while,
+16:u0D:performing/0,
+15:u10:disruptions,
+11:u13:planned,
+8:u23:perf,
+15:u01:disruptions,
+9:u02:while,
+14:u03:performing,
+11:u04:planned,
+12:u05:software,
+11:u06:changes,
+16:u08:implementing,
+22:u09:performing/planned,
+20:u0A:planned/software,
+20:u0B:software/changes,
+20:u0C:while/performing,
+13:u0D:planned/0,
+11:u12:planned,
+8:u33:nned,
+15:u00:disruptions,
+9:u01:while,
+14:u02:performing,
+11:u03:planned,
+12:u04:software,
+11:u05:changes,
+16:u07:implementing,
+20:u09:planned/software,
+20:u0A:software/changes,
+14:u0B:changes/by,
+22:u0C:performing/planned,
+14:u0D:software/0,
+11:u11:planned,
+7:u22:sof,
+8:u23:soft,
+9:u00:while,
+14:u01:performing,
+11:u02:planned,
+12:u03:software,
+11:u04:changes,
+16:u06:implementing,
+13:u08:technique,
+20:u09:software/changes,
+14:u0A:changes/by,
+19:u0B:by/implementing,
+20:u0C:planned/software,
+13:u0D:changes/0,
+11:u10:planned,
+16:u14:implementing,
+14:u00:performing,
+11:u01:planned,
+12:u02:software,
+11:u03:changes,
+16:u05:implementing,
+13:u07:technique,
+12:u08:commonly,
+14:u09:changes/by,
+19:u0A:by/implementing,
+18:u0B:implementing/a,
+20:u0C:software/changes,
+16:u13:implementing,
+11:u00:planned,
+12:u01:software,
+11:u02:changes,
+16:u04:implementing,
+13:u06:technique,
+12:u07:commonly,
+9:u08:known,
+19:u09:by/implementing,
+18:u0A:implementing/a,
+15:u0B:a/technique,
+14:u0C:changes/by,
+18:u0D:implementing/0,
+16:u12:implementing,
+13:u14:technique,
+12:u00:software,
+11:u01:changes,
+16:u03:implementing,
+13:u05:technique,
+12:u06:commonly,
+9:u07:known,
+18:u09:implementing/a,
+15:u0A:a/technique,
+22:u0B:technique/commonly,
+19:u0C:by/implementing,
+16:u11:implementing,
+13:u13:technique,
+12:u14:commonly,
+11:u00:changes,
+16:u02:implementing,
+13:u04:technique,
+12:u05:commonly,
+9:u06:known,
+15:u09:a/technique,
+22:u0A:technique/commonly,
+18:u0B:commonly/known,
+18:u0C:implementing/a,
+15:u0D:technique/0,
+16:u10:implementing,
+13:u12:technique,
+12:u13:commonly,
+9:u14:known,
+7:u32:que,
+8:u33:ique,
+16:u01:implementing,
+13:u03:technique,
+12:u04:commonly,
+9:u05:known,
+22:u09:technique/commonly,
+18:u0A:commonly/known,
+12:u0B:known/as,
+15:u0C:a/technique,
+14:u0D:commonly/0,
+13:u11:technique,
+12:u12:commonly,
+9:u13:known,
+16:u00:implementing,
+13:u02:technique,
+12:u03:commonly,
+9:u04:known,
+18:u09:commonly/known,
+12:u0A:known/as,
+9:u0B:as/In,
+22:u0C:technique/commonly,
+11:u0D:known/0,
+13:u10:technique,
+12:u11:commonly,
+9:u12:known,
+5:u20:k,
+6:u21:kn,
+7:u22:kno,
+8:u23:know,
+6:u31:wn,
+7:u32:own,
+8:u33:nown,
+13:u01:technique,
+12:u02:commonly,
+9:u03:known,
+12:u09:known/as,
+9:u0A:as/In,
+18:u0C:commonly/known,
+12:u10:commonly,
+9:u11:known,
+13:u00:technique,
+12:u01:commonly,
+9:u02:known,
+9:u09:as/In,
+12:u0C:known/as,
+9:u10:known,
+12:u00:commonly,
+9:u01:known,
+9:u0C:as/In,
+9:u00:known,
+15:u0B:specifies/a,
+10:u08:common,
+15:u0A:specifies/a,
+9:u0B:a/set,
+10:u07:common,
+17:u08:methodologies,
+15:u09:specifies/a,
+9:u0A:a/set,
+10:u06:common,
+17:u07:methodologies,
+9:u09:a/set,
+13:u0B:of/common,
+15:u0C:specifies/a,
+10:u14:common,
+10:u05:common,
+17:u06:methodologies,
+13:u0A:of/common,
+24:u0B:common/methodologies,
+9:u0C:a/set,
+10:u13:common,
+17:u14:methodologies,
+10:u04:common,
+17:u05:methodologies,
+12:u08:designed,
+13:u09:of/common,
+24:u0A:common/methodologies,
+21:u0B:methodologies/and,
+12:u0D:common/0,
+10:u12:common,
+17:u13:methodologies,
+7:u32:mon,
+8:u33:mmon,
+10:u03:common,
+17:u04:methodologies,
+12:u07:designed,
+24:u09:common/methodologies,
+21:u0A:methodologies/and,
+18:u0B:and/procedures,
+13:u0C:of/common,
+19:u0D:methodologies/0,
+10:u11:common,
+17:u12:methodologies,
+8:u33:gies,
+10:u02:common,
+17:u03:methodologies,
+12:u06:designed,
+16:u08:characterize,
+21:u09:methodologies/and,
+18:u0A:and/procedures,
+23:u0B:procedures/designed,
+24:u0C:common/methodologies,
+10:u10:common,
+17:u11:methodologies,
+12:u14:designed,
+10:u01:common,
+17:u02:methodologies,
+12:u05:designed,
+16:u07:characterize,
+18:u09:and/procedures,
+23:u0A:procedures/designed,
+15:u0B:designed/to,
+21:u0C:methodologies/and,
+17:u10:methodologies,
+12:u13:designed,
+10:u00:common,
+17:u01:methodologies,
+12:u04:designed,
+16:u06:characterize,
+23:u09:procedures/designed,
+15:u0A:designed/to,
+19:u0B:to/characterize,
+18:u0C:and/procedures,
+14:u0D:designed/0,
+12:u12:designed,
+16:u14:characterize,
+8:u33:gned,
+17:u00:methodologies,
+12:u03:designed,
+16:u05:characterize,
+15:u09:designed/to,
+19:u0A:to/characterize,
+20:u0B:characterize/the,
+23:u0C:procedures/designed,
+12:u11:designed,
+16:u13:characterize,
+12:u02:designed,
+16:u04:characterize,
+19:u09:to/characterize,
+20:u0A:characterize/the,
+15:u0C:designed/to,
+18:u0D:characterize/0,
+12:u10:designed,
+16:u12:characterize,
+8:u23:char,
+8:u33:rize,
+12:u01:designed,
+16:u03:characterize,
+20:u09:characterize/the,
+20:u0B:overall/behavior,
+19:u0C:to/characterize,
+16:u11:characterize,
+12:u00:designed,
+16:u02:characterize,
+10:u08:Device,
+20:u0A:overall/behavior,
+15:u0B:behavior/of,
+20:u0C:characterize/the,
+16:u10:characterize,
+16:u01:characterize,
+10:u07:Device,
+9:u08:Under,
+20:u09:overall/behavior,
+15:u0A:behavior/of,
+16:u00:characterize,
+10:u06:Device,
+9:u07:Under,
+8:u08:Test,
+15:u09:behavior/of,
+12:u0B:a/Device,
+20:u0C:overall/behavior,
+10:u05:Device,
+9:u06:Under,
+8:u07:Test,
+12:u0A:a/Device,
+16:u0B:Device/Under,
+15:u0C:behavior/of,
+10:u04:Device,
+9:u05:Under,
+8:u06:Test,
+7:u08:DUT,
+12:u09:a/Device,
+16:u0A:Device/Under,
+14:u0B:Under/Test,
+12:u0D:Device/0,
+8:u14:test,
+7:u22:Dev,
+8:u23:Devi,
+10:u03:Device,
+9:u04:Under,
+8:u05:Test,
+7:u07:DUT,
+16:u09:Device/Under,
+14:u0A:Under/Test,
+10:u0B:Test/(,
+12:u0C:a/Device,
+11:u0D:Under/0,
+8:u13:test,
+7:u22:Und,
+8:u23:Unde,
+10:u02:Device,
+9:u03:Under,
+8:u04:Test,
+7:u06:DUT,
+14:u09:Under/Test,
+10:u0A:Test/(,
+9:u0B:(/DUT,
+16:u0C:Device/Under,
+10:u0D:Test/0,
+8:u12:test,
+7:u14:dut,
+7:u22:Tes,
+8:u23:Test,
+8:u33:Test,
+10:u01:Device,
+9:u02:Under,
+8:u03:Test,
+7:u05:DUT,
+10:u09:Test/(,
+9:u0A:(/DUT,
+9:u0B:DUT/),
+14:u0C:Under/Test,
+8:u11:test,
+7:u13:dut,
+10:u00:Device,
+9:u01:Under,
+8:u02:Test,
+7:u04:DUT,
+9:u09:(/DUT,
+9:u0A:DUT/),
+7:u0B:)/,,
+10:u0C:Test/(,
+9:u0D:DUT/0,
+8:u10:test,
+7:u12:dut,
+6:u21:DU,
+7:u22:DUT,
+7:u23:DUT,
+6:u31:UT,
+7:u32:DUT,
+7:u33:DUT,
+9:u00:Under,
+8:u01:Test,
+7:u03:DUT,
+9:u09:DUT/),
+7:u0A:)/,,
+13:u0B:,/subject,
+9:u0C:(/DUT,
+7:u11:dut,
+8:u00:Test,
+7:u02:DUT,
+7:u09:)/,,
+13:u0A:,/subject,
+9:u0C:DUT/),
+7:u10:dut,
+7:u01:DUT,
+9:u08:event,
+13:u09:,/subject,
+7:u0C:)/,,
+7:u00:DUT,
+9:u07:event,
+11:u0B:an/ISSU,
+13:u0C:,/subject,
+9:u06:event,
+11:u0A:an/ISSU,
+14:u0B:ISSU/event,
+9:u14:event,
+9:u05:event,
+11:u09:an/ISSU,
+14:u0A:ISSU/event,
+11:u0B:event/.,
+9:u13:event,
+9:u04:event,
+14:u09:ISSU/event,
+11:u0A:event/.,
+11:u0C:an/ISSU,
+11:u0D:event/0,
+9:u12:event,
+8:u33:vent,
+9:u03:event,
+11:u09:event/.,
+14:u0C:ISSU/event,
+9:u11:event,
+9:u02:event,
+11:u0C:event/.,
+9:u10:event,
+9:u01:event,
+9:u00:event,
+17:u08:informational,
+17:u07:informational,
+12:u08:purposes,
+17:u06:informational,
+12:u07:purposes,
+21:u0B:for/informational,
+17:u05:informational,
+12:u06:purposes,
+21:u0A:for/informational,
+26:u0B:informational/purposes,
+12:u14:purposes,
+17:u04:informational,
+12:u05:purposes,
+21:u09:for/informational,
+26:u0A:informational/purposes,
+14:u0B:purposes/.,
+19:u0D:informational/0,
+12:u13:purposes,
+17:u03:informational,
+12:u04:purposes,
+26:u09:informational/purposes,
+14:u0A:purposes/.,
+21:u0C:for/informational,
+14:u0D:purposes/0,
+12:u12:purposes,
+7:u22:pur,
+8:u23:purp,
+17:u02:informational,
+12:u03:purposes,
+14:u09:purposes/.,
+26:u0C:informational/purposes,
+12:u11:purposes,
+17:u01:informational,
+12:u02:purposes,
+14:u0C:purposes/.,
+12:u10:purposes,
+17:u00:informational,
+12:u01:purposes,
+12:u00:purposes,
+7:u08:Not,
+7:u07:Not,
+7:u08:all,
+7:u06:Not,
+7:u07:all,
+9:u0B:./Not,
+7:u05:Not,
+7:u06:all,
+9:u0A:./Not,
+11:u0B:Not/all,
+7:u04:Not,
+7:u05:all,
+9:u09:./Not,
+11:u0A:Not/all,
+17:u0B:all/documents,
+9:u0D:Not/0,
+7:u23:Not,
+7:u32:Not,
+7:u33:Not,
+7:u03:Not,
+7:u04:all,
+11:u09:Not/all,
+17:u0A:all/documents,
+22:u0B:documents/approved,
+9:u0C:./Not,
+9:u0D:all/0,
+7:u23:all,
+7:u33:all,
+7:u02:Not,
+7:u03:all,
+17:u09:all/documents,
+22:u0A:documents/approved,
+15:u0B:approved/by,
+11:u0C:Not/all,
+7:u01:Not,
+7:u02:all,
+22:u09:documents/approved,
+15:u0A:approved/by,
+17:u0C:all/documents,
+7:u00:Not,
+7:u01:all,
+15:u09:approved/by,
+12:u0B:the/IESG,
+22:u0C:documents/approved,
+7:u00:all,
+13:u08:candidate,
+12:u0A:the/IESG,
+12:u0B:IESG/are,
+15:u0C:approved/by,
+13:u07:candidate,
+12:u09:the/IESG,
+12:u0A:IESG/are,
+9:u0B:are/a,
+13:u06:candidate,
+12:u09:IESG/are,
+9:u0A:are/a,
+15:u0B:a/candidate,
+12:u0C:the/IESG,
+13:u14:candidate,
+13:u05:candidate,
+9:u09:are/a,
+15:u0A:a/candidate,
+17:u0B:candidate/for,
+12:u0C:IESG/are,
+13:u13:candidate,
+13:u04:candidate,
+15:u09:a/candidate,
+17:u0A:candidate/for,
+9:u0C:are/a,
+15:u0D:candidate/0,
+13:u12:candidate,
+13:u03:candidate,
+17:u09:candidate/for,
+15:u0C:a/candidate,
+13:u11:candidate,
+13:u02:candidate,
+17:u0C:candidate/for,
+13:u10:candidate,
+13:u01:candidate,
+13:u00:candidate,
+8:u08:5741,
+8:u07:5741,
+8:u06:5741,
+12:u0B:RFC/5741,
+8:u14:5741,
+8:u05:5741,
+12:u0A:RFC/5741,
+10:u0B:5741/.,
+8:u13:5741,
+8:u04:5741,
+12:u09:RFC/5741,
+10:u0A:5741/.,
+10:u0D:5741/0,
+8:u12:5741,
+6:u21:57,
+7:u22:574,
+8:u23:5741,
+7:u32:741,
+8:u33:5741,
+8:u03:5741,
+10:u09:5741/.,
+12:u0C:RFC/5741,
+8:u11:5741,
+8:u02:5741,
+10:u0C:5741/.,
+8:u10:5741,
+8:u01:5741,
+8:u00:5741,
+11:u08:rfc7654,
+11:u07:rfc7654,
+11:u06:rfc7654,
+13:u0B://rfc7654,
+11:u14:rfc7654,
+11:u05:rfc7654,
+13:u0A://rfc7654,
+13:u0B:rfc7654/.,
+11:u13:rfc7654,
+11:u04:rfc7654,
+13:u09://rfc7654,
+13:u0A:rfc7654/.,
+13:u0D:rfc7654/0,
+11:u12:rfc7654,
+8:u23:rfc7,
+11:u03:rfc7654,
+13:u09:rfc7654/.,
+11:u0B:Banks/,,
+13:u0C://rfc7654,
+11:u11:rfc7654,
+11:u02:rfc7654,
+11:u0A:Banks/,,
+13:u0C:rfc7654/.,
+11:u10:rfc7654,
+11:u01:rfc7654,
+11:u09:Banks/,,
+11:u00:rfc7654,
+11:u0C:Banks/,,
+19:u0B:./Informational,
+19:u0A:./Informational,
+19:u0B:Informational/[,
+19:u09:./Informational,
+19:u0A:Informational/[,
+19:u09:Informational/[,
+19:u0C:./Informational,
+19:u0C:Informational/[,
+12:u0B:RFC/7654,
+12:u0A:RFC/7654,
+21:u0B:7654/Benchmarking,
+12:u09:RFC/7654,
+21:u0A:7654/Benchmarking,
+25:u0B:Benchmarking/Software,
+21:u09:7654/Benchmarking,
+25:u0A:Benchmarking/Software,
+12:u0C:RFC/7654,
+25:u09:Benchmarking/Software,
+19:u0B:Upgrade/October,
+21:u0C:7654/Benchmarking,
+19:u0A:Upgrade/October,
+25:u0C:Benchmarking/Software,
+19:u09:Upgrade/October,
+18:u0B:2015/Copyright,
+18:u0A:2015/Copyright,
+19:u0C:Upgrade/October,
+18:u09:2015/Copyright,
+18:u0C:2015/Copyright,
+10:u0B:)/2015,
+10:u0A:)/2015,
+13:u0B:2015/IETF,
+10:u09:)/2015,
+13:u0A:2015/IETF,
+13:u09:2015/IETF,
+10:u0C:)/2015,
+13:u0C:2015/IETF,
+9:u08:Sarah,
+9:u07:Sarah,
+9:u06:Sarah,
+11:u0B:./Sarah,
+9:u14:sarah,
+9:u05:Sarah,
+11:u0A:./Sarah,
+15:u0B:Sarah/Banks,
+9:u13:sarah,
+9:u04:Sarah,
+11:u09:./Sarah,
+15:u0A:Sarah/Banks,
+13:u0B:Banks/VSS,
+11:u0D:Sarah/0,
+9:u12:sarah,
+7:u22:Sar,
+8:u23:Sara,
+6:u31:ah,
+7:u32:rah,
+8:u33:arah,
+9:u03:Sarah,
+15:u09:Sarah/Banks,
+13:u0A:Banks/VSS,
+11:u0C:./Sarah,
+9:u11:sarah,
+9:u02:Sarah,
+20:u08:sbanks@encrypted,
+13:u09:Banks/VSS,
+20:u0B:Monitoring/Email,
+15:u0C:Sarah/Banks,
+9:u10:sarah,
+9:u01:Sarah,
+20:u07:sbanks@encrypted,
+20:u0A:Monitoring/Email,
+13:u0C:Banks/VSS,
+9:u00:Sarah,
+20:u06:sbanks@encrypted,
+20:u09:Monitoring/Email,
+22:u0B::/sbanks@encrypted,
+20:u14:sbanks@encrypted,
+20:u05:sbanks@encrypted,
+12:u08:Fernando,
+22:u0A::/sbanks@encrypted,
+22:u0B:sbanks@encrypted/.,
+20:u0C:Monitoring/Email,
+20:u13:sbanks@encrypted,
+20:u04:sbanks@encrypted,
+12:u07:Fernando,
+22:u09::/sbanks@encrypted,
+22:u0A:sbanks@encrypted/.,
+22:u0D:sbanks@encrypted/0,
+20:u12:sbanks@encrypted,
+6:u21:sb,
+7:u22:sba,
+8:u23:sban,
+8:u33:pted,
+20:u03:sbanks@encrypted,
+12:u06:Fernando,
+22:u09:sbanks@encrypted/.,
+16:u0B:net/Fernando,
+22:u0C::/sbanks@encrypted,
+20:u11:sbanks@encrypted,
+12:u14:fernando,
+20:u02:sbanks@encrypted,
+12:u05:Fernando,
+16:u0A:net/Fernando,
+21:u0B:Fernando/Calabria,
+22:u0C:sbanks@encrypted/.,
+20:u10:sbanks@encrypted,
+12:u13:fernando,
+20:u01:sbanks@encrypted,
+12:u04:Fernando,
+16:u09:net/Fernando,
+21:u0A:Fernando/Calabria,
+18:u0B:Calabria/Cisco,
+14:u0D:Fernando/0,
+12:u12:fernando,
+7:u22:Fer,
+8:u23:Fern,
+6:u31:do,
+7:u32:ndo,
+8:u33:ando,
+20:u00:sbanks@encrypted,
+12:u03:Fernando,
+21:u09:Fernando/Calabria,
+18:u0A:Calabria/Cisco,
+16:u0C:net/Fernando,
+12:u11:fernando,
+12:u02:Fernando,
+18:u08:fcalabri@cisco,
+18:u09:Calabria/Cisco,
+17:u0B:Systems/Email,
+21:u0C:Fernando/Calabria,
+12:u10:fernando,
+12:u01:Fernando,
+18:u07:fcalabri@cisco,
+17:u0A:Systems/Email,
+18:u0C:Calabria/Cisco,
+12:u00:Fernando,
+18:u06:fcalabri@cisco,
+17:u09:Systems/Email,
+20:u0B::/fcalabri@cisco,
+18:u14:fcalabri@cisco,
+18:u05:fcalabri@cisco,
+8:u08:Gery,
+20:u0A::/fcalabri@cisco,
+20:u0B:fcalabri@cisco/.,
+17:u0C:Systems/Email,
+18:u13:fcalabri@cisco,
+18:u04:fcalabri@cisco,
+8:u07:Gery,
+20:u09::/fcalabri@cisco,
+20:u0A:fcalabri@cisco/.,
+20:u0D:fcalabri@cisco/0,
+18:u12:fcalabri@cisco,
+6:u21:fc,
+7:u22:fca,
+8:u23:fcal,
+18:u03:fcalabri@cisco,
+8:u06:Gery,
+20:u09:fcalabri@cisco/.,
+12:u0B:com/Gery,
+20:u0C::/fcalabri@cisco,
+18:u11:fcalabri@cisco,
+8:u14:gery,
+18:u02:fcalabri@cisco,
+8:u05:Gery,
+12:u0A:com/Gery,
+16:u0B:Gery/Czirjak,
+20:u0C:fcalabri@cisco/.,
+18:u10:fcalabri@cisco,
+8:u13:gery,
+18:u01:fcalabri@cisco,
+8:u04:Gery,
+12:u09:com/Gery,
+16:u0A:Gery/Czirjak,
+19:u0B:Czirjak/Juniper,
+10:u0D:Gery/0,
+8:u12:gery,
+6:u21:Ge,
+7:u22:Ger,
+8:u23:Gery,
+8:u33:Gery,
+18:u00:fcalabri@cisco,
+8:u03:Gery,
+16:u09:Gery/Czirjak,
+19:u0A:Czirjak/Juniper,
+12:u0C:com/Gery,
+8:u11:gery,
+8:u02:Gery,
+20:u08:gczirjak@juniper,
+19:u09:Czirjak/Juniper,
+18:u0B:Networks/Email,
+16:u0C:Gery/Czirjak,
+8:u10:gery,
+8:u01:Gery,
+20:u07:gczirjak@juniper,
+18:u0A:Networks/Email,
+19:u0C:Czirjak/Juniper,
+8:u00:Gery,
+20:u06:gczirjak@juniper,
+18:u09:Networks/Email,
+22:u0B::/gczirjak@juniper,
+20:u14:gczirjak@juniper,
+20:u05:gczirjak@juniper,
+10:u08:Ramdas,
+22:u0A::/gczirjak@juniper,
+22:u0B:gczirjak@juniper/.,
+18:u0C:Networks/Email,
+20:u13:gczirjak@juniper,
+20:u04:gczirjak@juniper,
+10:u07:Ramdas,
+22:u09::/gczirjak@juniper,
+22:u0A:gczirjak@juniper/.,
+22:u0D:gczirjak@juniper/0,
+20:u12:gczirjak@juniper,
+6:u21:gc,
+7:u22:gcz,
+8:u23:gczi,
+20:u03:gczirjak@juniper,
+10:u06:Ramdas,
+22:u09:gczirjak@juniper/.,
+14:u0B:net/Ramdas,
+22:u0C::/gczirjak@juniper,
+20:u11:gczirjak@juniper,
+10:u14:ramdas,
+20:u02:gczirjak@juniper,
+10:u05:Ramdas,
+14:u0A:net/Ramdas,
+17:u0B:Ramdas/Machat,
+22:u0C:gczirjak@juniper/.,
+20:u10:gczirjak@juniper,
+10:u13:ramdas,
+20:u01:gczirjak@juniper,
+10:u04:Ramdas,
+14:u09:net/Ramdas,
+17:u0A:Ramdas/Machat,
+12:u0D:Ramdas/0,
+10:u12:ramdas,
+7:u22:Ram,
+8:u23:Ramd,
+7:u32:das,
+8:u33:mdas,
+20:u00:gczirjak@juniper,
+10:u03:Ramdas,
+17:u09:Ramdas/Machat,
+14:u0C:net/Ramdas,
+10:u11:ramdas,
+10:u02:Ramdas,
+19:u08:rmachat@juniper,
+17:u0C:Ramdas/Machat,
+10:u10:ramdas,
+10:u01:Ramdas,
+19:u07:rmachat@juniper,
+10:u00:Ramdas,
+19:u06:rmachat@juniper,
+21:u0B::/rmachat@juniper,
+19:u14:rmachat@juniper,
+19:u05:rmachat@juniper,
+21:u0A::/rmachat@juniper,
+21:u0B:rmachat@juniper/.,
+19:u13:rmachat@juniper,
+19:u04:rmachat@juniper,
+21:u09::/rmachat@juniper,
+21:u0A:rmachat@juniper/.,
+21:u0D:rmachat@juniper/0,
+19:u12:rmachat@juniper,
+6:u21:rm,
+7:u22:rma,
+8:u23:rmac,
+19:u03:rmachat@juniper,
+21:u09:rmachat@juniper/.,
+21:u0C::/rmachat@juniper,
+19:u11:rmachat@juniper,
+19:u02:rmachat@juniper,
+21:u0C:rmachat@juniper/.,
+19:u10:rmachat@juniper,
+12:u08:Kompella,
+13:u09:_x-1/MPLS,
+11:u0A:MPLS/WG,
+8:u0B:WG/K,
+13:u0D:MPLS/_x-1,
+15:uA4:_x-1/ALLCAP,
+12:u07:Kompella,
+11:u09:MPLS/WG,
+8:u0A:WG/K,
+13:u0C:_x-1/MPLS,
+12:u06:Kompella,
+8:u09:WG/K,
+14:u0B:./Kompella,
+11:u0C:MPLS/WG,
+12:u14:kompella,
+12:u05:Kompella,
+14:u0A:./Kompella,
+21:u0B:Kompella/Internet,
+8:u0C:WG/K,
+12:u13:kompella,
+12:u04:Kompella,
+14:u09:./Kompella,
+21:u0A:Kompella/Internet,
+14:u0D:Kompella/0,
+12:u12:kompella,
+6:u21:Ko,
+7:u22:Kom,
+8:u23:Komp,
+6:u31:la,
+7:u32:lla,
+8:u33:ella,
+12:u03:Kompella,
+21:u09:Kompella/Internet,
+14:u0C:./Kompella,
+12:u11:kompella,
+12:u02:Kompella,
+17:u0B:Draft/Juniper,
+21:u0C:Kompella/Internet,
+12:u10:kompella,
+12:u01:Kompella,
+17:u0A:Draft/Juniper,
+12:u00:Kompella,
+17:u09:Draft/Juniper,
+14:u0B:Networks/,,
+14:u0A:Networks/,,
+17:u0C:Draft/Juniper,
+14:u09:Networks/,,
+14:u0C:Networks/,,
+13:u08:Contreras,
+11:u0B:Track/L,
+13:u07:Contreras,
+11:u0A:Track/L,
+13:u06:Contreras,
+11:u09:Track/L,
+15:u0B:./Contreras,
+13:u14:contreras,
+13:u05:Contreras,
+9:u08:April,
+15:u0A:./Contreras,
+21:u0B:Contreras/Expires,
+11:u0C:Track/L,
+13:u13:contreras,
+13:u04:Contreras,
+9:u07:April,
+6:u08:25,
+15:u09:./Contreras,
+21:u0A:Contreras/Expires,
+15:u0D:Contreras/0,
+13:u12:contreras,
+7:u32:ras,
+8:u33:eras,
+13:u03:Contreras,
+9:u06:April,
+6:u07:25,
+21:u09:Contreras/Expires,
+11:u0B::/April,
+15:u0C:./Contreras,
+13:u11:contreras,
+9:u14:april,
+13:u02:Contreras,
+9:u05:April,
+6:u06:25,
+11:u0A::/April,
+12:u0B:April/25,
+21:u0C:Contreras/Expires,
+13:u10:contreras,
+9:u13:april,
+6:u14:25,
+13:u01:Contreras,
+9:u04:April,
+6:u05:25,
+14:u08:Telefonica,
+11:u09::/April,
+12:u0A:April/25,
+8:u0B:25/,,
+11:u0D:April/0,
+9:u12:april,
+6:u13:25,
+6:u21:Ap,
+7:u22:Apr,
+8:u23:Apri,
+7:u32:ril,
+8:u33:pril,
+13:u00:Contreras,
+9:u03:April,
+6:u04:25,
+14:u07:Telefonica,
+12:u09:April/25,
+8:u0A:25/,,
+11:u0C::/April,
+8:u0D:25/0,
+9:u11:april,
+6:u12:25,
+6:u21:25,
+6:u22:25,
+6:u23:25,
+6:u32:25,
+6:u33:25,
+9:u02:April,
+6:u03:25,
+14:u06:Telefonica,
+8:u09:25/,,
+19:u0B:2020/Telefonica,
+12:u0C:April/25,
+9:u10:april,
+6:u11:25,
+14:u14:telefonica,
+9:u01:April,
+6:u02:25,
+14:u05:Telefonica,
+19:u0A:2020/Telefonica,
+22:u0B:Telefonica/October,
+8:u0C:25/,,
+6:u10:25,
+14:u13:telefonica,
+9:u00:April,
+6:u01:25,
+14:u04:Telefonica,
+19:u09:2020/Telefonica,
+22:u0A:Telefonica/October,
+14:u0B:October/23,
+16:u0D:Telefonica/0,
+14:u12:telefonica,
+8:u33:nica,
+6:u00:25,
+14:u03:Telefonica,
+13:u08:Resilient,
+22:u09:Telefonica/October,
+14:u0A:October/23,
+19:u0C:2020/Telefonica,
+14:u11:telefonica,
+14:u02:Telefonica,
+13:u07:Resilient,
+14:u09:October/23,
+22:u0C:Telefonica/October,
+14:u10:telefonica,
+14:u01:Telefonica,
+13:u06:Resilient,
+9:u08:Rings,
+18:u0B:2019/Resilient,
+14:u0C:October/23,
+13:u14:resilient,
+14:u00:Telefonica,
+13:u05:Resilient,
+9:u07:Rings,
+18:u0A:2019/Resilient,
+18:u0B:Resilient/MPLS,
+13:u13:resilient,
+13:u04:Resilient,
+9:u06:Rings,
+18:u09:2019/Resilient,
+18:u0A:Resilient/MPLS,
+14:u0B:MPLS/Rings,
+15:u0D:Resilient/0,
+13:u12:resilient,
+9:u14:rings,
+8:u23:Resi,
+13:u03:Resilient,
+9:u05:Rings,
+18:u09:Resilient/MPLS,
+14:u0A:MPLS/Rings,
+15:u0B:Rings/draft,
+18:u0C:2019/Resilient,
+13:u11:resilient,
+9:u13:rings,
+13:u02:Resilient,
+9:u04:Rings,
+14:u09:MPLS/Rings,
+15:u0A:Rings/draft,
+18:u0C:Resilient/MPLS,
+11:u0D:Rings/0,
+13:u10:resilient,
+9:u12:rings,
+6:u21:Ri,
+7:u22:Rin,
+8:u23:Ring,
+6:u31:gs,
+7:u32:ngs,
+8:u33:ings,
+13:u01:Resilient,
+9:u03:Rings,
+15:u09:Rings/draft,
+14:u0C:MPLS/Rings,
+9:u11:rings,
+13:u00:Resilient,
+9:u02:Rings,
+15:u0C:Rings/draft,
+9:u10:rings,
+9:u01:Rings,
+7:u08:rmr,
+9:u00:Rings,
+7:u07:rmr,
+7:u06:rmr,
+6:u08:12,
+9:u0B:-/rmr,
+7:u14:rmr,
+7:u05:rmr,
+6:u07:12,
+9:u0A:-/rmr,
+9:u0B:rmr/-,
+7:u13:rmr,
+7:u04:rmr,
+6:u06:12,
+9:u09:-/rmr,
+9:u0A:rmr/-,
+8:u0B:-/12,
+9:u0D:rmr/1,
+7:u12:rmr,
+6:u14:12,
+7:u22:rmr,
+7:u23:rmr,
+6:u31:mr,
+7:u32:rmr,
+7:u33:rmr,
+7:u03:rmr,
+6:u05:12,
+9:u09:rmr/-,
+8:u0A:-/12,
+15:u0B:12/Abstract,
+9:u0C:-/rmr,
+7:u11:rmr,
+6:u13:12,
+7:u02:rmr,
+6:u04:12,
+8:u09:-/12,
+15:u0A:12/Abstract,
+9:u0C:rmr/-,
+8:u0D:12/1,
+7:u10:rmr,
+6:u12:12,
+6:u21:12,
+6:u22:12,
+6:u23:12,
+6:u32:12,
+6:u33:12,
+7:u01:rmr,
+6:u03:12,
+15:u09:12/Abstract,
+8:u0C:-/12,
+6:u11:12,
+7:u00:rmr,
+6:u02:12,
+15:u0C:12/Abstract,
+6:u10:12,
+6:u01:12,
+6:u00:12,
+11:u0B:the/use,
+11:u0A:the/use,
+10:u0B:use/of,
+11:u09:the/use,
+10:u0A:use/of,
+10:u09:use/of,
+12:u0B:the/MPLS,
+11:u0C:the/use,
+12:u0A:the/MPLS,
+16:u0B:MPLS/control,
+10:u0C:use/of,
+10:u08:planes,
+12:u09:the/MPLS,
+16:u0A:MPLS/control,
+15:u0B:control/and,
+10:u07:planes,
+16:u09:MPLS/control,
+15:u0A:control/and,
+12:u0C:the/MPLS,
+10:u06:planes,
+8:u08:ring,
+15:u09:control/and,
+15:u0B:data/planes,
+16:u0C:MPLS/control,
+10:u14:planes,
+10:u05:planes,
+8:u07:ring,
+14:u08:topologies,
+15:u0A:data/planes,
+13:u0B:planes/on,
+15:u0C:control/and,
+10:u13:planes,
+10:u04:planes,
+8:u06:ring,
+14:u07:topologies,
+15:u09:data/planes,
+13:u0A:planes/on,
+11:u0B:on/ring,
+12:u0D:planes/0,
+10:u12:planes,
+8:u14:ring,
+10:u03:planes,
+8:u05:ring,
+14:u06:topologies,
+13:u09:planes/on,
+11:u0A:on/ring,
+19:u0B:ring/topologies,
+15:u0C:data/planes,
+10:u11:planes,
+8:u13:ring,
+14:u14:topologies,
+10:u02:planes,
+8:u04:ring,
+14:u05:topologies,
+11:u09:on/ring,
+19:u0A:ring/topologies,
+16:u0B:topologies/.,
+13:u0C:planes/on,
+10:u0D:ring/0,
+10:u10:planes,
+8:u12:ring,
+14:u13:topologies,
+7:u22:rin,
+8:u23:ring,
+10:u01:planes,
+8:u03:ring,
+14:u04:topologies,
+19:u09:ring/topologies,
+16:u0A:topologies/.,
+11:u0C:on/ring,
+16:u0D:topologies/0,
+8:u11:ring,
+14:u12:topologies,
+8:u23:topo,
+10:u00:planes,
+8:u02:ring,
+14:u03:topologies,
+11:u08:special,
+16:u09:topologies/.,
+16:u0B:It/describes,
+19:u0C:ring/topologies,
+8:u10:ring,
+14:u11:topologies,
+8:u01:ring,
+14:u02:topologies,
+11:u07:special,
+10:u08:nature,
+16:u0A:It/describes,
+16:u0C:topologies/.,
+14:u10:topologies,
+8:u00:ring,
+14:u01:topologies,
+11:u06:special,
+10:u07:nature,
+16:u09:It/describes,
+15:u0B:the/special,
+11:u14:special,
+14:u00:topologies,
+11:u05:special,
+10:u06:nature,
+9:u08:rings,
+15:u0A:the/special,
+18:u0B:special/nature,
+16:u0C:It/describes,
+11:u13:special,
+10:u14:nature,
+11:u04:special,
+10:u05:nature,
+9:u07:rings,
+15:u09:the/special,
+18:u0A:special/nature,
+13:u0B:nature/of,
+13:u0D:special/0,
+11:u12:special,
+10:u13:nature,
+11:u03:special,
+10:u04:nature,
+9:u06:rings,
+18:u09:special/nature,
+13:u0A:nature/of,
+12:u0B:of/rings,
+15:u0C:the/special,
+12:u0D:nature/0,
+11:u11:special,
+10:u12:nature,
+7:u22:nat,
+8:u23:natu,
+11:u02:special,
+10:u03:nature,
+9:u05:rings,
+12:u08:proceeds,
+13:u09:nature/of,
+12:u0A:of/rings,
+11:u0B:rings/,,
+18:u0C:special/nature,
+11:u10:special,
+10:u11:nature,
+11:u01:special,
+10:u02:nature,
+9:u04:rings,
+12:u07:proceeds,
+12:u09:of/rings,
+11:u0A:rings/,,
+13:u0C:nature/of,
+11:u0D:rings/0,
+10:u10:nature,
+11:u00:special,
+10:u01:nature,
+9:u03:rings,
+12:u06:proceeds,
+8:u08:show,
+11:u09:rings/,,
+16:u0B:and/proceeds,
+12:u0C:of/rings,
+12:u14:proceeds,
+10:u00:nature,
+9:u02:rings,
+12:u05:proceeds,
+8:u07:show,
+16:u0A:and/proceeds,
+15:u0B:proceeds/to,
+11:u0C:rings/,,
+12:u13:proceeds,
+9:u01:rings,
+12:u04:proceeds,
+8:u06:show,
+16:u09:and/proceeds,
+15:u0A:proceeds/to,
+11:u0B:to/show,
+14:u0D:proceeds/0,
+12:u12:proceeds,
+8:u14:show,
+7:u32:eds,
+8:u33:eeds,
+9:u00:rings,
+12:u03:proceeds,
+8:u05:show,
+15:u09:proceeds/to,
+11:u0A:to/show,
+12:u0B:show/how,
+16:u0C:and/proceeds,
+12:u11:proceeds,
+8:u13:show,
+12:u02:proceeds,
+8:u04:show,
+11:u09:to/show,
+12:u0A:show/how,
+12:u0B:how/MPLS,
+15:u0C:proceeds/to,
+10:u0D:show/0,
+12:u10:proceeds,
+8:u12:show,
+8:u23:show,
+8:u33:show,
+12:u01:proceeds,
+8:u03:show,
+12:u09:show/how,
+12:u0A:how/MPLS,
+12:u0B:MPLS/can,
+11:u0C:to/show,
+8:u11:show,
+12:u00:proceeds,
+8:u02:show,
+12:u09:how/MPLS,
+12:u0A:MPLS/can,
+12:u0C:show/how,
+8:u10:show,
+8:u01:show,
+12:u09:MPLS/can,
+18:u0B:be/effectively,
+12:u0C:how/MPLS,
+8:u00:show,
+18:u0A:be/effectively,
+20:u0B:effectively/used,
+12:u0C:MPLS/can,
+18:u09:be/effectively,
+20:u0A:effectively/used,
+11:u0B:used/in,
+20:u09:effectively/used,
+11:u0A:used/in,
+11:u0B:in/such,
+18:u0C:be/effectively,
+11:u09:used/in,
+11:u0A:in/such,
+19:u0B:such/topologies,
+20:u0C:effectively/used,
+11:u09:in/such,
+19:u0A:such/topologies,
+11:u0C:used/in,
+19:u09:such/topologies,
+11:u0C:in/such,
+19:u0C:such/topologies,
+17:u0B:describes/how,
+17:u0A:describes/how,
+14:u08:configured,
+17:u09:describes/how,
+14:u0B:MPLS/rings,
+14:u07:configured,
+14:u0A:MPLS/rings,
+13:u0B:rings/are,
+17:u0C:describes/how,
+14:u06:configured,
+8:u08:auto,
+14:u09:MPLS/rings,
+13:u0A:rings/are,
+18:u0B:are/configured,
+14:u14:configured,
+14:u05:configured,
+8:u07:auto,
+13:u09:rings/are,
+18:u0A:are/configured,
+16:u0B:configured/,,
+14:u0C:MPLS/rings,
+14:u13:configured,
+14:u04:configured,
+8:u06:auto,
+14:u08:discovered,
+18:u09:are/configured,
+16:u0A:configured/,,
+10:u0B:,/auto,
+13:u0C:rings/are,
+16:u0D:configured/0,
+14:u12:configured,
+8:u14:auto,
+8:u33:ured,
+14:u03:configured,
+8:u05:auto,
+14:u07:discovered,
+16:u09:configured/,,
+10:u0A:,/auto,
+10:u0B:auto/-,
+18:u0C:are/configured,
+14:u11:configured,
+8:u13:auto,
+14:u02:configured,
+8:u04:auto,
+14:u06:discovered,
+12:u08:signaled,
+10:u09:,/auto,
+10:u0A:auto/-,
+16:u0B:-/discovered,
+16:u0C:configured/,,
+10:u0D:auto/0,
+14:u10:configured,
+8:u12:auto,
+14:u14:discovered,
+8:u23:auto,
+7:u32:uto,
+8:u33:auto,
+14:u01:configured,
+8:u03:auto,
+14:u05:discovered,
+12:u07:signaled,
+10:u09:auto/-,
+16:u0A:-/discovered,
+18:u0B:discovered/and,
+10:u0C:,/auto,
+8:u11:auto,
+14:u13:discovered,
+14:u00:configured,
+8:u02:auto,
+14:u04:discovered,
+12:u06:signaled,
+16:u09:-/discovered,
+18:u0A:discovered/and,
+16:u0B:and/signaled,
+10:u0C:auto/-,
+16:u0D:discovered/1,
+8:u10:auto,
+14:u12:discovered,
+12:u14:signaled,
+8:u23:disc,
+8:u01:auto,
+14:u03:discovered,
+12:u05:signaled,
+18:u09:discovered/and,
+16:u0A:and/signaled,
+14:u0B:signaled/,,
+16:u0C:-/discovered,
+14:u11:discovered,
+12:u13:signaled,
+8:u00:auto,
+14:u02:discovered,
+12:u04:signaled,
+16:u09:and/signaled,
+14:u0A:signaled/,,
+18:u0C:discovered/and,
+14:u0D:signaled/0,
+14:u10:discovered,
+12:u12:signaled,
+8:u33:aled,
+14:u01:discovered,
+12:u03:signaled,
+14:u09:signaled/,,
+16:u0C:and/signaled,
+12:u11:signaled,
+14:u00:discovered,
+12:u02:signaled,
+14:u0C:signaled/,,
+12:u10:signaled,
+12:u01:signaled,
+10:u0B:as/how,
+12:u00:signaled,
+10:u0A:as/how,
+9:u08:works,
+10:u09:as/how,
+12:u0B:the/data,
+9:u07:works,
+12:u0A:the/data,
+10:u0C:as/how,
+9:u06:works,
+13:u08:Companion,
+12:u09:the/data,
+15:u0B:plane/works,
+9:u14:works,
+9:u05:works,
+13:u07:Companion,
+15:u0A:plane/works,
+11:u0B:works/.,
+12:u0C:the/data,
+9:u13:works,
+9:u04:works,
+13:u06:Companion,
+15:u09:plane/works,
+11:u0A:works/.,
+15:u0B:./Companion,
+11:u0D:works/0,
+9:u12:works,
+13:u14:companion,
+9:u03:works,
+13:u05:Companion,
+11:u09:works/.,
+15:u0A:./Companion,
+23:u0B:Companion/documents,
+15:u0C:plane/works,
+9:u11:works,
+13:u13:companion,
+9:u02:works,
+13:u04:Companion,
+11:u08:details,
+15:u09:./Companion,
+23:u0A:Companion/documents,
+22:u0B:documents/describe,
+11:u0C:works/.,
+15:u0D:Companion/0,
+9:u10:works,
+13:u12:companion,
+8:u33:nion,
+9:u01:works,
+13:u03:Companion,
+11:u07:details,
+23:u09:Companion/documents,
+22:u0A:documents/describe,
+16:u0B:describe/the,
+15:u0C:./Companion,
+13:u11:companion,
+9:u00:works,
+13:u02:Companion,
+11:u06:details,
+13:u08:discovery,
+22:u09:documents/describe,
+16:u0A:describe/the,
+15:u0B:the/details,
+23:u0C:Companion/documents,
+13:u10:companion,
+11:u14:details,
+13:u01:Companion,
+11:u05:details,
+13:u07:discovery,
+16:u09:describe/the,
+15:u0A:the/details,
+14:u0B:details/of,
+22:u0C:documents/describe,
+11:u13:details,
+13:u00:Companion,
+11:u04:details,
+13:u06:discovery,
+13:u08:signaling,
+15:u09:the/details,
+14:u0A:details/of,
+16:u0B:of/discovery,
+16:u0C:describe/the,
+13:u0D:details/0,
+11:u12:details,
+13:u14:discovery,
+7:u22:det,
+8:u23:deta,
+7:u32:ils,
+8:u33:ails,
+11:u03:details,
+13:u05:discovery,
+13:u07:signaling,
+14:u09:details/of,
+16:u0A:of/discovery,
+17:u0B:discovery/and,
+15:u0C:the/details,
+11:u11:details,
+13:u13:discovery,
+11:u02:details,
+13:u04:discovery,
+13:u06:signaling,
+16:u09:of/discovery,
+17:u0A:discovery/and,
+17:u0B:and/signaling,
+14:u0C:details/of,
+15:u0D:discovery/0,
+11:u10:details,
+13:u12:discovery,
+13:u14:signaling,
+11:u01:details,
+13:u03:discovery,
+13:u05:signaling,
+17:u09:discovery/and,
+17:u0A:and/signaling,
+17:u0B:signaling/for,
+16:u0C:of/discovery,
+13:u11:discovery,
+13:u13:signaling,
+11:u00:details,
+13:u02:discovery,
+13:u04:signaling,
+17:u09:and/signaling,
+17:u0A:signaling/for,
+16:u0B:for/specific,
+17:u0C:discovery/and,
+15:u0D:signaling/0,
+13:u10:discovery,
+13:u12:signaling,
+13:u01:discovery,
+13:u03:signaling,
+16:u08:Requirements,
+17:u09:signaling/for,
+16:u0A:for/specific,
+22:u0B:specific/protocols,
+17:u0C:and/signaling,
+13:u11:signaling,
+13:u00:discovery,
+13:u02:signaling,
+16:u07:Requirements,
+12:u08:Language,
+16:u09:for/specific,
+22:u0A:specific/protocols,
+17:u0C:signaling/for,
+13:u10:signaling,
+13:u01:signaling,
+16:u06:Requirements,
+12:u07:Language,
+22:u09:specific/protocols,
+18:u0B:./Requirements,
+16:u0C:for/specific,
+13:u00:signaling,
+16:u05:Requirements,
+12:u06:Language,
+7:u08:key,
+18:u0A:./Requirements,
+25:u0B:Requirements/Language,
+22:u0C:specific/protocols,
+12:u14:language,
+16:u04:Requirements,
+12:u05:Language,
+7:u07:key,
+9:u08:words,
+18:u09:./Requirements,
+25:u0A:Requirements/Language,
+16:u0B:Language/The,
+18:u0D:Requirements/0,
+12:u13:language,
+16:u03:Requirements,
+12:u04:Language,
+7:u06:key,
+9:u07:words,
+25:u09:Requirements/Language,
+16:u0A:Language/The,
+11:u0B:The/key,
+18:u0C:./Requirements,
+14:u0D:Language/0,
+12:u12:language,
+7:u14:key,
+6:u21:La,
+7:u22:Lan,
+8:u23:Lang,
+8:u33:uage,
+16:u02:Requirements,
+12:u03:Language,
+7:u05:key,
+9:u06:words,
+8:u08:MUST,
+16:u09:Language/The,
+11:u0A:The/key,
+13:u0B:key/words,
+25:u0C:Requirements/Language,
+12:u11:language,
+7:u13:key,
+9:u14:words,
+16:u01:Requirements,
+12:u02:Language,
+7:u04:key,
+9:u05:words,
+8:u07:MUST,
+11:u09:The/key,
+13:u0A:key/words,
+11:u0B:words/",
+16:u0C:Language/The,
+9:u0D:key/0,
+12:u10:language,
+7:u12:key,
+9:u13:words,
+6:u21:ke,
+7:u22:key,
+7:u23:key,
+7:u32:key,
+7:u33:key,
+16:u00:Requirements,
+12:u01:Language,
+7:u03:key,
+9:u04:words,
+8:u06:MUST,
+13:u09:key/words,
+11:u0A:words/",
+10:u0B:"/MUST,
+11:u0C:The/key,
+11:u0D:words/0,
+7:u11:key,
+9:u12:words,
+8:u23:word,
+8:u33:ords,
+12:u00:Language,
+7:u02:key,
+9:u03:words,
+8:u05:MUST,
+11:u09:words/",
+10:u0A:"/MUST,
+10:u0B:MUST/",
+13:u0C:key/words,
+7:u10:key,
+9:u11:words,
+7:u01:key,
+9:u02:words,
+8:u04:MUST,
+10:u09:"/MUST,
+10:u0A:MUST/",
+7:u0B:"/,,
+11:u0C:words/",
+10:u0D:MUST/0,
+9:u10:words,
+7:u22:MUS,
+8:u23:MUST,
+6:u31:ST,
+7:u32:UST,
+8:u33:MUST,
+7:u00:key,
+9:u01:words,
+8:u03:MUST,
+7:u08:NOT,
+10:u09:MUST/",
+7:u0A:"/,,
+7:u0B:,/",
+10:u0C:"/MUST,
+9:u00:words,
+8:u02:MUST,
+7:u07:NOT,
+7:u09:"/,,
+7:u0A:,/",
+10:u0C:MUST/",
+8:u01:MUST,
+7:u06:NOT,
+7:u09:,/",
+12:u0B:MUST/NOT,
+7:u0C:"/,,
+8:u00:MUST,
+7:u05:NOT,
+12:u0A:MUST/NOT,
+9:u0B:NOT/",
+7:u0C:,/",
+7:u04:NOT,
+12:u08:REQUIRED,
+12:u09:MUST/NOT,
+9:u0A:NOT/",
+9:u0D:NOT/0,
+7:u22:NOT,
+7:u23:NOT,
+6:u31:OT,
+7:u32:NOT,
+7:u33:NOT,
+7:u03:NOT,
+12:u07:REQUIRED,
+9:u09:NOT/",
+12:u0C:MUST/NOT,
+7:u02:NOT,
+12:u06:REQUIRED,
+14:u0B:"/REQUIRED,
+9:u0C:NOT/",
+12:u14:required,
+7:u01:NOT,
+12:u05:REQUIRED,
+14:u0A:"/REQUIRED,
+14:u0B:REQUIRED/",
+12:u13:required,
+7:u00:NOT,
+12:u04:REQUIRED,
+9:u08:SHALL,
+14:u09:"/REQUIRED,
+14:u0A:REQUIRED/",
+14:u0D:REQUIRED/0,
+12:u12:required,
+6:u21:RE,
+7:u22:REQ,
+8:u23:REQU,
+6:u31:ED,
+7:u32:RED,
+8:u33:IRED,
+12:u03:REQUIRED,
+9:u07:SHALL,
+14:u09:REQUIRED/",
+14:u0C:"/REQUIRED,
+12:u11:required,
+12:u02:REQUIRED,
+9:u06:SHALL,
+11:u0B:"/SHALL,
+14:u0C:REQUIRED/",
+12:u10:required,
+9:u14:shall,
+12:u01:REQUIRED,
+9:u05:SHALL,
+11:u0A:"/SHALL,
+11:u0B:SHALL/",
+9:u13:shall,
+12:u00:REQUIRED,
+9:u04:SHALL,
+11:u09:"/SHALL,
+11:u0A:SHALL/",
+11:u0D:SHALL/0,
+9:u12:shall,
+8:u23:SHAL,
+6:u31:LL,
+7:u32:ALL,
+8:u33:HALL,
+9:u03:SHALL,
+11:u09:SHALL/",
+11:u0C:"/SHALL,
+9:u11:shall,
+9:u02:SHALL,
+11:u0C:SHALL/",
+9:u10:shall,
+9:u01:SHALL,
+13:u0B:SHALL/NOT,
+9:u00:SHALL,
+13:u0A:SHALL/NOT,
+10:u08:SHOULD,
+13:u09:SHALL/NOT,
+10:u07:SHOULD,
+13:u0C:SHALL/NOT,
+10:u06:SHOULD,
+12:u0B:"/SHOULD,
+10:u05:SHOULD,
+12:u0A:"/SHOULD,
+12:u0B:SHOULD/",
+10:u04:SHOULD,
+12:u09:"/SHOULD,
+12:u0A:SHOULD/",
+12:u0D:SHOULD/0,
+7:u22:SHO,
+8:u23:SHOU,
+6:u31:LD,
+7:u32:ULD,
+8:u33:OULD,
+10:u03:SHOULD,
+12:u09:SHOULD/",
+12:u0C:"/SHOULD,
+10:u02:SHOULD,
+12:u0C:SHOULD/",
+10:u01:SHOULD,
+14:u0B:SHOULD/NOT,
+10:u00:SHOULD,
+14:u0A:SHOULD/NOT,
+15:u08:RECOMMENDED,
+14:u09:SHOULD/NOT,
+15:u07:RECOMMENDED,
+14:u0C:SHOULD/NOT,
+15:u06:RECOMMENDED,
+17:u0B:"/RECOMMENDED,
+15:u14:recommended,
+15:u05:RECOMMENDED,
+17:u0A:"/RECOMMENDED,
+17:u0B:RECOMMENDED/",
+15:u13:recommended,
+15:u04:RECOMMENDED,
+7:u08:MAY,
+17:u09:"/RECOMMENDED,
+17:u0A:RECOMMENDED/",
+17:u0D:RECOMMENDED/0,
+15:u12:recommended,
+7:u22:REC,
+8:u23:RECO,
+7:u32:DED,
+8:u33:NDED,
+15:u03:RECOMMENDED,
+7:u07:MAY,
+17:u09:RECOMMENDED/",
+17:u0C:"/RECOMMENDED,
+15:u11:recommended,
+15:u02:RECOMMENDED,
+7:u06:MAY,
+9:u0B:"/MAY,
+17:u0C:RECOMMENDED/",
+15:u10:recommended,
+15:u01:RECOMMENDED,
+7:u05:MAY,
+9:u0A:"/MAY,
+9:u0B:MAY/",
+15:u00:RECOMMENDED,
+7:u04:MAY,
+9:u09:"/MAY,
+9:u0A:MAY/",
+9:u0D:MAY/0,
+7:u22:MAY,
+7:u23:MAY,
+5:u30:Y,
+6:u31:AY,
+7:u32:MAY,
+7:u33:MAY,
+7:u03:MAY,
+12:u08:OPTIONAL,
+9:u09:MAY/",
+9:u0C:"/MAY,
+7:u02:MAY,
+12:u07:OPTIONAL,
+9:u0B:and/",
+9:u0C:MAY/",
+7:u01:MAY,
+12:u06:OPTIONAL,
+9:u0A:and/",
+14:u0B:"/OPTIONAL,
+7:u00:MAY,
+12:u05:OPTIONAL,
+9:u09:and/",
+14:u0A:"/OPTIONAL,
+14:u0B:OPTIONAL/",
+12:u04:OPTIONAL,
+14:u09:"/OPTIONAL,
+14:u0A:OPTIONAL/",
+8:u0B:"/in,
+9:u0C:and/",
+14:u0D:OPTIONAL/0,
+6:u21:OP,
+7:u22:OPT,
+8:u23:OPTI,
+6:u31:AL,
+7:u32:NAL,
+8:u33:ONAL,
+12:u03:OPTIONAL,
+14:u09:OPTIONAL/",
+8:u0A:"/in,
+11:u0B:in/this,
+14:u0C:"/OPTIONAL,
+12:u02:OPTIONAL,
+8:u09:"/in,
+11:u0A:in/this,
+14:u0C:OPTIONAL/",
+12:u01:OPTIONAL,
+11:u09:in/this,
+16:u0B:document/are,
+8:u0C:"/in,
+12:u00:OPTIONAL,
+15:u08:interpreted,
+16:u0A:document/are,
+10:u0B:are/to,
+11:u0C:in/this,
+15:u07:interpreted,
+16:u09:document/are,
+10:u0A:are/to,
+15:u06:interpreted,
+10:u09:are/to,
+18:u0B:be/interpreted,
+16:u0C:document/are,
+15:u14:interpreted,
+15:u05:interpreted,
+18:u0A:be/interpreted,
+18:u0B:interpreted/as,
+10:u0C:are/to,
+15:u13:interpreted,
+15:u04:interpreted,
+18:u09:be/interpreted,
+18:u0A:interpreted/as,
+17:u0D:interpreted/0,
+15:u12:interpreted,
+15:u03:interpreted,
+11:u08:RFC2119,
+18:u09:interpreted/as,
+18:u0C:be/interpreted,
+15:u11:interpreted,
+15:u02:interpreted,
+11:u07:RFC2119,
+8:u0B:in/[,
+18:u0C:interpreted/as,
+15:u10:interpreted,
+15:u01:interpreted,
+11:u06:RFC2119,
+8:u0A:in/[,
+13:u0B:[/RFC2119,
+11:u14:rfc2119,
+15:u00:interpreted,
+11:u05:RFC2119,
+8:u09:in/[,
+13:u0A:[/RFC2119,
+13:u0B:RFC2119/],
+11:u13:rfc2119,
+11:u04:RFC2119,
+13:u09:[/RFC2119,
+13:u0A:RFC2119/],
+7:u0B:]/.,
+8:u0C:in/[,
+13:u0D:RFC2119/0,
+11:u12:rfc2119,
+8:u23:RFC2,
+7:u32:119,
+8:u33:2119,
+11:u03:RFC2119,
+13:u09:RFC2119/],
+7:u0A:]/.,
+13:u0C:[/RFC2119,
+11:u11:rfc2119,
+11:u02:RFC2119,
+7:u09:]/.,
+13:u0C:RFC2119/],
+11:u10:rfc2119,
+11:u01:RFC2119,
+7:u0C:]/.,
+11:u00:RFC2119,
+12:u0B:on/April,
+12:u0A:on/April,
+12:u09:on/April,
+12:u0C:on/April,
+5:u08:&,
+5:u07:&,
+5:u06:&,
+14:u0B:Kompella/&,
+5:u14:&,
+5:u05:&,
+14:u0A:Kompella/&,
+15:u0B:&/Contreras,
+5:u13:&,
+5:u04:&,
+14:u09:Kompella/&,
+15:u0A:&/Contreras,
+7:u0D:&/0,
+5:u12:&,
+5:u20:&,
+5:u21:&,
+5:u22:&,
+5:u23:&,
+5:u30:&,
+5:u31:&,
+5:u32:&,
+5:u33:&,
+5:u03:&,
+15:u09:&/Contreras,
+17:u0B:Expires/April,
+14:u0C:Kompella/&,
+5:u11:&,
+5:u02:&,
+17:u0A:Expires/April,
+15:u0C:&/Contreras,
+5:u10:&,
+5:u01:&,
+17:u09:Expires/April,
+5:u00:&,
+17:u0C:Expires/April,
+19:u0B:Draft/Resilient,
+19:u0A:Draft/Resilient,
+19:u09:Draft/Resilient,
+17:u0B:Rings/October,
+19:u0C:Draft/Resilient,
+17:u0A:Rings/October,
+16:u0B:October/2019,
+17:u09:Rings/October,
+16:u0A:October/2019,
+16:u09:October/2019,
+17:u0C:Rings/October,
+16:u0C:October/2019,
+11:u08:Kireeti,
+11:u07:Kireeti,
+11:u06:Kireeti,
+13:u0B:./Kireeti,
+11:u14:kireeti,
+11:u05:Kireeti,
+13:u0A:./Kireeti,
+20:u0B:Kireeti/Kompella,
+11:u13:kireeti,
+11:u04:Kireeti,
+13:u09:./Kireeti,
+20:u0A:Kireeti/Kompella,
+20:u0B:Kompella/Juniper,
+13:u0D:Kireeti/0,
+11:u12:kireeti,
+6:u21:Ki,
+7:u22:Kir,
+8:u23:Kire,
+6:u31:ti,
+7:u32:eti,
+8:u33:eeti,
+11:u03:Kireeti,
+20:u09:Kireeti/Kompella,
+20:u0A:Kompella/Juniper,
+13:u0C:./Kireeti,
+11:u11:kireeti,
+11:u02:Kireeti,
+20:u09:Kompella/Juniper,
+20:u0C:Kireeti/Kompella,
+11:u10:kireeti,
+11:u01:Kireeti,
+8:u08:1133,
+20:u0C:Kompella/Juniper,
+11:u00:Kireeti,
+8:u07:1133,
+14:u08:Innovation,
+8:u06:1133,
+14:u07:Innovation,
+7:u08:Way,
+10:u0B:./1133,
+8:u14:1133,
+8:u05:1133,
+14:u06:Innovation,
+7:u07:Way,
+13:u08:Sunnyvale,
+10:u0A:./1133,
+19:u0B:1133/Innovation,
+8:u13:1133,
+14:u14:innovation,
+8:u04:1133,
+14:u05:Innovation,
+7:u06:Way,
+13:u07:Sunnyvale,
+10:u09:./1133,
+19:u0A:1133/Innovation,
+18:u0B:Innovation/Way,
+10:u0D:1133/0,
+8:u12:1133,
+14:u13:innovation,
+7:u14:way,
+7:u22:113,
+8:u23:1133,
+6:u31:33,
+7:u32:133,
+8:u33:1133,
+8:u03:1133,
+14:u04:Innovation,
+7:u05:Way,
+13:u06:Sunnyvale,
+6:u08:CA,
+19:u09:1133/Innovation,
+18:u0A:Innovation/Way,
+17:u0B:Way/Sunnyvale,
+10:u0C:./1133,
+16:u0D:Innovation/0,
+8:u11:1133,
+14:u12:innovation,
+7:u13:way,
+13:u14:sunnyvale,
+7:u22:Inn,
+8:u23:Inno,
+8:u02:1133,
+14:u03:Innovation,
+7:u04:Way,
+13:u05:Sunnyvale,
+6:u07:CA,
+9:u08:94089,
+18:u09:Innovation/Way,
+17:u0A:Way/Sunnyvale,
+15:u0B:Sunnyvale/,,
+19:u0C:1133/Innovation,
+9:u0D:Way/0,
+8:u10:1133,
+14:u11:innovation,
+7:u12:way,
+13:u13:sunnyvale,
+6:u21:Wa,
+7:u22:Way,
+7:u23:Way,
+7:u32:Way,
+7:u33:Way,
+8:u01:1133,
+14:u02:Innovation,
+7:u03:Way,
+13:u04:Sunnyvale,
+6:u06:CA,
+9:u07:94089,
+17:u09:Way/Sunnyvale,
+15:u0A:Sunnyvale/,,
+8:u0B:,/CA,
+18:u0C:Innovation/Way,
+15:u0D:Sunnyvale/0,
+14:u10:innovation,
+7:u11:way,
+13:u12:sunnyvale,
+6:u14:ca,
+7:u22:Sun,
+8:u23:Sunn,
+7:u32:ale,
+8:u33:vale,
+8:u00:1133,
+14:u01:Innovation,
+7:u02:Way,
+13:u03:Sunnyvale,
+6:u05:CA,
+9:u06:94089,
+15:u09:Sunnyvale/,,
+8:u0A:,/CA,
+12:u0B:CA/94089,
+17:u0C:Way/Sunnyvale,
+7:u10:way,
+13:u11:sunnyvale,
+6:u13:ca,
+9:u14:94089,
+14:u00:Innovation,
+7:u01:Way,
+13:u02:Sunnyvale,
+6:u04:CA,
+9:u05:94089,
+8:u09:,/CA,
+12:u0A:CA/94089,
+13:u0B:94089/USA,
+15:u0C:Sunnyvale/,,
+8:u0D:CA/0,
+13:u10:sunnyvale,
+6:u12:ca,
+9:u13:94089,
+6:u21:CA,
+6:u22:CA,
+6:u23:CA,
+6:u31:CA,
+6:u32:CA,
+6:u33:CA,
+7:u00:Way,
+13:u01:Sunnyvale,
+6:u03:CA,
+9:u04:94089,
+11:u08:kireeti,
+12:u09:CA/94089,
+13:u0A:94089/USA,
+8:u0C:,/CA,
+11:u0D:94089/0,
+6:u11:ca,
+9:u12:94089,
+8:u23:9408,
+6:u31:89,
+7:u32:089,
+8:u33:4089,
+13:u00:Sunnyvale,
+6:u02:CA,
+9:u03:94089,
+11:u07:kireeti,
+13:u09:94089/USA,
+12:u0C:CA/94089,
+6:u10:ca,
+9:u11:94089,
+6:u01:CA,
+9:u02:94089,
+11:u06:kireeti,
+18:u08:kompella@gmail,
+13:u0B::/kireeti,
+13:u0C:94089/USA,
+9:u10:94089,
+6:u00:CA,
+9:u01:94089,
+11:u05:kireeti,
+18:u07:kompella@gmail,
+13:u0A::/kireeti,
+13:u0B:kireeti/.,
+9:u00:94089,
+11:u04:kireeti,
+18:u06:kompella@gmail,
+13:u09::/kireeti,
+13:u0A:kireeti/.,
+20:u0B:./kompella@gmail,
+13:u0D:kireeti/0,
+18:u14:kompella@gmail,
+6:u21:ki,
+7:u22:kir,
+8:u23:kire,
+11:u03:kireeti,
+18:u05:kompella@gmail,
+8:u08:Luis,
+13:u09:kireeti/.,
+20:u0A:./kompella@gmail,
+20:u0B:kompella@gmail/.,
+13:u0C::/kireeti,
+18:u13:kompella@gmail,
+11:u02:kireeti,
+18:u04:kompella@gmail,
+8:u07:Luis,
+20:u09:./kompella@gmail,
+20:u0A:kompella@gmail/.,
+13:u0C:kireeti/.,
+20:u0D:kompella@gmail/0,
+18:u12:kompella@gmail,
+6:u21:ko,
+7:u22:kom,
+8:u23:komp,
+11:u01:kireeti,
+18:u03:kompella@gmail,
+8:u06:Luis,
+20:u09:kompella@gmail/.,
+12:u0B:com/Luis,
+20:u0C:./kompella@gmail,
+18:u11:kompella@gmail,
+8:u14:luis,
+11:u00:kireeti,
+18:u02:kompella@gmail,
+8:u05:Luis,
+12:u0A:com/Luis,
+10:u0B:Luis/M,
+20:u0C:kompella@gmail/.,
+18:u10:kompella@gmail,
+8:u13:luis,
+18:u01:kompella@gmail,
+8:u04:Luis,
+12:u09:com/Luis,
+10:u0A:Luis/M,
+10:u0D:Luis/0,
+8:u12:luis,
+6:u21:Lu,
+7:u22:Lui,
+8:u23:Luis,
+7:u32:uis,
+8:u33:Luis,
+18:u00:kompella@gmail,
+8:u03:Luis,
+9:u08:Ronda,
+10:u09:Luis/M,
+12:u0C:com/Luis,
+8:u11:luis,
+8:u02:Luis,
+9:u07:Ronda,
+24:u0B:Contreras/Telefonica,
+10:u0C:Luis/M,
+8:u10:luis,
+8:u01:Luis,
+9:u06:Ronda,
+6:u08:la,
+24:u0A:Contreras/Telefonica,
+20:u0B:Telefonica/Ronda,
+9:u14:ronda,
+8:u00:Luis,
+9:u05:Ronda,
+6:u07:la,
+16:u08:Comunicacion,
+24:u09:Contreras/Telefonica,
+20:u0A:Telefonica/Ronda,
+12:u0B:Ronda/de,
+9:u13:ronda,
+9:u04:Ronda,
+6:u06:la,
+16:u07:Comunicacion,
+7:u08:Sur,
+20:u09:Telefonica/Ronda,
+12:u0A:Ronda/de,
+9:u0B:de/la,
+24:u0C:Contreras/Telefonica,
+11:u0D:Ronda/0,
+9:u12:ronda,
+6:u14:la,
+7:u22:Ron,
+8:u23:Rond,
+7:u32:nda,
+8:u33:onda,
+9:u03:Ronda,
+6:u05:la,
+16:u06:Comunicacion,
+7:u07:Sur,
+12:u09:Ronda/de,
+9:u0A:de/la,
+19:u0B:la/Comunicacion,
+20:u0C:Telefonica/Ronda,
+9:u11:ronda,
+6:u13:la,
+16:u14:comunicacion,
+9:u02:Ronda,
+6:u04:la,
+16:u05:Comunicacion,
+7:u06:Sur,
+9:u09:de/la,
+19:u0A:la/Comunicacion,
+20:u0B:Comunicacion/Sur,
+12:u0C:Ronda/de,
+8:u0D:la/0,
+9:u10:ronda,
+6:u12:la,
+16:u13:comunicacion,
+7:u14:sur,
+6:u22:la,
+6:u23:la,
+6:u32:la,
+6:u33:la,
+9:u01:Ronda,
+6:u03:la,
+16:u04:Comunicacion,
+7:u05:Sur,
+12:u08:building,
+19:u09:la/Comunicacion,
+20:u0A:Comunicacion/Sur,
+9:u0B:Sur/-,
+9:u0C:de/la,
+18:u0D:Comunicacion/0,
+6:u11:la,
+16:u12:comunicacion,
+7:u13:sur,
+8:u23:Comu,
+8:u33:cion,
+9:u00:Ronda,
+6:u02:la,
+16:u03:Comunicacion,
+7:u04:Sur,
+12:u07:building,
+20:u09:Comunicacion/Sur,
+9:u0A:Sur/-,
+7:u0B:-/3,
+19:u0C:la/Comunicacion,
+9:u0D:Sur/0,
+6:u10:la,
+16:u11:comunicacion,
+7:u12:sur,
+7:u22:Sur,
+7:u23:Sur,
+7:u32:Sur,
+7:u33:Sur,
+6:u01:la,
+16:u02:Comunicacion,
+7:u03:Sur,
+12:u06:building,
+7:u08:3rd,
+9:u09:Sur/-,
+7:u0A:-/3,
+14:u0B:3/building,
+20:u0C:Comunicacion/Sur,
+16:u10:comunicacion,
+7:u11:sur,
+12:u14:building,
+6:u00:la,
+16:u01:Comunicacion,
+7:u02:Sur,
+12:u05:building,
+7:u07:3rd,
+7:u09:-/3,
+14:u0A:3/building,
+14:u0B:building/,,
+9:u0C:Sur/-,
+7:u0D:3/1,
+7:u10:sur,
+12:u13:building,
+16:u00:Comunicacion,
+7:u01:Sur,
+12:u04:building,
+7:u06:3rd,
+14:u09:3/building,
+14:u0A:building/,,
+9:u0B:,/3rd,
+7:u0C:-/3,
+14:u0D:building/0,
+12:u12:building,
+7:u14:3rd,
+7:u00:Sur,
+12:u03:building,
+7:u05:3rd,
+9:u08:28050,
+14:u09:building/,,
+9:u0A:,/3rd,
+13:u0B:3rd/floor,
+14:u0C:3/building,
+12:u11:building,
+7:u13:3rd,
+12:u02:building,
+7:u04:3rd,
+9:u07:28050,
+9:u09:,/3rd,
+13:u0A:3rd/floor,
+16:u0B:floor/Madrid,
+14:u0C:building/,,
+9:u0D:3rd/0,
+12:u10:building,
+7:u12:3rd,
+6:u21:3r,
+7:u22:3rd,
+7:u23:3rd,
+7:u32:3rd,
+7:u33:3rd,
+12:u01:building,
+7:u03:3rd,
+9:u06:28050,
+13:u09:3rd/floor,
+16:u0A:floor/Madrid,
+16:u0B:Madrid/28050,
+9:u0C:,/3rd,
+7:u11:3rd,
+9:u14:28050,
+12:u00:building,
+7:u02:3rd,
+9:u05:28050,
+16:u09:floor/Madrid,
+16:u0A:Madrid/28050,
+15:u0B:28050/Spain,
+13:u0C:3rd/floor,
+7:u10:3rd,
+9:u13:28050,
+7:u01:3rd,
+9:u04:28050,
+14:u08:luismiguel,
+16:u09:Madrid/28050,
+15:u0A:28050/Spain,
+15:u0B:Spain/Email,
+16:u0C:floor/Madrid,
+11:u0D:28050/0,
+9:u12:28050,
+7:u22:280,
+8:u23:2805,
+7:u32:050,
+8:u33:8050,
+7:u00:3rd,
+9:u03:28050,
+14:u07:luismiguel,
+15:u09:28050/Spain,
+15:u0A:Spain/Email,
+16:u0C:Madrid/28050,
+9:u11:28050,
+9:u02:28050,
+14:u06:luismiguel,
+31:u08:contrerasmurillo@telefonica,
+15:u09:Spain/Email,
+16:u0B::/luismiguel,
+15:u0C:28050/Spain,
+9:u10:28050,
+14:u14:luismiguel,
+9:u01:28050,
+14:u05:luismiguel,
+31:u07:contrerasmurillo@telefonica,
+16:u0A::/luismiguel,
+16:u0B:luismiguel/.,
+15:u0C:Spain/Email,
+14:u13:luismiguel,
+9:u00:28050,
+14:u04:luismiguel,
+31:u06:contrerasmurillo@telefonica,
+16:u09::/luismiguel,
+16:u0A:luismiguel/.,
+33:u0B:./contrerasmurillo@telefonica,
+16:u0D:luismiguel/0,
+14:u12:luismiguel,
+31:u14:contrerasmurillo@telefonica,
+6:u21:lu,
+7:u22:lui,
+8:u23:luis,
+7:u32:uel,
+8:u33:guel,
+14:u03:luismiguel,
+31:u05:contrerasmurillo@telefonica,
+16:u09:luismiguel/.,
+33:u0A:./contrerasmurillo@telefonica,
+33:u0B:contrerasmurillo@telefonica/.,
+16:u0C::/luismiguel,
+14:u11:luismiguel,
+31:u13:contrerasmurillo@telefonica,
+14:u02:luismiguel,
+31:u04:contrerasmurillo@telefonica,
+33:u09:./contrerasmurillo@telefonica,
+33:u0A:contrerasmurillo@telefonica/.,
+16:u0C:luismiguel/.,
+33:u0D:contrerasmurillo@telefonica/0,
+14:u10:luismiguel,
+31:u12:contrerasmurillo@telefonica,
+14:u01:luismiguel,
+31:u03:contrerasmurillo@telefonica,
+33:u09:contrerasmurillo@telefonica/.,
+33:u0C:./contrerasmurillo@telefonica,
+31:u11:contrerasmurillo@telefonica,
+14:u00:luismiguel,
+31:u02:contrerasmurillo@telefonica,
+33:u0C:contrerasmurillo@telefonica/.,
+31:u10:contrerasmurillo@telefonica,
+31:u01:contrerasmurillo@telefonica,
+31:u00:contrerasmurillo@telefonica,
+10:u08:people,
+10:u07:people,
+10:u06:people,
+7:u08:tid,
+12:u0B://people,
+10:u14:people,
+10:u05:people,
+7:u07:tid,
+12:u0A://people,
+12:u0B:people/.,
+10:u13:people,
+10:u04:people,
+7:u06:tid,
+12:u09://people,
+12:u0A:people/.,
+9:u0B:./tid,
+12:u0D:people/0,
+10:u12:people,
+7:u14:tid,
+7:u22:peo,
+8:u23:peop,
+8:u33:ople,
+10:u03:people,
+7:u05:tid,
+12:u09:people/.,
+9:u0A:./tid,
+9:u0B:tid/.,
+12:u0C://people,
+10:u11:people,
+7:u13:tid,
+10:u02:people,
+7:u04:tid,
+9:u08:LuisM,
+9:u09:./tid,
+9:u0A:tid/.,
+12:u0C:people/.,
+9:u0D:tid/0,
+10:u10:people,
+7:u12:tid,
+7:u22:tid,
+7:u23:tid,
+7:u32:tid,
+7:u33:tid,
+10:u01:people,
+7:u03:tid,
+9:u07:LuisM,
+9:u09:tid/.,
+9:u0C:./tid,
+7:u11:tid,
+10:u00:people,
+7:u02:tid,
+9:u06:LuisM,
+11:u0B://LuisM,
+9:u0C:tid/.,
+7:u10:tid,
+9:u14:luism,
+7:u01:tid,
+9:u05:LuisM,
+11:u0A://LuisM,
+11:u0B:LuisM/.,
+9:u13:luism,
+7:u00:tid,
+9:u04:LuisM,
+11:u09://LuisM,
+11:u0A:LuisM/.,
+11:u0D:LuisM/0,
+9:u12:luism,
+6:u31:sM,
+7:u32:isM,
+8:u33:uisM,
+9:u03:LuisM,
+11:u09:LuisM/.,
+15:u0B:Contreras//,
+11:u0C://LuisM,
+9:u11:luism,
+9:u02:LuisM,
+15:u0A:Contreras//,
+11:u0C:LuisM/.,
+9:u10:luism,
+9:u01:LuisM,
+15:u09:Contreras//,
+12:u06:20190812,
+17:u0B:date/20190812,
+12:u14:20190812,
+12:u05:20190812,
+17:u0A:date/20190812,
+14:u0B:20190812/;,
+12:u13:20190812,
+12:u04:20190812,
+17:u09:date/20190812,
+14:u0A:20190812/;,
+14:u0D:20190812/0,
+12:u12:20190812,
+8:u33:0812,
+12:u03:20190812,
+14:u09:20190812/;,
+17:u0C:date/20190812,
+12:u11:20190812,
+12:u02:20190812,
+12:u08:20190813,
+14:u0C:20190812/;,
+12:u10:20190812,
+12:u01:20190812,
+12:u07:20190813,
+12:u00:20190812,
+12:u06:20190813,
+5:u08:Y,
+15:u0B:on/20190813,
+12:u14:20190813,
+12:u05:20190813,
+5:u07:Y,
+15:u0A:on/20190813,
+16:u0B:20190813/TLS,
+12:u13:20190813,
+12:u04:20190813,
+5:u06:Y,
+7:u08:Nir,
+15:u09:on/20190813,
+16:u0A:20190813/TLS,
+9:u0B:TLS/Y,
+14:u0D:20190813/0,
+12:u12:20190813,
+5:u14:y,
+6:u31:13,
+7:u32:813,
+8:u33:0813,
+12:u03:20190813,
+5:u05:Y,
+7:u07:Nir,
+16:u09:20190813/TLS,
+9:u0A:TLS/Y,
+7:u0B:Y/.,
+15:u0C:on/20190813,
+12:u11:20190813,
+5:u13:y,
+12:u02:20190813,
+5:u04:Y,
+7:u06:Nir,
+9:u09:TLS/Y,
+7:u0A:Y/.,
+9:u0B:./Nir,
+16:u0C:20190813/TLS,
+7:u0D:Y/0,
+12:u10:20190813,
+5:u12:y,
+7:u14:nir,
+5:u20:Y,
+5:u21:Y,
+5:u22:Y,
+5:u23:Y,
+5:u31:Y,
+5:u32:Y,
+5:u33:Y,
+12:u01:20190813,
+5:u03:Y,
+7:u05:Nir,
+7:u09:Y/.,
+9:u0A:./Nir,
+16:u0B:Nir/Internet,
+9:u0C:TLS/Y,
+5:u11:y,
+7:u13:nir,
+12:u00:20190813,
+5:u02:Y,
+7:u04:Nir,
+11:u08:DellEMC,
+9:u09:./Nir,
+16:u0A:Nir/Internet,
+7:u0C:Y/.,
+9:u0D:Nir/0,
+5:u10:y,
+7:u12:nir,
+6:u21:Ni,
+7:u22:Nir,
+7:u23:Nir,
+7:u32:Nir,
+7:u33:Nir,
+5:u01:Y,
+7:u03:Nir,
+11:u07:DellEMC,
+16:u09:Nir/Internet,
+9:u0C:./Nir,
+7:u11:nir,
+5:u00:Y,
+7:u02:Nir,
+11:u06:DellEMC,
+17:u0B:Draft/DellEMC,
+16:u0C:Nir/Internet,
+7:u10:nir,
+11:u14:dellemc,
+7:u01:Nir,
+11:u05:DellEMC,
+17:u0A:Draft/DellEMC,
+20:u0B:DellEMC/Intended,
+11:u13:dellemc,
+7:u00:Nir,
+11:u04:DellEMC,
+17:u09:Draft/DellEMC,
+20:u0A:DellEMC/Intended,
+13:u0D:DellEMC/0,
+11:u12:dellemc,
+8:u33:lEMC,
+11:u03:DellEMC,
+20:u09:DellEMC/Intended,
+17:u0C:Draft/DellEMC,
+11:u11:dellemc,
+11:u02:DellEMC,
+20:u0C:DellEMC/Intended,
+11:u10:dellemc,
+11:u01:DellEMC,
+11:u00:DellEMC,
+16:u0B:Track/August,
+16:u0A:Track/August,
+13:u0B:August/12,
+16:u09:Track/August,
+13:u0A:August/12,
+8:u0B:12/,,
+13:u09:August/12,
+8:u0A:12/,,
+16:u0C:Track/August,
+8:u0D:12/0,
+8:u09:12/,,
+13:u0C:August/12,
+6:u08:13,
+8:u0C:12/,,
+6:u07:13,
+6:u06:13,
+15:u0B:February/13,
+6:u14:13,
+6:u05:13,
+15:u0A:February/13,
+8:u0B:13/,,
+6:u13:13,
+6:u04:13,
+9:u08:Flags,
+15:u09:February/13,
+8:u0A:13/,,
+8:u0D:13/0,
+6:u12:13,
+6:u22:13,
+6:u23:13,
+6:u32:13,
+6:u33:13,
+6:u03:13,
+9:u07:Flags,
+13:u08:Extension,
+8:u09:13/,,
+15:u0C:February/13,
+6:u11:13,
+6:u02:13,
+9:u06:Flags,
+13:u07:Extension,
+11:u0B:A/Flags,
+8:u0C:13/,,
+6:u10:13,
+9:u14:flags,
+6:u01:13,
+9:u05:Flags,
+13:u06:Extension,
+11:u0A:A/Flags,
+19:u0B:Flags/Extension,
+9:u13:flags,
+13:u14:extension,
+6:u00:13,
+9:u04:Flags,
+13:u05:Extension,
+11:u09:A/Flags,
+19:u0A:Flags/Extension,
+17:u0B:Extension/for,
+11:u0D:Flags/0,
+9:u12:flags,
+13:u13:extension,
+7:u22:Fla,
+8:u23:Flag,
+7:u32:ags,
+8:u33:lags,
+9:u03:Flags,
+13:u04:Extension,
+19:u09:Flags/Extension,
+17:u0A:Extension/for,
+11:u0B:for/TLS,
+11:u0C:A/Flags,
+15:u0D:Extension/0,
+9:u11:flags,
+13:u12:extension,
+7:u22:Ext,
+8:u23:Exte,
+9:u02:Flags,
+13:u03:Extension,
+17:u09:Extension/for,
+11:u0A:for/TLS,
+19:u0C:Flags/Extension,
+9:u10:flags,
+13:u11:extension,
+9:u01:Flags,
+13:u02:Extension,
+11:u09:for/TLS,
+17:u0C:Extension/for,
+13:u10:extension,
+9:u00:Flags,
+13:u01:Extension,
+7:u0B:./3,
+11:u0C:for/TLS,
+13:u00:Extension,
+7:u0A:./3,
+11:u0B:3/draft,
+7:u09:./3,
+11:u0A:3/draft,
+11:u09:3/draft,
+7:u0C:./3,
+11:u0C:3/draft,
+12:u08:tlsflags,
+12:u07:tlsflags,
+12:u06:tlsflags,
+14:u0B:-/tlsflags,
+12:u14:tlsflags,
+12:u05:tlsflags,
+14:u0A:-/tlsflags,
+14:u0B:tlsflags/-,
+12:u13:tlsflags,
+12:u04:tlsflags,
+14:u09:-/tlsflags,
+14:u0A:tlsflags/-,
+14:u0D:tlsflags/1,
+12:u12:tlsflags,
+8:u23:tlsf,
+12:u03:tlsflags,
+14:u09:tlsflags/-,
+14:u0C:-/tlsflags,
+12:u11:tlsflags,
+12:u02:tlsflags,
+14:u0B:Abstract/A,
+14:u0C:tlsflags/-,
+12:u10:tlsflags,
+12:u01:tlsflags,
+14:u0A:Abstract/A,
+12:u0B:A/number,
+12:u00:tlsflags,
+14:u09:Abstract/A,
+12:u0A:A/number,
+12:u08:proposed,
+12:u09:A/number,
+17:u0B:of/extensions,
+14:u0C:Abstract/A,
+12:u07:proposed,
+17:u0A:of/extensions,
+18:u0B:extensions/are,
+12:u0C:A/number,
+12:u06:proposed,
+17:u09:of/extensions,
+18:u0A:extensions/are,
+16:u0B:are/proposed,
+12:u14:proposed,
+12:u05:proposed,
+18:u09:extensions/are,
+16:u0A:are/proposed,
+15:u0B:proposed/in,
+17:u0C:of/extensions,
+12:u13:proposed,
+12:u04:proposed,
+16:u09:are/proposed,
+15:u0A:proposed/in,
+18:u0C:extensions/are,
+14:u0D:proposed/0,
+12:u12:proposed,
+8:u33:osed,
+12:u03:proposed,
+15:u09:proposed/in,
+11:u0B:the/TLS,
+16:u0C:are/proposed,
+12:u11:proposed,
+12:u02:proposed,
+11:u0A:the/TLS,
+15:u0B:TLS/working,
+15:u0C:proposed/in,
+12:u10:proposed,
+12:u01:proposed,
+11:u09:the/TLS,
+15:u0A:TLS/working,
+17:u0B:working/group,
+12:u00:proposed,
+15:u09:TLS/working,
+17:u0A:working/group,
+14:u0B:group/that,
+11:u0C:the/TLS,
+15:u08:interesting,
+17:u09:working/group,
+14:u0A:group/that,
+14:u0B:that/carry,
+15:u0C:TLS/working,
+15:u07:interesting,
+14:u09:group/that,
+14:u0A:that/carry,
+12:u0B:carry/no,
+17:u0C:working/group,
+15:u06:interesting,
+10:u08:except,
+14:u09:that/carry,
+12:u0A:carry/no,
+18:u0B:no/interesting,
+14:u0C:group/that,
+15:u14:interesting,
+15:u05:interesting,
+10:u07:except,
+12:u09:carry/no,
+18:u0A:no/interesting,
+27:u0B:interesting/information,
+14:u0C:that/carry,
+15:u13:interesting,
+15:u04:interesting,
+10:u06:except,
+18:u09:no/interesting,
+27:u0A:interesting/information,
+22:u0B:information/except,
+12:u0C:carry/no,
+17:u0D:interesting/0,
+15:u12:interesting,
+10:u14:except,
+15:u03:interesting,
+10:u05:except,
+27:u09:interesting/information,
+22:u0A:information/except,
+14:u0B:except/the,
+18:u0C:no/interesting,
+15:u11:interesting,
+10:u13:except,
+15:u02:interesting,
+10:u04:except,
+7:u08:bit,
+22:u09:information/except,
+14:u0A:except/the,
+9:u0B:the/1,
+27:u0C:interesting/information,
+12:u0D:except/0,
+15:u10:interesting,
+10:u12:except,
+7:u22:exc,
+8:u23:exce,
+7:u32:ept,
+8:u33:cept,
+15:u01:interesting,
+10:u03:except,
+7:u07:bit,
+14:u08:indication,
+14:u09:except/the,
+9:u0A:the/1,
+22:u0C:information/except,
+10:u11:except,
+15:u00:interesting,
+10:u02:except,
+7:u06:bit,
+14:u07:indication,
+9:u09:the/1,
+9:u0B:-/bit,
+14:u0C:except/the,
+10:u10:except,
+7:u14:bit,
+10:u01:except,
+7:u05:bit,
+14:u06:indication,
+9:u0A:-/bit,
+18:u0B:bit/indication,
+9:u0C:the/1,
+7:u13:bit,
+14:u14:indication,
+10:u00:except,
+7:u04:bit,
+14:u05:indication,
+11:u08:certain,
+9:u09:-/bit,
+18:u0A:bit/indication,
+19:u0B:indication/that,
+9:u0D:bit/1,
+7:u12:bit,
+14:u13:indication,
+6:u21:bi,
+7:u22:bit,
+7:u23:bit,
+7:u32:bit,
+7:u33:bit,
+7:u03:bit,
+14:u04:indication,
+11:u07:certain,
+18:u09:bit/indication,
+19:u0A:indication/that,
+10:u0B:that/a,
+9:u0C:-/bit,
+16:u0D:indication/0,
+7:u11:bit,
+14:u12:indication,
+7:u02:bit,
+14:u03:indication,
+11:u06:certain,
+11:u08:feature,
+19:u09:indication/that,
+10:u0A:that/a,
+13:u0B:a/certain,
+18:u0C:bit/indication,
+7:u10:bit,
+14:u11:indication,
+11:u14:certain,
+7:u01:bit,
+14:u02:indication,
+11:u05:certain,
+11:u07:feature,
+10:u09:that/a,
+13:u0A:a/certain,
+20:u0B:certain/optional,
+19:u0C:indication/that,
+14:u10:indication,
+11:u13:certain,
+7:u00:bit,
+14:u01:indication,
+11:u04:certain,
+11:u06:feature,
+13:u08:supported,
+13:u09:a/certain,
+20:u0A:certain/optional,
+20:u0B:optional/feature,
+10:u0C:that/a,
+13:u0D:certain/0,
+11:u12:certain,
+11:u14:feature,
+6:u21:ce,
+7:u22:cer,
+8:u23:cert,
+14:u00:indication,
+11:u03:certain,
+11:u05:feature,
+13:u07:supported,
+20:u09:certain/optional,
+20:u0A:optional/feature,
+14:u0B:feature/is,
+13:u0C:a/certain,
+11:u11:certain,
+11:u13:feature,
+11:u02:certain,
+11:u04:feature,
+13:u06:supported,
+8:u08:Such,
+20:u09:optional/feature,
+14:u0A:feature/is,
+16:u0B:is/supported,
+20:u0C:certain/optional,
+13:u0D:feature/0,
+11:u10:certain,
+11:u12:feature,
+13:u14:supported,
+7:u22:fea,
+8:u23:feat,
+11:u01:certain,
+11:u03:feature,
+13:u05:supported,
+8:u07:Such,
+14:u09:feature/is,
+16:u0A:is/supported,
+15:u0B:supported/.,
+20:u0C:optional/feature,
+11:u11:feature,
+13:u13:supported,
+11:u00:certain,
+11:u02:feature,
+13:u04:supported,
+8:u06:Such,
+8:u08:take,
+16:u09:is/supported,
+15:u0A:supported/.,
+10:u0B:./Such,
+14:u0C:feature/is,
+15:u0D:supported/0,
+11:u10:feature,
+13:u12:supported,
+8:u33:rted,
+11:u01:feature,
+13:u03:supported,
+8:u05:Such,
+8:u07:take,
+15:u09:supported/.,
+10:u0A:./Such,
+19:u0B:Such/extensions,
+16:u0C:is/supported,
+13:u11:supported,
+11:u00:feature,
+13:u02:supported,
+8:u04:Such,
+8:u06:take,
+10:u08:octets,
+10:u09:./Such,
+19:u0A:Such/extensions,
+19:u0B:extensions/take,
+15:u0C:supported/.,
+10:u0D:Such/0,
+13:u10:supported,
+8:u14:take,
+7:u22:Suc,
+8:u23:Such,
+8:u33:Such,
+13:u01:supported,
+8:u03:Such,
+8:u05:take,
+10:u07:octets,
+19:u09:Such/extensions,
+19:u0A:extensions/take,
+10:u0B:take/4,
+10:u0C:./Such,
+8:u13:take,
+13:u00:supported,
+8:u02:Such,
+8:u04:take,
+10:u06:octets,
+19:u09:extensions/take,
+10:u0A:take/4,
+12:u0B:4/octets,
+19:u0C:Such/extensions,
+10:u0D:take/0,
+8:u12:take,
+10:u14:octets,
+6:u21:ta,
+7:u22:tak,
+8:u23:take,
+7:u32:ake,
+8:u33:take,
+8:u01:Such,
+8:u03:take,
+10:u05:octets,
+10:u09:take/4,
+12:u0A:4/octets,
+15:u0B:octets/each,
+19:u0C:extensions/take,
+8:u11:take,
+10:u13:octets,
+8:u00:Such,
+8:u02:take,
+10:u04:octets,
+12:u09:4/octets,
+15:u0A:octets/each,
+10:u0B:each/.,
+10:u0C:take/4,
+12:u0D:octets/0,
+8:u10:take,
+10:u12:octets,
+6:u21:oc,
+7:u22:oct,
+8:u23:octe,
+7:u32:ets,
+8:u33:tets,
+8:u01:take,
+10:u03:octets,
+15:u09:octets/each,
+10:u0A:each/.,
+12:u0C:4/octets,
+10:u11:octets,
+8:u00:take,
+10:u02:octets,
+10:u09:each/.,
+15:u0C:octets/each,
+10:u10:octets,
+10:u01:octets,
+9:u08:flags,
+10:u0C:each/.,
+10:u00:octets,
+9:u07:flags,
+13:u08:extension,
+13:u0B:defines/a,
+9:u06:flags,
+13:u07:extension,
+13:u0A:defines/a,
+11:u0B:a/flags,
+9:u05:flags,
+13:u06:extension,
+13:u09:defines/a,
+11:u0A:a/flags,
+19:u0B:flags/extension,
+9:u04:flags,
+13:u05:extension,
+11:u09:a/flags,
+19:u0A:flags/extension,
+18:u0B:extension/that,
+13:u0C:defines/a,
+11:u0D:flags/0,
+7:u22:fla,
+8:u23:flag,
+9:u03:flags,
+13:u04:extension,
+19:u09:flags/extension,
+18:u0A:extension/that,
+12:u0B:that/can,
+11:u0C:a/flags,
+15:u0D:extension/0,
+9:u02:flags,
+13:u03:extension,
+15:u08:indications,
+18:u09:extension/that,
+12:u0A:that/can,
+15:u0B:can/provide,
+19:u0C:flags/extension,
+9:u01:flags,
+13:u02:extension,
+15:u07:indications,
+12:u09:that/can,
+15:u0A:can/provide,
+16:u0B:provide/such,
+18:u0C:extension/that,
+9:u00:flags,
+13:u01:extension,
+15:u06:indications,
+15:u09:can/provide,
+16:u0A:provide/such,
+20:u0B:such/indications,
+12:u0C:that/can,
+15:u14:indications,
+13:u00:extension,
+15:u05:indications,
+11:u08:average,
+16:u09:provide/such,
+20:u0A:such/indications,
+18:u0B:indications/at,
+15:u0C:can/provide,
+15:u13:indications,
+15:u04:indications,
+11:u07:average,
+12:u08:marginal,
+20:u09:such/indications,
+18:u0A:indications/at,
+9:u0B:at/an,
+16:u0C:provide/such,
+17:u0D:indications/0,
+15:u12:indications,
+15:u03:indications,
+11:u06:average,
+12:u07:marginal,
+18:u09:indications/at,
+9:u0A:at/an,
+14:u0B:an/average,
+20:u0C:such/indications,
+15:u11:indications,
+11:u14:average,
+15:u02:indications,
+11:u05:average,
+12:u06:marginal,
+9:u09:at/an,
+14:u0A:an/average,
+20:u0B:average/marginal,
+18:u0C:indications/at,
+15:u10:indications,
+11:u13:average,
+12:u14:marginal,
+15:u01:indications,
+11:u04:average,
+12:u05:marginal,
+14:u09:an/average,
+20:u0A:average/marginal,
+17:u0B:marginal/cost,
+9:u0C:at/an,
+13:u0D:average/0,
+11:u12:average,
+12:u13:marginal,
+7:u22:ave,
+8:u23:aver,
+8:u33:rage,
+15:u00:indications,
+11:u03:average,
+12:u04:marginal,
+20:u09:average/marginal,
+17:u0A:marginal/cost,
+14:u0C:an/average,
+14:u0D:marginal/0,
+11:u11:average,
+12:u12:marginal,
+8:u23:marg,
+8:u33:inal,
+11:u02:average,
+12:u03:marginal,
+17:u09:marginal/cost,
+20:u0C:average/marginal,
+11:u10:average,
+12:u11:marginal,
+11:u01:average,
+12:u02:marginal,
+9:u0B:1/bit,
+17:u0C:marginal/cost,
+12:u10:marginal,
+11:u00:average,
+12:u01:marginal,
+8:u08:More,
+9:u0A:1/bit,
+12:u0B:bit/each,
+12:u00:marginal,
+8:u07:More,
+13:u08:precisely,
+9:u09:1/bit,
+12:u0A:bit/each,
+9:u0D:bit/0,
+8:u06:More,
+13:u07:precisely,
+12:u09:bit/each,
+10:u0B:./More,
+9:u0C:1/bit,
+8:u14:more,
+8:u05:More,
+13:u06:precisely,
+10:u0A:./More,
+18:u0B:More/precisely,
+12:u0C:bit/each,
+8:u13:more,
+13:u14:precisely,
+8:u04:More,
+13:u05:precisely,
+12:u08:provides,
+10:u09:./More,
+18:u0A:More/precisely,
+15:u0B:precisely/,,
+10:u0D:More/0,
+8:u12:more,
+13:u13:precisely,
+8:u23:More,
+8:u33:More,
+8:u03:More,
+13:u04:precisely,
+12:u07:provides,
+18:u09:More/precisely,
+15:u0A:precisely/,,
+10:u0C:./More,
+15:u0D:precisely/0,
+8:u11:more,
+13:u12:precisely,
+8:u23:prec,
+8:u33:sely,
+8:u02:More,
+13:u03:precisely,
+12:u06:provides,
+8:u08:many,
+15:u09:precisely/,,
+15:u0B:it/provides,
+18:u0C:More/precisely,
+8:u10:more,
+13:u11:precisely,
+12:u14:provides,
+8:u01:More,
+13:u02:precisely,
+12:u05:provides,
+8:u07:many,
+8:u08:flag,
+15:u0A:it/provides,
+15:u0B:provides/as,
+15:u0C:precisely/,,
+13:u10:precisely,
+12:u13:provides,
+8:u00:More,
+13:u01:precisely,
+12:u04:provides,
+8:u06:many,
+8:u07:flag,
+15:u09:it/provides,
+15:u0A:provides/as,
+11:u0B:as/many,
+14:u0D:provides/0,
+12:u12:provides,
+8:u14:many,
+7:u32:des,
+8:u33:ides,
+13:u00:precisely,
+12:u03:provides,
+8:u05:many,
+8:u06:flag,
+15:u09:provides/as,
+11:u0A:as/many,
+13:u0B:many/flag,
+15:u0C:it/provides,
+12:u11:provides,
+8:u13:many,
+8:u14:flag,
+12:u02:provides,
+8:u04:many,
+8:u05:flag,
+10:u08:needed,
+11:u09:as/many,
+13:u0A:many/flag,
+19:u0B:flag/extensions,
+15:u0C:provides/as,
+10:u0D:many/0,
+12:u10:provides,
+8:u12:many,
+8:u13:flag,
+8:u23:many,
+8:u33:many,
+12:u01:provides,
+8:u03:many,
+8:u04:flag,
+10:u07:needed,
+13:u09:many/flag,
+19:u0A:flag/extensions,
+17:u0B:extensions/as,
+11:u0C:as/many,
+10:u0D:flag/0,
+8:u11:many,
+8:u12:flag,
+6:u31:ag,
+7:u32:lag,
+8:u33:flag,
+12:u00:provides,
+8:u02:many,
+8:u03:flag,
+10:u06:needed,
+19:u09:flag/extensions,
+17:u0A:extensions/as,
+13:u0B:as/needed,
+13:u0C:many/flag,
+8:u10:many,
+8:u11:flag,
+10:u14:needed,
+8:u01:many,
+8:u02:flag,
+10:u05:needed,
+5:u08:+,
+17:u09:extensions/as,
+13:u0A:as/needed,
+13:u0B:needed/at,
+19:u0C:flag/extensions,
+8:u10:flag,
+10:u13:needed,
+8:u00:many,
+8:u01:flag,
+10:u04:needed,
+5:u07:+,
+13:u09:as/needed,
+13:u0A:needed/at,
+8:u0B:at/4,
+17:u0C:extensions/as,
+12:u0D:needed/0,
+10:u12:needed,
+7:u22:nee,
+8:u23:need,
+8:u33:eded,
+8:u00:flag,
+10:u03:needed,
+5:u06:+,
+9:u08:order,
+13:u09:needed/at,
+8:u0A:at/4,
+7:u0B:4/+,
+13:u0C:as/needed,
+10:u11:needed,
+5:u14:+,
+10:u02:needed,
+5:u05:+,
+9:u07:order,
+8:u09:at/4,
+7:u0A:4/+,
+9:u0B:+/the,
+13:u0C:needed/at,
+10:u10:needed,
+5:u13:+,
+10:u01:needed,
+5:u04:+,
+9:u06:order,
+7:u09:4/+,
+9:u0A:+/the,
+13:u0B:the/order,
+8:u0C:at/4,
+7:u0D:+/0,
+5:u12:+,
+9:u14:order,
+5:u21:+,
+5:u22:+,
+5:u23:+,
+5:u30:+,
+5:u31:+,
+5:u32:+,
+5:u33:+,
+10:u00:needed,
+5:u03:+,
+9:u05:order,
+8:u08:last,
+9:u09:+/the,
+13:u0A:the/order,
+12:u0B:order/of,
+7:u0C:4/+,
+5:u11:+,
+9:u13:order,
+5:u02:+,
+9:u04:order,
+8:u07:last,
+13:u09:the/order,
+12:u0A:order/of,
+9:u0C:+/the,
+11:u0D:order/0,
+5:u10:+,
+9:u12:order,
+7:u22:ord,
+8:u23:orde,
+8:u33:rder,
+5:u01:+,
+9:u03:order,
+8:u06:last,
+12:u09:order/of,
+12:u0B:the/last,
+13:u0C:the/order,
+9:u11:order,
+8:u14:last,
+5:u00:+,
+9:u02:order,
+8:u05:last,
+11:u08:divided,
+12:u0A:the/last,
+12:u0B:last/set,
+12:u0C:order/of,
+9:u10:order,
+8:u13:last,
+9:u01:order,
+8:u04:last,
+11:u07:divided,
+12:u09:the/last,
+12:u0A:last/set,
+11:u0B:set/bit,
+10:u0D:last/0,
+8:u12:last,
+7:u22:las,
+8:u23:last,
+7:u32:ast,
+8:u33:last,
+9:u00:order,
+8:u03:last,
+11:u06:divided,
+12:u09:last/set,
+11:u0A:set/bit,
+15:u0B:bit/divided,
+12:u0C:the/last,
+8:u11:last,
+11:u14:divided,
+8:u02:last,
+11:u05:divided,
+11:u09:set/bit,
+15:u0A:bit/divided,
+14:u0B:divided/by,
+12:u0C:last/set,
+8:u10:last,
+11:u13:divided,
+8:u01:last,
+11:u04:divided,
+15:u09:bit/divided,
+14:u0A:divided/by,
+8:u0B:by/8,
+11:u0C:set/bit,
+13:u0D:divided/0,
+11:u12:divided,
+7:u22:div,
+8:u23:divi,
+8:u00:last,
+11:u03:divided,
+14:u09:divided/by,
+8:u0A:by/8,
+7:u0B:8/.,
+15:u0C:bit/divided,
+11:u11:divided,
+11:u02:divided,
+8:u09:by/8,
+7:u0A:8/.,
+14:u0C:divided/by,
+11:u10:divided,
+11:u01:divided,
+7:u09:8/.,
+8:u0C:by/8,
+11:u00:divided,
+7:u0C:8/.,
+8:u08:Yoav,
+8:u07:Yoav,
+8:u06:Yoav,
+11:u0B:of/Yoav,
+8:u14:yoav,
+8:u05:Yoav,
+11:u0A:of/Yoav,
+12:u0B:Yoav/Nir,
+8:u13:yoav,
+8:u04:Yoav,
+10:u08:Andrei,
+11:u09:of/Yoav,
+12:u0A:Yoav/Nir,
+15:u0B:Nir/DellEMC,
+10:u0D:Yoav/0,
+8:u12:yoav,
+6:u21:Yo,
+7:u22:Yoa,
+8:u23:Yoav,
+6:u31:av,
+7:u32:oav,
+8:u33:Yoav,
+8:u03:Yoav,
+10:u07:Andrei,
+12:u08:Sakharov,
+12:u09:Yoav/Nir,
+15:u0A:Nir/DellEMC,
+13:u0B:DellEMC/9,
+11:u0C:of/Yoav,
+8:u11:yoav,
+8:u02:Yoav,
+10:u06:Andrei,
+12:u07:Sakharov,
+6:u08:St,
+15:u09:Nir/DellEMC,
+13:u0A:DellEMC/9,
+12:u0B:9/Andrei,
+12:u0C:Yoav/Nir,
+8:u10:yoav,
+10:u14:andrei,
+8:u01:Yoav,
+10:u05:Andrei,
+12:u06:Sakharov,
+6:u07:St,
+9:u08:Haifa,
+13:u09:DellEMC/9,
+12:u0A:9/Andrei,
+19:u0B:Andrei/Sakharov,
+15:u0C:Nir/DellEMC,
+10:u13:andrei,
+12:u14:sakharov,
+8:u00:Yoav,
+10:u04:Andrei,
+12:u05:Sakharov,
+6:u06:St,
+9:u07:Haifa,
+11:u08:3190500,
+12:u09:9/Andrei,
+19:u0A:Andrei/Sakharov,
+15:u0B:Sakharov/St,
+13:u0C:DellEMC/9,
+12:u0D:Andrei/0,
+10:u12:andrei,
+12:u13:sakharov,
+6:u14:st,
+6:u21:An,
+7:u22:And,
+8:u23:Andr,
+7:u32:rei,
+8:u33:drei,
+10:u03:Andrei,
+12:u04:Sakharov,
+6:u05:St,
+9:u06:Haifa,
+11:u07:3190500,
+10:u08:Israel,
+19:u09:Andrei/Sakharov,
+15:u0A:Sakharov/St,
+12:u0B:St/Haifa,
+12:u0C:9/Andrei,
+14:u0D:Sakharov/0,
+10:u11:andrei,
+12:u12:sakharov,
+6:u13:st,
+9:u14:haifa,
+7:u22:Sak,
+8:u23:Sakh,
+6:u31:ov,
+7:u32:rov,
+8:u33:arov,
+10:u02:Andrei,
+12:u03:Sakharov,
+6:u04:St,
+9:u05:Haifa,
+11:u06:3190500,
+10:u07:Israel,
+15:u09:Sakharov/St,
+12:u0A:St/Haifa,
+17:u0B:Haifa/3190500,
+19:u0C:Andrei/Sakharov,
+8:u0D:St/0,
+10:u10:andrei,
+12:u11:sakharov,
+6:u12:st,
+9:u13:haifa,
+11:u14:3190500,
+6:u22:St,
+6:u23:St,
+6:u31:St,
+6:u32:St,
+6:u33:St,
+10:u01:Andrei,
+12:u02:Sakharov,
+6:u03:St,
+9:u04:Haifa,
+11:u05:3190500,
+10:u06:Israel,
+12:u09:St/Haifa,
+17:u0A:Haifa/3190500,
+18:u0B:3190500/Israel,
+15:u0C:Sakharov/St,
+11:u0D:Haifa/0,
+12:u10:sakharov,
+6:u11:st,
+9:u12:haifa,
+11:u13:3190500,
+10:u14:israel,
+7:u22:Hai,
+8:u23:Haif,
+6:u31:fa,
+7:u32:ifa,
+8:u33:aifa,
+10:u00:Andrei,
+12:u01:Sakharov,
+6:u02:St,
+9:u03:Haifa,
+11:u04:3190500,
+10:u05:Israel,
+8:u08:ynir,
+17:u09:Haifa/3190500,
+18:u0A:3190500/Israel,
+16:u0B:Israel/Email,
+12:u0C:St/Haifa,
+13:u0D:3190500/0,
+6:u10:st,
+9:u11:haifa,
+11:u12:3190500,
+10:u13:israel,
+7:u22:319,
+8:u23:3190,
+7:u32:500,
+8:u33:0500,
+12:u00:Sakharov,
+6:u01:St,
+9:u02:Haifa,
+11:u03:3190500,
+10:u04:Israel,
+8:u07:ynir,
+18:u09:3190500/Israel,
+16:u0A:Israel/Email,
+17:u0C:Haifa/3190500,
+12:u0D:Israel/0,
+9:u10:haifa,
+11:u11:3190500,
+10:u12:israel,
+6:u21:Is,
+7:u22:Isr,
+8:u23:Isra,
+7:u32:ael,
+8:u33:rael,
+6:u00:St,
+9:u01:Haifa,
+11:u02:3190500,
+10:u03:Israel,
+8:u06:ynir,
+16:u09:Israel/Email,
+10:u0B::/ynir,
+18:u0C:3190500/Israel,
+11:u10:3190500,
+10:u11:israel,
+8:u14:ynir,
+9:u00:Haifa,
+11:u01:3190500,
+10:u02:Israel,
+8:u05:ynir,
+10:u0A::/ynir,
+10:u0B:ynir/.,
+16:u0C:Israel/Email,
+10:u10:israel,
+8:u13:ynir,
+11:u00:3190500,
+10:u01:Israel,
+8:u04:ynir,
+10:u09::/ynir,
+10:u0A:ynir/.,
+10:u0D:ynir/0,
+8:u12:ynir,
+6:u21:yn,
+7:u22:yni,
+8:u23:ynir,
+7:u32:nir,
+8:u33:ynir,
+10:u00:Israel,
+8:u03:ynir,
+10:u09:ynir/.,
+10:u0C::/ynir,
+8:u11:ynir,
+8:u02:ynir,
+10:u0C:ynir/.,
+8:u10:ynir,
+8:u01:ynir,
+8:u00:ynir,
+12:u06:20190827,
+17:u0B:date/20190827,
+12:u14:20190827,
+12:u05:20190827,
+17:u0A:date/20190827,
+14:u0B:20190827/;,
+12:u13:20190827,
+12:u04:20190827,
+17:u09:date/20190827,
+14:u0A:20190827/;,
+14:u0D:20190827/0,
+12:u12:20190827,
+7:u32:827,
+8:u33:0827,
+12:u03:20190827,
+14:u09:20190827/;,
+17:u0C:date/20190827,
+12:u11:20190827,
+12:u02:20190827,
+12:u08:20190829,
+14:u0C:20190827/;,
+12:u10:20190827,
+12:u01:20190827,
+12:u07:20190829,
+10:u08:6TiSCH,
+12:u00:20190827,
+12:u06:20190829,
+10:u07:6TiSCH,
+5:u08:P,
+15:u0B:on/20190829,
+12:u14:20190829,
+12:u05:20190829,
+10:u06:6TiSCH,
+5:u07:P,
+15:u0A:on/20190829,
+19:u0B:20190829/6TiSCH,
+12:u13:20190829,
+10:u14:6tisch,
+12:u04:20190829,
+10:u05:6TiSCH,
+5:u06:P,
+11:u08:Thubert,
+15:u09:on/20190829,
+19:u0A:20190829/6TiSCH,
+12:u0B:6TiSCH/P,
+14:u0D:20190829/0,
+12:u12:20190829,
+10:u13:6tisch,
+5:u14:p,
+6:u31:29,
+7:u32:829,
+8:u33:0829,
+12:u03:20190829,
+10:u04:6TiSCH,
+5:u05:P,
+11:u07:Thubert,
+19:u09:20190829/6TiSCH,
+12:u0A:6TiSCH/P,
+7:u0B:P/.,
+15:u0C:on/20190829,
+12:u0D:6TiSCH/0,
+12:u11:20190829,
+10:u12:6tisch,
+5:u13:p,
+6:u21:6T,
+7:u22:6Ti,
+8:u23:6TiS,
+5:u30:H,
+6:u31:CH,
+7:u32:SCH,
+8:u33:iSCH,
+12:u02:20190829,
+10:u03:6TiSCH,
+5:u04:P,
+11:u06:Thubert,
+6:u08:Ed,
+12:u09:6TiSCH/P,
+7:u0A:P/.,
+13:u0B:./Thubert,
+19:u0C:20190829/6TiSCH,
+7:u0D:P/0,
+12:u10:20190829,
+10:u11:6tisch,
+5:u12:p,
+11:u14:thubert,
+5:u21:P,
+5:u22:P,
+5:u23:P,
+5:u31:P,
+5:u32:P,
+5:u33:P,
+12:u01:20190829,
+10:u02:6TiSCH,
+5:u03:P,
+11:u05:Thubert,
+6:u07:Ed,
+7:u09:P/.,
+13:u0A:./Thubert,
+13:u0B:Thubert/,,
+12:u0C:6TiSCH/P,
+10:u10:6tisch,
+5:u11:p,
+11:u13:thubert,
+12:u00:20190829,
+10:u01:6TiSCH,
+5:u02:P,
+11:u04:Thubert,
+6:u06:Ed,
+13:u09:./Thubert,
+13:u0A:Thubert/,,
+8:u0B:,/Ed,
+7:u0C:P/.,
+13:u0D:Thubert/0,
+5:u10:p,
+11:u12:thubert,
+6:u14:ed,
+7:u22:Thu,
+8:u23:Thub,
+7:u32:ert,
+8:u33:bert,
+10:u00:6TiSCH,
+5:u01:P,
+11:u03:Thubert,
+6:u05:Ed,
+13:u09:Thubert/,,
+8:u0A:,/Ed,
+8:u0B:Ed/.,
+13:u0C:./Thubert,
+11:u11:thubert,
+6:u13:ed,
+5:u00:P,
+11:u02:Thubert,
+6:u04:Ed,
+8:u09:,/Ed,
+8:u0A:Ed/.,
+13:u0C:Thubert/,,
+8:u0D:Ed/0,
+11:u10:thubert,
+6:u12:ed,
+6:u21:Ed,
+6:u22:Ed,
+6:u23:Ed,
+6:u31:Ed,
+6:u32:Ed,
+6:u33:Ed,
+11:u01:Thubert,
+6:u03:Ed,
+8:u09:Ed/.,
+8:u0C:,/Ed,
+6:u11:ed,
+11:u00:Thubert,
+6:u02:Ed,
+8:u0C:Ed/.,
+6:u10:ed,
+6:u01:Ed,
+15:u0B:Draft/Cisco,
+6:u00:Ed,
+15:u0A:Draft/Cisco,
+15:u09:Draft/Cisco,
+20:u0B:Systems/Intended,
+20:u0A:Systems/Intended,
+15:u0C:Draft/Cisco,
+20:u09:Systems/Intended,
+20:u0C:Systems/Intended,
+24:u0B:Informational/August,
+24:u0A:Informational/August,
+13:u0B:August/27,
+24:u09:Informational/August,
+13:u0A:August/27,
+8:u0B:27/,,
+13:u09:August/27,
+8:u0A:27/,,
+24:u0C:Informational/August,
+8:u0D:27/0,
+8:u09:27/,,
+13:u0C:August/27,
+6:u08:28,
+8:u0C:27/,,
+6:u07:28,
+6:u06:28,
+15:u0B:February/28,
+6:u14:28,
+6:u05:28,
+6:u08:An,
+15:u0A:February/28,
+8:u0B:28/,,
+6:u13:28,
+6:u04:28,
+6:u07:An,
+16:u08:Architecture,
+15:u09:February/28,
+8:u0A:28/,,
+8:u0D:28/0,
+6:u12:28,
+6:u22:28,
+6:u23:28,
+6:u31:28,
+6:u32:28,
+6:u33:28,
+6:u03:28,
+6:u06:An,
+16:u07:Architecture,
+8:u09:28/,,
+11:u0B:2020/An,
+15:u0C:February/28,
+6:u11:28,
+6:u02:28,
+6:u05:An,
+16:u06:Architecture,
+8:u08:IPv6,
+11:u0A:2020/An,
+19:u0B:An/Architecture,
+8:u0C:28/,,
+6:u10:28,
+6:u01:28,
+6:u04:An,
+16:u05:Architecture,
+8:u07:IPv6,
+11:u09:2020/An,
+19:u0A:An/Architecture,
+20:u0B:Architecture/for,
+8:u0D:An/0,
+6:u22:An,
+6:u23:An,
+6:u31:An,
+6:u32:An,
+6:u33:An,
+6:u00:28,
+6:u03:An,
+16:u04:Architecture,
+8:u06:IPv6,
+19:u09:An/Architecture,
+20:u0A:Architecture/for,
+12:u0B:for/IPv6,
+11:u0C:2020/An,
+18:u0D:Architecture/0,
+8:u14:ipv6,
+7:u22:Arc,
+8:u23:Arch,
+6:u02:An,
+16:u03:Architecture,
+8:u05:IPv6,
+8:u08:TSCH,
+20:u09:Architecture/for,
+12:u0A:for/IPv6,
+13:u0B:IPv6/over,
+19:u0C:An/Architecture,
+8:u13:ipv6,
+6:u01:An,
+16:u02:Architecture,
+8:u04:IPv6,
+8:u07:TSCH,
+8:u08:mode,
+12:u09:for/IPv6,
+13:u0A:IPv6/over,
+12:u0B:over/the,
+20:u0C:Architecture/for,
+10:u0D:IPv6/0,
+8:u12:ipv6,
+7:u22:IPv,
+8:u23:IPv6,
+6:u31:v6,
+7:u32:Pv6,
+8:u33:IPv6,
+6:u00:An,
+16:u01:Architecture,
+8:u03:IPv6,
+8:u06:TSCH,
+8:u07:mode,
+13:u09:IPv6/over,
+12:u0A:over/the,
+12:u0B:the/TSCH,
+12:u0C:for/IPv6,
+8:u11:ipv6,
+8:u14:tsch,
+16:u00:Architecture,
+8:u02:IPv6,
+8:u05:TSCH,
+8:u06:mode,
+8:u08:IEEE,
+12:u09:over/the,
+12:u0A:the/TSCH,
+13:u0B:TSCH/mode,
+13:u0C:IPv6/over,
+8:u10:ipv6,
+8:u13:tsch,
+8:u14:mode,
+8:u01:IPv6,
+8:u04:TSCH,
+8:u05:mode,
+8:u07:IEEE,
+7:u08:802,
+12:u09:the/TSCH,
+13:u0A:TSCH/mode,
+11:u0B:mode/of,
+12:u0C:over/the,
+10:u0D:TSCH/0,
+8:u12:tsch,
+8:u13:mode,
+6:u21:TS,
+7:u22:TSC,
+8:u23:TSCH,
+8:u33:TSCH,
+8:u00:IPv6,
+8:u03:TSCH,
+8:u04:mode,
+8:u06:IEEE,
+7:u07:802,
+13:u09:TSCH/mode,
+11:u0A:mode/of,
+11:u0B:of/IEEE,
+12:u0C:the/TSCH,
+10:u0D:mode/0,
+8:u11:tsch,
+8:u12:mode,
+8:u14:ieee,
+7:u22:mod,
+8:u23:mode,
+8:u33:mode,
+8:u02:TSCH,
+8:u03:mode,
+8:u05:IEEE,
+7:u06:802,
+6:u08:15,
+11:u09:mode/of,
+11:u0A:of/IEEE,
+12:u0B:IEEE/802,
+13:u0C:TSCH/mode,
+8:u10:tsch,
+8:u11:mode,
+8:u13:ieee,
+7:u14:802,
+8:u01:TSCH,
+8:u02:mode,
+8:u04:IEEE,
+7:u05:802,
+6:u07:15,
+11:u09:of/IEEE,
+12:u0A:IEEE/802,
+9:u0B:802/.,
+11:u0C:mode/of,
+10:u0D:IEEE/0,
+8:u10:mode,
+8:u12:ieee,
+7:u13:802,
+7:u22:IEE,
+8:u23:IEEE,
+5:u30:E,
+6:u31:EE,
+7:u32:EEE,
+8:u33:IEEE,
+8:u00:TSCH,
+8:u01:mode,
+8:u03:IEEE,
+7:u04:802,
+6:u06:15,
+12:u09:IEEE/802,
+9:u0A:802/.,
+8:u0B:./15,
+11:u0C:of/IEEE,
+9:u0D:802/0,
+8:u11:ieee,
+7:u12:802,
+6:u14:15,
+7:u22:802,
+7:u23:802,
+7:u32:802,
+7:u33:802,
+8:u00:mode,
+8:u02:IEEE,
+7:u03:802,
+6:u05:15,
+9:u09:802/.,
+8:u0A:./15,
+8:u0B:15/.,
+12:u0C:IEEE/802,
+8:u10:ieee,
+7:u11:802,
+6:u13:15,
+8:u01:IEEE,
+7:u02:802,
+6:u04:15,
+8:u09:./15,
+8:u0A:15/.,
+7:u0B:./4,
+9:u0C:802/.,
+8:u0D:15/0,
+7:u10:802,
+6:u12:15,
+6:u21:15,
+6:u22:15,
+6:u23:15,
+6:u32:15,
+6:u33:15,
+8:u00:IEEE,
+7:u01:802,
+6:u03:15,
+8:u09:15/.,
+7:u0A:./4,
+11:u0B:4/draft,
+8:u0C:./15,
+6:u11:15,
+7:u00:802,
+6:u02:15,
+7:u09:./4,
+11:u0A:4/draft,
+8:u0C:15/.,
+6:u10:15,
+6:u01:15,
+10:u08:6tisch,
+11:u09:4/draft,
+7:u0C:./4,
+6:u00:15,
+10:u07:6tisch,
+11:u0C:4/draft,
+10:u06:6tisch,
+12:u0B:-/6tisch,
+10:u05:6tisch,
+12:u0A:-/6tisch,
+12:u0B:6tisch/-,
+10:u04:6tisch,
+6:u08:26,
+12:u09:-/6tisch,
+12:u0A:6tisch/-,
+18:u0B:-/architecture,
+12:u0D:6tisch/1,
+6:u21:6t,
+7:u22:6ti,
+8:u23:6tis,
+7:u32:sch,
+8:u33:isch,
+10:u03:6tisch,
+6:u07:26,
+12:u09:6tisch/-,
+18:u0A:-/architecture,
+18:u0B:architecture/-,
+12:u0C:-/6tisch,
+10:u02:6tisch,
+6:u06:26,
+18:u09:-/architecture,
+18:u0A:architecture/-,
+8:u0B:-/26,
+12:u0C:6tisch/-,
+18:u0D:architecture/1,
+6:u14:26,
+10:u01:6tisch,
+6:u05:26,
+18:u09:architecture/-,
+8:u0A:-/26,
+15:u0B:26/Abstract,
+18:u0C:-/architecture,
+6:u13:26,
+10:u00:6tisch,
+6:u04:26,
+8:u09:-/26,
+15:u0A:26/Abstract,
+18:u0C:architecture/-,
+8:u0D:26/1,
+6:u12:26,
+6:u21:26,
+6:u22:26,
+6:u23:26,
+6:u31:26,
+6:u32:26,
+6:u33:26,
+6:u03:26,
+15:u09:26/Abstract,
+8:u0C:-/26,
+6:u11:26,
+6:u02:26,
+15:u0C:26/Abstract,
+6:u10:26,
+6:u01:26,
+15:u0B:describes/a,
+6:u00:26,
+15:u0A:describes/a,
+15:u09:describes/a,
+24:u0B:network/architecture,
+7:u08:low,
+24:u0A:network/architecture,
+21:u0B:architecture/that,
+15:u0C:describes/a,
+7:u07:low,
+24:u09:network/architecture,
+21:u0A:architecture/that,
+17:u0B:that/provides,
+7:u06:low,
+11:u08:latency,
+21:u09:architecture/that,
+17:u0A:that/provides,
+16:u0B:provides/low,
+24:u0C:network/architecture,
+7:u14:low,
+7:u05:low,
+11:u07:latency,
+17:u09:that/provides,
+16:u0A:provides/low,
+9:u0B:low/-,
+21:u0C:architecture/that,
+7:u13:low,
+7:u04:low,
+11:u06:latency,
+16:u09:provides/low,
+9:u0A:low/-,
+13:u0B:-/latency,
+17:u0C:that/provides,
+9:u0D:low/0,
+7:u12:low,
+11:u14:latency,
+7:u22:low,
+7:u23:low,
+7:u33:low,
+7:u03:low,
+11:u05:latency,
+9:u09:low/-,
+13:u0A:-/latency,
+13:u0B:latency/,,
+16:u0C:provides/low,
+7:u11:low,
+11:u13:latency,
+7:u02:low,
+11:u04:latency,
+10:u08:jitter,
+13:u09:-/latency,
+13:u0A:latency/,,
+9:u0B:,/low,
+9:u0C:low/-,
+13:u0D:latency/1,
+7:u10:low,
+11:u12:latency,
+7:u22:lat,
+8:u23:late,
+7:u01:low,
+11:u03:latency,
+10:u07:jitter,
+13:u09:latency/,,
+9:u0A:,/low,
+13:u0C:-/latency,
+11:u11:latency,
+7:u00:low,
+11:u02:latency,
+10:u06:jitter,
+8:u08:high,
+9:u09:,/low,
+12:u0B:-/jitter,
+13:u0C:latency/,,
+11:u10:latency,
+10:u14:jitter,
+11:u01:latency,
+10:u05:jitter,
+8:u07:high,
+12:u0A:-/jitter,
+14:u0B:jitter/and,
+9:u0C:,/low,
+10:u13:jitter,
+11:u00:latency,
+10:u04:jitter,
+8:u06:high,
+15:u08:reliability,
+12:u09:-/jitter,
+14:u0A:jitter/and,
+12:u0B:and/high,
+12:u0D:jitter/1,
+10:u12:jitter,
+8:u14:high,
+6:u21:ji,
+7:u22:jit,
+8:u23:jitt,
+8:u33:tter,
+10:u03:jitter,
+8:u05:high,
+15:u07:reliability,
+14:u09:jitter/and,
+12:u0A:and/high,
+10:u0B:high/-,
+12:u0C:-/jitter,
+10:u11:jitter,
+8:u13:high,
+10:u02:jitter,
+8:u04:high,
+15:u06:reliability,
+12:u08:delivery,
+12:u09:and/high,
+10:u0A:high/-,
+17:u0B:-/reliability,
+14:u0C:jitter/and,
+10:u0D:high/0,
+10:u10:jitter,
+8:u12:high,
+15:u14:reliability,
+6:u31:gh,
+7:u32:igh,
+8:u33:high,
+10:u01:jitter,
+8:u03:high,
+15:u05:reliability,
+12:u07:delivery,
+10:u09:high/-,
+17:u0A:-/reliability,
+22:u0B:reliability/packet,
+12:u0C:and/high,
+8:u11:high,
+15:u13:reliability,
+10:u00:jitter,
+8:u02:high,
+15:u04:reliability,
+12:u06:delivery,
+17:u09:-/reliability,
+22:u0A:reliability/packet,
+19:u0B:packet/delivery,
+10:u0C:high/-,
+17:u0D:reliability/1,
+8:u10:high,
+15:u12:reliability,
+12:u14:delivery,
+8:u23:reli,
+8:u01:high,
+15:u03:reliability,
+12:u05:delivery,
+12:u08:combines,
+22:u09:reliability/packet,
+19:u0A:packet/delivery,
+14:u0B:delivery/.,
+17:u0C:-/reliability,
+15:u11:reliability,
+12:u13:delivery,
+8:u00:high,
+15:u02:reliability,
+12:u04:delivery,
+12:u07:combines,
+19:u09:packet/delivery,
+14:u0A:delivery/.,
+22:u0C:reliability/packet,
+14:u0D:delivery/0,
+15:u10:reliability,
+12:u12:delivery,
+7:u22:del,
+8:u23:deli,
+15:u01:reliability,
+12:u03:delivery,
+12:u06:combines,
+14:u09:delivery/.,
+15:u0B:It/combines,
+19:u0C:packet/delivery,
+12:u11:delivery,
+12:u14:combines,
+15:u00:reliability,
+12:u02:delivery,
+12:u05:combines,
+15:u0A:It/combines,
+14:u0B:combines/a,
+14:u0C:delivery/.,
+12:u10:delivery,
+12:u13:combines,
+12:u01:delivery,
+12:u04:combines,
+9:u08:speed,
+15:u09:It/combines,
+14:u0A:combines/a,
+10:u0B:a/high,
+14:u0D:combines/0,
+12:u12:combines,
+8:u23:comb,
+12:u00:delivery,
+12:u03:combines,
+9:u07:speed,
+11:u08:powered,
+14:u09:combines/a,
+10:u0A:a/high,
+15:u0C:It/combines,
+12:u11:combines,
+12:u02:combines,
+9:u06:speed,
+11:u07:powered,
+12:u08:backbone,
+10:u09:a/high,
+11:u0B:-/speed,
+14:u0C:combines/a,
+12:u10:combines,
+9:u14:speed,
+12:u01:combines,
+9:u05:speed,
+11:u06:powered,
+12:u07:backbone,
+11:u0A:-/speed,
+17:u0B:speed/powered,
+10:u0C:a/high,
+9:u13:speed,
+11:u14:powered,
+12:u00:combines,
+9:u04:speed,
+11:u05:powered,
+12:u06:backbone,
+15:u08:subnetworks,
+11:u09:-/speed,
+17:u0A:speed/powered,
+20:u0B:powered/backbone,
+11:u0D:speed/1,
+9:u12:speed,
+11:u13:powered,
+12:u14:backbone,
+8:u23:spee,
+7:u32:eed,
+8:u33:peed,
+9:u03:speed,
+11:u04:powered,
+12:u05:backbone,
+15:u07:subnetworks,
+17:u09:speed/powered,
+20:u0A:powered/backbone,
+16:u0B:backbone/and,
+11:u0C:-/speed,
+13:u0D:powered/0,
+9:u11:speed,
+11:u12:powered,
+12:u13:backbone,
+7:u22:pow,
+8:u23:powe,
+9:u02:speed,
+11:u03:powered,
+12:u04:backbone,
+15:u06:subnetworks,
+20:u09:powered/backbone,
+16:u0A:backbone/and,
+19:u0B:and/subnetworks,
+17:u0C:speed/powered,
+14:u0D:backbone/0,
+9:u10:speed,
+11:u11:powered,
+12:u12:backbone,
+15:u14:subnetworks,
+7:u22:bac,
+8:u23:back,
+8:u33:bone,
+9:u01:speed,
+11:u02:powered,
+12:u03:backbone,
+15:u05:subnetworks,
+16:u09:backbone/and,
+19:u0A:and/subnetworks,
+21:u0B:subnetworks/using,
+20:u0C:powered/backbone,
+11:u10:powered,
+12:u11:backbone,
+15:u13:subnetworks,
+9:u00:speed,
+11:u01:powered,
+12:u02:backbone,
+15:u04:subnetworks,
+19:u09:and/subnetworks,
+21:u0A:subnetworks/using,
+14:u0B:using/IEEE,
+16:u0C:backbone/and,
+17:u0D:subnetworks/0,
+12:u10:backbone,
+15:u12:subnetworks,
+8:u23:subn,
+11:u00:powered,
+12:u01:backbone,
+15:u03:subnetworks,
+21:u09:subnetworks/using,
+14:u0A:using/IEEE,
+19:u0C:and/subnetworks,
+15:u11:subnetworks,
+12:u00:backbone,
+15:u02:subnetworks,
+14:u09:using/IEEE,
+21:u0C:subnetworks/using,
+15:u10:subnetworks,
+15:u01:subnetworks,
+14:u0C:using/IEEE,
+15:u00:subnetworks,
+11:u08:slotted,
+10:u0B:4/time,
+11:u07:slotted,
+10:u0A:4/time,
+10:u0B:time/-,
+11:u06:slotted,
+11:u08:hopping,
+10:u09:4/time,
+10:u0A:time/-,
+13:u0B:-/slotted,
+11:u14:slotted,
+11:u05:slotted,
+11:u07:hopping,
+10:u09:time/-,
+13:u0A:-/slotted,
+19:u0B:slotted/channel,
+10:u0C:4/time,
+11:u13:slotted,
+11:u04:slotted,
+11:u06:hopping,
+13:u09:-/slotted,
+19:u0A:slotted/channel,
+19:u0B:channel/hopping,
+10:u0C:time/-,
+13:u0D:slotted/1,
+11:u12:slotted,
+11:u14:hopping,
+6:u21:sl,
+7:u22:slo,
+8:u23:slot,
+11:u03:slotted,
+11:u05:hopping,
+19:u09:slotted/channel,
+19:u0A:channel/hopping,
+13:u0B:hopping/(,
+13:u0C:-/slotted,
+11:u11:slotted,
+11:u13:hopping,
+11:u02:slotted,
+11:u04:hopping,
+19:u09:channel/hopping,
+13:u0A:hopping/(,
+10:u0B:(/TSCH,
+19:u0C:slotted/channel,
+13:u0D:hopping/0,
+11:u10:slotted,
+11:u12:hopping,
+8:u23:hopp,
+8:u33:ping,
+11:u01:slotted,
+11:u03:hopping,
+8:u08:meet,
+13:u09:hopping/(,
+10:u0A:(/TSCH,
+10:u0B:TSCH/),
+19:u0C:channel/hopping,
+11:u11:hopping,
+11:u00:slotted,
+11:u02:hopping,
+8:u07:meet,
+10:u09:(/TSCH,
+10:u0A:TSCH/),
+8:u0B:)/to,
+13:u0C:hopping/(,
+11:u10:hopping,
+11:u01:hopping,
+8:u06:meet,
+10:u09:TSCH/),
+8:u0A:)/to,
+11:u0B:to/meet,
+10:u0C:(/TSCH,
+8:u14:meet,
+11:u00:hopping,
+8:u05:meet,
+8:u09:)/to,
+11:u0A:to/meet,
+12:u0B:meet/the,
+10:u0C:TSCH/),
+8:u13:meet,
+8:u04:meet,
+12:u08:LowPower,
+11:u09:to/meet,
+12:u0A:meet/the,
+20:u0B:the/requirements,
+8:u0C:)/to,
+10:u0D:meet/0,
+8:u12:meet,
+7:u22:mee,
+8:u23:meet,
+8:u33:meet,
+8:u03:meet,
+12:u07:LowPower,
+12:u08:wireless,
+12:u09:meet/the,
+20:u0A:the/requirements,
+19:u0B:requirements/of,
+11:u0C:to/meet,
+8:u11:meet,
+8:u02:meet,
+12:u06:LowPower,
+12:u07:wireless,
+17:u08:deterministic,
+20:u09:the/requirements,
+19:u0A:requirements/of,
+15:u0B:of/LowPower,
+12:u0C:meet/the,
+8:u10:meet,
+12:u14:lowpower,
+8:u01:meet,
+12:u05:LowPower,
+12:u06:wireless,
+17:u07:deterministic,
+16:u08:applications,
+19:u09:requirements/of,
+15:u0A:of/LowPower,
+21:u0B:LowPower/wireless,
+20:u0C:the/requirements,
+12:u13:lowpower,
+12:u14:wireless,
+8:u00:meet,
+12:u04:LowPower,
+12:u05:wireless,
+17:u06:deterministic,
+16:u07:applications,
+15:u09:of/LowPower,
+21:u0A:LowPower/wireless,
+26:u0B:wireless/deterministic,
+19:u0C:requirements/of,
+14:u0D:LowPower/0,
+12:u12:lowpower,
+12:u13:wireless,
+17:u14:deterministic,
+7:u22:Low,
+8:u23:LowP,
+8:u33:ower,
+12:u03:LowPower,
+12:u04:wireless,
+17:u05:deterministic,
+16:u06:applications,
+21:u09:LowPower/wireless,
+26:u0A:wireless/deterministic,
+30:u0B:deterministic/applications,
+15:u0C:of/LowPower,
+14:u0D:wireless/0,
+12:u11:lowpower,
+12:u12:wireless,
+17:u13:deterministic,
+16:u14:applications,
+8:u33:less,
+12:u02:LowPower,
+12:u03:wireless,
+17:u04:deterministic,
+16:u05:applications,
+26:u09:wireless/deterministic,
+30:u0A:deterministic/applications,
+18:u0B:applications/.,
+21:u0C:LowPower/wireless,
+19:u0D:deterministic/0,
+12:u10:lowpower,
+12:u11:wireless,
+17:u12:deterministic,
+16:u13:applications,
+8:u23:dete,
+7:u32:tic,
+8:u33:stic,
+12:u01:LowPower,
+12:u02:wireless,
+17:u03:deterministic,
+16:u04:applications,
+30:u09:deterministic/applications,
+18:u0A:applications/.,
+26:u0C:wireless/deterministic,
+18:u0D:applications/0,
+12:u10:wireless,
+17:u11:deterministic,
+16:u12:applications,
+8:u23:appl,
+12:u00:LowPower,
+12:u01:wireless,
+17:u02:deterministic,
+16:u03:applications,
+18:u09:applications/.,
+30:u0C:deterministic/applications,
+17:u10:deterministic,
+16:u11:applications,
+12:u00:wireless,
+17:u01:deterministic,
+16:u02:applications,
+18:u0C:applications/.,
+16:u10:applications,
+17:u00:deterministic,
+16:u01:applications,
+16:u00:applications,
+10:u08:Pascal,
+10:u07:Pascal,
+10:u06:Pascal,
+12:u0B:./Pascal,
+10:u14:pascal,
+10:u05:Pascal,
+12:u0A:./Pascal,
+18:u0B:Pascal/Thubert,
+10:u13:pascal,
+10:u04:Pascal,
+12:u09:./Pascal,
+18:u0A:Pascal/Thubert,
+13:u0B:Thubert/(,
+12:u0D:Pascal/0,
+10:u12:pascal,
+7:u22:Pas,
+8:u23:Pasc,
+8:u33:scal,
+10:u03:Pascal,
+18:u09:Pascal/Thubert,
+13:u0A:Thubert/(,
+12:u0B:(/editor,
+12:u0C:./Pascal,
+10:u11:pascal,
+10:u02:Pascal,
+13:u09:Thubert/(,
+12:u0A:(/editor,
+12:u0B:editor/),
+18:u0C:Pascal/Thubert,
+10:u10:pascal,
+10:u01:Pascal,
+12:u09:(/editor,
+12:u0A:editor/),
+13:u0C:Thubert/(,
+12:u0D:editor/0,
+10:u00:Pascal,
+12:u09:editor/),
+12:u0C:(/editor,
+12:u08:Building,
+12:u0C:editor/),
+12:u07:Building,
+12:u06:Building,
+6:u08:45,
+16:u0B:Inc/Building,
+12:u05:Building,
+6:u07:45,
+9:u08:Allee,
+16:u0A:Inc/Building,
+14:u0B:Building/D,
+12:u04:Building,
+6:u06:45,
+9:u07:Allee,
+7:u08:des,
+16:u09:Inc/Building,
+14:u0A:Building/D,
+8:u0B:D/45,
+14:u0D:Building/0,
+6:u14:45,
+6:u21:Bu,
+7:u22:Bui,
+8:u23:Buil,
+12:u03:Building,
+6:u05:45,
+9:u06:Allee,
+7:u07:des,
+9:u08:Ormes,
+14:u09:Building/D,
+8:u0A:D/45,
+12:u0B:45/Allee,
+16:u0C:Inc/Building,
+6:u13:45,
+9:u14:allee,
+12:u02:Building,
+6:u04:45,
+9:u05:Allee,
+7:u06:des,
+9:u07:Ormes,
+8:u09:D/45,
+12:u0A:45/Allee,
+13:u0B:Allee/des,
+14:u0C:Building/D,
+8:u0D:45/0,
+6:u12:45,
+9:u13:allee,
+7:u14:des,
+6:u22:45,
+6:u23:45,
+6:u31:45,
+6:u32:45,
+6:u33:45,
+12:u01:Building,
+6:u03:45,
+9:u04:Allee,
+7:u05:des,
+9:u06:Ormes,
+10:u08:BP1200,
+12:u09:45/Allee,
+13:u0A:Allee/des,
+13:u0B:des/Ormes,
+8:u0C:D/45,
+11:u0D:Allee/0,
+6:u11:45,
+9:u12:allee,
+7:u13:des,
+9:u14:ormes,
+8:u23:Alle,
+7:u32:lee,
+8:u33:llee,
+12:u00:Building,
+6:u02:45,
+9:u03:Allee,
+7:u04:des,
+9:u05:Ormes,
+10:u07:BP1200,
+11:u08:MOUGINS,
+13:u09:Allee/des,
+13:u0A:des/Ormes,
+11:u0B:Ormes/-,
+12:u0C:45/Allee,
+9:u0D:des/0,
+6:u10:45,
+9:u11:allee,
+7:u12:des,
+9:u13:ormes,
+7:u23:des,
+7:u33:des,
+6:u01:45,
+9:u02:Allee,
+7:u03:des,
+9:u04:Ormes,
+10:u06:BP1200,
+11:u07:MOUGINS,
+13:u09:des/Ormes,
+11:u0A:Ormes/-,
+12:u0B:-/BP1200,
+13:u0C:Allee/des,
+11:u0D:Ormes/0,
+9:u10:allee,
+7:u11:des,
+9:u12:ormes,
+10:u14:bp1200,
+7:u22:Orm,
+8:u23:Orme,
+8:u33:rmes,
+6:u00:45,
+9:u01:Allee,
+7:u02:des,
+9:u03:Ormes,
+10:u05:BP1200,
+11:u06:MOUGINS,
+10:u08:Sophia,
+11:u09:Ormes/-,
+12:u0A:-/BP1200,
+18:u0B:BP1200/MOUGINS,
+13:u0C:des/Ormes,
+7:u10:des,
+9:u11:ormes,
+10:u13:bp1200,
+11:u14:mougins,
+9:u00:Allee,
+7:u01:des,
+9:u02:Ormes,
+10:u04:BP1200,
+11:u05:MOUGINS,
+10:u07:Sophia,
+13:u08:Antipolis,
+12:u09:-/BP1200,
+18:u0A:BP1200/MOUGINS,
+13:u0B:MOUGINS/-,
+11:u0C:Ormes/-,
+12:u0D:BP1200/1,
+9:u10:ormes,
+10:u12:bp1200,
+11:u13:mougins,
+6:u21:BP,
+7:u22:BP1,
+8:u23:BP12,
+7:u32:200,
+8:u33:1200,
+7:u00:des,
+9:u01:Ormes,
+10:u03:BP1200,
+11:u04:MOUGINS,
+10:u06:Sophia,
+13:u07:Antipolis,
+9:u08:06254,
+18:u09:BP1200/MOUGINS,
+13:u0A:MOUGINS/-,
+12:u0B:-/Sophia,
+12:u0C:-/BP1200,
+13:u0D:MOUGINS/0,
+10:u11:bp1200,
+11:u12:mougins,
+10:u14:sophia,
+6:u21:MO,
+7:u22:MOU,
+8:u23:MOUG,
+6:u31:NS,
+7:u32:INS,
+8:u33:GINS,
+9:u00:Ormes,
+10:u02:BP1200,
+11:u03:MOUGINS,
+10:u05:Sophia,
+13:u06:Antipolis,
+9:u07:06254,
+10:u08:FRANCE,
+13:u09:MOUGINS/-,
+12:u0A:-/Sophia,
+20:u0B:Sophia/Antipolis,
+18:u0C:BP1200/MOUGINS,
+10:u10:bp1200,
+11:u11:mougins,
+10:u13:sophia,
+13:u14:antipolis,
+10:u01:BP1200,
+11:u02:MOUGINS,
+10:u04:Sophia,
+13:u05:Antipolis,
+9:u06:06254,
+10:u07:FRANCE,
+12:u09:-/Sophia,
+20:u0A:Sophia/Antipolis,
+19:u0B:Antipolis/06254,
+13:u0C:MOUGINS/-,
+12:u0D:Sophia/1,
+11:u10:mougins,
+10:u12:sophia,
+13:u13:antipolis,
+9:u14:06254,
+7:u22:Sop,
+8:u23:Soph,
+7:u32:hia,
+8:u33:phia,
+10:u00:BP1200,
+11:u01:MOUGINS,
+10:u03:Sophia,
+13:u04:Antipolis,
+9:u05:06254,
+10:u06:FRANCE,
+20:u09:Sophia/Antipolis,
+19:u0A:Antipolis/06254,
+16:u0B:06254/FRANCE,
+12:u0C:-/Sophia,
+15:u0D:Antipolis/0,
+10:u11:sophia,
+13:u12:antipolis,
+9:u13:06254,
+10:u14:france,
+7:u22:Ant,
+8:u23:Anti,
+11:u00:MOUGINS,
+10:u02:Sophia,
+13:u03:Antipolis,
+9:u04:06254,
+10:u05:FRANCE,
+7:u08:+33,
+19:u09:Antipolis/06254,
+16:u0A:06254/FRANCE,
+16:u0B:FRANCE/Phone,
+20:u0C:Sophia/Antipolis,
+11:u0D:06254/0,
+10:u10:sophia,
+13:u11:antipolis,
+9:u12:06254,
+10:u13:france,
+7:u22:062,
+8:u23:0625,
+7:u32:254,
+8:u33:6254,
+10:u01:Sophia,
+13:u02:Antipolis,
+9:u03:06254,
+10:u04:FRANCE,
+7:u07:+33,
+7:u08:497,
+16:u09:06254/FRANCE,
+16:u0A:FRANCE/Phone,
+19:u0C:Antipolis/06254,
+12:u0D:FRANCE/0,
+13:u10:antipolis,
+9:u11:06254,
+10:u12:france,
+6:u21:FR,
+7:u22:FRA,
+8:u23:FRAN,
+6:u31:CE,
+7:u32:NCE,
+8:u33:ANCE,
+10:u00:Sophia,
+13:u01:Antipolis,
+9:u02:06254,
+10:u03:FRANCE,
+7:u06:+33,
+7:u07:497,
+16:u09:FRANCE/Phone,
+9:u0B::/+33,
+16:u0C:06254/FRANCE,
+9:u10:06254,
+10:u11:france,
+7:u14:+33,
+13:u00:Antipolis,
+9:u01:06254,
+10:u02:FRANCE,
+7:u05:+33,
+7:u06:497,
+9:u0A::/+33,
+11:u0B:+33/497,
+16:u0C:FRANCE/Phone,
+10:u10:france,
+7:u13:+33,
+7:u14:497,
+9:u00:06254,
+10:u01:FRANCE,
+7:u04:+33,
+7:u05:497,
+6:u08:34,
+9:u09::/+33,
+11:u0A:+33/497,
+10:u0B:497/23,
+9:u0D:+33/0,
+7:u12:+33,
+7:u13:497,
+7:u22:+33,
+7:u23:+33,
+7:u32:+33,
+7:u33:+33,
+10:u00:FRANCE,
+7:u03:+33,
+7:u04:497,
+6:u07:34,
+11:u09:+33/497,
+10:u0A:497/23,
+9:u0B:23/26,
+9:u0C::/+33,
+9:u0D:497/0,
+7:u11:+33,
+7:u12:497,
+6:u21:49,
+7:u22:497,
+7:u23:497,
+7:u32:497,
+7:u33:497,
+7:u02:+33,
+7:u03:497,
+6:u06:34,
+10:u09:497/23,
+9:u0A:23/26,
+9:u0B:26/34,
+11:u0C:+33/497,
+7:u10:+33,
+7:u11:497,
+6:u14:34,
+7:u01:+33,
+7:u02:497,
+6:u05:34,
+18:u08:pthubert@cisco,
+9:u09:23/26,
+9:u0A:26/34,
+12:u0B:34/Email,
+10:u0C:497/23,
+8:u0D:26/0,
+7:u10:497,
+6:u13:34,
+7:u00:+33,
+7:u01:497,
+6:u04:34,
+18:u07:pthubert@cisco,
+9:u09:26/34,
+12:u0A:34/Email,
+9:u0C:23/26,
+8:u0D:34/0,
+6:u12:34,
+6:u21:34,
+6:u22:34,
+6:u23:34,
+6:u32:34,
+6:u33:34,
+7:u00:497,
+6:u03:34,
+18:u06:pthubert@cisco,
+12:u09:34/Email,
+20:u0B::/pthubert@cisco,
+9:u0C:26/34,
+6:u11:34,
+18:u14:pthubert@cisco,
+6:u02:34,
+18:u05:pthubert@cisco,
+20:u0A::/pthubert@cisco,
+20:u0B:pthubert@cisco/.,
+12:u0C:34/Email,
+6:u10:34,
+18:u13:pthubert@cisco,
+6:u01:34,
+18:u04:pthubert@cisco,
+20:u09::/pthubert@cisco,
+20:u0A:pthubert@cisco/.,
+20:u0D:pthubert@cisco/0,
+18:u12:pthubert@cisco,
+6:u21:pt,
+7:u22:pth,
+8:u23:pthu,
+6:u00:34,
+18:u03:pthubert@cisco,
+20:u09:pthubert@cisco/.,
+20:u0C::/pthubert@cisco,
+18:u11:pthubert@cisco,
+18:u02:pthubert@cisco,
+20:u0C:pthubert@cisco/.,
+18:u10:pthubert@cisco,
+12:u06:20190804,
+17:u0B:date/20190804,
+12:u14:20190804,
+12:u05:20190804,
+17:u0A:date/20190804,
+14:u0B:20190804/;,
+12:u13:20190804,
+12:u04:20190804,
+17:u09:date/20190804,
+14:u0A:20190804/;,
+14:u0D:20190804/0,
+12:u12:20190804,
+7:u32:804,
+8:u33:0804,
+12:u03:20190804,
+14:u09:20190804/;,
+17:u0C:date/20190804,
+12:u11:20190804,
+12:u02:20190804,
+12:u08:20190805,
+14:u0C:20190804/;,
+12:u10:20190804,
+12:u01:20190804,
+12:u07:20190805,
+9:u08:NFSv4,
+12:u00:20190804,
+12:u06:20190805,
+9:u07:NFSv4,
+15:u0B:on/20190805,
+12:u14:20190805,
+12:u05:20190805,
+9:u06:NFSv4,
+15:u0A:on/20190805,
+18:u0B:20190805/NFSv4,
+12:u13:20190805,
+9:u14:nfsv4,
+12:u04:20190805,
+9:u05:NFSv4,
+10:u08:Noveck,
+15:u09:on/20190805,
+18:u0A:20190805/NFSv4,
+11:u0B:NFSv4/D,
+14:u0D:20190805/0,
+12:u12:20190805,
+9:u13:nfsv4,
+7:u32:805,
+8:u33:0805,
+12:u03:20190805,
+9:u04:NFSv4,
+10:u07:Noveck,
+18:u09:20190805/NFSv4,
+11:u0A:NFSv4/D,
+15:u0C:on/20190805,
+11:u0D:NFSv4/0,
+12:u11:20190805,
+9:u12:nfsv4,
+6:u21:NF,
+7:u22:NFS,
+8:u23:NFSv,
+6:u31:v4,
+7:u32:Sv4,
+8:u33:FSv4,
+12:u02:20190805,
+9:u03:NFSv4,
+10:u06:Noveck,
+11:u09:NFSv4/D,
+12:u0B:./Noveck,
+18:u0C:20190805/NFSv4,
+12:u10:20190805,
+9:u11:nfsv4,
+10:u14:noveck,
+12:u01:20190805,
+9:u02:NFSv4,
+10:u05:Noveck,
+12:u0A:./Noveck,
+12:u0B:Noveck/,,
+11:u0C:NFSv4/D,
+9:u10:nfsv4,
+10:u13:noveck,
+12:u00:20190805,
+9:u01:NFSv4,
+10:u04:Noveck,
+12:u09:./Noveck,
+12:u0A:Noveck/,,
+12:u0D:Noveck/0,
+10:u12:noveck,
+7:u22:Nov,
+8:u23:Nove,
+7:u32:eck,
+8:u33:veck,
+9:u00:NFSv4,
+10:u03:Noveck,
+12:u09:Noveck/,,
+12:u0C:./Noveck,
+10:u11:noveck,
+10:u02:Noveck,
+12:u0C:Noveck/,,
+10:u10:noveck,
+10:u01:Noveck,
+10:u08:NetApp,
+10:u00:Noveck,
+10:u07:NetApp,
+10:u06:NetApp,
+16:u0B:Draft/NetApp,
+10:u14:netapp,
+10:u05:NetApp,
+8:u08:5661,
+16:u0A:Draft/NetApp,
+20:u0B:NetApp/Obsoletes,
+10:u13:netapp,
+10:u04:NetApp,
+8:u07:5661,
+16:u09:Draft/NetApp,
+20:u0A:NetApp/Obsoletes,
+12:u0D:NetApp/0,
+10:u12:netapp,
+8:u23:NetA,
+6:u31:pp,
+7:u32:App,
+8:u33:tApp,
+10:u03:NetApp,
+8:u06:5661,
+20:u09:NetApp/Obsoletes,
+10:u0B::/5661,
+16:u0C:Draft/NetApp,
+10:u11:netapp,
+8:u14:5661,
+10:u02:NetApp,
+8:u05:5661,
+10:u0A::/5661,
+10:u0B:5661/(,
+20:u0C:NetApp/Obsoletes,
+10:u10:netapp,
+8:u13:5661,
+10:u01:NetApp,
+8:u04:5661,
+10:u09::/5661,
+10:u0A:5661/(,
+10:u0D:5661/0,
+8:u12:5661,
+6:u21:56,
+7:u22:566,
+8:u23:5661,
+6:u31:61,
+7:u32:661,
+8:u33:5661,
+10:u00:NetApp,
+8:u03:5661,
+10:u09:5661/(,
+10:u0C::/5661,
+8:u11:5661,
+8:u02:5661,
+10:u0C:5661/(,
+8:u10:5661,
+8:u01:5661,
+9:u08:Lever,
+7:u0B:)/C,
+8:u00:5661,
+9:u07:Lever,
+7:u0A:)/C,
+9:u06:Lever,
+7:u09:)/C,
+11:u0B:./Lever,
+9:u14:lever,
+9:u05:Lever,
+11:u0A:./Lever,
+18:u0B:Lever/Intended,
+7:u0C:)/C,
+9:u13:lever,
+9:u04:Lever,
+11:u09:./Lever,
+18:u0A:Lever/Intended,
+11:u0D:Lever/0,
+9:u12:lever,
+7:u22:Lev,
+8:u23:Leve,
+9:u03:Lever,
+18:u09:Lever/Intended,
+11:u0C:./Lever,
+9:u11:lever,
+9:u02:Lever,
+10:u08:ORACLE,
+18:u0C:Lever/Intended,
+9:u10:lever,
+9:u01:Lever,
+10:u07:ORACLE,
+9:u00:Lever,
+10:u06:ORACLE,
+16:u0B:Track/ORACLE,
+10:u14:oracle,
+10:u05:ORACLE,
+16:u0A:Track/ORACLE,
+18:u0B:ORACLE/Expires,
+10:u13:oracle,
+10:u04:ORACLE,
+16:u09:Track/ORACLE,
+18:u0A:ORACLE/Expires,
+12:u0D:ORACLE/0,
+10:u12:oracle,
+6:u21:OR,
+7:u22:ORA,
+8:u23:ORAC,
+6:u31:LE,
+7:u32:CLE,
+8:u33:ACLE,
+10:u03:ORACLE,
+18:u09:ORACLE/Expires,
+16:u0C:Track/ORACLE,
+10:u11:oracle,
+10:u02:ORACLE,
+14:u0B:February/5,
+18:u0C:ORACLE/Expires,
+10:u10:oracle,
+10:u01:ORACLE,
+14:u0A:February/5,
+10:u00:ORACLE,
+14:u09:February/5,
+15:u0B:2020/August,
+14:u0C:February/5,
+15:u0A:2020/August,
+12:u0B:August/4,
+15:u09:2020/August,
+12:u0A:August/4,
+7:u0B:4/,,
+8:u08:File,
+12:u09:August/4,
+7:u0A:4/,,
+15:u0C:2020/August,
+8:u07:File,
+10:u08:System,
+7:u09:4/,,
+16:u0B:2019/Network,
+12:u0C:August/4,
+8:u06:File,
+10:u07:System,
+16:u0A:2019/Network,
+16:u0B:Network/File,
+7:u0C:4/,,
+8:u14:file,
+8:u05:File,
+10:u06:System,
+7:u08:NFS,
+16:u09:2019/Network,
+16:u0A:Network/File,
+15:u0B:File/System,
+8:u13:file,
+8:u04:File,
+10:u05:System,
+7:u07:NFS,
+16:u09:Network/File,
+15:u0A:File/System,
+12:u0B:System/(,
+16:u0C:2019/Network,
+10:u0D:File/0,
+8:u12:file,
+7:u22:Fil,
+8:u23:File,
+8:u33:File,
+8:u03:File,
+10:u04:System,
+7:u06:NFS,
+11:u08:Version,
+15:u09:File/System,
+12:u0A:System/(,
+9:u0B:(/NFS,
+16:u0C:Network/File,
+12:u0D:System/0,
+8:u11:file,
+7:u14:nfs,
+8:u02:File,
+10:u03:System,
+7:u05:NFS,
+11:u07:Version,
+12:u09:System/(,
+9:u0A:(/NFS,
+9:u0B:NFS/),
+15:u0C:File/System,
+8:u10:file,
+7:u13:nfs,
+8:u01:File,
+10:u02:System,
+7:u04:NFS,
+11:u06:Version,
+9:u08:Minor,
+9:u09:(/NFS,
+9:u0A:NFS/),
+13:u0B:)/Version,
+12:u0C:System/(,
+9:u0D:NFS/0,
+7:u12:nfs,
+11:u14:version,
+7:u23:NFS,
+6:u31:FS,
+7:u32:NFS,
+7:u33:NFS,
+8:u00:File,
+10:u01:System,
+7:u03:NFS,
+11:u05:Version,
+9:u07:Minor,
+9:u09:NFS/),
+13:u0A:)/Version,
+13:u0B:Version/4,
+9:u0C:(/NFS,
+7:u11:nfs,
+11:u13:version,
+10:u00:System,
+7:u02:NFS,
+11:u04:Version,
+9:u06:Minor,
+13:u09:)/Version,
+13:u0A:Version/4,
+11:u0B:4/Minor,
+9:u0C:NFS/),
+13:u0D:Version/0,
+7:u10:nfs,
+11:u12:version,
+9:u14:minor,
+7:u22:Ver,
+8:u23:Vers,
+7:u01:NFS,
+11:u03:Version,
+9:u05:Minor,
+13:u09:Version/4,
+11:u0A:4/Minor,
+17:u0B:Minor/Version,
+13:u0C:)/Version,
+11:u11:version,
+9:u13:minor,
+7:u00:NFS,
+11:u02:Version,
+9:u04:Minor,
+11:u09:4/Minor,
+17:u0A:Minor/Version,
+13:u0B:Version/1,
+13:u0C:Version/4,
+11:u0D:Minor/0,
+11:u10:version,
+9:u12:minor,
+6:u21:Mi,
+7:u22:Min,
+8:u23:Mino,
+8:u33:inor,
+11:u01:Version,
+9:u03:Minor,
+17:u09:Minor/Version,
+13:u0A:Version/1,
+14:u0B:1/Protocol,
+11:u0C:4/Minor,
+9:u11:minor,
+11:u00:Version,
+9:u02:Minor,
+13:u09:Version/1,
+14:u0A:1/Protocol,
+18:u0B:Protocol/draft,
+17:u0C:Minor/Version,
+9:u10:minor,
+9:u01:Minor,
+14:u09:1/Protocol,
+18:u0A:Protocol/draft,
+13:u0C:Version/1,
+9:u00:Minor,
+9:u08:nfsv4,
+18:u09:Protocol/draft,
+14:u0C:1/Protocol,
+9:u07:nfsv4,
+18:u0C:Protocol/draft,
+9:u06:nfsv4,
+17:u08:rfc5661sesqui,
+11:u0B:-/nfsv4,
+9:u05:nfsv4,
+17:u07:rfc5661sesqui,
+11:u0A:-/nfsv4,
+11:u0B:nfsv4/-,
+9:u04:nfsv4,
+17:u06:rfc5661sesqui,
+8:u08:msns,
+11:u09:-/nfsv4,
+11:u0A:nfsv4/-,
+19:u0B:-/rfc5661sesqui,
+11:u0D:nfsv4/1,
+17:u14:rfc5661sesqui,
+6:u21:nf,
+7:u22:nfs,
+8:u23:nfsv,
+7:u32:sv4,
+8:u33:fsv4,
+9:u03:nfsv4,
+17:u05:rfc5661sesqui,
+8:u07:msns,
+11:u09:nfsv4/-,
+19:u0A:-/rfc5661sesqui,
+19:u0B:rfc5661sesqui/-,
+11:u0C:-/nfsv4,
+17:u13:rfc5661sesqui,
+9:u02:nfsv4,
+17:u04:rfc5661sesqui,
+8:u06:msns,
+19:u09:-/rfc5661sesqui,
+19:u0A:rfc5661sesqui/-,
+10:u0B:-/msns,
+11:u0C:nfsv4/-,
+19:u0D:rfc5661sesqui/1,
+17:u12:rfc5661sesqui,
+8:u14:msns,
+8:u23:rfc5,
+6:u31:ui,
+7:u32:qui,
+8:u33:squi,
+9:u01:nfsv4,
+17:u03:rfc5661sesqui,
+8:u05:msns,
+19:u09:rfc5661sesqui/-,
+10:u0A:-/msns,
+10:u0B:msns/-,
+19:u0C:-/rfc5661sesqui,
+17:u11:rfc5661sesqui,
+8:u13:msns,
+9:u00:nfsv4,
+17:u02:rfc5661sesqui,
+8:u04:msns,
+10:u09:-/msns,
+10:u0A:msns/-,
+19:u0C:rfc5661sesqui/-,
+10:u0D:msns/1,
+17:u10:rfc5661sesqui,
+8:u12:msns,
+6:u21:ms,
+7:u22:msn,
+8:u23:msns,
+7:u32:sns,
+8:u33:msns,
+17:u01:rfc5661sesqui,
+8:u03:msns,
+10:u09:msns/-,
+10:u0C:-/msns,
+8:u11:msns,
+17:u00:rfc5661sesqui,
+8:u02:msns,
+10:u0C:msns/-,
+8:u10:msns,
+8:u01:msns,
+8:u00:msns,
+15:u0B:the/Network,
+15:u0A:the/Network,
+15:u09:the/Network,
+15:u0C:the/Network,
+11:u08:version,
+11:u07:version,
+11:u06:version,
+9:u08:minor,
+13:u0B:)/version,
+11:u05:version,
+9:u07:minor,
+13:u0A:)/version,
+13:u0B:version/4,
+11:u04:version,
+9:u06:minor,
+13:u09:)/version,
+13:u0A:version/4,
+11:u0B:4/minor,
+13:u0D:version/0,
+8:u23:vers,
+11:u03:version,
+9:u05:minor,
+13:u09:version/4,
+11:u0A:4/minor,
+17:u0B:minor/version,
+13:u0C:)/version,
+11:u02:version,
+9:u04:minor,
+11:u09:4/minor,
+17:u0A:minor/version,
+13:u0B:version/1,
+13:u0C:version/4,
+11:u0D:minor/0,
+8:u23:mino,
+11:u01:version,
+9:u03:minor,
+12:u08:features,
+17:u09:minor/version,
+13:u0A:version/1,
+7:u0B:1/,,
+11:u0C:4/minor,
+11:u00:version,
+9:u02:minor,
+12:u07:features,
+12:u08:retained,
+13:u09:version/1,
+7:u0A:1/,,
+17:u0C:minor/version,
+9:u01:minor,
+12:u06:features,
+12:u07:retained,
+7:u09:1/,,
+22:u0B:including/features,
+13:u0C:version/1,
+12:u14:features,
+9:u00:minor,
+12:u05:features,
+12:u06:retained,
+22:u0A:including/features,
+21:u0B:features/retained,
+7:u0C:1/,,
+12:u13:features,
+12:u14:retained,
+12:u04:features,
+12:u05:retained,
+8:u08:base,
+22:u09:including/features,
+21:u0A:features/retained,
+17:u0B:retained/from,
+14:u0D:features/0,
+12:u12:features,
+12:u13:retained,
+12:u03:features,
+12:u04:retained,
+8:u07:base,
+21:u09:features/retained,
+17:u0A:retained/from,
+12:u0B:from/the,
+22:u0C:including/features,
+14:u0D:retained/0,
+12:u11:features,
+12:u12:retained,
+8:u23:reta,
+12:u02:features,
+12:u03:retained,
+8:u06:base,
+17:u09:retained/from,
+12:u0A:from/the,
+12:u0B:the/base,
+21:u0C:features/retained,
+12:u10:features,
+12:u11:retained,
+8:u14:base,
+12:u01:features,
+12:u02:retained,
+8:u05:base,
+12:u09:from/the,
+12:u0A:the/base,
+17:u0B:base/protocol,
+17:u0C:retained/from,
+12:u10:retained,
+8:u13:base,
+12:u00:features,
+12:u01:retained,
+8:u04:base,
+12:u09:the/base,
+17:u0A:base/protocol,
+14:u0B:protocol/(,
+12:u0C:from/the,
+10:u0D:base/0,
+8:u12:base,
+8:u33:base,
+12:u00:retained,
+8:u03:base,
+17:u09:base/protocol,
+14:u0A:protocol/(,
+12:u0C:the/base,
+8:u11:base,
+8:u02:base,
+14:u09:protocol/(,
+15:u0B:NFS/version,
+17:u0C:base/protocol,
+8:u10:base,
+8:u01:base,
+15:u0A:NFS/version,
+14:u0C:protocol/(,
+8:u00:base,
+5:u08:0,
+15:u09:NFS/version,
+5:u07:0,
+15:u0C:NFS/version,
+5:u06:0,
+13:u0B:version/0,
+5:u14:0,
+5:u05:0,
+13:u0A:version/0,
+7:u0B:0/,,
+5:u13:0,
+5:u04:0,
+13:u08:specified,
+13:u09:version/0,
+7:u0A:0/,,
+7:u0D:0/0,
+5:u12:0,
+5:u21:0,
+5:u22:0,
+5:u23:0,
+5:u31:0,
+5:u32:0,
+5:u33:0,
+5:u03:0,
+13:u07:specified,
+7:u09:0/,,
+12:u0B:which/is,
+13:u0C:version/0,
+5:u11:0,
+5:u02:0,
+13:u06:specified,
+12:u0A:which/is,
+16:u0B:is/specified,
+7:u0C:0/,,
+5:u10:0,
+13:u14:specified,
+5:u01:0,
+13:u05:specified,
+8:u08:7530,
+12:u09:which/is,
+16:u0A:is/specified,
+16:u0B:specified/in,
+13:u13:specified,
+5:u00:0,
+13:u04:specified,
+8:u07:7530,
+16:u09:is/specified,
+16:u0A:specified/in,
+10:u0B:in/RFC,
+12:u0C:which/is,
+15:u0D:specified/0,
+13:u12:specified,
+13:u03:specified,
+8:u06:7530,
+16:u09:specified/in,
+10:u0A:in/RFC,
+12:u0B:RFC/7530,
+16:u0C:is/specified,
+13:u11:specified,
+8:u14:7530,
+13:u02:specified,
+8:u05:7530,
+10:u09:in/RFC,
+12:u0A:RFC/7530,
+10:u0B:7530/),
+16:u0C:specified/in,
+13:u10:specified,
+8:u13:7530,
+13:u01:specified,
+8:u04:7530,
+12:u09:RFC/7530,
+10:u0A:7530/),
+10:u0C:in/RFC,
+10:u0D:7530/0,
+8:u12:7530,
+7:u22:753,
+8:u23:7530,
+7:u32:530,
+8:u33:7530,
+13:u00:specified,
+8:u03:7530,
+8:u08:made,
+10:u09:7530/),
+12:u0C:RFC/7530,
+8:u11:7530,
+8:u02:7530,
+8:u07:made,
+16:u08:subsequently,
+23:u0B:protocol/extensions,
+10:u0C:7530/),
+8:u10:7530,
+8:u01:7530,
+8:u06:made,
+16:u07:subsequently,
+23:u0A:protocol/extensions,
+19:u0B:extensions/made,
+8:u14:made,
+8:u00:7530,
+8:u05:made,
+16:u06:subsequently,
+23:u09:protocol/extensions,
+19:u0A:extensions/made,
+21:u0B:made/subsequently,
+8:u13:made,
+16:u14:subsequently,
+8:u04:made,
+16:u05:subsequently,
+9:u08:later,
+19:u09:extensions/made,
+21:u0A:made/subsequently,
+18:u0B:subsequently/.,
+23:u0C:protocol/extensions,
+10:u0D:made/0,
+8:u12:made,
+16:u13:subsequently,
+7:u22:mad,
+8:u23:made,
+8:u33:made,
+8:u03:made,
+16:u04:subsequently,
+9:u07:later,
+21:u09:made/subsequently,
+18:u0A:subsequently/.,
+19:u0C:extensions/made,
+18:u0D:subsequently/0,
+8:u11:made,
+16:u12:subsequently,
+8:u23:subs,
+8:u02:made,
+16:u03:subsequently,
+9:u06:later,
+18:u09:subsequently/.,
+13:u0B:The/later,
+21:u0C:made/subsequently,
+8:u10:made,
+16:u11:subsequently,
+9:u14:later,
+8:u01:made,
+16:u02:subsequently,
+9:u05:later,
+13:u0A:The/later,
+15:u0B:later/minor,
+18:u0C:subsequently/.,
+16:u10:subsequently,
+9:u13:later,
+8:u00:made,
+16:u01:subsequently,
+9:u04:later,
+13:u09:The/later,
+15:u0A:later/minor,
+11:u0D:later/0,
+9:u12:later,
+8:u33:ater,
+16:u00:subsequently,
+9:u03:later,
+16:u08:dependencies,
+15:u09:later/minor,
+15:u0B:version/has,
+13:u0C:The/later,
+9:u11:later,
+9:u02:later,
+16:u07:dependencies,
+15:u0A:version/has,
+10:u0B:has/no,
+15:u0C:later/minor,
+9:u10:later,
+9:u01:later,
+16:u06:dependencies,
+15:u09:version/has,
+10:u0A:has/no,
+19:u0B:no/dependencies,
+16:u14:dependencies,
+9:u00:later,
+16:u05:dependencies,
+10:u09:has/no,
+19:u0A:no/dependencies,
+19:u0B:dependencies/on,
+15:u0C:version/has,
+16:u13:dependencies,
+16:u04:dependencies,
+19:u09:no/dependencies,
+19:u0A:dependencies/on,
+10:u0B:on/NFS,
+10:u0C:has/no,
+18:u0D:dependencies/0,
+16:u12:dependencies,
+8:u23:depe,
+8:u33:cies,
+16:u03:dependencies,
+19:u09:dependencies/on,
+10:u0A:on/NFS,
+19:u0C:no/dependencies,
+16:u11:dependencies,
+16:u02:dependencies,
+10:u09:on/NFS,
+19:u0C:dependencies/on,
+16:u10:dependencies,
+16:u01:dependencies,
+10:u0C:on/NFS,
+16:u00:dependencies,
+10:u0B:and/is,
+12:u08:separate,
+10:u0A:and/is,
+12:u07:separate,
+10:u09:and/is,
+16:u0B:considered/a,
+12:u06:separate,
+16:u0A:considered/a,
+14:u0B:a/separate,
+10:u0C:and/is,
+12:u14:separate,
+12:u05:separate,
+16:u09:considered/a,
+14:u0A:a/separate,
+21:u0B:separate/protocol,
+12:u13:separate,
+12:u04:separate,
+14:u09:a/separate,
+21:u0A:separate/protocol,
+14:u0B:protocol/.,
+16:u0C:considered/a,
+14:u0D:separate/0,
+12:u12:separate,
+7:u22:sep,
+8:u23:sepa,
+8:u33:rate,
+12:u03:separate,
+21:u09:separate/protocol,
+14:u0A:protocol/.,
+14:u0C:a/separate,
+12:u11:separate,
+12:u02:separate,
+11:u08:RFC5661,
+14:u09:protocol/.,
+21:u0C:separate/protocol,
+12:u10:separate,
+12:u01:separate,
+11:u07:RFC5661,
+14:u0C:protocol/.,
+12:u00:separate,
+11:u06:RFC5661,
+21:u0B:obsoletes/RFC5661,
+11:u14:rfc5661,
+11:u05:RFC5661,
+16:u08:substantialy,
+21:u0A:obsoletes/RFC5661,
+13:u0B:RFC5661/.,
+11:u13:rfc5661,
+11:u04:RFC5661,
+16:u07:substantialy,
+11:u08:revises,
+21:u09:obsoletes/RFC5661,
+13:u0A:RFC5661/.,
+13:u0D:RFC5661/0,
+11:u12:rfc5661,
+8:u23:RFC5,
+11:u03:RFC5661,
+16:u06:substantialy,
+11:u07:revises,
+13:u09:RFC5661/.,
+19:u0B:It/substantialy,
+21:u0C:obsoletes/RFC5661,
+11:u11:rfc5661,
+16:u14:substantialy,
+11:u02:RFC5661,
+16:u05:substantialy,
+11:u06:revises,
+13:u08:treatment,
+19:u0A:It/substantialy,
+24:u0B:substantialy/revises,
+13:u0C:RFC5661/.,
+11:u10:rfc5661,
+16:u13:substantialy,
+11:u14:revises,
+11:u01:RFC5661,
+16:u04:substantialy,
+11:u05:revises,
+13:u07:treatment,
+19:u09:It/substantialy,
+24:u0A:substantialy/revises,
+15:u0B:revises/the,
+18:u0D:substantialy/0,
+16:u12:substantialy,
+11:u13:revises,
+7:u32:aly,
+8:u33:ialy,
+11:u00:RFC5661,
+16:u03:substantialy,
+11:u04:revises,
+13:u06:treatment,
+24:u09:substantialy/revises,
+15:u0A:revises/the,
+17:u0B:the/treatment,
+19:u0C:It/substantialy,
+13:u0D:revises/0,
+16:u11:substantialy,
+11:u12:revises,
+13:u14:treatment,
+8:u33:ises,
+16:u02:substantialy,
+11:u03:revises,
+13:u05:treatment,
+12:u08:relating,
+15:u09:revises/the,
+17:u0A:the/treatment,
+16:u0B:treatment/of,
+24:u0C:substantialy/revises,
+16:u10:substantialy,
+11:u11:revises,
+13:u13:treatment,
+16:u01:substantialy,
+11:u02:revises,
+13:u04:treatment,
+12:u07:relating,
+17:u09:the/treatment,
+16:u0A:treatment/of,
+15:u0B:of/features,
+15:u0C:revises/the,
+15:u0D:treatment/0,
+11:u10:revises,
+13:u12:treatment,
+7:u22:tre,
+8:u23:trea,
+16:u00:substantialy,
+11:u01:revises,
+13:u03:treatment,
+12:u06:relating,
+9:u08:multi,
+16:u09:treatment/of,
+15:u0A:of/features,
+21:u0B:features/relating,
+17:u0C:the/treatment,
+13:u11:treatment,
+11:u00:revises,
+13:u02:treatment,
+12:u05:relating,
+9:u07:multi,
+15:u09:of/features,
+21:u0A:features/relating,
+15:u0B:relating/to,
+16:u0C:treatment/of,
+13:u10:treatment,
+13:u01:treatment,
+12:u04:relating,
+9:u06:multi,
+21:u09:features/relating,
+15:u0A:relating/to,
+12:u0B:to/multi,
+15:u0C:of/features,
+14:u0D:relating/0,
+9:u14:multi,
+13:u00:treatment,
+12:u03:relating,
+9:u05:multi,
+13:u08:namesapce,
+15:u09:relating/to,
+12:u0A:to/multi,
+11:u0B:multi/-,
+21:u0C:features/relating,
+9:u13:multi,
+12:u02:relating,
+9:u04:multi,
+13:u07:namesapce,
+15:u08:superseding,
+12:u09:to/multi,
+11:u0A:multi/-,
+12:u0B:-/server,
+15:u0C:relating/to,
+11:u0D:multi/0,
+9:u12:multi,
+7:u22:mul,
+8:u23:mult,
+7:u32:lti,
+8:u33:ulti,
+12:u01:relating,
+9:u03:multi,
+13:u06:namesapce,
+15:u07:superseding,
+11:u09:multi/-,
+12:u0A:-/server,
+20:u0B:server/namesapce,
+12:u0C:to/multi,
+9:u11:multi,
+13:u14:namesapce,
+12:u00:relating,
+9:u02:multi,
+13:u05:namesapce,
+15:u06:superseding,
+15:u08:description,
+12:u09:-/server,
+20:u0A:server/namesapce,
+25:u0B:namesapce/superseding,
+11:u0C:multi/-,
+12:u0D:server/1,
+9:u10:multi,
+13:u13:namesapce,
+15:u14:superseding,
+9:u01:multi,
+13:u04:namesapce,
+15:u05:superseding,
+15:u07:description,
+20:u09:server/namesapce,
+25:u0A:namesapce/superseding,
+19:u0B:superseding/the,
+12:u0C:-/server,
+15:u0D:namesapce/0,
+13:u12:namesapce,
+15:u13:superseding,
+7:u32:pce,
+8:u33:apce,
+9:u00:multi,
+13:u03:namesapce,
+15:u04:superseding,
+15:u06:description,
+25:u09:namesapce/superseding,
+19:u0A:superseding/the,
+19:u0B:the/description,
+20:u0C:server/namesapce,
+17:u0D:superseding/0,
+13:u11:namesapce,
+15:u12:superseding,
+8:u23:supe,
+13:u02:namesapce,
+15:u03:superseding,
+15:u05:description,
+19:u09:superseding/the,
+19:u0A:the/description,
+18:u0B:description/of,
+25:u0C:namesapce/superseding,
+13:u10:namesapce,
+15:u11:superseding,
+13:u01:namesapce,
+15:u02:superseding,
+15:u04:description,
+13:u08:appearing,
+19:u09:the/description,
+18:u0A:description/of,
+12:u0B:of/those,
+19:u0C:superseding/the,
+17:u0D:description/0,
+15:u10:superseding,
+13:u00:namesapce,
+15:u01:superseding,
+15:u03:description,
+13:u07:appearing,
+18:u09:description/of,
+12:u0A:of/those,
+18:u0B:those/features,
+19:u0C:the/description,
+15:u00:superseding,
+15:u02:description,
+13:u06:appearing,
+12:u09:of/those,
+18:u0A:those/features,
+22:u0B:features/appearing,
+18:u0C:description/of,
+13:u14:appearing,
+15:u01:description,
+13:u05:appearing,
+18:u09:those/features,
+22:u0A:features/appearing,
+16:u0B:appearing/in,
+12:u0C:of/those,
+13:u13:appearing,
+15:u00:description,
+13:u04:appearing,
+22:u09:features/appearing,
+16:u0A:appearing/in,
+14:u0B:in/RFC5661,
+18:u0C:those/features,
+15:u0D:appearing/0,
+13:u12:appearing,
+8:u23:appe,
+13:u03:appearing,
+16:u09:appearing/in,
+14:u0A:in/RFC5661,
+22:u0C:features/appearing,
+13:u11:appearing,
+13:u02:appearing,
+14:u09:in/RFC5661,
+16:u0C:appearing/in,
+13:u10:appearing,
+13:u01:appearing,
+14:u0C:in/RFC5661,
+13:u00:appearing,
+13:u0B:of/Noveck,
+13:u0A:of/Noveck,
+12:u0B:Noveck/&,
+13:u09:of/Noveck,
+12:u0A:Noveck/&,
+11:u0B:&/Lever,
+12:u09:Noveck/&,
+11:u0A:&/Lever,
+17:u0B:Lever/Expires,
+13:u0C:of/Noveck,
+11:u09:&/Lever,
+17:u0A:Lever/Expires,
+12:u0C:Noveck/&,
+17:u09:Lever/Expires,
+11:u0C:&/Lever,
+17:u0C:Lever/Expires,
+15:u0B:Draft/NFSv4,
+15:u0A:Draft/NFSv4,
+11:u0B:NFSv4/.,
+13:u08:Namespace,
+15:u09:Draft/NFSv4,
+11:u0A:NFSv4/.,
+7:u0B:./1,
+13:u07:Namespace,
+11:u09:NFSv4/.,
+7:u0A:./1,
+10:u0B:1/with,
+15:u0C:Draft/NFSv4,
+13:u06:Namespace,
+7:u09:./1,
+10:u0A:1/with,
+18:u0B:with/Namespace,
+11:u0C:NFSv4/.,
+13:u14:namespace,
+13:u05:Namespace,
+10:u09:1/with,
+18:u0A:with/Namespace,
+20:u0B:Namespace/Update,
+7:u0C:./1,
+13:u13:namespace,
+13:u04:Namespace,
+18:u09:with/Namespace,
+20:u0A:Namespace/Update,
+17:u0B:Update/August,
+10:u0C:1/with,
+15:u0D:Namespace/0,
+13:u12:namespace,
+7:u32:ace,
+8:u33:pace,
+13:u03:Namespace,
+20:u09:Namespace/Update,
+17:u0A:Update/August,
+18:u0C:with/Namespace,
+13:u11:namespace,
+13:u02:Namespace,
+17:u09:Update/August,
+20:u0B:2019/publication,
+20:u0C:Namespace/Update,
+13:u10:namespace,
+13:u01:Namespace,
+20:u0A:2019/publication,
+17:u0C:Update/August,
+13:u00:Namespace,
+20:u09:2019/publication,
+20:u0C:2019/publication,
+11:u08:contain,
+11:u07:contain,
+16:u0B:document/may,
+11:u06:contain,
+16:u0A:document/may,
+15:u0B:may/contain,
+11:u14:contain,
+11:u05:contain,
+16:u09:document/may,
+15:u0A:may/contain,
+20:u0B:contain/material,
+11:u13:contain,
+11:u04:contain,
+15:u09:may/contain,
+20:u0A:contain/material,
+17:u0B:material/from,
+16:u0C:document/may,
+13:u0D:contain/0,
+11:u12:contain,
+11:u03:contain,
+20:u09:contain/material,
+17:u0A:material/from,
+13:u0B:from/IETF,
+15:u0C:may/contain,
+11:u11:contain,
+11:u02:contain,
+17:u09:material/from,
+13:u0A:from/IETF,
+20:u0C:contain/material,
+11:u10:contain,
+11:u01:contain,
+17:u08:Contributions,
+13:u09:from/IETF,
+16:u0B:Documents/or,
+17:u0C:material/from,
+11:u00:contain,
+17:u07:Contributions,
+16:u0A:Documents/or,
+11:u0B:or/IETF,
+13:u0C:from/IETF,
+17:u06:Contributions,
+16:u09:Documents/or,
+11:u0A:or/IETF,
+22:u0B:IETF/Contributions,
+17:u14:contributions,
+17:u05:Contributions,
+11:u09:or/IETF,
+22:u0A:IETF/Contributions,
+27:u0B:Contributions/published,
+16:u0C:Documents/or,
+17:u13:contributions,
+17:u04:Contributions,
+12:u08:publicly,
+22:u09:IETF/Contributions,
+27:u0A:Contributions/published,
+16:u0B:published/or,
+11:u0C:or/IETF,
+19:u0D:Contributions/0,
+17:u12:contributions,
+17:u03:Contributions,
+12:u07:publicly,
+27:u09:Contributions/published,
+16:u0A:published/or,
+11:u0B:or/made,
+22:u0C:IETF/Contributions,
+17:u11:contributions,
+17:u02:Contributions,
+12:u06:publicly,
+10:u08:before,
+16:u09:published/or,
+11:u0A:or/made,
+17:u0B:made/publicly,
+27:u0C:Contributions/published,
+17:u10:contributions,
+12:u14:publicly,
+17:u01:Contributions,
+12:u05:publicly,
+10:u07:before,
+12:u08:November,
+11:u09:or/made,
+17:u0A:made/publicly,
+22:u0B:publicly/available,
+16:u0C:published/or,
+12:u13:publicly,
+17:u00:Contributions,
+12:u04:publicly,
+10:u06:before,
+12:u07:November,
+17:u09:made/publicly,
+22:u0A:publicly/available,
+20:u0B:available/before,
+11:u0C:or/made,
+14:u0D:publicly/0,
+12:u12:publicly,
+10:u14:before,
+7:u32:cly,
+8:u33:icly,
+12:u03:publicly,
+10:u05:before,
+12:u06:November,
+22:u09:publicly/available,
+20:u0A:available/before,
+19:u0B:before/November,
+17:u0C:made/publicly,
+12:u11:publicly,
+10:u13:before,
+12:u14:november,
+12:u02:publicly,
+10:u04:before,
+12:u05:November,
+8:u08:2008,
+20:u09:available/before,
+19:u0A:before/November,
+15:u0B:November/10,
+22:u0C:publicly/available,
+12:u0D:before/0,
+12:u10:publicly,
+10:u12:before,
+12:u13:november,
+7:u22:bef,
+8:u23:befo,
+8:u33:fore,
+12:u01:publicly,
+10:u03:before,
+12:u04:November,
+8:u07:2008,
+19:u09:before/November,
+15:u0A:November/10,
+20:u0C:available/before,
+14:u0D:November/0,
+10:u11:before,
+12:u12:november,
+12:u00:publicly,
+10:u02:before,
+12:u03:November,
+8:u06:2008,
+15:u09:November/10,
+10:u0B:,/2008,
+19:u0C:before/November,
+10:u10:before,
+12:u11:november,
+8:u14:2008,
+10:u01:before,
+12:u02:November,
+8:u05:2008,
+10:u08:person,
+10:u0A:,/2008,
+10:u0B:2008/.,
+15:u0C:November/10,
+12:u10:november,
+8:u13:2008,
+10:u00:before,
+12:u01:November,
+8:u04:2008,
+10:u07:person,
+10:u09:,/2008,
+10:u0A:2008/.,
+10:u0D:2008/0,
+8:u12:2008,
+7:u22:200,
+8:u23:2008,
+7:u32:008,
+8:u33:2008,
+12:u00:November,
+8:u03:2008,
+10:u06:person,
+10:u09:2008/.,
+14:u0B:The/person,
+10:u0C:,/2008,
+8:u11:2008,
+10:u14:person,
+8:u02:2008,
+10:u05:person,
+14:u0A:The/person,
+12:u0B:person/(,
+10:u0C:2008/.,
+8:u10:2008,
+10:u13:person,
+8:u01:2008,
+10:u04:person,
+15:u08:controlling,
+14:u09:The/person,
+12:u0A:person/(,
+12:u0D:person/0,
+10:u12:person,
+8:u33:rson,
+8:u00:2008,
+10:u03:person,
+15:u07:controlling,
+12:u09:person/(,
+14:u0C:The/person,
+10:u11:person,
+10:u02:person,
+15:u06:controlling,
+13:u08:copyright,
+17:u0B:)/controlling,
+12:u0C:person/(,
+10:u10:person,
+15:u14:controlling,
+10:u01:person,
+15:u05:controlling,
+13:u07:copyright,
+17:u0A:)/controlling,
+19:u0B:controlling/the,
+15:u13:controlling,
+10:u00:person,
+15:u04:controlling,
+13:u06:copyright,
+17:u09:)/controlling,
+19:u0A:controlling/the,
+17:u0B:the/copyright,
+17:u0D:controlling/0,
+15:u12:controlling,
+15:u03:controlling,
+13:u05:copyright,
+19:u09:controlling/the,
+17:u0A:the/copyright,
+16:u0B:copyright/in,
+17:u0C:)/controlling,
+15:u11:controlling,
+15:u02:controlling,
+13:u04:copyright,
+17:u09:the/copyright,
+16:u0A:copyright/in,
+19:u0C:controlling/the,
+15:u0D:copyright/0,
+15:u10:controlling,
+7:u22:cop,
+8:u23:copy,
+15:u01:controlling,
+13:u03:copyright,
+16:u09:copyright/in,
+11:u0B:some/of,
+17:u0C:the/copyright,
+15:u00:controlling,
+13:u02:copyright,
+11:u0A:some/of,
+16:u0C:copyright/in,
+13:u01:copyright,
+11:u09:some/of,
+17:u0B:this/material,
+13:u00:copyright,
+17:u0A:this/material,
+16:u0B:material/may,
+11:u0C:some/of,
+11:u08:granted,
+17:u09:this/material,
+16:u0A:material/may,
+11:u0B:may/not,
+11:u07:granted,
+16:u09:material/may,
+11:u0A:may/not,
+12:u0B:not/have,
+17:u0C:this/material,
+11:u06:granted,
+11:u09:may/not,
+12:u0A:not/have,
+16:u0B:have/granted,
+16:u0C:material/may,
+11:u14:granted,
+11:u05:granted,
+12:u09:not/have,
+16:u0A:have/granted,
+15:u0B:granted/the,
+11:u0C:may/not,
+11:u13:granted,
+11:u04:granted,
+16:u09:have/granted,
+15:u0A:granted/the,
+12:u0C:not/have,
+13:u0D:granted/0,
+11:u12:granted,
+7:u22:gra,
+8:u23:gran,
+8:u33:nted,
+11:u03:granted,
+9:u08:right,
+15:u09:granted/the,
+16:u0C:have/granted,
+11:u11:granted,
+11:u02:granted,
+9:u07:right,
+13:u0B:Trust/the,
+15:u0C:granted/the,
+11:u10:granted,
+11:u01:granted,
+9:u06:right,
+13:u0A:Trust/the,
+13:u0B:the/right,
+9:u14:right,
+11:u00:granted,
+9:u05:right,
+17:u08:modifications,
+13:u09:Trust/the,
+13:u0A:the/right,
+12:u0B:right/to,
+9:u13:right,
+9:u04:right,
+17:u07:modifications,
+13:u09:the/right,
+12:u0A:right/to,
+12:u0B:to/allow,
+13:u0C:Trust/the,
+11:u0D:right/0,
+9:u12:right,
+9:u03:right,
+17:u06:modifications,
+12:u09:right/to,
+12:u0A:to/allow,
+23:u0B:allow/modifications,
+13:u0C:the/right,
+9:u11:right,
+17:u14:modifications,
+9:u02:right,
+17:u05:modifications,
+12:u09:to/allow,
+23:u0A:allow/modifications,
+20:u0B:modifications/of,
+12:u0C:right/to,
+9:u10:right,
+17:u13:modifications,
+9:u01:right,
+17:u04:modifications,
+11:u08:outside,
+23:u09:allow/modifications,
+20:u0A:modifications/of,
+11:u0B:of/such,
+12:u0C:to/allow,
+19:u0D:modifications/0,
+17:u12:modifications,
+8:u23:modi,
+9:u00:right,
+17:u03:modifications,
+11:u07:outside,
+20:u09:modifications/of,
+11:u0A:of/such,
+17:u0B:such/material,
+23:u0C:allow/modifications,
+17:u11:modifications,
+17:u02:modifications,
+11:u06:outside,
+11:u09:of/such,
+17:u0A:such/material,
+20:u0B:material/outside,
+20:u0C:modifications/of,
+17:u10:modifications,
+11:u14:outside,
+17:u01:modifications,
+11:u05:outside,
+17:u09:such/material,
+20:u0A:material/outside,
+15:u0B:outside/the,
+11:u0C:of/such,
+11:u13:outside,
+17:u00:modifications,
+11:u04:outside,
+11:u08:Process,
+20:u09:material/outside,
+15:u0A:outside/the,
+17:u0C:such/material,
+13:u0D:outside/0,
+11:u12:outside,
+8:u23:outs,
+8:u33:side,
+11:u03:outside,
+11:u07:Process,
+15:u09:outside/the,
+18:u0B:IETF/Standards,
+20:u0C:material/outside,
+11:u11:outside,
+11:u02:outside,
+11:u06:Process,
+11:u08:Without,
+18:u0A:IETF/Standards,
+21:u0B:Standards/Process,
+15:u0C:outside/the,
+11:u10:outside,
+11:u01:outside,
+11:u05:Process,
+11:u07:Without,
+13:u08:obtaining,
+18:u09:IETF/Standards,
+21:u0A:Standards/Process,
+13:u0B:Process/.,
+11:u00:outside,
+11:u04:Process,
+11:u06:Without,
+13:u07:obtaining,
+21:u09:Standards/Process,
+13:u0A:Process/.,
+13:u0B:./Without,
+18:u0C:IETF/Standards,
+13:u0D:Process/0,
+8:u23:Proc,
+11:u03:Process,
+11:u05:Without,
+13:u06:obtaining,
+12:u08:adequate,
+13:u09:Process/.,
+13:u0A:./Without,
+21:u0B:Without/obtaining,
+21:u0C:Standards/Process,
+13:u14:obtaining,
+11:u02:Process,
+11:u04:Without,
+13:u05:obtaining,
+12:u07:adequate,
+13:u09:./Without,
+21:u0A:Without/obtaining,
+16:u0B:obtaining/an,
+13:u0C:Process/.,
+13:u0D:Without/0,
+13:u13:obtaining,
+6:u21:Wi,
+7:u22:Wit,
+8:u23:With,
+11:u01:Process,
+11:u03:Without,
+13:u04:obtaining,
+12:u06:adequate,
+21:u09:Without/obtaining,
+16:u0A:obtaining/an,
+15:u0B:an/adequate,
+13:u0C:./Without,
+15:u0D:obtaining/0,
+13:u12:obtaining,
+12:u14:adequate,
+11:u00:Process,
+11:u02:Without,
+13:u03:obtaining,
+12:u05:adequate,
+16:u09:obtaining/an,
+15:u0A:an/adequate,
+20:u0B:adequate/license,
+21:u0C:Without/obtaining,
+13:u11:obtaining,
+12:u13:adequate,
+11:u01:Without,
+13:u02:obtaining,
+12:u04:adequate,
+15:u09:an/adequate,
+20:u0A:adequate/license,
+16:u0B:license/from,
+16:u0C:obtaining/an,
+14:u0D:adequate/0,
+13:u10:obtaining,
+12:u12:adequate,
+7:u22:ade,
+8:u23:adeq,
+8:u33:uate,
+11:u00:Without,
+13:u01:obtaining,
+12:u03:adequate,
+20:u09:adequate/license,
+16:u0A:license/from,
+15:u0C:an/adequate,
+12:u11:adequate,
+13:u00:obtaining,
+12:u02:adequate,
+16:u09:license/from,
+14:u0B:the/person,
+20:u0C:adequate/license,
+12:u10:adequate,
+12:u01:adequate,
+14:u0A:the/person,
+16:u0C:license/from,
+12:u00:adequate,
+14:u09:the/person,
+14:u0C:the/person,
+13:u08:materials,
+13:u07:materials,
+13:u06:materials,
+18:u0B:such/materials,
+13:u14:materials,
+13:u05:materials,
+18:u0A:such/materials,
+15:u0B:materials/,,
+13:u13:materials,
+13:u04:materials,
+18:u09:such/materials,
+15:u0A:materials/,,
+15:u0D:materials/0,
+13:u12:materials,
+7:u32:als,
+8:u33:ials,
+13:u03:materials,
+15:u09:materials/,,
+18:u0C:such/materials,
+13:u11:materials,
+13:u02:materials,
+15:u0C:materials/,,
+13:u10:materials,
+13:u01:materials,
+12:u08:modified,
+13:u00:materials,
+12:u07:modified,
+12:u06:modified,
+15:u0B:be/modified,
+12:u14:modified,
+12:u05:modified,
+15:u0A:be/modified,
+20:u0B:modified/outside,
+12:u13:modified,
+12:u04:modified,
+15:u09:be/modified,
+20:u0A:modified/outside,
+14:u0D:modified/0,
+12:u12:modified,
+12:u03:modified,
+20:u09:modified/outside,
+15:u0C:be/modified,
+12:u11:modified,
+12:u02:modified,
+20:u0C:modified/outside,
+12:u10:modified,
+12:u01:modified,
+12:u00:modified,
+14:u08:derivative,
+13:u0B:Process/,,
+14:u07:derivative,
+13:u0A:Process/,,
+14:u06:derivative,
+13:u09:Process/,,
+18:u0B:and/derivative,
+14:u14:derivative,
+14:u05:derivative,
+18:u0A:and/derivative,
+20:u0B:derivative/works,
+13:u0C:Process/,,
+14:u13:derivative,
+14:u04:derivative,
+18:u09:and/derivative,
+20:u0A:derivative/works,
+12:u0B:works/of,
+16:u0D:derivative/0,
+14:u12:derivative,
+7:u22:der,
+8:u23:deri,
+14:u03:derivative,
+20:u09:derivative/works,
+12:u0A:works/of,
+9:u0B:of/it,
+18:u0C:and/derivative,
+14:u11:derivative,
+14:u02:derivative,
+12:u09:works/of,
+9:u0A:of/it,
+20:u0C:derivative/works,
+14:u10:derivative,
+14:u01:derivative,
+11:u08:created,
+9:u09:of/it,
+12:u0C:works/of,
+14:u00:derivative,
+11:u07:created,
+9:u0C:of/it,
+11:u06:created,
+14:u0B:be/created,
+11:u14:created,
+11:u05:created,
+14:u0A:be/created,
+19:u0B:created/outside,
+11:u13:created,
+11:u04:created,
+14:u09:be/created,
+19:u0A:created/outside,
+13:u0D:created/0,
+11:u12:created,
+7:u22:cre,
+8:u23:crea,
+11:u03:created,
+19:u09:created/outside,
+14:u0C:be/created,
+11:u11:created,
+11:u02:created,
+19:u0C:created/outside,
+11:u10:created,
+11:u01:created,
+11:u00:created,
+12:u0B:,/except,
+12:u0A:,/except,
+13:u0B:except/to,
+12:u09:,/except,
+13:u0A:except/to,
+13:u0B:to/format,
+13:u09:except/to,
+13:u0A:to/format,
+13:u0B:format/it,
+12:u0C:,/except,
+13:u09:to/format,
+13:u0A:format/it,
+10:u0B:it/for,
+13:u0C:except/to,
+13:u09:format/it,
+10:u0A:it/for,
+13:u0C:to/format,
+10:u09:it/for,
+18:u0B:publication/as,
+13:u0C:format/it,
+18:u0A:publication/as,
+9:u0B:as/an,
+10:u0C:it/for,
+18:u09:publication/as,
+9:u0A:as/an,
+10:u0B:an/RFC,
+13:u08:translate,
+9:u09:as/an,
+10:u0A:an/RFC,
+10:u0B:RFC/or,
+18:u0C:publication/as,
+13:u07:translate,
+10:u09:an/RFC,
+10:u0A:RFC/or,
+9:u0C:as/an,
+13:u06:translate,
+10:u09:RFC/or,
+16:u0B:to/translate,
+10:u0C:an/RFC,
+13:u14:translate,
+13:u05:translate,
+13:u08:languages,
+16:u0A:to/translate,
+16:u0B:translate/it,
+10:u0C:RFC/or,
+13:u13:translate,
+13:u04:translate,
+13:u07:languages,
+16:u09:to/translate,
+16:u0A:translate/it,
+11:u0B:it/into,
+15:u0D:translate/0,
+13:u12:translate,
+7:u22:tra,
+8:u23:tran,
+8:u33:late,
+13:u03:translate,
+13:u06:languages,
+16:u09:translate/it,
+11:u0A:it/into,
+18:u0B:into/languages,
+16:u0C:to/translate,
+13:u11:translate,
+13:u14:languages,
+13:u02:translate,
+13:u05:languages,
+11:u08:English,
+11:u09:it/into,
+18:u0A:into/languages,
+19:u0B:languages/other,
+16:u0C:translate/it,
+13:u10:translate,
+13:u13:languages,
+13:u01:translate,
+13:u04:languages,
+11:u07:English,
+18:u09:into/languages,
+19:u0A:languages/other,
+11:u0C:it/into,
+15:u0D:languages/0,
+13:u12:languages,
+7:u22:lan,
+8:u23:lang,
+13:u00:translate,
+13:u03:languages,
+11:u06:English,
+9:u08:David,
+19:u09:languages/other,
+16:u0B:than/English,
+18:u0C:into/languages,
+13:u11:languages,
+11:u14:english,
+13:u02:languages,
+11:u05:English,
+9:u07:David,
+16:u0A:than/English,
+13:u0B:English/.,
+19:u0C:languages/other,
+13:u10:languages,
+11:u13:english,
+13:u01:languages,
+11:u04:English,
+9:u06:David,
+16:u09:than/English,
+13:u0A:English/.,
+11:u0B:./David,
+13:u0D:English/0,
+11:u12:english,
+9:u14:david,
+8:u23:Engl,
+6:u31:sh,
+7:u32:ish,
+8:u33:lish,
+13:u00:languages,
+11:u03:English,
+9:u05:David,
+13:u09:English/.,
+11:u0A:./David,
+16:u0B:David/Noveck,
+16:u0C:than/English,
+11:u11:english,
+9:u13:david,
+11:u02:English,
+9:u04:David,
+11:u09:./David,
+16:u0A:David/Noveck,
+12:u0B:Noveck/(,
+13:u0C:English/.,
+11:u0D:David/0,
+11:u10:english,
+9:u12:david,
+8:u23:Davi,
+7:u32:vid,
+8:u33:avid,
+11:u01:English,
+9:u03:David,
+16:u09:David/Noveck,
+12:u0A:Noveck/(,
+11:u0C:./David,
+9:u11:david,
+11:u00:English,
+9:u02:David,
+8:u08:1601,
+12:u09:Noveck/(,
+16:u0C:David/Noveck,
+9:u10:david,
+9:u01:David,
+8:u07:1601,
+11:u08:Trapelo,
+12:u0B:)/NetApp,
+12:u0C:Noveck/(,
+9:u00:David,
+8:u06:1601,
+11:u07:Trapelo,
+8:u08:Road,
+12:u0A:)/NetApp,
+15:u0B:NetApp/1601,
+8:u14:1601,
+8:u05:1601,
+11:u06:Trapelo,
+8:u07:Road,
+12:u09:)/NetApp,
+15:u0A:NetApp/1601,
+16:u0B:1601/Trapelo,
+8:u13:1601,
+11:u14:trapelo,
+8:u04:1601,
+11:u05:Trapelo,
+8:u06:Road,
+9:u08:Suite,
+15:u09:NetApp/1601,
+16:u0A:1601/Trapelo,
+16:u0B:Trapelo/Road,
+12:u0C:)/NetApp,
+10:u0D:1601/0,
+8:u12:1601,
+11:u13:trapelo,
+8:u14:road,
+6:u21:16,
+7:u22:160,
+8:u23:1601,
+7:u32:601,
+8:u33:1601,
+8:u03:1601,
+11:u04:Trapelo,
+8:u05:Road,
+9:u07:Suite,
+6:u08:16,
+16:u09:1601/Trapelo,
+16:u0A:Trapelo/Road,
+10:u0B:Road/,,
+15:u0C:NetApp/1601,
+13:u0D:Trapelo/0,
+8:u11:1601,
+11:u12:trapelo,
+8:u13:road,
+8:u23:Trap,
+7:u32:elo,
+8:u33:pelo,
+8:u02:1601,
+11:u03:Trapelo,
+8:u04:Road,
+9:u06:Suite,
+6:u07:16,
+11:u08:Waltham,
+16:u09:Trapelo/Road,
+10:u0A:Road/,,
+11:u0B:,/Suite,
+16:u0C:1601/Trapelo,
+10:u0D:Road/0,
+8:u10:1601,
+11:u11:trapelo,
+8:u12:road,
+9:u14:suite,
+7:u22:Roa,
+8:u23:Road,
+7:u32:oad,
+8:u33:Road,
+8:u01:1601,
+11:u02:Trapelo,
+8:u03:Road,
+9:u05:Suite,
+6:u06:16,
+11:u07:Waltham,
+10:u09:Road/,,
+11:u0A:,/Suite,
+12:u0B:Suite/16,
+16:u0C:Trapelo/Road,
+11:u10:trapelo,
+8:u11:road,
+9:u13:suite,
+6:u14:16,
+8:u00:1601,
+11:u01:Trapelo,
+8:u02:Road,
+9:u04:Suite,
+6:u05:16,
+11:u06:Waltham,
+11:u09:,/Suite,
+12:u0A:Suite/16,
+14:u0B:16/Waltham,
+10:u0C:Road/,,
+11:u0D:Suite/0,
+8:u10:road,
+9:u12:suite,
+6:u13:16,
+11:u14:waltham,
+7:u22:Sui,
+8:u23:Suit,
+8:u33:uite,
+11:u00:Trapelo,
+8:u01:Road,
+9:u03:Suite,
+6:u04:16,
+11:u05:Waltham,
+9:u08:02451,
+12:u09:Suite/16,
+14:u0A:16/Waltham,
+13:u0B:Waltham/,,
+11:u0C:,/Suite,
+8:u0D:16/0,
+9:u11:suite,
+6:u12:16,
+11:u13:waltham,
+6:u22:16,
+6:u23:16,
+6:u31:16,
+6:u32:16,
+6:u33:16,
+8:u00:Road,
+9:u02:Suite,
+6:u03:16,
+11:u04:Waltham,
+9:u07:02451,
+14:u09:16/Waltham,
+13:u0A:Waltham/,,
+12:u0C:Suite/16,
+13:u0D:Waltham/0,
+9:u10:suite,
+6:u11:16,
+11:u12:waltham,
+7:u22:Wal,
+8:u23:Walt,
+6:u31:am,
+7:u32:ham,
+8:u33:tham,
+9:u01:Suite,
+6:u02:16,
+11:u03:Waltham,
+9:u06:02451,
+13:u09:Waltham/,,
+12:u0B:MA/02451,
+14:u0C:16/Waltham,
+6:u10:16,
+11:u11:waltham,
+9:u14:02451,
+9:u00:Suite,
+6:u01:16,
+11:u02:Waltham,
+9:u05:02451,
+12:u0A:MA/02451,
+13:u0B:02451/USA,
+13:u0C:Waltham/,,
+11:u10:waltham,
+9:u13:02451,
+6:u00:16,
+11:u01:Waltham,
+9:u04:02451,
+6:u08:+1,
+12:u09:MA/02451,
+13:u0A:02451/USA,
+13:u0B:USA/Phone,
+11:u0D:02451/0,
+9:u12:02451,
+8:u23:0245,
+6:u31:51,
+7:u32:451,
+8:u33:2451,
+11:u00:Waltham,
+9:u03:02451,
+6:u07:+1,
+13:u09:02451/USA,
+13:u0A:USA/Phone,
+12:u0C:MA/02451,
+9:u11:02451,
+9:u02:02451,
+6:u06:+1,
+7:u08:781,
+13:u09:USA/Phone,
+8:u0B::/+1,
+13:u0C:02451/USA,
+9:u10:02451,
+6:u14:+1,
+9:u01:02451,
+6:u05:+1,
+7:u07:781,
+8:u0A::/+1,
+8:u0B:+1/-,
+13:u0C:USA/Phone,
+6:u13:+1,
+9:u00:02451,
+6:u04:+1,
+7:u06:781,
+7:u08:768,
+8:u09::/+1,
+8:u0A:+1/-,
+9:u0B:-/781,
+8:u0D:+1/0,
+6:u12:+1,
+7:u14:781,
+6:u21:+1,
+6:u22:+1,
+6:u23:+1,
+6:u31:+1,
+6:u32:+1,
+6:u33:+1,
+6:u03:+1,
+7:u05:781,
+7:u07:768,
+8:u09:+1/-,
+9:u0A:-/781,
+9:u0B:781/-,
+8:u0C::/+1,
+6:u11:+1,
+7:u13:781,
+6:u02:+1,
+7:u04:781,
+7:u06:768,
+8:u08:5347,
+9:u09:-/781,
+9:u0A:781/-,
+9:u0B:-/768,
+8:u0C:+1/-,
+9:u0D:781/1,
+6:u10:+1,
+7:u12:781,
+7:u14:768,
+7:u22:781,
+7:u23:781,
+6:u31:81,
+7:u32:781,
+7:u33:781,
+6:u01:+1,
+7:u03:781,
+7:u05:768,
+8:u07:5347,
+9:u08:EMail,
+9:u09:781/-,
+9:u0A:-/768,
+9:u0B:768/-,
+9:u0C:-/781,
+7:u11:781,
+7:u13:768,
+6:u00:+1,
+7:u02:781,
+7:u04:768,
+8:u06:5347,
+9:u07:EMail,
+9:u09:-/768,
+9:u0A:768/-,
+10:u0B:-/5347,
+9:u0C:781/-,
+9:u0D:768/1,
+7:u10:781,
+7:u12:768,
+8:u14:5347,
+7:u22:768,
+7:u23:768,
+6:u31:68,
+7:u32:768,
+7:u33:768,
+7:u01:781,
+7:u03:768,
+8:u05:5347,
+9:u06:EMail,
+18:u08:dnoveck@netapp,
+9:u09:768/-,
+10:u0A:-/5347,
+14:u0B:5347/EMail,
+9:u0C:-/768,
+7:u11:768,
+8:u13:5347,
+7:u00:781,
+7:u02:768,
+8:u04:5347,
+9:u05:EMail,
+18:u07:dnoveck@netapp,
+10:u09:-/5347,
+14:u0A:5347/EMail,
+11:u0B:EMail/:,
+9:u0C:768/-,
+10:u0D:5347/1,
+7:u10:768,
+8:u12:5347,
+6:u21:53,
+7:u22:534,
+8:u23:5347,
+6:u31:47,
+7:u32:347,
+8:u33:5347,
+7:u01:768,
+8:u03:5347,
+9:u04:EMail,
+18:u06:dnoveck@netapp,
+14:u09:5347/EMail,
+11:u0A:EMail/:,
+20:u0B::/dnoveck@netapp,
+10:u0C:-/5347,
+11:u0D:EMail/0,
+8:u11:5347,
+18:u14:dnoveck@netapp,
+7:u22:EMa,
+8:u23:EMai,
+8:u33:Mail,
+7:u00:768,
+8:u02:5347,
+9:u03:EMail,
+18:u05:dnoveck@netapp,
+11:u08:Charles,
+11:u09:EMail/:,
+20:u0A::/dnoveck@netapp,
+20:u0B:dnoveck@netapp/.,
+14:u0C:5347/EMail,
+8:u10:5347,
+18:u13:dnoveck@netapp,
+8:u01:5347,
+9:u02:EMail,
+18:u04:dnoveck@netapp,
+11:u07:Charles,
+20:u09::/dnoveck@netapp,
+20:u0A:dnoveck@netapp/.,
+11:u0C:EMail/:,
+20:u0D:dnoveck@netapp/0,
+18:u12:dnoveck@netapp,
+6:u21:dn,
+7:u22:dno,
+8:u23:dnov,
+7:u32:app,
+8:u33:tapp,
+8:u00:5347,
+9:u01:EMail,
+18:u03:dnoveck@netapp,
+11:u06:Charles,
+10:u08:Oracle,
+20:u09:dnoveck@netapp/.,
+15:u0B:com/Charles,
+20:u0C::/dnoveck@netapp,
+18:u11:dnoveck@netapp,
+11:u14:charles,
+9:u00:EMail,
+18:u02:dnoveck@netapp,
+11:u05:Charles,
+10:u07:Oracle,
+15:u08:Corporation,
+15:u0A:com/Charles,
+17:u0B:Charles/Lever,
+20:u0C:dnoveck@netapp/.,
+18:u10:dnoveck@netapp,
+11:u13:charles,
+18:u01:dnoveck@netapp,
+11:u04:Charles,
+10:u06:Oracle,
+15:u07:Corporation,
+8:u08:1015,
+15:u09:com/Charles,
+17:u0A:Charles/Lever,
+16:u0B:Lever/Oracle,
+13:u0D:Charles/0,
+11:u12:charles,
+8:u23:Char,
+8:u33:rles,
+18:u00:dnoveck@netapp,
+11:u03:Charles,
+10:u05:Oracle,
+15:u06:Corporation,
+8:u07:1015,
+11:u08:Granger,
+17:u09:Charles/Lever,
+16:u0A:Lever/Oracle,
+22:u0B:Oracle/Corporation,
+15:u0C:com/Charles,
+11:u11:charles,
+15:u14:corporation,
+11:u02:Charles,
+10:u04:Oracle,
+15:u05:Corporation,
+8:u06:1015,
+11:u07:Granger,
+10:u08:Avenue,
+16:u09:Lever/Oracle,
+22:u0A:Oracle/Corporation,
+20:u0B:Corporation/1015,
+17:u0C:Charles/Lever,
+12:u0D:Oracle/0,
+11:u10:charles,
+15:u13:corporation,
+8:u14:1015,
+8:u23:Orac,
+7:u32:cle,
+8:u33:acle,
+11:u01:Charles,
+10:u03:Oracle,
+15:u04:Corporation,
+8:u05:1015,
+11:u06:Granger,
+10:u07:Avenue,
+7:u08:Ann,
+22:u09:Oracle/Corporation,
+20:u0A:Corporation/1015,
+16:u0B:1015/Granger,
+16:u0C:Lever/Oracle,
+17:u0D:Corporation/0,
+15:u12:corporation,
+8:u13:1015,
+11:u14:granger,
+7:u22:Cor,
+8:u23:Corp,
+11:u00:Charles,
+10:u02:Oracle,
+15:u03:Corporation,
+8:u04:1015,
+11:u05:Granger,
+10:u06:Avenue,
+7:u07:Ann,
+9:u08:Arbor,
+20:u09:Corporation/1015,
+16:u0A:1015/Granger,
+18:u0B:Granger/Avenue,
+22:u0C:Oracle/Corporation,
+10:u0D:1015/0,
+15:u11:corporation,
+8:u12:1015,
+11:u13:granger,
+10:u14:avenue,
+7:u22:101,
+8:u23:1015,
+8:u33:1015,
+10:u01:Oracle,
+15:u02:Corporation,
+8:u03:1015,
+11:u04:Granger,
+10:u05:Avenue,
+7:u06:Ann,
+9:u07:Arbor,
+16:u09:1015/Granger,
+18:u0A:Granger/Avenue,
+14:u0B:Avenue/Ann,
+20:u0C:Corporation/1015,
+13:u0D:Granger/0,
+15:u10:corporation,
+8:u11:1015,
+11:u12:granger,
+10:u13:avenue,
+7:u14:ann,
+7:u22:Gra,
+8:u23:Gran,
+10:u00:Oracle,
+15:u01:Corporation,
+8:u02:1015,
+11:u03:Granger,
+10:u04:Avenue,
+7:u05:Ann,
+9:u06:Arbor,
+6:u08:MI,
+18:u09:Granger/Avenue,
+14:u0A:Avenue/Ann,
+13:u0B:Ann/Arbor,
+16:u0C:1015/Granger,
+12:u0D:Avenue/0,
+8:u10:1015,
+11:u11:granger,
+10:u12:avenue,
+7:u13:ann,
+9:u14:arbor,
+7:u22:Ave,
+8:u23:Aven,
+7:u32:nue,
+8:u33:enue,
+15:u00:Corporation,
+8:u01:1015,
+11:u02:Granger,
+10:u03:Avenue,
+7:u04:Ann,
+9:u05:Arbor,
+6:u07:MI,
+9:u08:48104,
+14:u09:Avenue/Ann,
+13:u0A:Ann/Arbor,
+11:u0B:Arbor/,,
+18:u0C:Granger/Avenue,
+9:u0D:Ann/0,
+11:u10:granger,
+10:u11:avenue,
+7:u12:ann,
+9:u13:arbor,
+7:u22:Ann,
+7:u23:Ann,
+6:u31:nn,
+7:u32:Ann,
+7:u33:Ann,
+8:u00:1015,
+11:u01:Granger,
+10:u02:Avenue,
+7:u03:Ann,
+9:u04:Arbor,
+6:u06:MI,
+9:u07:48104,
+13:u09:Ann/Arbor,
+11:u0A:Arbor/,,
+8:u0B:,/MI,
+14:u0C:Avenue/Ann,
+11:u0D:Arbor/0,
+10:u10:avenue,
+7:u11:ann,
+9:u12:arbor,
+6:u14:mi,
+7:u22:Arb,
+8:u23:Arbo,
+7:u32:bor,
+8:u33:rbor,
+11:u00:Granger,
+10:u01:Avenue,
+7:u02:Ann,
+9:u03:Arbor,
+6:u05:MI,
+9:u06:48104,
+11:u09:Arbor/,,
+8:u0A:,/MI,
+12:u0B:MI/48104,
+13:u0C:Ann/Arbor,
+7:u10:ann,
+9:u11:arbor,
+6:u13:mi,
+9:u14:48104,
+10:u00:Avenue,
+7:u01:Ann,
+9:u02:Arbor,
+6:u04:MI,
+9:u05:48104,
+8:u09:,/MI,
+12:u0A:MI/48104,
+16:u0B:48104/United,
+11:u0C:Arbor/,,
+8:u0D:MI/0,
+9:u10:arbor,
+6:u12:mi,
+9:u13:48104,
+6:u21:MI,
+6:u22:MI,
+6:u23:MI,
+6:u31:MI,
+6:u32:MI,
+6:u33:MI,
+7:u00:Ann,
+9:u01:Arbor,
+6:u03:MI,
+9:u04:48104,
+12:u09:MI/48104,
+16:u0A:48104/United,
+8:u0C:,/MI,
+11:u0D:48104/0,
+6:u11:mi,
+9:u12:48104,
+6:u21:48,
+7:u22:481,
+8:u23:4810,
+7:u32:104,
+8:u33:8104,
+9:u00:Arbor,
+6:u02:MI,
+9:u03:48104,
+16:u09:48104/United,
+12:u0C:MI/48104,
+6:u10:mi,
+9:u11:48104,
+6:u01:MI,
+9:u02:48104,
+16:u0C:48104/United,
+9:u10:48104,
+6:u00:MI,
+9:u01:48104,
+9:u00:48104,
+7:u08:248,
+7:u07:248,
+7:u08:614,
+7:u06:248,
+7:u07:614,
+8:u08:5091,
+10:u0B:+1/248,
+7:u14:248,
+7:u05:248,
+7:u06:614,
+8:u07:5091,
+10:u0A:+1/248,
+11:u0B:248/614,
+7:u13:248,
+7:u14:614,
+7:u04:248,
+7:u05:614,
+8:u06:5091,
+10:u09:+1/248,
+11:u0A:248/614,
+12:u0B:614/5091,
+9:u0D:248/0,
+7:u12:248,
+7:u13:614,
+8:u14:5091,
+6:u21:24,
+7:u22:248,
+7:u23:248,
+6:u31:48,
+7:u32:248,
+7:u33:248,
+7:u03:248,
+7:u04:614,
+8:u05:5091,
+9:u08:chuck,
+11:u09:248/614,
+12:u0A:614/5091,
+14:u0B:5091/EMail,
+10:u0C:+1/248,
+9:u0D:614/0,
+7:u11:248,
+7:u12:614,
+8:u13:5091,
+6:u21:61,
+7:u22:614,
+7:u23:614,
+7:u32:614,
+7:u33:614,
+7:u02:248,
+7:u03:614,
+8:u04:5091,
+9:u07:chuck,
+12:u09:614/5091,
+14:u0A:5091/EMail,
+11:u0C:248/614,
+10:u0D:5091/0,
+7:u10:248,
+7:u11:614,
+8:u12:5091,
+6:u21:50,
+7:u22:509,
+8:u23:5091,
+6:u31:91,
+7:u32:091,
+8:u33:5091,
+7:u01:248,
+7:u02:614,
+8:u03:5091,
+9:u06:chuck,
+16:u08:lever@oracle,
+14:u09:5091/EMail,
+11:u0B::/chuck,
+12:u0C:614/5091,
+7:u10:614,
+8:u11:5091,
+9:u14:chuck,
+7:u00:248,
+7:u01:614,
+8:u02:5091,
+9:u05:chuck,
+16:u07:lever@oracle,
+11:u0A::/chuck,
+11:u0B:chuck/.,
+14:u0C:5091/EMail,
+8:u10:5091,
+9:u13:chuck,
+7:u00:614,
+8:u01:5091,
+9:u04:chuck,
+16:u06:lever@oracle,
+11:u09::/chuck,
+11:u0A:chuck/.,
+18:u0B:./lever@oracle,
+11:u0D:chuck/0,
+9:u12:chuck,
+16:u14:lever@oracle,
+7:u22:chu,
+8:u23:chuc,
+7:u32:uck,
+8:u33:huck,
+8:u00:5091,
+9:u03:chuck,
+16:u05:lever@oracle,
+11:u09:chuck/.,
+18:u0A:./lever@oracle,
+18:u0B:lever@oracle/.,
+11:u0C::/chuck,
+9:u11:chuck,
+16:u13:lever@oracle,
+9:u02:chuck,
+16:u04:lever@oracle,
+18:u09:./lever@oracle,
+18:u0A:lever@oracle/.,
+11:u0C:chuck/.,
+18:u0D:lever@oracle/0,
+9:u10:chuck,
+16:u12:lever@oracle,
+9:u01:chuck,
+16:u03:lever@oracle,
+18:u09:lever@oracle/.,
+18:u0C:./lever@oracle,
+16:u11:lever@oracle,
+9:u00:chuck,
+16:u02:lever@oracle,
+18:u0C:lever@oracle/.,
+16:u10:lever@oracle,
+12:u06:20190912,
+17:u0B:date/20190912,
+12:u14:20190912,
+12:u05:20190912,
+17:u0A:date/20190912,
+14:u0B:20190912/;,
+12:u13:20190912,
+12:u04:20190912,
+17:u09:date/20190912,
+14:u0A:20190912/;,
+14:u0D:20190912/0,
+12:u12:20190912,
+7:u32:912,
+8:u33:0912,
+12:u03:20190912,
+14:u09:20190912/;,
+17:u0C:date/20190912,
+12:u11:20190912,
+12:u02:20190912,
+12:u08:20190913,
+14:u0C:20190912/;,
+12:u10:20190912,
+12:u01:20190912,
+12:u07:20190913,
+8:u08:LISP,
+12:u00:20190912,
+12:u06:20190913,
+8:u07:LISP,
+15:u0B:on/20190913,
+12:u14:20190913,
+12:u05:20190913,
+8:u06:LISP,
+15:u0A:on/20190913,
+17:u0B:20190913/LISP,
+12:u13:20190913,
+8:u14:lisp,
+12:u04:20190913,
+8:u05:LISP,
+15:u09:on/20190913,
+17:u0A:20190913/LISP,
+16:u0B:LISP/Working,
+14:u0D:20190913/0,
+12:u12:20190913,
+8:u13:lisp,
+7:u32:913,
+8:u33:0913,
+12:u03:20190913,
+8:u04:LISP,
+17:u09:20190913/LISP,
+16:u0A:LISP/Working,
+15:u0C:on/20190913,
+10:u0D:LISP/0,
+12:u11:20190913,
+8:u12:lisp,
+6:u21:LI,
+7:u22:LIS,
+8:u23:LISP,
+7:u32:ISP,
+8:u33:LISP,
+12:u02:20190913,
+8:u03:LISP,
+13:u08:Rodriguez,
+16:u09:LISP/Working,
+11:u0B:Group/A,
+17:u0C:20190913/LISP,
+12:u10:20190913,
+8:u11:lisp,
+12:u01:20190913,
+8:u02:LISP,
+13:u07:Rodriguez,
+11:u0A:Group/A,
+16:u0C:LISP/Working,
+8:u10:lisp,
+12:u00:20190913,
+8:u01:LISP,
+13:u06:Rodriguez,
+9:u08:Natal,
+11:u09:Group/A,
+15:u0B:./Rodriguez,
+13:u14:rodriguez,
+8:u00:LISP,
+13:u05:Rodriguez,
+9:u07:Natal,
+15:u0A:./Rodriguez,
+15:u0B:Rodriguez/-,
+11:u0C:Group/A,
+13:u13:rodriguez,
+13:u04:Rodriguez,
+9:u06:Natal,
+15:u09:./Rodriguez,
+15:u0A:Rodriguez/-,
+11:u0B:-/Natal,
+15:u0D:Rodriguez/0,
+13:u12:rodriguez,
+9:u14:natal,
+7:u22:Rod,
+8:u23:Rodr,
+5:u30:z,
+6:u31:ez,
+7:u32:uez,
+8:u33:guez,
+13:u03:Rodriguez,
+9:u05:Natal,
+15:u09:Rodriguez/-,
+11:u0A:-/Natal,
+18:u0B:Natal/Internet,
+15:u0C:./Rodriguez,
+13:u11:rodriguez,
+9:u13:natal,
+13:u02:Rodriguez,
+9:u04:Natal,
+11:u09:-/Natal,
+18:u0A:Natal/Internet,
+15:u0C:Rodriguez/-,
+11:u0D:Natal/1,
+13:u10:rodriguez,
+9:u12:natal,
+7:u22:Nat,
+8:u23:Nata,
+8:u33:atal,
+13:u01:Rodriguez,
+9:u03:Natal,
+18:u09:Natal/Internet,
+11:u0C:-/Natal,
+9:u11:natal,
+13:u00:Rodriguez,
+9:u02:Natal,
+18:u0C:Natal/Internet,
+9:u10:natal,
+9:u01:Natal,
+9:u00:Natal,
+5:u08:V,
+5:u07:V,
+5:u06:V,
+11:u08:Ermagan,
+18:u0B:Experimental/V,
+5:u14:v,
+5:u05:V,
+11:u07:Ermagan,
+18:u0A:Experimental/V,
+7:u0B:V/.,
+5:u13:v,
+5:u04:V,
+11:u06:Ermagan,
+18:u09:Experimental/V,
+7:u0A:V/.,
+13:u0B:./Ermagan,
+7:u0D:V/0,
+5:u12:v,
+11:u14:ermagan,
+5:u21:V,
+5:u22:V,
+5:u23:V,
+5:u31:V,
+5:u32:V,
+5:u33:V,
+5:u03:V,
+11:u05:Ermagan,
+7:u09:V/.,
+13:u0A:./Ermagan,
+19:u0B:Ermagan/Expires,
+18:u0C:Experimental/V,
+5:u11:v,
+11:u13:ermagan,
+5:u02:V,
+11:u04:Ermagan,
+13:u09:./Ermagan,
+19:u0A:Ermagan/Expires,
+7:u0C:V/.,
+13:u0D:Ermagan/0,
+5:u10:v,
+11:u12:ermagan,
+7:u22:Erm,
+8:u23:Erma,
+7:u32:gan,
+8:u33:agan,
+5:u01:V,
+11:u03:Ermagan,
+19:u09:Ermagan/Expires,
+13:u0C:./Ermagan,
+11:u11:ermagan,
+5:u00:V,
+11:u02:Ermagan,
+12:u0B:March/14,
+19:u0C:Ermagan/Expires,
+11:u10:ermagan,
+11:u01:Ermagan,
+10:u08:Google,
+12:u0A:March/14,
+8:u0B:14/,,
+11:u00:Ermagan,
+10:u07:Google,
+12:u09:March/14,
+8:u0A:14/,,
+10:u06:Google,
+8:u09:14/,,
+15:u0B:2020/Google,
+12:u0C:March/14,
+10:u14:google,
+10:u05:Google,
+9:u08:Leong,
+15:u0A:2020/Google,
+12:u0B:Google/J,
+8:u0C:14/,,
+10:u13:google,
+10:u04:Google,
+9:u07:Leong,
+15:u09:2020/Google,
+12:u0A:Google/J,
+12:u0D:Google/0,
+10:u12:google,
+7:u22:Goo,
+8:u23:Goog,
+7:u32:gle,
+8:u33:ogle,
+10:u03:Google,
+9:u06:Leong,
+12:u09:Google/J,
+11:u0B:./Leong,
+15:u0C:2020/Google,
+10:u11:google,
+9:u14:leong,
+10:u02:Google,
+9:u05:Leong,
+9:u08:Maino,
+11:u0A:./Leong,
+11:u0B:Leong/F,
+12:u0C:Google/J,
+10:u10:google,
+9:u13:leong,
+10:u01:Google,
+9:u04:Leong,
+9:u07:Maino,
+11:u09:./Leong,
+11:u0A:Leong/F,
+11:u0D:Leong/0,
+9:u12:leong,
+7:u22:Leo,
+8:u23:Leon,
+8:u33:eong,
+10:u00:Google,
+9:u03:Leong,
+9:u06:Maino,
+11:u09:Leong/F,
+11:u0B:./Maino,
+11:u0C:./Leong,
+9:u11:leong,
+9:u14:maino,
+9:u02:Leong,
+9:u05:Maino,
+11:u0A:./Maino,
+15:u0B:Maino/Cisco,
+11:u0C:Leong/F,
+9:u10:leong,
+9:u13:maino,
+9:u01:Leong,
+9:u04:Maino,
+11:u09:./Maino,
+15:u0A:Maino/Cisco,
+11:u0D:Maino/0,
+9:u12:maino,
+7:u32:ino,
+8:u33:aino,
+9:u00:Leong,
+9:u03:Maino,
+12:u08:Cabellos,
+15:u09:Maino/Cisco,
+13:u0B:Systems/A,
+11:u0C:./Maino,
+9:u11:maino,
+9:u02:Maino,
+12:u07:Cabellos,
+13:u0A:Systems/A,
+15:u0C:Maino/Cisco,
+9:u10:maino,
+9:u01:Maino,
+12:u06:Cabellos,
+12:u08:Aparicio,
+13:u09:Systems/A,
+14:u0B:./Cabellos,
+12:u14:cabellos,
+9:u00:Maino,
+12:u05:Cabellos,
+12:u07:Aparicio,
+13:u08:Technical,
+14:u0A:./Cabellos,
+14:u0B:Cabellos/-,
+13:u0C:Systems/A,
+12:u13:cabellos,
+12:u04:Cabellos,
+12:u06:Aparicio,
+13:u07:Technical,
+14:u09:./Cabellos,
+14:u0A:Cabellos/-,
+14:u0B:-/Aparicio,
+14:u0D:Cabellos/0,
+12:u12:cabellos,
+12:u14:aparicio,
+7:u22:Cab,
+8:u23:Cabe,
+8:u33:llos,
+12:u03:Cabellos,
+12:u05:Aparicio,
+13:u06:Technical,
+14:u09:Cabellos/-,
+14:u0A:-/Aparicio,
+22:u0B:Aparicio/Technical,
+14:u0C:./Cabellos,
+12:u11:cabellos,
+12:u13:aparicio,
+12:u02:Cabellos,
+12:u04:Aparicio,
+13:u05:Technical,
+13:u08:Catalonia,
+14:u09:-/Aparicio,
+22:u0A:Aparicio/Technical,
+24:u0B:Technical/University,
+14:u0C:Cabellos/-,
+14:u0D:Aparicio/1,
+12:u10:cabellos,
+12:u12:aparicio,
+7:u22:Apa,
+8:u23:Apar,
+8:u33:icio,
+12:u01:Cabellos,
+12:u03:Aparicio,
+13:u04:Technical,
+13:u07:Catalonia,
+22:u09:Aparicio/Technical,
+24:u0A:Technical/University,
+14:u0C:-/Aparicio,
+15:u0D:Technical/0,
+12:u11:aparicio,
+7:u22:Tec,
+8:u23:Tech,
+12:u00:Cabellos,
+12:u02:Aparicio,
+13:u03:Technical,
+13:u06:Catalonia,
+24:u09:Technical/University,
+16:u0B:of/Catalonia,
+22:u0C:Aparicio/Technical,
+12:u10:aparicio,
+13:u14:catalonia,
+12:u01:Aparicio,
+13:u02:Technical,
+13:u05:Catalonia,
+10:u08:Barkai,
+16:u0A:of/Catalonia,
+15:u0B:Catalonia/S,
+24:u0C:Technical/University,
+13:u13:catalonia,
+12:u00:Aparicio,
+13:u01:Technical,
+13:u04:Catalonia,
+10:u07:Barkai,
+9:u08:Nexar,
+16:u09:of/Catalonia,
+15:u0A:Catalonia/S,
+15:u0D:Catalonia/0,
+13:u12:catalonia,
+8:u23:Cata,
+8:u33:onia,
+13:u00:Technical,
+13:u03:Catalonia,
+10:u06:Barkai,
+9:u07:Nexar,
+15:u09:Catalonia/S,
+12:u0B:./Barkai,
+16:u0C:of/Catalonia,
+13:u11:catalonia,
+10:u14:barkai,
+13:u02:Catalonia,
+10:u05:Barkai,
+9:u06:Nexar,
+12:u0A:./Barkai,
+16:u0B:Barkai/Nexar,
+15:u0C:Catalonia/S,
+13:u10:catalonia,
+10:u13:barkai,
+9:u14:nexar,
+13:u01:Catalonia,
+10:u04:Barkai,
+9:u05:Nexar,
+12:u09:./Barkai,
+16:u0A:Barkai/Nexar,
+13:u0B:Nexar/Inc,
+12:u0D:Barkai/0,
+10:u12:barkai,
+9:u13:nexar,
+7:u22:Bar,
+8:u23:Bark,
+6:u31:ai,
+7:u32:kai,
+8:u33:rkai,
+13:u00:Catalonia,
+10:u03:Barkai,
+9:u04:Nexar,
+16:u09:Barkai/Nexar,
+13:u0A:Nexar/Inc,
+12:u0C:./Barkai,
+11:u0D:Nexar/0,
+10:u11:barkai,
+9:u12:nexar,
+7:u22:Nex,
+8:u23:Nexa,
+7:u32:xar,
+8:u33:exar,
+10:u02:Barkai,
+9:u03:Nexar,
+13:u08:Farinacci,
+13:u09:Nexar/Inc,
+7:u0B:./D,
+16:u0C:Barkai/Nexar,
+10:u10:barkai,
+9:u11:nexar,
+10:u01:Barkai,
+9:u02:Nexar,
+13:u07:Farinacci,
+11:u08:lispers,
+7:u0A:./D,
+13:u0C:Nexar/Inc,
+9:u10:nexar,
+10:u00:Barkai,
+9:u01:Nexar,
+13:u06:Farinacci,
+11:u07:lispers,
+7:u09:./D,
+15:u0B:./Farinacci,
+13:u14:farinacci,
+9:u00:Nexar,
+13:u05:Farinacci,
+11:u06:lispers,
+15:u0A:./Farinacci,
+21:u0B:Farinacci/lispers,
+7:u0C:./D,
+13:u13:farinacci,
+11:u14:lispers,
+13:u04:Farinacci,
+11:u05:lispers,
+15:u09:./Farinacci,
+21:u0A:Farinacci/lispers,
+13:u0B:lispers/.,
+15:u0D:Farinacci/0,
+13:u12:farinacci,
+11:u13:lispers,
+6:u21:Fa,
+7:u22:Far,
+8:u23:Fari,
+7:u32:cci,
+8:u33:acci,
+13:u03:Farinacci,
+11:u04:lispers,
+21:u09:Farinacci/lispers,
+13:u0A:lispers/.,
+15:u0C:./Farinacci,
+13:u0D:lispers/0,
+13:u11:farinacci,
+11:u12:lispers,
+8:u23:lisp,
+8:u33:pers,
+13:u02:Farinacci,
+11:u03:lispers,
+13:u08:Boucadair,
+13:u09:lispers/.,
+9:u0B:net/M,
+21:u0C:Farinacci/lispers,
+13:u10:farinacci,
+11:u11:lispers,
+13:u01:Farinacci,
+11:u02:lispers,
+13:u07:Boucadair,
+9:u0A:net/M,
+13:u0C:lispers/.,
+11:u10:lispers,
+13:u00:Farinacci,
+11:u01:lispers,
+13:u06:Boucadair,
+9:u09:net/M,
+15:u0B:./Boucadair,
+13:u14:boucadair,
+11:u00:lispers,
+13:u05:Boucadair,
+13:u08:Jacquenet,
+15:u0A:./Boucadair,
+15:u0B:Boucadair/C,
+9:u0C:net/M,
+13:u13:boucadair,
+13:u04:Boucadair,
+13:u07:Jacquenet,
+10:u08:Orange,
+15:u09:./Boucadair,
+15:u0A:Boucadair/C,
+15:u0D:Boucadair/0,
+13:u12:boucadair,
+6:u21:Bo,
+7:u22:Bou,
+8:u23:Bouc,
+7:u32:air,
+8:u33:dair,
+13:u03:Boucadair,
+13:u06:Jacquenet,
+10:u07:Orange,
+15:u09:Boucadair/C,
+15:u0B:./Jacquenet,
+15:u0C:./Boucadair,
+13:u11:boucadair,
+13:u14:jacquenet,
+13:u02:Boucadair,
+13:u05:Jacquenet,
+10:u06:Orange,
+15:u0A:./Jacquenet,
+20:u0B:Jacquenet/Orange,
+15:u0C:Boucadair/C,
+13:u10:boucadair,
+13:u13:jacquenet,
+10:u14:orange,
+13:u01:Boucadair,
+13:u04:Jacquenet,
+10:u05:Orange,
+9:u08:Secci,
+15:u09:./Jacquenet,
+20:u0A:Jacquenet/Orange,
+12:u0B:Orange/S,
+15:u0D:Jacquenet/0,
+13:u12:jacquenet,
+10:u13:orange,
+7:u22:Jac,
+8:u23:Jacq,
+8:u33:enet,
+13:u00:Boucadair,
+13:u03:Jacquenet,
+10:u04:Orange,
+9:u07:Secci,
+8:u08:Cnam,
+20:u09:Jacquenet/Orange,
+12:u0A:Orange/S,
+15:u0C:./Jacquenet,
+12:u0D:Orange/0,
+13:u11:jacquenet,
+10:u12:orange,
+13:u02:Jacquenet,
+10:u03:Orange,
+9:u06:Secci,
+8:u07:Cnam,
+12:u09:Orange/S,
+11:u0B:./Secci,
+20:u0C:Jacquenet/Orange,
+13:u10:jacquenet,
+10:u11:orange,
+9:u14:secci,
+13:u01:Jacquenet,
+10:u02:Orange,
+9:u05:Secci,
+8:u06:Cnam,
+11:u0A:./Secci,
+14:u0B:Secci/Cnam,
+12:u0C:Orange/S,
+10:u10:orange,
+9:u13:secci,
+8:u14:cnam,
+13:u00:Jacquenet,
+10:u01:Orange,
+9:u04:Secci,
+8:u05:Cnam,
+11:u09:./Secci,
+14:u0A:Secci/Cnam,
+18:u0B:Cnam/September,
+11:u0D:Secci/0,
+9:u12:secci,
+8:u13:cnam,
+8:u23:Secc,
+8:u33:ecci,
+10:u00:Orange,
+9:u03:Secci,
+8:u04:Cnam,
+14:u09:Secci/Cnam,
+18:u0A:Cnam/September,
+16:u0B:September/11,
+11:u0C:./Secci,
+10:u0D:Cnam/0,
+9:u11:secci,
+8:u12:cnam,
+6:u21:Cn,
+7:u22:Cna,
+8:u23:Cnam,
+7:u32:nam,
+8:u33:Cnam,
+9:u02:Secci,
+8:u03:Cnam,
+11:u08:Publish,
+18:u09:Cnam/September,
+16:u0A:September/11,
+14:u0C:Secci/Cnam,
+9:u10:secci,
+8:u11:cnam,
+9:u01:Secci,
+8:u02:Cnam,
+11:u07:Publish,
+16:u09:September/11,
+18:u0C:Cnam/September,
+8:u10:cnam,
+9:u00:Secci,
+8:u01:Cnam,
+11:u06:Publish,
+13:u08:Subscribe,
+16:u0B:2019/Publish,
+16:u0C:September/11,
+11:u14:publish,
+8:u00:Cnam,
+11:u05:Publish,
+13:u07:Subscribe,
+17:u08:Functionality,
+16:u0A:2019/Publish,
+13:u0B:Publish//,
+11:u13:publish,
+11:u04:Publish,
+13:u06:Subscribe,
+17:u07:Functionality,
+16:u09:2019/Publish,
+13:u0A:Publish//,
+15:u0B://Subscribe,
+13:u0D:Publish/0,
+11:u12:publish,
+13:u14:subscribe,
+6:u21:Pu,
+7:u22:Pub,
+8:u23:Publ,
+11:u03:Publish,
+13:u05:Subscribe,
+17:u06:Functionality,
+13:u09:Publish//,
+15:u0A://Subscribe,
+27:u0B:Subscribe/Functionality,
+16:u0C:2019/Publish,
+11:u11:publish,
+13:u13:subscribe,
+17:u14:functionality,
+11:u02:Publish,
+13:u04:Subscribe,
+17:u05:Functionality,
+15:u09://Subscribe,
+27:u0A:Subscribe/Functionality,
+21:u0B:Functionality/for,
+13:u0C:Publish//,
+15:u0D:Subscribe/0,
+11:u10:publish,
+13:u12:subscribe,
+17:u13:functionality,
+8:u23:Subs,
+11:u01:Publish,
+13:u03:Subscribe,
+17:u04:Functionality,
+27:u09:Subscribe/Functionality,
+21:u0A:Functionality/for,
+12:u0B:for/LISP,
+15:u0C://Subscribe,
+19:u0D:Functionality/0,
+13:u11:subscribe,
+17:u12:functionality,
+11:u00:Publish,
+13:u02:Subscribe,
+17:u03:Functionality,
+21:u09:Functionality/for,
+12:u0A:for/LISP,
+14:u0B:LISP/draft,
+27:u0C:Subscribe/Functionality,
+13:u10:subscribe,
+17:u11:functionality,
+13:u01:Subscribe,
+17:u02:Functionality,
+12:u09:for/LISP,
+14:u0A:LISP/draft,
+21:u0C:Functionality/for,
+17:u10:functionality,
+13:u00:Subscribe,
+17:u01:Functionality,
+8:u08:lisp,
+14:u09:LISP/draft,
+12:u0C:for/LISP,
+17:u00:Functionality,
+8:u07:lisp,
+14:u0C:LISP/draft,
+8:u06:lisp,
+10:u08:pubsub,
+10:u0B:-/lisp,
+8:u05:lisp,
+10:u07:pubsub,
+10:u0A:-/lisp,
+10:u0B:lisp/-,
+8:u04:lisp,
+10:u06:pubsub,
+6:u08:04,
+10:u09:-/lisp,
+10:u0A:lisp/-,
+12:u0B:-/pubsub,
+10:u0D:lisp/1,
+10:u14:pubsub,
+6:u31:sp,
+7:u32:isp,
+8:u33:lisp,
+8:u03:lisp,
+10:u05:pubsub,
+6:u07:04,
+10:u09:lisp/-,
+12:u0A:-/pubsub,
+12:u0B:pubsub/-,
+10:u0C:-/lisp,
+10:u13:pubsub,
+8:u02:lisp,
+10:u04:pubsub,
+6:u06:04,
+12:u09:-/pubsub,
+12:u0A:pubsub/-,
+8:u0B:-/04,
+10:u0C:lisp/-,
+12:u0D:pubsub/1,
+10:u12:pubsub,
+6:u14:04,
+8:u23:pubs,
+7:u32:sub,
+8:u33:bsub,
+8:u01:lisp,
+10:u03:pubsub,
+6:u05:04,
+12:u09:pubsub/-,
+8:u0A:-/04,
+15:u0B:04/Abstract,
+12:u0C:-/pubsub,
+10:u11:pubsub,
+6:u13:04,
+8:u00:lisp,
+10:u02:pubsub,
+6:u04:04,
+8:u09:-/04,
+15:u0A:04/Abstract,
+12:u0C:pubsub/-,
+8:u0D:04/1,
+10:u10:pubsub,
+6:u12:04,
+6:u21:04,
+6:u22:04,
+6:u23:04,
+6:u32:04,
+6:u33:04,
+10:u01:pubsub,
+6:u03:04,
+15:u09:04/Abstract,
+8:u0C:-/04,
+6:u11:04,
+10:u00:pubsub,
+6:u02:04,
+15:u0C:04/Abstract,
+6:u10:04,
+6:u01:04,
+16:u0B:specifies/an,
+6:u00:04,
+16:u0A:specifies/an,
+16:u0B:an/extension,
+16:u09:specifies/an,
+16:u0A:an/extension,
+16:u0B:extension/to,
+16:u09:an/extension,
+16:u0A:extension/to,
+16:u0C:specifies/an,
+7:u08:Map,
+16:u09:extension/to,
+16:u0C:an/extension,
+7:u07:Map,
+16:u0C:extension/to,
+7:u06:Map,
+10:u0B:of/Map,
+7:u14:map,
+7:u05:Map,
+10:u0A:of/Map,
+9:u0B:Map/-,
+7:u13:map,
+7:u04:Map,
+10:u08:enable,
+10:u09:of/Map,
+9:u0A:Map/-,
+13:u0B:-/Request,
+9:u0D:Map/0,
+7:u12:map,
+7:u22:Map,
+7:u23:Map,
+6:u31:ap,
+7:u32:Map,
+7:u33:Map,
+7:u03:Map,
+10:u07:enable,
+9:u09:Map/-,
+13:u0A:-/Request,
+14:u0B:Request/to,
+10:u0C:of/Map,
+7:u11:map,
+7:u02:Map,
+10:u06:enable,
+13:u09:-/Request,
+14:u0A:Request/to,
+13:u0B:to/enable,
+9:u0C:Map/-,
+13:u0D:Request/1,
+7:u10:map,
+10:u14:enable,
+7:u01:Map,
+10:u05:enable,
+14:u09:Request/to,
+13:u0A:to/enable,
+18:u0B:enable/Publish,
+13:u0C:-/Request,
+10:u13:enable,
+7:u00:Map,
+10:u04:enable,
+13:u09:to/enable,
+18:u0A:enable/Publish,
+14:u0C:Request/to,
+12:u0D:enable/0,
+10:u12:enable,
+7:u22:ena,
+8:u23:enab,
+10:u03:enable,
+10:u08:PubSub,
+18:u09:enable/Publish,
+13:u0C:to/enable,
+10:u11:enable,
+10:u02:enable,
+10:u07:PubSub,
+15:u0B:Subscribe/(,
+18:u0C:enable/Publish,
+10:u10:enable,
+10:u01:enable,
+10:u06:PubSub,
+13:u08:operation,
+15:u0A:Subscribe/(,
+12:u0B:(/PubSub,
+10:u00:enable,
+10:u05:PubSub,
+13:u07:operation,
+15:u09:Subscribe/(,
+12:u0A:(/PubSub,
+12:u0B:PubSub/),
+10:u04:PubSub,
+13:u06:operation,
+12:u09:(/PubSub,
+12:u0A:PubSub/),
+15:u0B:)/operation,
+15:u0C:Subscribe/(,
+12:u0D:PubSub/0,
+13:u14:operation,
+8:u23:PubS,
+8:u33:bSub,
+10:u03:PubSub,
+13:u05:operation,
+12:u09:PubSub/),
+15:u0A:)/operation,
+17:u0B:operation/for,
+12:u0C:(/PubSub,
+13:u13:operation,
+10:u02:PubSub,
+13:u04:operation,
+15:u09:)/operation,
+17:u0A:operation/for,
+12:u0C:PubSub/),
+15:u0D:operation/0,
+13:u12:operation,
+7:u22:ope,
+8:u23:oper,
+10:u01:PubSub,
+13:u03:operation,
+17:u09:operation/for,
+10:u0B:LISP/.,
+15:u0C:)/operation,
+13:u11:operation,
+10:u00:PubSub,
+13:u02:operation,
+10:u0A:LISP/.,
+17:u0C:operation/for,
+13:u10:operation,
+13:u01:operation,
+10:u09:LISP/.,
+13:u00:operation,
+10:u0C:LISP/.,
+11:u0B:Natal/,,
+11:u0A:Natal/,,
+11:u09:Natal/,,
+11:u0C:Natal/,,
+14:u0B:Draft/LISP,
+14:u0A:Draft/LISP,
+10:u0B:LISP/-,
+14:u09:Draft/LISP,
+10:u0A:LISP/-,
+12:u0B:-/PubSub,
+10:u09:LISP/-,
+12:u0A:-/PubSub,
+20:u0B:PubSub/September,
+14:u0C:Draft/LISP,
+12:u09:-/PubSub,
+20:u0A:PubSub/September,
+10:u0C:LISP/-,
+12:u0D:PubSub/1,
+20:u09:PubSub/September,
+12:u0C:-/PubSub,
+20:u0C:PubSub/September,
+8:u08:Vina,
+8:u07:Vina,
+8:u06:Vina,
+10:u0B:./Vina,
+8:u14:vina,
+8:u05:Vina,
+10:u0A:./Vina,
+16:u0B:Vina/Ermagan,
+8:u13:vina,
+8:u04:Vina,
+10:u09:./Vina,
+16:u0A:Vina/Ermagan,
+18:u0B:Ermagan/Google,
+10:u0D:Vina/0,
+8:u12:vina,
+7:u22:Vin,
+8:u23:Vina,
+8:u33:Vina,
+8:u03:Vina,
+16:u09:Vina/Ermagan,
+18:u0A:Ermagan/Google,
+14:u0B:Google/USA,
+10:u0C:./Vina,
+8:u11:vina,
+8:u02:Vina,
+17:u08:ermagan@gmail,
+18:u09:Ermagan/Google,
+14:u0A:Google/USA,
+16:u0C:Vina/Ermagan,
+8:u10:vina,
+8:u01:Vina,
+17:u07:ermagan@gmail,
+14:u09:Google/USA,
+18:u0C:Ermagan/Google,
+8:u00:Vina,
+17:u06:ermagan@gmail,
+19:u0B::/ermagan@gmail,
+14:u0C:Google/USA,
+17:u14:ermagan@gmail,
+17:u05:ermagan@gmail,
+11:u08:Johnson,
+19:u0A::/ermagan@gmail,
+19:u0B:ermagan@gmail/.,
+17:u13:ermagan@gmail,
+17:u04:ermagan@gmail,
+11:u07:Johnson,
+19:u09::/ermagan@gmail,
+19:u0A:ermagan@gmail/.,
+19:u0D:ermagan@gmail/0,
+17:u12:ermagan@gmail,
+7:u22:erm,
+8:u23:erma,
+17:u03:ermagan@gmail,
+11:u06:Johnson,
+19:u09:ermagan@gmail/.,
+15:u0B:com/Johnson,
+19:u0C::/ermagan@gmail,
+17:u11:ermagan@gmail,
+11:u14:johnson,
+17:u02:ermagan@gmail,
+11:u05:Johnson,
+15:u0A:com/Johnson,
+17:u0B:Johnson/Leong,
+19:u0C:ermagan@gmail/.,
+17:u10:ermagan@gmail,
+11:u13:johnson,
+17:u01:ermagan@gmail,
+11:u04:Johnson,
+7:u08:170,
+15:u09:com/Johnson,
+17:u0A:Johnson/Leong,
+15:u0B:Leong/Cisco,
+13:u0D:Johnson/0,
+11:u12:johnson,
+7:u22:Joh,
+8:u23:John,
+8:u33:nson,
+17:u00:ermagan@gmail,
+11:u03:Johnson,
+7:u07:170,
+10:u08:Tasman,
+17:u09:Johnson/Leong,
+15:u0A:Leong/Cisco,
+15:u0C:com/Johnson,
+11:u11:johnson,
+11:u02:Johnson,
+7:u06:170,
+10:u07:Tasman,
+9:u08:Drive,
+15:u09:Leong/Cisco,
+15:u0B:Systems/170,
+17:u0C:Johnson/Leong,
+11:u10:johnson,
+7:u14:170,
+11:u01:Johnson,
+7:u05:170,
+10:u06:Tasman,
+9:u07:Drive,
+7:u08:San,
+15:u0A:Systems/170,
+14:u0B:170/Tasman,
+15:u0C:Leong/Cisco,
+7:u13:170,
+10:u14:tasman,
+11:u00:Johnson,
+7:u04:170,
+10:u05:Tasman,
+9:u06:Drive,
+7:u07:San,
+8:u08:Jose,
+15:u09:Systems/170,
+14:u0A:170/Tasman,
+16:u0B:Tasman/Drive,
+9:u0D:170/0,
+7:u12:170,
+10:u13:tasman,
+9:u14:drive,
+7:u22:170,
+7:u23:170,
+7:u32:170,
+7:u33:170,
+7:u03:170,
+10:u04:Tasman,
+9:u05:Drive,
+7:u06:San,
+8:u07:Jose,
+14:u09:170/Tasman,
+16:u0A:Tasman/Drive,
+13:u0B:Drive/San,
+15:u0C:Systems/170,
+12:u0D:Tasman/0,
+7:u11:170,
+10:u12:tasman,
+9:u13:drive,
+7:u14:san,
+8:u23:Tasm,
+8:u33:sman,
+7:u02:170,
+10:u03:Tasman,
+9:u04:Drive,
+7:u05:San,
+8:u06:Jose,
+16:u09:Tasman/Drive,
+13:u0A:Drive/San,
+12:u0B:San/Jose,
+14:u0C:170/Tasman,
+11:u0D:Drive/0,
+7:u10:170,
+10:u11:tasman,
+9:u12:drive,
+7:u13:san,
+8:u14:jose,
+7:u22:Dri,
+8:u23:Driv,
+8:u33:rive,
+7:u01:170,
+10:u02:Tasman,
+9:u03:Drive,
+7:u04:San,
+8:u05:Jose,
+13:u09:Drive/San,
+12:u0A:San/Jose,
+10:u0B:Jose/,,
+16:u0C:Tasman/Drive,
+9:u0D:San/0,
+10:u10:tasman,
+9:u11:drive,
+7:u12:san,
+8:u13:jose,
+7:u22:San,
+7:u23:San,
+7:u32:San,
+7:u33:San,
+7:u00:170,
+10:u01:Tasman,
+9:u02:Drive,
+7:u03:San,
+8:u04:Jose,
+12:u09:San/Jose,
+10:u0A:Jose/,,
+13:u0C:Drive/San,
+10:u0D:Jose/0,
+9:u10:drive,
+7:u11:san,
+8:u12:jose,
+7:u22:Jos,
+8:u23:Jose,
+8:u33:Jose,
+10:u00:Tasman,
+9:u01:Drive,
+7:u02:San,
+8:u03:Jose,
+10:u09:Jose/,,
+10:u0B:CA/USA,
+12:u0C:San/Jose,
+7:u10:san,
+8:u11:jose,
+9:u00:Drive,
+7:u01:San,
+8:u02:Jose,
+17:u08:joleong@cisco,
+10:u0A:CA/USA,
+10:u0C:Jose/,,
+8:u10:jose,
+7:u00:San,
+8:u01:Jose,
+17:u07:joleong@cisco,
+10:u09:CA/USA,
+8:u00:Jose,
+17:u06:joleong@cisco,
+19:u0B::/joleong@cisco,
+10:u0C:CA/USA,
+17:u14:joleong@cisco,
+17:u05:joleong@cisco,
+9:u08:Fabio,
+19:u0A::/joleong@cisco,
+19:u0B:joleong@cisco/.,
+17:u13:joleong@cisco,
+17:u04:joleong@cisco,
+9:u07:Fabio,
+19:u09::/joleong@cisco,
+19:u0A:joleong@cisco/.,
+19:u0D:joleong@cisco/0,
+17:u12:joleong@cisco,
+6:u21:jo,
+7:u22:jol,
+8:u23:jole,
+17:u03:joleong@cisco,
+9:u06:Fabio,
+19:u09:joleong@cisco/.,
+13:u0B:com/Fabio,
+19:u0C::/joleong@cisco,
+17:u11:joleong@cisco,
+9:u14:fabio,
+17:u02:joleong@cisco,
+9:u05:Fabio,
+13:u0A:com/Fabio,
+15:u0B:Fabio/Maino,
+19:u0C:joleong@cisco/.,
+17:u10:joleong@cisco,
+9:u13:fabio,
+17:u01:joleong@cisco,
+9:u04:Fabio,
+13:u09:com/Fabio,
+15:u0A:Fabio/Maino,
+11:u0D:Fabio/0,
+9:u12:fabio,
+7:u22:Fab,
+8:u23:Fabi,
+7:u32:bio,
+8:u33:abio,
+17:u00:joleong@cisco,
+9:u03:Fabio,
+15:u09:Fabio/Maino,
+13:u0C:com/Fabio,
+9:u11:fabio,
+9:u02:Fabio,
+15:u0C:Fabio/Maino,
+9:u10:fabio,
+9:u01:Fabio,
+9:u00:Fabio,
+16:u08:fmaino@cisco,
+16:u07:fmaino@cisco,
+16:u06:fmaino@cisco,
+18:u0B::/fmaino@cisco,
+16:u14:fmaino@cisco,
+16:u05:fmaino@cisco,
+10:u08:Albert,
+18:u0A::/fmaino@cisco,
+18:u0B:fmaino@cisco/.,
+16:u13:fmaino@cisco,
+16:u04:fmaino@cisco,
+10:u07:Albert,
+18:u09::/fmaino@cisco,
+18:u0A:fmaino@cisco/.,
+18:u0D:fmaino@cisco/0,
+16:u12:fmaino@cisco,
+6:u21:fm,
+7:u22:fma,
+8:u23:fmai,
+16:u03:fmaino@cisco,
+10:u06:Albert,
+18:u09:fmaino@cisco/.,
+14:u0B:com/Albert,
+18:u0C::/fmaino@cisco,
+16:u11:fmaino@cisco,
+10:u14:albert,
+16:u02:fmaino@cisco,
+10:u05:Albert,
+14:u0A:com/Albert,
+19:u0B:Albert/Cabellos,
+18:u0C:fmaino@cisco/.,
+16:u10:fmaino@cisco,
+10:u13:albert,
+16:u01:fmaino@cisco,
+10:u04:Albert,
+14:u09:com/Albert,
+19:u0A:Albert/Cabellos,
+12:u0D:Albert/0,
+10:u12:albert,
+7:u22:Alb,
+8:u23:Albe,
+16:u00:fmaino@cisco,
+10:u03:Albert,
+19:u09:Albert/Cabellos,
+14:u0C:com/Albert,
+10:u11:albert,
+10:u02:Albert,
+19:u0C:Albert/Cabellos,
+10:u10:albert,
+10:u01:Albert,
+10:u00:Albert,
+13:u08:Barcelona,
+13:u07:Barcelona,
+13:u06:Barcelona,
+23:u0B:Catalonia/Barcelona,
+13:u14:barcelona,
+13:u05:Barcelona,
+23:u0A:Catalonia/Barcelona,
+19:u0B:Barcelona/Spain,
+13:u13:barcelona,
+13:u04:Barcelona,
+15:u08:acabello@ac,
+23:u09:Catalonia/Barcelona,
+19:u0A:Barcelona/Spain,
+15:u0D:Barcelona/0,
+13:u12:barcelona,
+8:u23:Barc,
+7:u32:ona,
+8:u33:lona,
+13:u03:Barcelona,
+15:u07:acabello@ac,
+19:u09:Barcelona/Spain,
+23:u0C:Catalonia/Barcelona,
+13:u11:barcelona,
+13:u02:Barcelona,
+15:u06:acabello@ac,
+7:u08:upc,
+17:u0B::/acabello@ac,
+19:u0C:Barcelona/Spain,
+13:u10:barcelona,
+15:u14:acabello@ac,
+13:u01:Barcelona,
+15:u05:acabello@ac,
+7:u07:upc,
+17:u0A::/acabello@ac,
+17:u0B:acabello@ac/.,
+15:u13:acabello@ac,
+13:u00:Barcelona,
+15:u04:acabello@ac,
+7:u06:upc,
+17:u09::/acabello@ac,
+17:u0A:acabello@ac/.,
+9:u0B:./upc,
+17:u0D:acabello@ac/0,
+15:u12:acabello@ac,
+7:u14:upc,
+8:u23:acab,
+6:u31:ac,
+7:u32:@ac,
+8:u33:o@ac,
+15:u03:acabello@ac,
+7:u05:upc,
+10:u08:Sharon,
+17:u09:acabello@ac/.,
+9:u0A:./upc,
+9:u0B:upc/.,
+17:u0C::/acabello@ac,
+15:u11:acabello@ac,
+7:u13:upc,
+15:u02:acabello@ac,
+7:u04:upc,
+10:u07:Sharon,
+9:u09:./upc,
+9:u0A:upc/.,
+17:u0C:acabello@ac/.,
+9:u0D:upc/0,
+15:u10:acabello@ac,
+7:u12:upc,
+7:u22:upc,
+7:u23:upc,
+6:u31:pc,
+7:u32:upc,
+7:u33:upc,
+15:u01:acabello@ac,
+7:u03:upc,
+10:u06:Sharon,
+9:u09:upc/.,
+14:u0B:edu/Sharon,
+9:u0C:./upc,
+7:u11:upc,
+10:u14:sharon,
+15:u00:acabello@ac,
+7:u02:upc,
+10:u05:Sharon,
+14:u0A:edu/Sharon,
+17:u0B:Sharon/Barkai,
+9:u0C:upc/.,
+7:u10:upc,
+10:u13:sharon,
+7:u01:upc,
+7:u03:edu,
+10:u04:Sharon,
+14:u09:edu/Sharon,
+17:u0A:Sharon/Barkai,
+9:u0C:./edu,
+12:u0D:Sharon/0,
+7:u11:edu,
+10:u12:sharon,
+8:u23:Shar,
+8:u33:aron,
+7:u00:upc,
+7:u02:edu,
+10:u03:Sharon,
+17:u09:Sharon/Barkai,
+14:u0C:edu/Sharon,
+7:u10:edu,
+10:u11:sharon,
+7:u01:edu,
+10:u02:Sharon,
+17:u0C:Sharon/Barkai,
+10:u10:sharon,
+7:u00:edu,
+10:u01:Sharon,
+10:u08:sharon,
+11:u0B:./Email,
+10:u00:Sharon,
+10:u07:sharon,
+11:u0A:./Email,
+10:u06:sharon,
+19:u08:barkai@getnexar,
+11:u09:./Email,
+12:u0B::/sharon,
+10:u05:sharon,
+19:u07:barkai@getnexar,
+12:u0A::/sharon,
+12:u0B:sharon/.,
+11:u0C:./Email,
+10:u04:sharon,
+19:u06:barkai@getnexar,
+12:u09::/sharon,
+12:u0A:sharon/.,
+21:u0B:./barkai@getnexar,
+12:u0D:sharon/0,
+19:u14:barkai@getnexar,
+8:u23:shar,
+10:u03:sharon,
+19:u05:barkai@getnexar,
+8:u08:Dino,
+12:u09:sharon/.,
+21:u0A:./barkai@getnexar,
+21:u0B:barkai@getnexar/.,
+12:u0C::/sharon,
+19:u13:barkai@getnexar,
+10:u02:sharon,
+19:u04:barkai@getnexar,
+8:u07:Dino,
+21:u09:./barkai@getnexar,
+21:u0A:barkai@getnexar/.,
+12:u0C:sharon/.,
+21:u0D:barkai@getnexar/0,
+19:u12:barkai@getnexar,
+7:u22:bar,
+8:u23:bark,
+10:u01:sharon,
+19:u03:barkai@getnexar,
+8:u06:Dino,
+21:u09:barkai@getnexar/.,
+12:u0B:com/Dino,
+21:u0C:./barkai@getnexar,
+19:u11:barkai@getnexar,
+8:u14:dino,
+10:u00:sharon,
+19:u02:barkai@getnexar,
+8:u05:Dino,
+12:u0A:com/Dino,
+18:u0B:Dino/Farinacci,
+21:u0C:barkai@getnexar/.,
+19:u10:barkai@getnexar,
+8:u13:dino,
+19:u01:barkai@getnexar,
+8:u04:Dino,
+12:u09:com/Dino,
+18:u0A:Dino/Farinacci,
+10:u0D:Dino/0,
+8:u12:dino,
+6:u21:Di,
+7:u22:Din,
+8:u23:Dino,
+8:u33:Dino,
+19:u00:barkai@getnexar,
+8:u03:Dino,
+18:u09:Dino/Farinacci,
+12:u0C:com/Dino,
+8:u11:dino,
+8:u02:Dino,
+18:u0C:Dino/Farinacci,
+8:u10:dino,
+8:u01:Dino,
+11:u0B:net/San,
+8:u00:Dino,
+11:u0A:net/San,
+11:u09:net/San,
+11:u08:Mohamed,
+11:u0C:net/San,
+11:u07:Mohamed,
+11:u06:Mohamed,
+15:u0B:USA/Mohamed,
+11:u14:mohamed,
+11:u05:Mohamed,
+10:u08:Rennes,
+15:u0A:USA/Mohamed,
+21:u0B:Mohamed/Boucadair,
+11:u13:mohamed,
+11:u04:Mohamed,
+10:u07:Rennes,
+9:u08:35000,
+15:u09:USA/Mohamed,
+21:u0A:Mohamed/Boucadair,
+20:u0B:Boucadair/Orange,
+13:u0D:Mohamed/0,
+11:u12:mohamed,
+7:u22:Moh,
+8:u23:Moha,
+11:u03:Mohamed,
+10:u06:Rennes,
+9:u07:35000,
+10:u08:France,
+21:u09:Mohamed/Boucadair,
+20:u0A:Boucadair/Orange,
+17:u0B:Orange/Rennes,
+15:u0C:USA/Mohamed,
+11:u11:mohamed,
+10:u14:rennes,
+11:u02:Mohamed,
+10:u05:Rennes,
+9:u06:35000,
+10:u07:France,
+20:u09:Boucadair/Orange,
+17:u0A:Orange/Rennes,
+16:u0B:Rennes/35000,
+21:u0C:Mohamed/Boucadair,
+11:u10:mohamed,
+10:u13:rennes,
+9:u14:35000,
+11:u01:Mohamed,
+10:u04:Rennes,
+9:u05:35000,
+10:u06:France,
+17:u09:Orange/Rennes,
+16:u0A:Rennes/35000,
+16:u0B:35000/France,
+20:u0C:Boucadair/Orange,
+12:u0D:Rennes/0,
+10:u12:rennes,
+9:u13:35000,
+7:u22:Ren,
+8:u23:Renn,
+8:u33:nnes,
+11:u00:Mohamed,
+10:u03:Rennes,
+9:u04:35000,
+10:u05:France,
+11:u08:mohamed,
+16:u09:Rennes/35000,
+16:u0A:35000/France,
+16:u0B:France/Email,
+17:u0C:Orange/Rennes,
+11:u0D:35000/0,
+10:u11:rennes,
+9:u12:35000,
+6:u21:35,
+7:u22:350,
+8:u23:3500,
+8:u33:5000,
+10:u02:Rennes,
+9:u03:35000,
+10:u04:France,
+11:u07:mohamed,
+16:u09:35000/France,
+16:u0A:France/Email,
+16:u0C:Rennes/35000,
+12:u0D:France/0,
+10:u10:rennes,
+9:u11:35000,
+6:u21:Fr,
+7:u22:Fra,
+8:u23:Fran,
+10:u01:Rennes,
+9:u02:35000,
+10:u03:France,
+11:u06:mohamed,
+20:u08:boucadair@orange,
+16:u09:France/Email,
+13:u0B::/mohamed,
+16:u0C:35000/France,
+9:u10:35000,
+10:u00:Rennes,
+9:u01:35000,
+10:u02:France,
+11:u05:mohamed,
+20:u07:boucadair@orange,
+13:u0A::/mohamed,
+13:u0B:mohamed/.,
+16:u0C:France/Email,
+9:u00:35000,
+10:u01:France,
+11:u04:mohamed,
+20:u06:boucadair@orange,
+13:u09::/mohamed,
+13:u0A:mohamed/.,
+22:u0B:./boucadair@orange,
+13:u0D:mohamed/0,
+20:u14:boucadair@orange,
+7:u22:moh,
+8:u23:moha,
+10:u00:France,
+11:u03:mohamed,
+20:u05:boucadair@orange,
+13:u08:Christian,
+13:u09:mohamed/.,
+22:u0A:./boucadair@orange,
+22:u0B:boucadair@orange/.,
+13:u0C::/mohamed,
+20:u13:boucadair@orange,
+11:u02:mohamed,
+20:u04:boucadair@orange,
+13:u07:Christian,
+22:u09:./boucadair@orange,
+22:u0A:boucadair@orange/.,
+13:u0C:mohamed/.,
+22:u0D:boucadair@orange/0,
+20:u12:boucadair@orange,
+6:u21:bo,
+7:u22:bou,
+8:u23:bouc,
+11:u01:mohamed,
+20:u03:boucadair@orange,
+13:u06:Christian,
+22:u09:boucadair@orange/.,
+17:u0B:com/Christian,
+22:u0C:./boucadair@orange,
+20:u11:boucadair@orange,
+13:u14:christian,
+11:u00:mohamed,
+20:u02:boucadair@orange,
+13:u05:Christian,
+17:u0A:com/Christian,
+23:u0B:Christian/Jacquenet,
+22:u0C:boucadair@orange/.,
+20:u10:boucadair@orange,
+13:u13:christian,
+20:u01:boucadair@orange,
+13:u04:Christian,
+17:u09:com/Christian,
+23:u0A:Christian/Jacquenet,
+15:u0D:Christian/0,
+13:u12:christian,
+7:u32:ian,
+8:u33:tian,
+20:u00:boucadair@orange,
+13:u03:Christian,
+23:u09:Christian/Jacquenet,
+17:u0C:com/Christian,
+13:u11:christian,
+13:u02:Christian,
+23:u0C:Christian/Jacquenet,
+13:u10:christian,
+13:u01:Christian,
+13:u00:Christian,
+13:u08:christian,
+13:u07:christian,
+13:u06:christian,
+20:u08:jacquenet@orange,
+15:u0B::/christian,
+13:u05:christian,
+20:u07:jacquenet@orange,
+15:u0A::/christian,
+15:u0B:christian/.,
+13:u04:christian,
+20:u06:jacquenet@orange,
+15:u09::/christian,
+15:u0A:christian/.,
+22:u0B:./jacquenet@orange,
+15:u0D:christian/0,
+20:u14:jacquenet@orange,
+13:u03:christian,
+20:u05:jacquenet@orange,
+11:u08:Stefano,
+15:u09:christian/.,
+22:u0A:./jacquenet@orange,
+22:u0B:jacquenet@orange/.,
+15:u0C::/christian,
+20:u13:jacquenet@orange,
+13:u02:christian,
+20:u04:jacquenet@orange,
+11:u07:Stefano,
+22:u09:./jacquenet@orange,
+22:u0A:jacquenet@orange/.,
+15:u0C:christian/.,
+22:u0D:jacquenet@orange/0,
+20:u12:jacquenet@orange,
+7:u22:jac,
+8:u23:jacq,
+13:u01:christian,
+20:u03:jacquenet@orange,
+11:u06:Stefano,
+22:u09:jacquenet@orange/.,
+15:u0B:com/Stefano,
+22:u0C:./jacquenet@orange,
+20:u11:jacquenet@orange,
+11:u14:stefano,
+13:u00:christian,
+20:u02:jacquenet@orange,
+11:u05:Stefano,
+15:u0A:com/Stefano,
+17:u0B:Stefano/Secci,
+22:u0C:jacquenet@orange/.,
+20:u10:jacquenet@orange,
+11:u13:stefano,
+20:u01:jacquenet@orange,
+11:u04:Stefano,
+15:u09:com/Stefano,
+17:u0A:Stefano/Secci,
+13:u0D:Stefano/0,
+11:u12:stefano,
+8:u23:Stef,
+7:u32:ano,
+8:u33:fano,
+20:u00:jacquenet@orange,
+11:u03:Stefano,
+17:u09:Stefano/Secci,
+15:u0B:Cnam/France,
+15:u0C:com/Stefano,
+11:u11:stefano,
+11:u02:Stefano,
+15:u0A:Cnam/France,
+15:u0B:France/_x+1,
+17:u0C:Stefano/Secci,
+11:u10:stefano,
+11:u01:Stefano,
+15:u09:Cnam/France,
+15:u0A:France/_x+1,
+16:uA3:INITCAP/_x+1,
+555=-0x1.f6d790ed71828p-3
+565=-0x1.499860081b151p-4
+674=0x1.ab47fcd0b8f74p+0
+675=-0x1.bad2762bad661p-1
+680=0x1.15f861ff67568p+1
+684=0x1.1b82225a5f276p+0
+687=-0x1.02511219cb07ep-1
+692=0x1.5ae746e77c094p+1
+699=-0x1.e52b314382212p-5
+707=0x1.2649abbd7d256p-5
+709=-0x1.46cc62ff7a1bfp-5
+711=-0x1.66f31af069936p-11
+744=0x1.a00c35e9bcccfp+0
+745=-0x1.a4caa1ea71aa7p-1
+746=0x1.19ba715d42853p+0
+747=-0x1.6e3b5cbf3e056p-1
+750=0x1.bac079adf5d9fp-1
+751=-0x1.72db07fdc2a17p-2
+753=-0x1.a0148c1f33973p+0
+756=0x1.45a898a17746fp+0
+757=-0x1.ff680c4bb9cd6p-2
+758=-0x1.6ce0c9b41921cp+1
+765=-0x1.325e5f3600cd9p+0
+767=0x1.df6d941b715f1p+1
+768=0x1.79c54626ac19bp-5
+771=-0x1.5ef7f414ea37p-4
+779=0x1.ba947bcb6cea1p-4
+781=-0x1.a1683bc43ea3fp-7
+792=0x1.92242d5f31d4ap-2
+810=0x1.0a485735648ddp+1
+818=0x1.ed5c30501ba9bp-3
+843=-0x1.bc6ca5dc1218p-14
+851=0x1.feb2f0bcb6e02p-7
+853=-0x1.5557dc819b093p-12
+866=0x1.ed5c30501ba9bp-3
+891=-0x1.bc6ca5dc1218p-14
+899=0x1.feb2f0bcb6e02p-7
+901=-0x1.5557dc819b093p-12
+939=-0x1.08dabf6c1a578p-7
+945=-0x1.123179f02e334p-22
+947=-0x1.ab7628204abp-5
+949=-0x1.4f0b708b254eap-6
+950=0x1.03c178c700673p-4
+951=-0x1.6c0f8fc46f6e3p-9
+955=0x1.35216b42dc64fp-4
+963=-0x1.17285792c95dfp-7
+971=0x1.9c40a3adfa426p-15
+973=-0x1.1359dc1abce13p-6
+975=-0x1.3d7a9b186d355p-18
+979=0x1.7e72d5fa66a1ap-3
+1011=-0x1.f369878423931p-13
+1019=-0x1.e906ea062d13cp-12
+1021=-0x1.758d82cd303a9p-12
+1035=-0x1.425befcacd7dep-11
+1043=0x1.8ec39eea7446p-8
+1045=-0x1.147858b91a966p-12
+1083=-0x1.f369878423931p-13
+1091=-0x1.e906ea062d13cp-12
+1093=-0x1.758d82cd303a9p-12
+1107=-0x1.425befcacd7dep-11
+1115=0x1.8ec39eea7446p-8
+1117=-0x1.147858b91a966p-12
+1129=0x1.d6adddb7d6f88p-2
+1130=-0x1.eb74d14321518p-1
+1131=0x1.0c1e8a31b0093p-13
+1134=0x1.365902b8604bp-2
+1139=0x1.202491c505291p-5
+1141=0x1.a1de2cf3dfa5dp-5
+1152=0x1.0c0deca55c3acp+0
+1155=0x1.d9633d7a843a8p-4
+1161=0x1.f4b42df477287p-3
+1163=0x1.fb7e1561f2843p-3
+1200=0x1.60a60892ee55cp-1
+1203=0x1.1a82528f7725dp-2
+1211=0x1.7e2b06f6641d7p-3
+1249=-0x1.0f32d19fafe6p-21
+1251=-0x1.d3b3efbacd8e2p-5
+1257=-0x1.3cb397cd485dap-17
+1259=-0x1.0905d8d3ea0adp-10
+1261=-0x1.b72ddd67156d8p-12
+1262=0x1.523b75558e4fap-1
+1264=0x1.9c52fde13d8dap-3
+1271=-0x1.697c4c2e4f012p-1
+1299=-0x1.6d1882a2c12f7p-6
+1305=-0x1.bb351547a2de4p-19
+1307=0x1.2fed295350d8fp-6
+1323=-0x1.c4889a9e11498p-4
+1326=0x1.3b2833284731cp-3
+1331=-0x1.0460d7292a96fp-4
+1333=-0x1.4e8e19d2ebe36p-5
+1379=-0x1.f20e0a87e536fp-6
+1381=-0x1.36ec704b4ff58p-16
+1383=0x1.3078d49f73e16p-3
+1395=-0x1.c4889a9e11498p-4
+1398=0x1.3b2833284731cp-3
+1403=-0x1.0460d7292a96fp-4
+1405=-0x1.4e8e19d2ebe36p-5
+1419=-0x1.a6a19b1a6a5efp-13
+1427=0x1.78ee75e930da6p-7
+1429=0x1.8d6988313562p-8
+1436=-0x1.53fd405b5a0ap-17
+1442=0x1.82713cdb784d2p-2
+1443=-0x1.c63576d7b308ep-6
+1453=-0x1.73e3b2549712p-3
+1456=0x1.29105c42f695ep-1
+1460=0x1.1f6c5f201011p-3
+1461=0x1.ae365e08418a1p-4
+1467=-0x1.f369878423931p-13
+1475=-0x1.e906ea062d13cp-12
+1477=-0x1.758d82cd303a9p-12
+1491=-0x1.f369878423931p-13
+1499=-0x1.e906ea062d13cp-12
+1501=-0x1.758d82cd303a9p-12
+1519=-0x1.d201d5914f86ep-4
+1523=0x1.1953026952ddfp-5
+1525=-0x1.f45e71972ad0dp-6
+1535=-0x1.c9aa97648d6a9p-3
+1539=-0x1.0422c2ab4664p-3
+1547=0x1.c66d6cd8abf8bp-6
+1549=-0x1.4a6355b1c0609p-12
+1563=-0x1.f369878423931p-13
+1571=-0x1.e906ea062d13cp-12
+1573=-0x1.758d82cd303a9p-12
+1587=-0x1.59452aaefb322p-6
+1595=0x1.1978dc185399fp-6
+1597=-0x1.af4c84d00cde2p-14
+1619=-0x1.f20e0a87e536fp-6
+1621=-0x1.36ec704b4ff58p-16
+1623=0x1.3078d49f73e16p-3
+1635=0x1.3e3cc5b0635bdp-16
+1643=0x1.a6ab20ddc43ccp-6
+1645=-0x1.0a5f7aeefbd48p-15
+1648=-0x1.1f14c29d09a17p-10
+1658=0x1.7b2301447e333p-4
+1665=0x1.060ef2238376bp-3
+1667=0x1.5f4d080a4655fp-4
+1669=0x1.63d21f5314f92p-17
+1683=-0x1.425befcacd7dep-11
+1691=0x1.8ec39eea7446p-8
+1693=-0x1.147858b91a966p-12
+1707=-0x1.425befcacd7dep-11
+1715=0x1.8ec39eea7446p-8
+1717=-0x1.147858b91a966p-12
+1729=-0x1.2af05391445fbp-2
+1731=0x1.02b8fc547b166p-5
+1735=-0x1.0ddb5799583f2p-6
+1739=0x1.3f9f7c314fc88p-5
+1741=-0x1.772ae3668a02cp-12
+1755=-0x1.904f75a81561cp-3
+1763=0x1.eb8fc9b4e21eep-6
+1765=-0x1.07fa9ff35808ep-12
+1779=-0x1.425befcacd7dep-11
+1787=0x1.8ec39eea7446p-8
+1789=-0x1.147858b91a966p-12
+1803=-0x1.58317c19a795p-6
+1811=0x1.7b2d7b83b53fdp-6
+1813=-0x1.7bb8997c01281p-14
+1827=-0x1.d9a3ff1517d12p-5
+1835=-0x1.2c3a9b53f675dp-4
+1837=-0x1.f55bdf5306b02p-18
+1840=0x1.235635d992f4dp-1
+1900=-0x1.5734eec44ae74p-2
+1907=-0x1.38a177e3a8b6ap-6
+1909=-0x1.1408066d2b621p-15
+1923=-0x1.9594d7a376b43p-13
+1929=-0x1.2d5672e93190ep-21
+1931=0x1.f707f894eb0a9p-6
+1933=-0x1.3e440d1a93ddep-16
+1935=-0x1.db75178537a52p-7
+1971=-0x1.94c9f781e955dp-2
+1975=-0x1.62f25587bdb1dp-3
+1979=-0x1.ab3c3e0e391fcp-6
+1981=-0x1.b43e7d32b5c75p-7
+1983=0x1.364bdb6844fb6p-1
+1995=0x1.6f3959a0d7aa9p-15
+2003=-0x1.5e5f5cb2994e5p-5
+2017=0x1.63da3d0f9041cp+2
+2041=0x1.49907313fff0bp+2
+2042=0x1.219d9826e48b7p-2
+2048=0x1.f939721cb8cd1p+0
+2064=0x1.01c420391dedcp-1
+2067=0x1.1b77c30b19939p+2
+2070=0x1.72734189b2f75p+0
+2088=0x1.48633c272b9a1p-1
+2090=-0x1.80e0cab6a81c6p-1
+2091=0x1.e77e7a8b7d336p+2
+2092=0x1.c889cd670bbe6p+0
+2099=-0x1.6895094ccbfbfp-3
+2100=0x1.7285b151f9b91p+0
+2101=-0x1.f31403bce846bp-2
+2105=0x1.7275860a421bdp-1
+2106=0x1.214a196fb5055p-2
+2117=0x1.3969084ef60c5p+2
+2138=0x1.f08f6e703875ap+0
+2141=0x1.0addec829c987p+2
+2167=0x1.9c3cc69c19855p+1
+2191=0x1.668b758f9a59cp+2
+2194=0x1.fa377a301a0e2p-1
+2217=0x1.474d5a8f8a1acp+2
+2238=0x1.d5af64fcdaac8p+0
+2241=0x1.a838097f72936p+2
+2242=0x1.d0c326f65a711p-1
+2267=0x1.e03e6b1e924d1p+1
+2282=0x1.d2732a81589a6p-2
+2283=-0x1.e2566c66c44b1p-6
+2291=0x1.8f0f482d08e18p+2
+2317=0x1.1928a932c550dp+2
+2341=0x1.c391c488aa997p+2
+2348=0x1.d76958e1d139ap+0
+2354=-0x1.4dc907c08f621p-3
+2366=0x1.080d67d02522cp+2
+2369=0x1.9424d00440bdep-1
+2375=0x1.baa6d08c91929p+1
+2379=0x1.01ef832998e64p-2
+2391=0x1.5d95f4a7b7eabp+2
+2415=0x1.3982044ae57e4p-8
+2416=0x1.eef3040851f23p+1
+2420=0x1.eb7d54da4d3aep-1
+2440=0x1.d29ac9c3d348p+1
+2467=0x1.5efae473fe258p+2
+2474=0x1.c3d60a63211abp-2
+2491=0x1.6479e0b23d661p+2
+2517=0x1.5cf1a5062880ap+2
+2541=0x1.444fb8e75ff55p+2
+2542=0x1.70cebccb0a088p+2
+2558=0x1.142298adacfcdp+2
+2567=0x1.00e0f4eacbe53p+2
+2583=0x1.0f4970d73b182p+2
+3051=-0x1.51ab8ffafa747p-2
+3146=0x1.ab3778d3fc9e8p-2
+3147=0x1.079b7ee76edeap-3
+3155=-0x1.362294b9b268dp-6
+3243=0x1.e9cd3ae4758bdp-1
+3255=-0x1.2cd97ff576d45p-1
+3261=0x1.412918fa11ae7p+0
+3267=0x1.2b17715384b68p-5
+3272=-0x1.1c05c6f6411dbp-2
+3275=0x1.3a63cd3de188ep-5
+3276=-0x1.8652e78a10a55p-6
+3277=-0x1.7053168173c06p-10
+3279=0x1.df7c49ac8b94ep-11
+3284=-0x1.b3dc70bf7eb4cp-1
+3290=-0x1.165be2b90208p+0
+3291=0x1.ab55815e0d206p-3
+3293=0x1.ad40b802ba8f4p-6
+3313=0x1.89f07a0fe1119p-4
+3315=-0x1.823e4afe22f7ep-12
+3317=0x1.dd34f1a23bd17p-2
+3318=-0x1.f831039eb56efp-3
+3323=0x1.05f0e0ea19979p-4
+3327=0x1.af7f003da6e46p-5
+3328=0x1.e75d212420926p-3
+3334=-0x1.76486bb6c4d93p-2
+3335=-0x1.b7a21b17212d8p-3
+3371=0x1.0c165d582924p-6
+3373=-0x1.03c1b154da19p-12
+3419=0x1.0c165d582924p-6
+3421=-0x1.03c1b154da19p-12
+3433=0x1.e7a9ef56d559p-3
+3435=-0x1.4f29dade4e7f2p-12
+3441=-0x1.0b1e1eb4853b2p-22
+3443=-0x1.4d845bbdcba21p-5
+3445=-0x1.3b66eeacf8d6bp-6
+3446=0x1.154fdc013754fp-4
+3447=-0x1.a2fef5b545228p-9
+3451=0x1.ec08e37d19246p-5
+3467=0x1.09f163d02c26cp-7
+3469=-0x1.729cef1e231a3p-12
+3491=0x1.09f163d02c26cp-7
+3493=-0x1.729cef1e231a3p-12
+3505=0x1.0bcb78133bdafp-1
+3507=0x1.8c37d14376869p-3
+3515=0x1.951e46f31a2cp-3
+3517=0x1.3c31126c10005p-3
+3529=0x1.0badb61ab85a2p-2
+3531=0x1.2cd9645437a7bp-2
+3539=0x1.a1a2219c615ffp-3
+3541=-0x1.707a71ec1caaap-12
+3555=-0x1.00705abbfd2cfp-6
+3559=0x1.28773a7bb1655p-2
+3563=0x1.4a4763566045bp-7
+3565=-0x1.0254ac763f507p-12
+3567=-0x1.7285fb26bed62p-2
+3603=0x1.ff0b1ae544871p-17
+3611=0x1.01d0984a48fcfp-6
+3627=0x1.0f4b481de6768p-4
+3629=0x1.3cb01d4bb1a4ep+0
+3635=0x1.2d3565545b16p-6
+3637=0x1.655142d9e641ep-3
+3644=-0x1.901e664ea1a28p-15
+3654=0x1.6ed2a95600ae9p-2
+3657=-0x1.dbd91dce8d8c8p-2
+3659=-0x1.2bba3f02f9cf8p-3
+3661=-0x1.08e14bd570603p-18
+3662=0x1.2077ca9eadf97p-3
+3669=0x1.5e94d9e25591fp-6
+3670=-0x1.12577834f8b72p-3
+3673=0x1.829c102124dbep+0
+3679=0x1.88972b3ef819dp+0
+3699=-0x1.be57e5f399279p-13
+3703=-0x1.f8b9c2f81b84p-5
+3707=-0x1.70caf4a0397cfp-10
+3709=-0x1.f6e66a3214d58p-16
+3710=0x1.efd089900ac16p-1
+3718=-0x1.ba81a46a320f6p-2
+3744=-0x1.dfd976be35933p-3
+3746=-0x1.fad4d7d5d9f8ep-4
+3747=0x1.fa3c56a6ffa8ap-17
+3755=0x1.4f3868d138a33p-8
+3757=0x1.5b86c36f74017p-5
+3760=-0x1.a5443a1dec59cp-2
+4273=0x1.5acd0386303bap+1
+4418=0x1.9f64fa2465eb6p-2
+4419=-0x1.0165f9601f6b2p-4
+4425=-0x1.f51ada16c2a28p-18
+4427=-0x1.1051151b96ed1p-7
+4429=-0x1.4492dcab1194ap-11
+4431=0x1.d11a3e8e7ed7fp-7
+4443=-0x1.b4f64c7f04666p-15
+4449=0x1.66a65dc01bca9p-2
+4451=0x1.419341bc642e2p-4
+4453=0x1.836761fd89385p-3
+4456=0x1.efc7e6cd8f269p-8
+4461=0x1.17e4fcb373a81p-5
+4462=-0x1.481f69c4a5bbp-1
+4467=-0x1.67e1f8a7395f6p-5
+4475=0x1.8ec6da55afcc4p-6
+4477=-0x1.6643d5da1f028p-12
+4491=-0x1.67e1f8a7395f6p-5
+4499=0x1.8ec6da55afcc4p-6
+4501=-0x1.6643d5da1f028p-12
+4515=-0x1.e0857846b93e1p-6
+4518=0x1.b2bafd4304c01p-1
+4525=-0x1.3a2173666afb2p-19
+4530=0x1.f046b23b16e3ap-1
+4537=0x1.07bf033358ba2p-1
+4539=-0x1.156c2486cf55ap-5
+4561=0x1.4ef93a25b5ca7p-2
+4586=0x1.561636e2ba56bp-2
+4599=-0x1.560820c14a32dp-3
+4615=0x1.ea657cd168956p-1
+4634=0x1.561636e2ba56bp-2
+4647=-0x1.560820c14a32dp-3
+4659=0x1.9c31d370bdc96p-5
+4667=0x1.217f8af5f206ap-6
+4706=0x1.a22416e900c45p+0
+4754=0x1.5a13e0953a8ccp-1
+5042=0x1.5a13e0953a8ccp-1
+5354=0x1.05cbf0e4d8098p-1
+5363=0x1.31bbe8dcb9fcep-3
+5374=-0x1.44ade5bff98c4p-8
+5383=0x1.4591ee8c9ce4dp+0
+5392=0x1.e34734887191ap-1
+5411=0x1.e101ed8a9565ap-8
+5415=-0x1.45cd12510b44cp-1
+5426=0x1.873da24e6eb27p+0
+5432=0x1.cb33cce454661p+0
+5439=0x1.8d07f1c2b9ea4p-1
+5450=0x1.bc0be46a7f7b3p-2
+5451=0x1.775d8e210d50ap-3
+5469=0x1.61ca95bc71423p-3
+5474=0x1.bc0be46a7f7b3p-2
+5475=0x1.775d8e210d50ap-3
+5493=0x1.61ca95bc71423p-3
+5498=0x1.418a7dc14126cp+1
+5499=0x1.62a3838aa56b7p-3
+5520=0x1.9b6222d98407bp-3
+5544=0x1.975642b39fc46p-3
+5592=0x1.98889225eb83bp-3
+5616=0x1.941419e202aa2p-3
+5640=0x1.7a42006671099p-3
+5664=0x1.941419e202aa2p-3
+5688=0x1.6e147a6f96581p-3
+5736=0x1.941419e202aa2p-3
+5760=0x1.941419e202aa2p-3
+5784=0x1.941419e202aa2p-3
+5832=0x1.941419e202aa2p-3
+5880=0x1.98889225eb83bp-3
+5904=0x1.941419e202aa2p-3
+5928=0x1.7a42006671099p-3
+5952=0x1.941419e202aa2p-3
+6000=0x1.941419e202aa2p-3
+6024=0x1.941419e202aa2p-3
+6120=0x1.941419e202aa2p-3
+6146=0x1.1c4f1f1421c6cp-2
+6147=-0x1.8adf809ba2a6p-13
+6155=-0x1.3e2ea8ae160e1p-5
+6157=-0x1.5261036eb5d65p-3
+6171=-0x1.4722f01966633p-3
+6175=0x1.5c543895a03cep-1
+6184=0x1.12ce60bc3f685p+0
+6194=0x1.0f4eda2760dd1p-16
+6203=-0x1.82b0e4af131bep-3
+6205=-0x1.bffa15ec681e5p-20
+6208=0x1.d5bc40d35f2f2p-4
+6213=0x1.b178ee4db3481p-8
+7098=0x1.2bd931efca805p-1
+8003=-0x1.229cc5be49f23p-6
+8091=-0x1.403aba8275381p-2
+8101=-0x1.35a362be63b83p-13
+8197=-0x1.bfe7f516a85d1p-23
+8331=0x1.8668e2c58fc3cp-23
+8619=0x1.52cd0091b8f4fp-1
+8763=0x1.95875e8260984p-2
+8773=0x1.d52dd037864f1p-5
+8775=0x1.bf0c63fecec72p-1
+8786=-0x1.42bfd0c11e025p-4
+8787=0x1.20485485bee05p+0
+8798=0x1.9de0d24679f9p-4
+8811=0x1.d2bc5ebb9c66p-5
+8823=0x1.403f70a5ed8f4p-2
+8831=-0x1.59128b3d700d4p-1
+8885=0x1.3b74235c6397ap-3
+8891=-0x1.b979a06175a19p-4
+8930=0x1.1660fcc0ad75p-3
+8954=0x1.dbd4e88af48f7p-2
+8978=0x1.7bf39835db701p-4
+9074=0x1.36b788b0978adp-3
+9098=0x1.36b788b0978adp-3
+9266=0x1.7bf39835db701p-4
+9362=0x1.36b788b0978adp-3
+9386=-0x1.05ccb643401ep+0
+9398=0x1.51dd73c4d1301p-1
+9399=-0x1.1bfec6b1f1c8ap-2
+9411=0x1.3f14e5941ea39p-3
+9483=-0x1.768e061642c12p-8
+9484=0x1.3fc56d10059eap+1
+9489=-0x1.36e72c0e156f3p-21
+9578=0x1.3c9450aee2945p-1
+9579=-0x1.4eb2e629cd63dp+0
+9580=0x1.d004c2643cdacp-1
+9582=0x1.1b349557facb9p-1
+9587=-0x1.de3d277fc6041p-4
+9589=-0x1.4b8faffcb962dp-3
+9591=0x1.a1be4f3af592dp-4
+9596=0x1.178bcd63bef34p-3
+9598=0x1.3da18d0a24d9p+1
+9601=-0x1.cf245e07f903p-4
+9603=-0x1.533a140375eb1p-3
+9611=-0x1.d97ff43da3065p-4
+9612=0x1.11f7b4e3d0e9dp-3
+9613=-0x1.e977e925d8fcep-1
+9635=-0x1.8432cd633caa9p-2
+9643=0x1.1782b209e7459p-6
+9644=0x1.6091a078f57f3p-1
+9646=0x1.540c8d207799cp-3
+9651=-0x1.f9af64aaa79a1p-3
+9663=0x1.d178d5e8d5e39p-3
+9674=0x1.bf20e539ceef5p-6
+9675=-0x1.6980289c61399p-3
+9699=0x1.8b1b3a020540cp-2
+9723=0x1.3ae95bf74c7d6p-1
+10155=-0x1.277b118baf4fbp-2
+10351=-0x1.4c6812a2a6b6dp-4
+10363=0x1.c9d5c0c1ec613p-2
+10368=0x1.a97e9988fce7ep-2
+10371=0x1.6dd94d8a31dbfp-7
+10373=-0x1.bf0a47888cf98p-2
+10381=-0x1.f64a2e212975ap-8
+10394=0x1.3a41e209b1155p-2
+10395=-0x1.9b629772ddf2cp-6
+10405=-0x1.dd86eae65f673p-7
+10406=0x1.941e29ccbc269p-23
+10412=0x1.df7af29872f74p+0
+10755=0x1.007c7df336e2ap-1
+10875=0x1.5c80953a589afp-2
+10971=0x1.c5d94407350a1p-3
+11196=0x1.2dd4cfdd5e37p-21
+11244=0x1.ed423b54d0be6p-5
+11484=0x1.2dd4cfdd5e37p-21
+11523=0x1.e63f103c433d7p-3
+11619=0x1.83e35b4042663p-2
+11691=-0x1.f92b2d27e8187p-6
+11748=0x1.67eda91e05c6fp+0
+11931=0x1.735286dc40a2bp-6
+12387=0x1.bc7305340608bp-2
+12399=-0x1.878a47865c76ep-19
+12403=0x1.78d6ffa7b95d4p-1
+12411=-0x1.c6493d211e3afp-2
+12435=-0x1.a9a7d15c1e5a3p-2
+12640=0x1.112383d06629p-2
+13083=0x1.a9850f4f30286p-5
+13093=-0x1.866ece73cb849p-2
+13299=0x1.33bc1b48e7dd7p-5
+13323=0x1.0c9f4eedc4cb9p-2
+13587=0x1.33bc1b48e7dd7p-5
+13850=0x1.4153d86c9c3f7p+1
+13851=-0x1.2fc7c7843808ap+0
+13898=0x1.11db44f40546ep-4
+14186=0x1.11db44f40546ep-4
+14283=-0x1.1fe19b08193d5p-3
+14627=0x1.521c759fff101p-9
+14631=-0x1.3710315cae08fp-6
+14632=0x1.80d1cdeadf73fp-3
+14843=0x1.db769279eda82p-9
+14845=0x1.974ee9bde1edap-8
+14846=0x1.c34119043a0dp-3
+14915=0x1.521c759fff101p-9
+14919=-0x1.3710315cae08fp-6
+14920=0x1.80d1cdeadf73fp-3
+14987=0x1.521c759fff101p-9
+14991=-0x1.3710315cae08fp-6
+14992=0x1.80d1cdeadf73fp-3
+15011=0x1.521c759fff101p-9
+15015=-0x1.3710315cae08fp-6
+15016=0x1.80d1cdeadf73fp-3
+15035=0x1.521c759fff101p-9
+15039=-0x1.3710315cae08fp-6
+15040=0x1.80d1cdeadf73fp-3
+15059=0x1.521c759fff101p-9
+15063=-0x1.3710315cae08fp-6
+15064=0x1.80d1cdeadf73fp-3
+15083=0x1.521c759fff101p-9
+15087=-0x1.3710315cae08fp-6
+15088=0x1.80d1cdeadf73fp-3
+15107=0x1.521c759fff101p-9
+15111=-0x1.3710315cae08fp-6
+15112=0x1.80d1cdeadf73fp-3
+15131=0x1.521c759fff101p-9
+15135=-0x1.3710315cae08fp-6
+15136=0x1.80d1cdeadf73fp-3
+15155=0x1.521c759fff101p-9
+15159=-0x1.3710315cae08fp-6
+15160=0x1.80d1cdeadf73fp-3
+15179=0x1.bfea864eb54bbp-6
+15181=0x1.974a2fe0a189ap-6
+15203=0x1.521c759fff101p-9
+15207=-0x1.3710315cae08fp-6
+15208=0x1.80d1cdeadf73fp-3
+15290=0x1.74e3dbf6ac87ap-2
+15302=0x1.7a31acabe66fbp-7
+15304=0x1.46c4722d522dfp-6
+15578=0x1.74e3dbf6ac87ap-2
+15590=0x1.7a31acabe66fbp-7
+15592=0x1.46c4722d522dfp-6
+15746=0x1.15a8982eabc65p-1
+15842=0x1.aba1999464c58p-2
+15843=-0x1.dcfb5fc6d4fefp-14
+15866=0x1.74e3dbf6ac87ap-2
+15878=0x1.7a31acabe66fbp-7
+15880=0x1.46c4722d522dfp-6
+15940=0x1.22fc24a53c594p-2
+16059=-0x1.4cda2a063af8cp-2
+16071=0x1.a3c151d676c16p-4
+16228=0x1.22fc24a53c594p-2
+16517=0x1.2531e1d1e723ep-1
+16528=0x1.69a50d6a3086bp-1
+16533=0x1.7a14aeaa430c2p-2
+16647=0x1.6f1e17d98a4cp-3
+16935=0x1.6f1e17d98a4cp-3
+17139=0x1.73963a506c954p-5
+17141=0x1.3564de1358a0fp-4
+17151=-0x1.8b160aa4f650dp-7
+17152=-0x1.21f24c7c8ca0ep+0
+17157=0x1.fd944e7db9022p-2
+17189=0x1.a5fd0ca4ba043p-5
+17237=0x1.3e0ffbeadbe33p-6
+17258=0x1.3993e2a04339cp-2
+17343=0x1.c68c45e298bd3p-3
+17357=0x1.cc05acbd8ec15p-5
+17381=0x1.cc05acbd8ec15p-5
+17429=0x1.cc05acbd8ec15p-5
+17453=0x1.3e0ffbeadbe33p-6
+17477=0x1.5dcfaa64ba659p-5
+17525=0x1.3e0ffbeadbe33p-6
+17546=0x1.3993e2a04339cp-2
+17594=-0x1.c2bf82edc95eap-2
+17645=0x1.107826c5546afp-14
+17669=0x1.55a7a272d207fp-12
+17701=0x1.2bfc551d19d9fp-4
+17810=0x1.d62046c242e0bp-4
+17858=0x1.cf61a3c3d2edcp-4
+17955=0x1.a2af46fd325a5p-4
+18002=0x1.0581a4391cb76p-3
+18074=0x1.0581a4391cb76p-3
+18146=0x1.cf61a3c3d2edcp-4
+18438=0x1.6571cce28dca1p+0
+18486=0x1.65698dcbffa7dp+0
+18576=0x1.d87704f317ep-2
+18589=0x1.22d5fb1adf2e2p-5
+18702=0x1.664efa087bf72p+0
+18750=0x1.65698dcbffa7dp+0
+18840=0x1.d87704f317ep-2
+18853=0x1.22d5fb1adf2e2p-5
+18963=0x1.7f784d1237802p-4
+19058=0x1.88c7a49cb40e8p-2
+19082=0x1.6df6ff55baf9bp-1
+19179=-0x1.39017c1072e99p-2
+19190=0x1.0839ff0356a31p-1
+19443=-0x1.39017c1072e99p-2
+19454=0x1.0839ff0356a31p-1
+19490=0x1.4d8f513921a1bp-2
+19587=0x1.584cf7e1a2fb8p-2
+19683=-0x1.39017c1072e99p-2
+19694=0x1.0839ff0356a31p-1
+19815=0x1.f6ce733315083p-4
+19983=0x1.f6ce733315083p-4
+20055=0x1.f6ce733315083p-4
+20103=0x1.f6ce733315083p-4
+20127=0x1.f6ce733315083p-4
+20151=0x1.f6ce733315083p-4
+20175=0x1.f6ce733315083p-4
+20199=0x1.f6ce733315083p-4
+20223=0x1.f6ce733315083p-4
+20247=0x1.f6ce733315083p-4
+20271=0x1.f6ce733315083p-4
+20295=0x1.f6ce733315083p-4
+20307=0x1.2b0029540b0ccp-3
+20391=0x1.74e6bd98b3cf5p-2
+20631=0x1.74e6bd98b3cf5p-2
+20847=0x1.74e6bd98b3cf5p-2
+20907=0x1.51be749324e8cp-4
+20912=0x1.410fb0175a23bp-1
+21123=0x1.51be749324e8cp-4
+21128=0x1.410fb0175a23bp-1
+21688=0x1.79a086daf8c1ep-6
+22395=0x1.308f7ac63e56dp-3
+23433=0x1.64c5d99660ec7p-3
+23738=-0x1.dccae191e9a52p-4
+23739=0x1.54d7e083361fcp+0
+23886=0x1.00a2e56739e6ep-4
+23910=0x1.00a2e56739e6ep-4
+23934=0x1.2a8553f1b6831p+1
+23941=-0x1.2ae492048587dp-6
+23958=0x1.00a2e56739e6ep-4
+24006=0x1.00a2e56739e6ep-4
+24030=0x1.00a2e56739e6ep-4
+24078=0x1.00a2e56739e6ep-4
+24126=0x1.00a2e56739e6ep-4
+24150=0x1.00a2e56739e6ep-4
+24174=0x1.5d930c812e69ep-5
+24198=0x1.5d930c812e69ep-5
+24222=0x1.00a2e56739e6ep-4
+24246=0x1.0c742ac507d8cp-5
+24270=0x1.00a2e56739e6ep-4
+24294=0x1.00a2e56739e6ep-4
+24318=0x1.00a2e56739e6ep-4
+24447=0x1.9d85a5ced6751p-2
+24687=0x1.9d85a5ced6751p-2
+24711=0x1.9d85a5ced6751p-2
+25347=0x1.0b562b4cc408p-6
+25587=0x1.0b562b4cc408p-6
+25659=0x1.0b562b4cc408p-6
+25683=0x1.0b562b4cc408p-6
+25707=0x1.0b562b4cc408p-6
+25731=0x1.0b562b4cc408p-6
+25755=0x1.0b562b4cc408p-6
+25779=0x1.0b562b4cc408p-6
+25803=0x1.0b562b4cc408p-6
+25827=0x1.0b562b4cc408p-6
+25851=0x1.0b562b4cc408p-6
+25875=0x1.0b562b4cc408p-6
+25951=0x1.a7a541a1fa12fp-2
+26215=0x1.a7a541a1fa12fp-2
+26292=0x1.a640d0d85129dp-3
+26479=0x1.a7a541a1fa12fp-2
+26503=0x1.a7a541a1fa12fp-2
+26546=0x1.42d0e8ee5a806p-4
+26547=-0x1.b0725042e87cap-4
+26810=0x1.42d0e8ee5a806p-4
+26811=-0x1.b0725042e87cap-4
+26906=0x1.0ecc6a03dd822p+0
+26907=-0x1.aa0f6377d5865p-2
+27074=0x1.42d0e8ee5a806p-4
+27075=-0x1.b0725042e87cap-4
+27135=0x1.5e18a846688dap+0
+27280=0x1.7b027be60b221p+1
+27650=-0x1.b07b0b12c48b6p-1
+27795=0x1.2271ef890a083p+0
+28163=0x1.345cd1b9c4712p-6
+28427=0x1.345cd1b9c4712p-6
+28707=-0x1.f9cc43dddd8e7p-3
+28719=0x1.3700285368f1ep-3
+28971=-0x1.f9cc43dddd8e7p-3
+28983=0x1.3700285368f1ep-3
+29031=0x1.31b962732e983p-1
+29835=0x1.eacd8f15d3ed3p-2
+29928=0x1.14e1ca83a77d6p-1
+30123=0x1.eacd8f15d3ed3p-2
+30866=0x1.90c2172e0a30dp-16
+30939=0x1.659edf9d9c238p+1
+30987=-0x1.3856768430b1ep-3
+30999=-0x1.3e87ed0fce358p-19
+31560=0x1.d08e1dc836049p-3
+32139=-0x1.71fb7619d5bb9p-2
+32148=0x1.bdd29b12f886ep-2
+32379=-0x1.71fb7619d5bb9p-2
+32388=0x1.bdd29b12f886ep-2
+33931=0x1.2072da45b46b4p+0
+35555=0x1.1a82e1ceea129p-1
+37234=0x1.8da735ee6aaacp-1
+37330=0x1.8da735ee6aaacp-1
+37402=0x1.8da735ee6aaacp-1
+37450=0x1.8da735ee6aaacp-1
+37474=0x1.8da735ee6aaacp-1
+37498=0x1.8da735ee6aaacp-1
+37522=0x1.d06ab8988b533p-2
+37523=-0x1.23c0879bfa7dap-4
+37546=0x1.7269f06ea1c15p-1
+37570=0x1.8da735ee6aaacp-1
+39123=0x1.9380797bf6e13p-1
+40837=0x1.5abdf7325eb8ep-3
+40861=0x1.e537e073a51fp-5
+40986=0x1.810f3c4b955d4p-2
+44485=0x1.2d5c6e0a4a3fp-4
+46379=0x1.2ba60c2788e72p-2
+47163=-0x1.1f93484d97445p-2
+47403=-0x1.1f93484d97445p-2
+47643=0x1.a2428e4eb16d1p-4
+48013=0x1.e1f1866b7567ep-2
+48253=0x1.e1f1866b7567ep-2
+60594=0x1.3947e1642998ep+0
+62515=0x1.9857b4eee25d1p+0
+62810=0x1.077eed16a2328p-7
+62834=0x1.dbcb5f8d1b042p-3
+62858=0x1.31432adc236a2p-2
+62906=0x1.353ca8b60bf39p-2
+62930=0x1.353ca8b60bf39p-2
+62954=0x1.de70b1efe794bp-12
+62978=0x1.7a4a671e47362p-4
+63002=0x1.083ea41dfc40ep-1
+63026=0x1.7b5db38230019p-1
+63050=0x1.94bd5e083d269p-2
+63074=0x1.80e015bf45c7ap-1
+63098=0x1.80e015bf45c7ap-1
+63146=0x1.083ea41dfc40ep-1
+68835=-0x1.2e28f51208475p-4
+68848=0x1.21c1518e62da5p-2
+73643=0x1.370a1d51ad379p-2
+73667=0x1.370a1d51ad379p-2
+73691=0x1.d3549f1a9907dp-1
+73715=0x1.370a1d51ad379p-2
+73778=0x1.e4e7bdd6b5b1p-3
+73802=0x1.e4e7bdd6b5b1p-3
+73850=0x1.e4e7bdd6b5b1p-3
+73874=0x1.e4e7bdd6b5b1p-3
+73898=0x1.e4e7bdd6b5b1p-3
+73922=0x1.4ad5268b18f83p-4
+73994=0x1.e044174dda7d7p-3
+74018=0x1.26412f48241ebp-4
+74042=0x1.4ad5268b18f83p-4
+74066=0x1.4ad5268b18f83p-4
+84627=0x1.7b8b72897659fp-4
+85277=0x1.235b3eb11fe38p-16
+90962=-0x1.d841e194e515ep-13
+91130=-0x1.5451b5bec7a52p-12
+91131=0x1.84ccf8f5efe87p-2
+91515=0x1.d4cc53523b2eap-2
+91818=0x1.49909eb5076cep-1
+92155=0x1.4ebb1f37740bdp-3
+92251=0x1.4ebb1f37740bdp-3
+92299=0x1.2d6a3539ceef1p-3
+92323=0x1.4ebb1f37740bdp-3
+92347=0x1.4ebb1f37740bdp-3
+93075=-0x1.97f7902792a59p-1
+94179=0x1.c3a5f7b08abep-2
+107355=0x1.e2c0cab409d38p-2
+109347=0x1.6c10915e33698p-17
+109563=0x1.6c10915e33698p-17
+109971=0x1.b2c3f34af485ap-3
+113043=0x1.0c900d3013e3dp-3
+113067=-0x1.2a3d356b5a808p-1
+113114=0x1.375f1f9f5a20ep-3
+113138=0x1.375f1f9f5a20ep-3
+113186=0x1.375f1f9f5a20ep-3
+113258=0x1.375f1f9f5a20ep-3
+117194=-0x1.8949da1f6cc1cp-3
+117627=0x1.a8f399235284p+0
+118452=0x1.149a0698d829bp-2
+118476=0x1.149a0698d829bp-2
+118500=0x1.149a0698d829bp-2
+118524=0x1.149a0698d829bp-2
+118548=0x1.149a0698d829bp-2
+118572=0x1.149a0698d829bp-2
+118620=0x1.149a0698d829bp-2
+118645=0x1.564af513130e6p-2
+118717=0x1.896554592f936p-3
+120781=0x1.2f8341dfa73bdp-1
+134916=0x1.b5a40d861585ep-22
+135084=0x1.b5a40d861585ep-22
+139886=0x1.bd63e0b1c6738p+1
+139935=0x1.80bc9131d2237p+1
+140007=0x1.17a298880dcdp+1
+140091=0x1.191db842be82ap-3
+140115=0x1.191db842be82ap-3
+140139=0x1.191db842be82ap-3
+141135=0x1.b5a50f9d263a6p-4
+141255=0x1.b5a50f9d263a6p-4
+141327=0x1.b5a50f9d263a6p-4
+141506=0x1.154b98a32f25cp-3
+141602=0x1.154b98a32f25cp-3
+141674=0x1.154b98a32f25cp-3
+141722=0x1.154b98a32f25cp-3
+141770=0x1.b28731f14b8f7p-5
+141794=0x1.154b98a32f25cp-3
+141818=0x1.154b98a32f25cp-3
+141842=0x1.25cfe97cb6d3ep-3
+141866=0x1.154b98a32f25cp-3
+142707=0x1.c81063d8dfe06p-2
+144473=0x1.b895c0bf1c171p+2
+144593=0x1.54f3e5cf94e33p-2
+144617=0x1.60b936c146e29p-2
+144880=0x1.786d5c4f4a715p-1
+145744=0x1.5a34ebe8f70ebp+0
+147459=0x1.5fafe2fee9b22p-1
+165952=0x1.1ca25e96a4377p-3
+174650=0x1.d72af264af489p+1
+192004=0x1.8770eb729cab2p-2
+192100=0x1.8770eb729cab2p-2
+192171=-0x1.a1888ab86efd1p-2
+192172=0x1.498d23b298e0ap-2
+192245=0x1.faf1d81b5049cp-2
+192317=0x1.faf1d81b5049cp-2
+192411=-0x1.d609f0b8a708fp-3
+192413=0x1.6abedf2e62c36p-3
+192461=0x1.ab0279eca0132p-2
+192533=0x1.ab0279eca0132p-2
+192605=0x1.ab0279eca0132p-2
+192629=0x1.95f388682321p-3
+192677=0x1.2c20bacdeb5cep-15
+192701=0x1.c207fac1a9c2p-6
+192725=0x1.c207fac1a9c2p-6
+192749=0x1.95f388682321p-3
+192773=0x1.95f388682321p-3
+192797=0x1.95f388682321p-3
+192842=0x1.b87be03e92fd6p-1
+193010=0x1.b87be03e92fd6p-1
+193058=0x1.cebca499d19fbp-2
+193803=0x1.438035b9b674ep+0
+195819=-0x1.1d8acdabb8932p-3
+196202=0x1.3a5e2c2955781p-1
+196203=-0x1.33fe88d6d29dep-2
+196850=0x1.f63b48cd1dccp-1
+196851=-0x1.b3b9f1f585e23p-3
+198171=0x1.80e48357087dfp+0
+198555=0x1.643c251401472p-8
+198651=0x1.643c251401472p-8
+198747=0x1.643c251401472p-8
+198795=0x1.643c251401472p-8
+198843=0x1.643c251401472p-8
+198867=0x1.643c251401472p-8
+198915=0x1.643c251401472p-8
+198939=0x1.643c251401472p-8
+199394=-0x1.97b0ec4c4e4dcp-1
+199395=0x1.90938b2c5d06dp-4
+199419=-0x1.289a8dec9fcfcp-2
+199659=-0x1.289a8dec9fcfcp-2
+204057=0x1.01dfe2c935185p-2
+204153=0x1.140fdcf429a66p+0
+259803=0x1.0cf426521e5bbp-3
+259875=0x1.0cf426521e5bbp-3
+259947=0x1.a88a4d72a5847p+0
+333170=0x1.87e5d7dd1b71p-6
+333171=-0x1.3544e9b35af18p-21
+333194=0x1.2b5426120c717p-5
+333242=0x1.2b5426120c717p-5
+333314=0x1.87e5d7dd1b71p-6
+333315=-0x1.3544e9b35af18p-21
+403874=0x1.dd903ce623d7dp-6
+403883=-0x1.6062cfac59919p-7
+403887=0x1.2ce70b4c69cc7p-7
+403898=0x1.7bafd6ed27944p-4
+403907=-0x1.c156ebe1073a4p-7
+403911=0x1.e0a506d660e74p-6
+404147=-0x1.4fd3d3e790936p-7
+404151=0x1.dd48aab0f3ab8p-6
+410484=0x1.74ea2ec56be6p-24
+410628=0x1.74ea2ec56be6p-24
+410676=0x1.74ea2ec56be6p-24
+410700=0x1.74ea2ec56be6p-24
+410724=0x1.74ea2ec56be6p-24
+411036=0x1.188bf8778211fp-20
+411204=0x1.188bf8778211fp-20
+415596=0x1.3a21b24c6d11ap-20
+415740=0x1.3a21b24c6d11ap-20
+426002=0x1.109b55c4eb66bp+0
+426204=0x1.7c5f86cff5374p-8
+426228=0x1.7c5f86cff5374p-8
+426252=0x1.7c5f86cff5374p-8
+426276=0x1.7c5f86cff5374p-8
diff --git a/grobid-home/models/segmentation/sdo/ietf/model.wapiti b/grobid-home/models/segmentation/sdo/ietf/model.wapiti
new file mode 100644
index 0000000000..41470f0d27
--- /dev/null
+++ b/grobid-home/models/segmentation/sdo/ietf/model.wapiti
@@ -0,0 +1,215149 @@
+#mdl#2#995
+#rdr#111/32/0
+12:u00:%x[-4,0],
+12:u01:%x[-3,0],
+12:u02:%x[-2,0],
+12:u03:%x[-1,0],
+11:u04:%x[0,0],
+11:u05:%x[1,0],
+11:u06:%x[2,0],
+11:u07:%x[3,0],
+11:u08:%x[4,0],
+11:u08:%x[5,0],
+12:u00:%x[-4,1],
+12:u01:%x[-3,1],
+12:u02:%x[-2,1],
+12:u03:%x[-1,1],
+11:u04:%x[0,1],
+11:u05:%x[1,1],
+11:u06:%x[2,1],
+11:u07:%x[3,1],
+11:u08:%x[4,1],
+12:u10:%x[-2,2],
+12:u11:%x[-1,2],
+11:u12:%x[0,2],
+11:u13:%x[1,2],
+11:u14:%x[2,2],
+11:u20:%x[0,3],
+11:u21:%x[0,4],
+11:u22:%x[0,5],
+11:u23:%x[0,6],
+12:u40:%x[-1,7],
+11:u41:%x[0,7],
+11:u42:%x[1,7],
+12:u60:%x[-1,8],
+11:u61:%x[0,8],
+11:u62:%x[1,8],
+12:u70:%x[-1,9],
+11:u71:%x[0,9],
+11:u72:%x[1,9],
+13:u80:%x[-1,10],
+12:u81:%x[0,10],
+12:u82:%x[1,10],
+13:u90:%x[-1,11],
+12:u91:%x[0,11],
+12:u92:%x[1,11],
+13:uA0:%x[-1,12],
+12:uA1:%x[0,12],
+12:uA2:%x[1,12],
+12:uB0:%x[0,13],
+12:uB1:%x[1,13],
+13:uB2:%x[-1,13],
+12:uC0:%x[0,14],
+13:uC1:%x[-1,14],
+12:uC2:%x[1,14],
+12:uD0:%x[0,15],
+13:uD1:%x[-1,15],
+12:uD2:%x[1,15],
+12:uE0:%x[0,16],
+12:uE1:%x[0,17],
+12:uE2:%x[0,18],
+12:uE3:%x[0,19],
+12:uE4:%x[0,20],
+12:uE5:%x[0,21],
+12:uE6:%x[0,22],
+12:uEI:%x[1,16],
+12:uEJ:%x[1,17],
+12:uEK:%x[1,18],
+12:uEL:%x[1,19],
+12:uEM:%x[1,20],
+12:uEN:%x[1,21],
+12:uEO:%x[1,22],
+13:uG0:%x[-1,23],
+12:uG1:%x[0,23],
+12:uG2:%x[1,23],
+13:uH0:%x[-1,24],
+12:uH1:%x[0,24],
+12:uH2:%x[1,24],
+13:uI0:%x[-1,25],
+12:uI1:%x[0,25],
+12:uI2:%x[1,25],
+13:uI0:%x[-1,26],
+12:uI1:%x[0,26],
+12:uI2:%x[1,26],
+13:uI0:%x[-1,27],
+12:uI1:%x[0,27],
+12:uI2:%x[1,27],
+13:uG0:%x[-2,28],
+13:uG1:%x[-1,28],
+12:uG2:%x[0,28],
+12:uG3:%x[1,28],
+12:uG4:%x[2,28],
+12:uG5:%x[3,28],
+13:uG0:%x[-2,29],
+13:uG1:%x[-1,29],
+12:uG2:%x[0,29],
+12:uG3:%x[1,29],
+12:uG4:%x[2,29],
+12:uG5:%x[3,29],
+13:uH0:%x[-2,30],
+13:uH1:%x[-1,30],
+12:uH2:%x[0,30],
+12:uH3:%x[1,30],
+12:uH4:%x[2,30],
+12:uH5:%x[3,30],
+13:uI1:%x[-1,31],
+12:uI2:%x[0,31],
+12:uI3:%x[1,31],
+13:uJ1:%x[-2,32],
+13:uJ1:%x[-1,32],
+12:uJ2:%x[0,32],
+12:uJ3:%x[1,32],
+12:uJ3:%x[1,32],
+1:b,
+#qrk#18
+10:I-,
+8:,
+7:I-,
+5:,
+12:I-,
+10:,
+8:I-,
+12:I-,
+10:,
+8:I-,
+6:,
+19:I-,
+17:,
+14:I-,
+12:,
+7:,
+9:I-,
+7:,
+#qrk#214021
+8:u00:_x-4,
+8:u01:_x-3,
+8:u02:_x-2,
+8:u03:_x-1,
+11:u04:BFCPbis,
+6:u05:G.,
+18:u06:Internet-Draft,
+12:u07:Ericsson,
+14:u08:Obsoletes:,
+6:u08:T.,
+11:u04:Working,
+13:u05:Camarillo,
+8:u08:4583,
+8:u10:_x-2,
+8:u11:_x-1,
+11:u12:bfcpbis,
+6:u13:g.,
+18:u14:internet-draft,
+5:u20:B,
+6:u21:BF,
+7:u22:BFC,
+8:u23:BFCP,
+8:u40:_x-1,
+14:u41:BLOCKSTART,
+14:u42:BLOCKSTART,
+8:u60:_x-1,
+13:u61:PAGESTART,
+10:u62:PAGEIN,
+8:u70:_x-1,
+11:u71:NEWFONT,
+12:u72:SAMEFONT,
+8:u80:_x-1,
+14:u81:HIGHERFONT,
+16:u82:SAMEFONTSIZE,
+8:u90:_x-1,
+5:u91:0,
+5:u92:0,
+8:uA0:_x-1,
+5:uA1:0,
+5:uA2:0,
+11:uB0:INITCAP,
+10:uB1:ALLCAP,
+8:uB2:_x-1,
+11:uC0:NODIGIT,
+8:uC1:_x-1,
+11:uC2:NODIGIT,
+5:uD0:0,
+8:uD1:_x-1,
+5:uD2:0,
+5:uE0:0,
+5:uE1:0,
+5:uE2:0,
+5:uE3:0,
+5:uE4:0,
+5:uE5:0,
+5:uE6:0,
+5:uEI:0,
+5:uEJ:0,
+5:uEK:0,
+5:uEL:0,
+5:uEM:0,
+5:uEN:0,
+5:uEO:0,
+8:uG0:_x-1,
+5:uG1:0,
+5:uG2:0,
+8:uH0:_x-1,
+5:uH1:0,
+5:uH2:0,
+8:uI0:_x-1,
+6:uI1:no,
+5:uI2:.,
+5:uI1:0,
+5:uI2:1,
+6:uI1:10,
+5:uI2:3,
+8:uG0:_x-2,
+8:uG1:_x-1,
+5:uG3:0,
+5:uG4:0,
+5:uG5:0,
+8:uH0:_x-2,
+8:uH1:_x-1,
+5:uH3:0,
+5:uH4:1,
+5:uH5:0,
+8:uI1:_x-1,
+5:uI2:0,
+5:uI3:0,
+8:uJ1:_x-2,
+8:uJ1:_x-1,
+5:uJ2:1,
+5:uJ3:1,
+1:b,
+8:u00:_x-3,
+8:u01:_x-2,
+8:u02:_x-1,
+11:u03:BFCPbis,
+6:u04:G.,
+18:u05:Internet-Draft,
+12:u06:Ericsson,
+14:u07:Obsoletes:,
+12:u08:Intended,
+11:u03:Working,
+13:u04:Camarillo,
+8:u07:4583,
+14:u08:Kristensen,
+8:u10:_x-1,
+11:u11:bfcpbis,
+6:u12:g.,
+18:u13:internet-draft,
+12:u14:ericsson,
+5:u20:G,
+6:u21:G.,
+6:u22:G.,
+6:u23:G.,
+14:u40:BLOCKSTART,
+11:u42:BLOCKIN,
+13:u60:PAGESTART,
+10:u61:PAGEIN,
+11:u70:NEWFONT,
+12:u71:SAMEFONT,
+14:u80:HIGHERFONT,
+16:u81:SAMEFONTSIZE,
+5:u90:0,
+5:uA0:0,
+10:uB0:ALLCAP,
+11:uB1:INITCAP,
+11:uB2:INITCAP,
+11:uC1:NODIGIT,
+5:uD1:0,
+5:uG0:0,
+5:uH0:0,
+6:uI0:no,
+5:uI1:.,
+5:uI2:-,
+5:uI0:0,
+5:uI1:1,
+6:uI0:10,
+5:uI1:3,
+5:uI2:4,
+5:uH3:1,
+5:uH4:0,
+5:uI3:1,
+5:uJ1:1,
+8:u00:_x-2,
+8:u01:_x-1,
+11:u02:BFCPbis,
+6:u03:G.,
+18:u04:Internet-Draft,
+12:u05:Ericsson,
+14:u06:Obsoletes:,
+6:u07:T.,
+9:u08:Cisco,
+11:u02:Working,
+13:u03:Camarillo,
+8:u06:4583,
+14:u07:Kristensen,
+11:u08:status:,
+11:u10:bfcpbis,
+6:u11:g.,
+18:u12:internet-draft,
+12:u13:ericsson,
+14:u14:obsoletes:,
+5:u20:I,
+6:u21:In,
+7:u22:Int,
+8:u23:Inte,
+11:u41:BLOCKIN,
+10:u60:PAGEIN,
+12:u70:SAMEFONT,
+16:u80:SAMEFONTSIZE,
+10:uB2:ALLCAP,
+5:uI0:.,
+5:uI1:-,
+6:uI2:no,
+5:uI0:1,
+5:uI0:3,
+5:uI1:4,
+5:uI2:2,
+5:uH2:1,
+8:u00:_x-1,
+11:u01:BFCPbis,
+6:u02:G.,
+18:u03:Internet-Draft,
+12:u04:Ericsson,
+14:u05:Obsoletes:,
+6:u06:T.,
+12:u07:Intended,
+12:u08:Expires:,
+11:u01:Working,
+13:u02:Camarillo,
+8:u05:4583,
+14:u06:Kristensen,
+11:u07:status:,
+6:u10:g.,
+18:u11:internet-draft,
+12:u12:ericsson,
+14:u13:obsoletes:,
+6:u14:t.,
+5:u20:E,
+6:u21:Er,
+7:u22:Eri,
+8:u23:Eric,
+11:u40:BLOCKIN,
+5:uI0:-,
+7:uI2::(),
+5:uI0:4,
+5:uI1:2,
+5:uI2:9,
+5:uH1:1,
+11:u00:BFCPbis,
+6:u01:G.,
+18:u02:Internet-Draft,
+12:u03:Ericsson,
+14:u04:Obsoletes:,
+6:u05:T.,
+12:u06:Intended,
+9:u07:Cisco,
+6:u08:C.,
+11:u00:Working,
+13:u01:Camarillo,
+8:u04:4583,
+14:u05:Kristensen,
+11:u06:status:,
+8:u08:June,
+18:u10:internet-draft,
+12:u11:ericsson,
+14:u12:obsoletes:,
+6:u13:t.,
+12:u14:intended,
+5:u20:O,
+6:u21:Ob,
+7:u22:Obs,
+8:u23:Obso,
+7:uI1::(),
+5:uI0:2,
+5:uI1:9,
+5:uH0:1,
+6:u00:G.,
+18:u01:Internet-Draft,
+12:u02:Ericsson,
+14:u03:Obsoletes:,
+6:u04:T.,
+12:u05:Intended,
+9:u06:Cisco,
+12:u07:Expires:,
+12:u08:Ericsson,
+13:u00:Camarillo,
+8:u03:4583,
+14:u04:Kristensen,
+11:u05:status:,
+8:u07:June,
+12:u08:Holmberg,
+12:u10:ericsson,
+14:u11:obsoletes:,
+6:u12:t.,
+12:u13:intended,
+9:u14:cisco,
+5:u20:T,
+6:u21:T.,
+6:u22:T.,
+6:u23:T.,
+5:uEJ:1,
+7:uI0::(),
+5:uI2::,
+5:uI0:9,
+6:uI2:10,
+18:u00:Internet-Draft,
+12:u01:Ericsson,
+14:u02:Obsoletes:,
+6:u03:T.,
+12:u04:Intended,
+9:u05:Cisco,
+12:u06:Expires:,
+6:u07:C.,
+12:u08:December,
+8:u02:4583,
+14:u03:Kristensen,
+11:u04:status:,
+8:u06:June,
+12:u07:Holmberg,
+14:u10:obsoletes:,
+6:u11:t.,
+12:u12:intended,
+9:u13:cisco,
+12:u14:expires:,
+5:uE1:1,
+5:uEI:1,
+5:uI1::,
+12:u00:Ericsson,
+14:u01:Obsoletes:,
+6:u02:T.,
+12:u03:Intended,
+9:u04:Cisco,
+12:u05:Expires:,
+6:u06:C.,
+11:u08:Session,
+8:u01:4583,
+14:u02:Kristensen,
+11:u03:status:,
+8:u05:June,
+12:u06:Holmberg,
+6:u08:8,,
+6:u10:t.,
+12:u11:intended,
+9:u12:cisco,
+12:u13:expires:,
+6:u14:c.,
+5:u20:C,
+6:u21:Ci,
+7:u22:Cis,
+8:u23:Cisc,
+5:uE0:1,
+5:uI0::,
+6:uI2::,,
+5:uI2:6,
+14:u00:Obsoletes:,
+6:u01:T.,
+12:u02:Intended,
+9:u03:Cisco,
+12:u04:Expires:,
+6:u05:C.,
+12:u07:December,
+12:u08:Protocol,
+8:u00:4583,
+14:u01:Kristensen,
+11:u02:status:,
+8:u04:June,
+12:u05:Holmberg,
+6:u07:8,,
+15:u08:Description,
+12:u10:intended,
+9:u11:cisco,
+12:u12:expires:,
+6:u13:c.,
+6:u21:Ex,
+7:u22:Exp,
+8:u23:Expi,
+6:uI1::,,
+5:uI1:6,
+6:u00:T.,
+12:u01:Intended,
+9:u02:Cisco,
+12:u03:Expires:,
+6:u04:C.,
+12:u06:December,
+11:u07:Session,
+36:u08:draft-ietf-bfcpbis-rfc4583bis-27,
+14:u00:Kristensen,
+11:u01:status:,
+8:u03:June,
+12:u04:Holmberg,
+6:u06:8,,
+15:u07:Description,
+10:u08:(BFCP),
+9:u10:cisco,
+12:u11:expires:,
+6:u12:c.,
+12:u14:december,
+6:u21:C.,
+6:u22:C.,
+6:u23:C.,
+6:uI0::,,
+5:uI0:6,
+12:u00:Intended,
+9:u01:Cisco,
+12:u02:Expires:,
+6:u03:C.,
+12:u05:December,
+11:u06:Session,
+12:u07:Protocol,
+12:u08:Abstract,
+11:u00:status:,
+8:u02:June,
+12:u03:Holmberg,
+6:u05:8,,
+15:u06:Description,
+10:u07:(BFCP),
+12:u10:expires:,
+6:u11:c.,
+12:u13:december,
+11:u14:session,
+12:u42:BLOCKEND,
+5:uEM:1,
+5:uI2:,,
+5:uI2:5,
+9:u00:Cisco,
+12:u01:Expires:,
+6:u02:C.,
+12:u04:December,
+11:u05:Session,
+12:u06:Protocol,
+36:u07:draft-ietf-bfcpbis-rfc4583bis-27,
+8:u08:This,
+8:u01:June,
+12:u02:Holmberg,
+6:u04:8,,
+15:u05:Description,
+10:u06:(BFCP),
+6:u10:c.,
+12:u12:december,
+11:u13:session,
+12:u14:protocol,
+5:u20:D,
+6:u21:De,
+7:u22:Dec,
+8:u23:Dece,
+12:u41:BLOCKEND,
+5:uE4:1,
+5:uI1:,,
+6:uI2:(),
+5:uI1:5,
+12:u00:Expires:,
+6:u01:C.,
+12:u03:December,
+11:u04:Session,
+12:u05:Protocol,
+36:u06:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u07:Abstract,
+10:u08:answer,
+8:u00:June,
+12:u01:Holmberg,
+6:u03:8,,
+15:u04:Description,
+10:u05:(BFCP),
+12:u08:document,
+12:u11:december,
+11:u12:session,
+12:u13:protocol,
+36:u14:draft-ietf-bfcpbis-rfc4583bis-27,
+5:u20:S,
+6:u21:Se,
+7:u22:Ses,
+8:u23:Sess,
+12:u40:BLOCKEND,
+5:uI0:,,
+6:uI1:(),
+5:uI0:5,
+6:u00:C.,
+12:u02:December,
+11:u03:Session,
+12:u04:Protocol,
+36:u05:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u06:Abstract,
+8:u07:This,
+11:u08:Control,
+12:u00:Holmberg,
+6:u02:8,,
+15:u03:Description,
+10:u04:(BFCP),
+12:u07:document,
+14:u08:procedures,
+12:u10:december,
+11:u11:session,
+12:u12:protocol,
+36:u13:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u14:abstract,
+5:u20:P,
+6:u21:Pr,
+7:u22:Pro,
+8:u23:Prot,
+10:uB1:NOCAPS,
+18:uC2:CONTAINSDIGITS,
+6:uI0:(),
+8:uI2:----,
+12:u01:December,
+11:u02:Session,
+12:u03:Protocol,
+36:u04:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u05:Abstract,
+8:u06:This,
+10:u07:answer,
+6:u01:8,,
+15:u02:Description,
+10:u03:(BFCP),
+12:u06:document,
+14:u07:procedures,
+11:u10:session,
+12:u11:protocol,
+36:u12:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u13:abstract,
+8:u14:this,
+5:u20:d,
+6:u21:dr,
+7:u22:dra,
+8:u23:draf,
+10:uB0:NOCAPS,
+18:uC0:CONTAINSDIGITS,
+5:uH2:2,
+8:uI1:----,
+12:u00:December,
+11:u01:Session,
+12:u02:Protocol,
+36:u03:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u04:Abstract,
+8:u05:This,
+10:u06:answer,
+11:u07:Control,
+14:u08:summarized,
+6:u00:8,,
+15:u01:Description,
+10:u02:(BFCP),
+12:u05:document,
+14:u06:procedures,
+12:u10:protocol,
+36:u11:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u12:abstract,
+8:u13:this,
+10:u14:answer,
+5:u20:A,
+6:u21:Ab,
+7:u22:Abs,
+8:u23:Abst,
+10:uB2:NOCAPS,
+18:uC1:CONTAINSDIGITS,
+5:uH1:2,
+8:uI0:----,
+7:uI2:()/,
+11:u00:Session,
+12:u01:Protocol,
+36:u02:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u03:Abstract,
+8:u04:This,
+10:u05:answer,
+11:u06:Control,
+10:u08:Status,
+15:u00:Description,
+10:u01:(BFCP),
+12:u04:document,
+14:u05:procedures,
+6:u08:in,
+36:u10:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u11:abstract,
+8:u12:this,
+10:u13:answer,
+11:u14:control,
+6:u21:Th,
+7:u22:Thi,
+8:u23:This,
+5:uH0:2,
+7:uI1:()/,
+12:u00:Protocol,
+36:u01:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u02:Abstract,
+8:u03:This,
+10:u04:answer,
+11:u05:Control,
+14:u07:summarized,
+10:u00:(BFCP),
+12:u03:document,
+14:u04:procedures,
+6:u07:in,
+6:u08:of,
+12:u10:abstract,
+8:u11:this,
+10:u12:answer,
+11:u13:control,
+5:u20:a,
+6:u21:an,
+7:u22:ans,
+8:u23:answ,
+7:uI0:()/,
+7:uI2:().,
+36:u00:draft-ietf-bfcpbis-rfc4583bis-27,
+12:u01:Abstract,
+8:u02:This,
+10:u03:answer,
+11:u04:Control,
+14:u06:summarized,
+10:u07:Status,
+14:u08:provisions,
+12:u02:document,
+14:u03:procedures,
+6:u06:in,
+6:u07:of,
+18:u08:Internet-Draft,
+8:u10:this,
+10:u11:answer,
+11:u12:control,
+14:u14:summarized,
+6:u21:Co,
+7:u22:Con,
+8:u23:Cont,
+5:uH2:3,
+7:uI1:().,
+12:u00:Abstract,
+8:u01:This,
+10:u02:answer,
+11:u03:Control,
+14:u05:summarized,
+10:u06:Status,
+19:u08:Internet-Drafts,
+12:u01:document,
+14:u02:procedures,
+6:u05:in,
+6:u06:of,
+18:u07:Internet-Draft,
+10:u10:answer,
+11:u11:control,
+14:u13:summarized,
+10:u14:status,
+5:uH1:3,
+7:uI0:().,
+8:u00:This,
+10:u01:answer,
+11:u02:Control,
+14:u04:summarized,
+10:u05:Status,
+14:u07:provisions,
+8:u08:Task,
+12:u00:document,
+14:u01:procedures,
+6:u04:in,
+6:u05:of,
+7:u08:are,
+11:u10:control,
+14:u12:summarized,
+10:u13:status,
+5:u20:s,
+6:u21:su,
+7:u22:sum,
+8:u23:summ,
+5:uH0:3,
+5:uH2:4,
+10:u00:answer,
+11:u01:Control,
+14:u03:summarized,
+10:u04:Status,
+14:u06:provisions,
+19:u07:Internet-Drafts,
+11:u08:working,
+14:u00:procedures,
+6:u03:in,
+6:u04:of,
+7:u07:are,
+9:u08:Force,
+14:u11:summarized,
+10:u12:status,
+14:u14:provisions,
+6:u21:St,
+7:u22:Sta,
+8:u23:Stat,
+5:uH1:4,
+11:u00:Control,
+14:u02:summarized,
+10:u03:Status,
+14:u05:provisions,
+19:u06:Internet-Drafts,
+8:u07:Task,
+10:u08:Drafts,
+6:u02:in,
+6:u03:of,
+7:u06:are,
+9:u07:Force,
+13:u08:documents,
+14:u10:summarized,
+10:u11:status,
+14:u13:provisions,
+19:u14:internet-drafts,
+5:uH0:4,
+14:u01:summarized,
+10:u02:Status,
+14:u04:provisions,
+19:u05:Internet-Drafts,
+8:u06:Task,
+11:u07:working,
+6:u01:in,
+6:u02:of,
+7:u05:are,
+9:u06:Force,
+13:u07:documents,
+6:u08:is,
+10:u10:status,
+14:u12:provisions,
+19:u13:internet-drafts,
+8:u14:task,
+5:u20:p,
+6:u21:pr,
+7:u22:pro,
+8:u23:prov,
+14:u00:summarized,
+10:u01:Status,
+14:u03:provisions,
+19:u04:Internet-Drafts,
+8:u05:Task,
+11:u06:working,
+10:u07:Drafts,
+7:u08:and,
+6:u00:in,
+6:u01:of,
+7:u04:are,
+9:u05:Force,
+13:u06:documents,
+6:u07:is,
+14:u11:provisions,
+19:u12:internet-drafts,
+8:u13:task,
+11:u14:working,
+10:u00:Status,
+14:u02:provisions,
+19:u03:Internet-Drafts,
+8:u04:Task,
+11:u05:working,
+10:u06:Drafts,
+9:u08:time.,
+6:u00:of,
+7:u03:are,
+9:u04:Force,
+13:u05:documents,
+6:u06:is,
+7:u08:may,
+14:u10:provisions,
+19:u11:internet-drafts,
+8:u12:task,
+11:u13:working,
+10:u14:drafts,
+6:u21:Ta,
+7:u22:Tas,
+8:u23:Task,
+7:uI2:-.-,
+14:u01:provisions,
+19:u02:Internet-Drafts,
+8:u03:Task,
+11:u04:working,
+10:u05:Drafts,
+7:u07:and,
+12:u08:material,
+7:u02:are,
+9:u03:Force,
+13:u04:documents,
+6:u05:is,
+7:u07:may,
+6:u08:It,
+19:u10:internet-drafts,
+8:u11:task,
+11:u12:working,
+10:u13:drafts,
+5:u20:w,
+6:u21:wo,
+7:u22:wor,
+8:u23:work,
+7:uI1:-.-,
+13:uI2:://..///.,
+5:uI2:8,
+14:u00:provisions,
+19:u01:Internet-Drafts,
+8:u02:Task,
+11:u03:working,
+10:u04:Drafts,
+7:u06:and,
+9:u07:time.,
+7:u01:are,
+9:u02:Force,
+13:u03:documents,
+6:u04:is,
+7:u06:may,
+6:u07:It,
+6:u08:or,
+8:u10:task,
+11:u11:working,
+10:u12:drafts,
+7:u14:and,
+6:u21:Dr,
+7:u22:Dra,
+8:u23:Draf,
+5:uH2:6,
+7:uI0:-.-,
+13:uI1:://..///.,
+5:uI1:8,
+19:u00:Internet-Drafts,
+8:u01:Task,
+11:u02:working,
+10:u03:Drafts,
+7:u05:and,
+9:u06:time.,
+12:u07:material,
+13:u08:Copyright,
+7:u00:are,
+9:u01:Force,
+13:u02:documents,
+6:u03:is,
+7:u05:may,
+6:u06:It,
+6:u07:or,
+11:u10:working,
+10:u11:drafts,
+7:u13:and,
+9:u14:time.,
+5:uH1:6,
+13:uI0:://..///.,
+6:uI2:,,,
+5:uI0:8,
+8:u00:Task,
+11:u01:working,
+10:u02:Drafts,
+7:u04:and,
+9:u05:time.,
+12:u06:material,
+9:u00:Force,
+13:u01:documents,
+6:u02:is,
+7:u04:may,
+6:u05:It,
+6:u06:or,
+10:u08:Notice,
+10:u10:drafts,
+7:u12:and,
+9:u13:time.,
+12:u14:material,
+7:u22:and,
+7:u23:and,
+5:uH0:6,
+6:uI1:,,,
+6:uI2:.-,
+11:u00:working,
+10:u01:Drafts,
+7:u03:and,
+9:u04:time.,
+12:u05:material,
+13:u07:Copyright,
+13:u00:documents,
+6:u01:is,
+7:u03:may,
+6:u04:It,
+6:u05:or,
+10:u07:Notice,
+7:u08:(c),
+7:u11:and,
+9:u12:time.,
+12:u13:material,
+5:u20:t,
+6:u21:ti,
+7:u22:tim,
+8:u23:time,
+6:uI0:,,,
+6:uI1:.-,
+7:uI2:".",
+10:u00:Drafts,
+7:u02:and,
+9:u03:time.,
+12:u04:material,
+13:u06:Copyright,
+6:u00:is,
+7:u02:may,
+6:u03:It,
+6:u04:or,
+10:u06:Notice,
+7:u07:(c),
+12:u08:authors.,
+7:u10:and,
+9:u11:time.,
+12:u12:material,
+13:u14:copyright,
+5:u20:m,
+6:u21:ma,
+7:u22:mat,
+8:u23:mate,
+5:uH2:8,
+6:uI0:.-,
+7:uI1:".",
+7:uI2:-,.,
+7:u01:and,
+9:u02:time.,
+12:u03:material,
+13:u05:Copyright,
+14:u08:Provisions,
+7:u01:may,
+6:u02:It,
+6:u03:or,
+10:u05:Notice,
+7:u06:(c),
+12:u07:authors.,
+9:u10:time.,
+12:u11:material,
+13:u13:copyright,
+5:uH1:8,
+7:uI0:".",
+7:uI1:-,.,
+7:u00:and,
+9:u01:time.,
+12:u02:material,
+13:u04:Copyright,
+42:u08:(http://trustee.ietf.org/license-info),
+7:u00:may,
+6:u01:It,
+6:u02:or,
+10:u04:Notice,
+7:u05:(c),
+12:u06:authors.,
+12:u08:Relating,
+12:u10:material,
+13:u12:copyright,
+12:u14:document,
+7:u22:Cop,
+8:u23:Copy,
+5:uH0:8,
+5:uH2:9,
+7:uI0:-,.,
+9:u00:time.,
+12:u01:material,
+13:u03:Copyright,
+14:u07:Provisions,
+15:u08:publication,
+6:u00:It,
+6:u01:or,
+10:u03:Notice,
+7:u04:(c),
+12:u05:authors.,
+12:u07:Relating,
+13:u11:copyright,
+12:u13:document,
+5:uH1:9,
+6:uI2:..,
+12:u00:material,
+13:u02:Copyright,
+14:u06:Provisions,
+42:u07:(http://trustee.ietf.org/license-info),
+14:u08:Camarillo,,
+6:u00:or,
+10:u02:Notice,
+7:u03:(c),
+12:u04:authors.,
+12:u06:Relating,
+13:u10:copyright,
+12:u12:document,
+6:u21:do,
+7:u22:doc,
+8:u23:docu,
+5:uH0:9,
+6:uI1:..,
+5:uI2:',
+13:u01:Copyright,
+14:u05:Provisions,
+42:u06:(http://trustee.ietf.org/license-info),
+15:u07:publication,
+11:u08:Expires,
+10:u01:Notice,
+7:u02:(c),
+12:u03:authors.,
+12:u05:Relating,
+6:u08:et,
+12:u11:document,
+42:u14:(http://trustee.ietf.org/license-info),
+6:uI0:..,
+5:uI1:',
+13:u00:Copyright,
+14:u04:Provisions,
+42:u05:(http://trustee.ietf.org/license-info),
+15:u06:publication,
+14:u07:Camarillo,,
+9:u08:[Page,
+10:u00:Notice,
+7:u01:(c),
+12:u02:authors.,
+12:u04:Relating,
+6:u07:et,
+12:u10:document,
+42:u13:(http://trustee.ietf.org/license-info),
+15:u14:publication,
+8:u23:Prov,
+5:uEO:1,
+5:uI0:',
+13:uI2:(://../-),
+5:uH5:1,
+14:u03:Provisions,
+42:u04:(http://trustee.ietf.org/license-info),
+15:u05:publication,
+14:u06:Camarillo,,
+11:u07:Expires,
+7:u00:(c),
+12:u01:authors.,
+12:u03:Relating,
+6:u06:et,
+6:u08:1],
+42:u12:(http://trustee.ietf.org/license-info),
+15:u13:publication,
+14:u14:camarillo,,
+5:u20:(,
+6:u21:(h,
+7:u22:(ht,
+8:u23:(htt,
+5:uE6:1,
+13:uI1:(://../-),
+14:u02:Provisions,
+42:u03:(http://trustee.ietf.org/license-info),
+15:u04:publication,
+14:u05:Camarillo,,
+11:u06:Expires,
+9:u07:[Page,
+8:u08:BFCP,
+12:u00:authors.,
+12:u02:Relating,
+6:u05:et,
+6:u07:1],
+42:u11:(http://trustee.ietf.org/license-info),
+15:u12:publication,
+14:u13:camarillo,,
+11:u14:expires,
+6:u21:pu,
+7:u22:pub,
+8:u23:publ,
+6:uH2:11,
+13:uI0:(://../-),
+6:uI2:,.,
+14:u01:Provisions,
+42:u02:(http://trustee.ietf.org/license-info),
+15:u03:publication,
+14:u04:Camarillo,,
+11:u05:Expires,
+9:u06:[Page,
+12:u01:Relating,
+6:u04:et,
+6:u06:1],
+42:u10:(http://trustee.ietf.org/license-info),
+15:u11:publication,
+14:u12:camarillo,,
+11:u13:expires,
+9:u14:[page,
+6:u21:Ca,
+7:u22:Cam,
+8:u23:Cama,
+6:uH1:11,
+6:uI1:,.,
+14:u00:Provisions,
+42:u01:(http://trustee.ietf.org/license-info),
+15:u02:publication,
+14:u03:Camarillo,,
+11:u04:Expires,
+9:u05:[Page,
+8:u07:BFCP,
+14:u08:carefully,,
+12:u00:Relating,
+6:u03:et,
+6:u05:1],
+8:u08:2018,
+15:u10:publication,
+14:u11:camarillo,,
+11:u12:expires,
+9:u13:[page,
+11:u62:PAGEEND,
+6:uH0:11,
+6:uI0:,.,
+6:uI2:[],
+42:u00:(http://trustee.ietf.org/license-info),
+15:u01:publication,
+14:u02:Camarillo,,
+11:u03:Expires,
+9:u04:[Page,
+8:u06:BFCP,
+6:u08:to,
+6:u02:et,
+6:u04:1],
+8:u07:2018,
+6:u08:as,
+14:u10:camarillo,,
+11:u11:expires,
+9:u12:[page,
+8:u14:bfcp,
+5:u20:[,
+6:u21:[P,
+7:u22:[Pa,
+8:u23:[Pag,
+11:u61:PAGEEND,
+13:u62:PAGESTART,
+6:uI1:[],
+15:u00:publication,
+14:u01:Camarillo,,
+11:u02:Expires,
+9:u03:[Page,
+8:u05:BFCP,
+14:u07:carefully,,
+11:u08:include,
+6:u01:et,
+6:u03:1],
+8:u06:2018,
+6:u07:as,
+8:u08:this,
+11:u10:expires,
+9:u11:[page,
+8:u13:bfcp,
+11:u60:PAGEEND,
+6:uI0:[],
+14:u00:Camarillo,,
+11:u01:Expires,
+9:u02:[Page,
+8:u04:BFCP,
+14:u06:carefully,,
+6:u07:to,
+7:u08:the,
+6:u00:et,
+6:u02:1],
+8:u05:2018,
+6:u06:as,
+8:u07:this,
+14:u08:Simplified,
+9:u10:[page,
+8:u12:bfcp,
+14:u14:carefully,,
+11:u00:Expires,
+9:u01:[Page,
+8:u03:BFCP,
+14:u05:carefully,,
+6:u06:to,
+11:u07:include,
+13:u08:described,
+6:u01:1],
+8:u04:2018,
+6:u05:as,
+8:u06:this,
+14:u07:Simplified,
+9:u08:Trust,
+8:u11:bfcp,
+14:u13:carefully,,
+6:u14:to,
+9:u00:[Page,
+8:u02:BFCP,
+14:u04:carefully,,
+6:u05:to,
+11:u06:include,
+7:u07:the,
+9:u08:Table,
+6:u00:1],
+8:u03:2018,
+6:u04:as,
+8:u05:this,
+14:u06:Simplified,
+9:u07:Trust,
+8:u10:bfcp,
+14:u12:carefully,,
+6:u13:to,
+11:u14:include,
+5:u20:c,
+6:u21:ca,
+7:u22:car,
+8:u23:care,
+8:u01:BFCP,
+14:u03:carefully,,
+6:u04:to,
+11:u05:include,
+7:u06:the,
+13:u07:described,
+6:u08:1.,
+8:u02:2018,
+6:u03:as,
+8:u04:this,
+14:u05:Simplified,
+9:u06:Trust,
+14:u11:carefully,,
+6:u12:to,
+11:u13:include,
+7:u14:the,
+6:u21:to,
+6:u22:to,
+6:u23:to,
+8:u00:BFCP,
+14:u02:carefully,,
+6:u03:to,
+11:u04:include,
+7:u05:the,
+13:u06:described,
+9:u07:Table,
+5:u08:3,
+8:u01:2018,
+6:u02:as,
+8:u03:this,
+14:u04:Simplified,
+9:u05:Trust,
+16:u08:Introduction,
+14:u10:carefully,,
+6:u11:to,
+11:u12:include,
+7:u13:the,
+13:u14:described,
+5:u20:i,
+6:u21:in,
+7:u22:inc,
+8:u23:incl,
+14:u01:carefully,,
+6:u02:to,
+11:u03:include,
+7:u04:the,
+13:u05:described,
+9:u06:Table,
+6:u07:1.,
+6:u08:2.,
+8:u00:2018,
+6:u01:as,
+8:u02:this,
+14:u03:Simplified,
+9:u04:Trust,
+16:u07:Introduction,
+6:u10:to,
+11:u11:include,
+7:u12:the,
+13:u13:described,
+9:u14:table,
+6:u21:th,
+7:u22:the,
+7:u23:the,
+14:u00:carefully,,
+6:u01:to,
+11:u02:include,
+7:u03:the,
+13:u04:described,
+9:u05:Table,
+6:u06:1.,
+5:u07:3,
+6:u00:as,
+8:u01:this,
+14:u02:Simplified,
+9:u03:Trust,
+16:u06:Introduction,
+15:u08:Conventions,
+11:u10:include,
+7:u11:the,
+13:u12:described,
+9:u13:table,
+6:u14:1.,
+6:u21:de,
+7:u22:des,
+8:u23:desc,
+6:u00:to,
+11:u01:include,
+7:u02:the,
+13:u03:described,
+9:u04:Table,
+6:u05:1.,
+5:u06:3,
+6:u07:2.,
+6:u08:3.,
+8:u00:this,
+14:u01:Simplified,
+9:u02:Trust,
+16:u05:Introduction,
+15:u07:Conventions,
+7:u10:the,
+13:u11:described,
+9:u12:table,
+6:u13:1.,
+5:u14:3,
+7:u22:Tab,
+8:u23:Tabl,
+29:uI2:.........................,
+6:uI2:25,
+11:u00:include,
+7:u01:the,
+13:u02:described,
+9:u03:Table,
+6:u04:1.,
+5:u05:3,
+6:u06:2.,
+5:u08:4,
+14:u00:Simplified,
+9:u01:Trust,
+16:u04:Introduction,
+15:u06:Conventions,
+9:u08:Floor,
+13:u10:described,
+9:u11:table,
+6:u12:1.,
+5:u13:3,
+6:u14:2.,
+5:u20:1,
+6:u21:1.,
+6:u22:1.,
+6:u23:1.,
+12:uC2:ALLDIGIT,
+5:uD2:1,
+29:uI1:.........................,
+6:uI1:25,
+7:u00:the,
+13:u01:described,
+9:u02:Table,
+6:u03:1.,
+5:u04:3,
+6:u05:2.,
+6:u07:3.,
+6:u08:4.,
+9:u00:Trust,
+16:u03:Introduction,
+15:u05:Conventions,
+9:u07:Floor,
+9:u10:table,
+6:u11:1.,
+5:u12:3,
+6:u13:2.,
+5:u20:3,
+5:u21:3,
+5:u22:3,
+5:u23:3,
+12:uC0:ALLDIGIT,
+5:uD0:1,
+29:uI0:.........................,
+30:uI2:..........................,
+6:uI0:25,
+6:uI2:26,
+13:u00:described,
+9:u01:Table,
+6:u02:1.,
+5:u03:3,
+6:u04:2.,
+6:u06:3.,
+5:u07:4,
+16:u02:Introduction,
+15:u04:Conventions,
+9:u06:Floor,
+10:u08:Fields,
+6:u10:1.,
+5:u11:3,
+6:u12:2.,
+6:u14:3.,
+5:u20:2,
+6:u21:2.,
+6:u22:2.,
+6:u23:2.,
+12:uC1:ALLDIGIT,
+5:uD1:1,
+30:uI1:..........................,
+6:uI1:26,
+9:u00:Table,
+6:u01:1.,
+5:u02:3,
+6:u03:2.,
+6:u05:3.,
+5:u06:4,
+6:u07:4.,
+6:u08:5.,
+16:u01:Introduction,
+15:u03:Conventions,
+9:u05:Floor,
+10:u07:Fields,
+5:u10:3,
+6:u11:2.,
+6:u13:3.,
+5:u14:4,
+30:uI0:..........................,
+26:uI2:......................,
+6:uI0:26,
+6:uI2:22,
+6:u00:1.,
+5:u01:3,
+6:u02:2.,
+6:u04:3.,
+5:u05:4,
+6:u06:4.,
+5:u08:5,
+16:u00:Introduction,
+15:u02:Conventions,
+9:u04:Floor,
+10:u06:Fields,
+7:u08:SDP,
+6:u10:2.,
+6:u12:3.,
+5:u13:4,
+6:u14:4.,
+6:u21:3.,
+6:u22:3.,
+6:u23:3.,
+26:uI1:......................,
+6:uI1:22,
+5:u00:3,
+6:u01:2.,
+6:u03:3.,
+5:u04:4,
+6:u05:4.,
+6:u07:5.,
+8:u08:5.1.,
+15:u01:Conventions,
+9:u03:Floor,
+10:u05:Fields,
+7:u07:SDP,
+6:u11:3.,
+5:u12:4,
+6:u13:4.,
+5:u20:4,
+5:u21:4,
+5:u22:4,
+5:u23:4,
+26:uI0:......................,
+26:uI2:.''...................,
+6:uI0:22,
+6:u00:2.,
+6:u02:3.,
+5:u03:4,
+6:u04:4.,
+6:u06:5.,
+5:u07:5,
+15:u00:Conventions,
+9:u02:Floor,
+10:u04:Fields,
+7:u06:SDP,
+6:u10:3.,
+5:u11:4,
+6:u12:4.,
+6:u14:5.,
+6:u21:4.,
+6:u22:4.,
+6:u23:4.,
+26:uI1:.''...................,
+6:u01:3.,
+5:u02:4,
+6:u03:4.,
+6:u05:5.,
+5:u06:5,
+8:u07:5.1.,
+8:u08:5.2.,
+9:u01:Floor,
+10:u03:Fields,
+7:u05:SDP,
+5:u10:4,
+6:u11:4.,
+6:u13:5.,
+5:u14:5,
+26:uI0:.''...................,
+28:uI2:........................,
+6:uI2:24,
+6:u00:3.,
+5:u01:4,
+6:u02:4.,
+6:u04:5.,
+5:u05:5,
+8:u06:5.1.,
+5:u08:7,
+9:u00:Floor,
+10:u02:Fields,
+7:u04:SDP,
+6:u10:4.,
+6:u12:5.,
+5:u13:5,
+8:u14:5.1.,
+5:u20:5,
+6:u21:5.,
+6:u22:5.,
+6:u23:5.,
+28:uI1:........................,
+6:uI1:24,
+5:u00:4,
+6:u01:4.,
+6:u03:5.,
+5:u04:5,
+8:u05:5.1.,
+8:u07:5.2.,
+8:u08:5.3.,
+10:u01:Fields,
+7:u03:SDP,
+6:u11:5.,
+5:u12:5,
+8:u13:5.1.,
+5:u21:5,
+5:u22:5,
+5:u23:5,
+28:uI0:........................,
+24:uI2:..''................,
+6:uI0:24,
+6:uI2:20,
+6:u00:4.,
+6:u02:5.,
+5:u03:5,
+8:u04:5.1.,
+8:u06:5.2.,
+5:u07:7,
+5:u08:8,
+10:u00:Fields,
+7:u02:SDP,
+6:u10:5.,
+5:u11:5,
+8:u12:5.1.,
+8:u14:5.2.,
+7:u22:5.1,
+8:u23:5.1.,
+24:uI1:..''................,
+6:uI1:20,
+6:u01:5.,
+5:u02:5,
+8:u03:5.1.,
+8:u05:5.2.,
+5:u06:7,
+8:u07:5.3.,
+8:u08:5.4.,
+7:u01:SDP,
+5:u10:5,
+8:u11:5.1.,
+8:u13:5.2.,
+5:u14:7,
+24:uI0:..''................,
+25:uI2:..''.................,
+6:uI0:20,
+6:uI2:21,
+6:u00:5.,
+5:u01:5,
+8:u02:5.1.,
+8:u04:5.2.,
+5:u05:7,
+8:u06:5.3.,
+5:u07:8,
+5:u08:9,
+7:u00:SDP,
+8:u10:5.1.,
+8:u12:5.2.,
+5:u13:7,
+8:u14:5.3.,
+7:u22:5.2,
+8:u23:5.2.,
+25:uI1:..''.................,
+6:uI1:21,
+5:u00:5,
+8:u01:5.1.,
+8:u03:5.2.,
+5:u04:7,
+8:u05:5.3.,
+5:u06:8,
+8:u07:5.4.,
+8:u08:5.5.,
+8:u11:5.2.,
+5:u12:7,
+8:u13:5.3.,
+5:u14:8,
+5:u20:7,
+5:u21:7,
+5:u22:7,
+5:u23:7,
+25:uI0:..''.................,
+6:uI0:21,
+8:u00:5.1.,
+8:u02:5.2.,
+5:u03:7,
+8:u04:5.3.,
+5:u05:8,
+8:u06:5.4.,
+5:u07:9,
+6:u08:6.,
+8:u10:5.2.,
+5:u11:7,
+8:u12:5.3.,
+5:u13:8,
+8:u14:5.4.,
+7:u22:5.3,
+8:u23:5.3.,
+8:u01:5.2.,
+5:u02:7,
+8:u03:5.3.,
+5:u04:8,
+8:u05:5.4.,
+5:u06:9,
+8:u07:5.5.,
+6:u08:7.,
+16:u08:Multiplexing,
+5:u10:7,
+8:u11:5.3.,
+5:u12:8,
+8:u13:5.4.,
+5:u14:9,
+5:u20:8,
+5:u21:8,
+5:u22:8,
+5:u23:8,
+8:u00:5.2.,
+5:u01:7,
+8:u02:5.3.,
+5:u03:8,
+8:u04:5.4.,
+5:u05:9,
+8:u06:5.5.,
+6:u07:6.,
+8:u08:7.1.,
+16:u07:Multiplexing,
+8:u10:5.3.,
+5:u11:8,
+8:u12:5.4.,
+5:u13:9,
+8:u14:5.5.,
+7:u22:5.4,
+8:u23:5.4.,
+5:u00:7,
+8:u01:5.3.,
+5:u02:8,
+8:u03:5.4.,
+5:u04:9,
+8:u05:5.5.,
+6:u06:6.,
+6:u07:7.,
+6:u08:8.,
+16:u06:Multiplexing,
+7:u08:TCP,
+5:u10:8,
+8:u11:5.4.,
+5:u12:9,
+8:u13:5.5.,
+6:u14:6.,
+5:u20:9,
+5:u21:9,
+5:u22:9,
+5:u23:9,
+8:u00:5.3.,
+5:u01:8,
+8:u02:5.4.,
+5:u03:9,
+8:u04:5.5.,
+6:u05:6.,
+6:u06:7.,
+8:u07:7.1.,
+6:u08:9.,
+16:u05:Multiplexing,
+7:u07:TCP,
+12:u08:TLS/DTLS,
+8:u10:5.4.,
+5:u11:9,
+8:u12:5.5.,
+6:u13:6.,
+6:u14:7.,
+7:u22:5.5,
+8:u23:5.5.,
+22:uI2:..................,
+6:uI2:18,
+5:u00:8,
+8:u01:5.4.,
+5:u02:9,
+8:u03:5.5.,
+6:u04:6.,
+6:u05:7.,
+8:u06:7.1.,
+6:u07:8.,
+7:u08:10.,
+16:u04:Multiplexing,
+7:u06:TCP,
+12:u07:TLS/DTLS,
+7:u08:ICE,
+5:u10:9,
+8:u11:5.5.,
+6:u12:6.,
+6:u13:7.,
+8:u14:7.1.,
+5:u20:6,
+6:u21:6.,
+6:u22:6.,
+6:u23:6.,
+22:uI1:..................,
+6:uI1:18,
+8:u00:5.4.,
+5:u01:9,
+8:u02:5.5.,
+6:u03:6.,
+6:u04:7.,
+8:u05:7.1.,
+6:u06:8.,
+6:u07:9.,
+9:u08:10.1.,
+16:u03:Multiplexing,
+7:u05:TCP,
+12:u06:TLS/DTLS,
+7:u07:ICE,
+8:u10:5.5.,
+6:u11:6.,
+6:u12:7.,
+8:u13:7.1.,
+6:u14:8.,
+6:u21:7.,
+6:u22:7.,
+6:u23:7.,
+22:uI0:..................,
+6:uI0:18,
+5:u00:9,
+8:u01:5.5.,
+6:u02:6.,
+6:u03:7.,
+8:u04:7.1.,
+6:u05:8.,
+6:u06:9.,
+7:u07:10.,
+9:u08:10.2.,
+16:u02:Multiplexing,
+7:u04:TCP,
+12:u05:TLS/DTLS,
+7:u06:ICE,
+14:u08:Generating,
+6:u10:6.,
+6:u11:7.,
+8:u12:7.1.,
+6:u13:8.,
+6:u14:9.,
+7:u22:7.1,
+8:u23:7.1.,
+25:uI2:./...................,
+8:u00:5.5.,
+6:u01:6.,
+6:u02:7.,
+8:u03:7.1.,
+6:u04:8.,
+6:u05:9.,
+7:u06:10.,
+9:u07:10.1.,
+9:u08:10.3.,
+16:u01:Multiplexing,
+7:u03:TCP,
+12:u04:TLS/DTLS,
+7:u05:ICE,
+14:u07:Generating,
+6:u10:7.,
+8:u11:7.1.,
+6:u12:8.,
+6:u13:9.,
+7:u14:10.,
+6:u21:8.,
+6:u22:8.,
+6:u23:8.,
+25:uI1:./...................,
+6:u00:6.,
+6:u01:7.,
+8:u02:7.1.,
+6:u03:8.,
+6:u04:9.,
+7:u05:10.,
+9:u06:10.1.,
+9:u07:10.2.,
+9:u08:10.4.,
+16:u00:Multiplexing,
+7:u02:TCP,
+12:u03:TLS/DTLS,
+7:u04:ICE,
+14:u06:Generating,
+11:u08:Offerer,
+8:u10:7.1.,
+6:u11:8.,
+6:u12:9.,
+7:u13:10.,
+9:u14:10.1.,
+6:u21:9.,
+6:u22:9.,
+6:u23:9.,
+25:uI0:./...................,
+23:uI2:./.................,
+6:uI2:19,
+6:u00:7.,
+8:u01:7.1.,
+6:u02:8.,
+6:u03:9.,
+7:u04:10.,
+9:u05:10.1.,
+9:u06:10.2.,
+9:u07:10.3.,
+7:u08:11.,
+7:u01:TCP,
+12:u02:TLS/DTLS,
+7:u03:ICE,
+14:u05:Generating,
+11:u07:Offerer,
+13:u08:Modifying,
+6:u10:8.,
+6:u11:9.,
+7:u12:10.,
+9:u13:10.1.,
+9:u14:10.2.,
+6:u21:10,
+7:u22:10.,
+7:u23:10.,
+23:uI1:./.................,
+18:uI2:..............,
+6:uI1:19,
+6:uI2:14,
+8:u00:7.1.,
+6:u01:8.,
+6:u02:9.,
+7:u03:10.,
+9:u04:10.1.,
+9:u05:10.2.,
+9:u06:10.3.,
+9:u07:10.4.,
+7:u08:12.,
+7:u00:TCP,
+12:u01:TLS/DTLS,
+7:u02:ICE,
+14:u04:Generating,
+11:u06:Offerer,
+13:u07:Modifying,
+12:u08:Examples,
+6:u10:9.,
+7:u11:10.,
+9:u12:10.1.,
+9:u13:10.2.,
+9:u14:10.3.,
+8:u23:10.1,
+23:uI0:./.................,
+18:uI1:..............,
+21:uI2:.................,
+6:uI0:19,
+6:uI1:14,
+6:uI2:17,
+6:u00:8.,
+6:u01:9.,
+7:u02:10.,
+9:u03:10.1.,
+9:u04:10.2.,
+9:u05:10.3.,
+9:u06:10.4.,
+7:u07:11.,
+7:u08:13.,
+12:u00:TLS/DTLS,
+7:u01:ICE,
+14:u03:Generating,
+11:u05:Offerer,
+13:u06:Modifying,
+12:u07:Examples,
+12:u08:Security,
+7:u10:10.,
+9:u11:10.1.,
+9:u12:10.2.,
+9:u13:10.3.,
+9:u14:10.4.,
+8:u23:10.2,
+18:uI0:..............,
+21:uI1:.................,
+16:uI2:............,
+6:uI0:14,
+6:uI1:17,
+6:uI2:12,
+6:u00:9.,
+7:u01:10.,
+9:u02:10.1.,
+9:u03:10.2.,
+9:u04:10.3.,
+9:u05:10.4.,
+7:u06:11.,
+7:u07:12.,
+9:u08:13.1.,
+7:u00:ICE,
+14:u02:Generating,
+11:u04:Offerer,
+13:u05:Modifying,
+12:u06:Examples,
+12:u07:Security,
+8:u08:IANA,
+9:u10:10.1.,
+9:u11:10.2.,
+9:u12:10.3.,
+9:u13:10.4.,
+7:u14:11.,
+8:u23:10.3,
+21:uI0:.................,
+16:uI1:............,
+23:uI2:...................,
+6:uI0:17,
+6:uI1:12,
+7:u00:10.,
+9:u01:10.1.,
+9:u02:10.2.,
+9:u03:10.3.,
+9:u04:10.4.,
+7:u05:11.,
+7:u06:12.,
+7:u07:13.,
+9:u08:13.2.,
+14:u01:Generating,
+11:u03:Offerer,
+13:u04:Modifying,
+12:u05:Examples,
+12:u06:Security,
+8:u07:IANA,
+16:u08:Registration,
+9:u10:10.2.,
+9:u11:10.3.,
+9:u12:10.4.,
+7:u13:11.,
+7:u14:12.,
+8:u23:10.4,
+16:uI0:............,
+23:uI1:...................,
+31:uI2:...........................,
+6:uI0:12,
+6:uI2:27,
+9:u00:10.1.,
+9:u01:10.2.,
+9:u02:10.3.,
+9:u03:10.4.,
+7:u04:11.,
+7:u05:12.,
+7:u06:13.,
+9:u07:13.1.,
+9:u08:13.3.,
+14:u00:Generating,
+11:u02:Offerer,
+13:u03:Modifying,
+12:u04:Examples,
+12:u05:Security,
+8:u06:IANA,
+16:u07:Registration,
+9:u10:10.3.,
+9:u11:10.4.,
+7:u12:11.,
+7:u13:12.,
+7:u14:13.,
+6:u21:11,
+7:u22:11.,
+7:u23:11.,
+23:uI0:...................,
+31:uI1:...........................,
+24:uI2:....................,
+6:uI1:27,
+9:u00:10.2.,
+9:u01:10.3.,
+9:u02:10.4.,
+7:u03:11.,
+7:u04:12.,
+7:u05:13.,
+9:u06:13.1.,
+9:u07:13.2.,
+9:u08:13.4.,
+11:u01:Offerer,
+13:u02:Modifying,
+12:u03:Examples,
+12:u04:Security,
+8:u05:IANA,
+16:u06:Registration,
+9:u10:10.4.,
+7:u11:11.,
+7:u12:12.,
+7:u13:13.,
+9:u14:13.1.,
+6:u21:12,
+7:u22:12.,
+7:u23:12.,
+31:uI0:...........................,
+24:uI1:....................,
+6:uI0:27,
+9:u00:10.3.,
+9:u01:10.4.,
+7:u02:11.,
+7:u03:12.,
+7:u04:13.,
+9:u05:13.1.,
+9:u06:13.2.,
+9:u07:13.3.,
+9:u08:13.5.,
+11:u00:Offerer,
+13:u01:Modifying,
+12:u02:Examples,
+12:u03:Security,
+8:u04:IANA,
+16:u05:Registration,
+7:u10:11.,
+7:u11:12.,
+7:u12:13.,
+9:u13:13.1.,
+9:u14:13.2.,
+6:u21:13,
+7:u22:13.,
+7:u23:13.,
+24:uI0:....................,
+19:uI2:..''...........,
+6:uI2:15,
+9:u00:10.4.,
+7:u01:11.,
+7:u02:12.,
+7:u03:13.,
+9:u04:13.1.,
+9:u05:13.2.,
+9:u06:13.3.,
+9:u07:13.4.,
+9:u08:13.6.,
+13:u00:Modifying,
+12:u01:Examples,
+12:u02:Security,
+8:u03:IANA,
+16:u04:Registration,
+7:u10:12.,
+7:u11:13.,
+9:u12:13.1.,
+9:u13:13.2.,
+9:u14:13.3.,
+8:u23:13.1,
+19:uI1:..''...........,
+13:uI2:..''.....,
+6:uI1:15,
+7:u00:11.,
+7:u01:12.,
+7:u02:13.,
+9:u03:13.1.,
+9:u04:13.2.,
+9:u05:13.3.,
+9:u06:13.4.,
+9:u07:13.5.,
+7:u08:14.,
+12:u00:Examples,
+12:u01:Security,
+8:u02:IANA,
+16:u03:Registration,
+7:u10:13.,
+9:u11:13.1.,
+9:u12:13.2.,
+9:u13:13.3.,
+9:u14:13.4.,
+8:u23:13.2,
+19:uI0:..''...........,
+13:uI1:..''.....,
+15:uI2:..''.......,
+6:uI0:15,
+6:uI2:11,
+7:u00:12.,
+7:u01:13.,
+9:u02:13.1.,
+9:u03:13.2.,
+9:u04:13.3.,
+9:u05:13.4.,
+9:u06:13.5.,
+9:u07:13.6.,
+7:u08:15.,
+12:u00:Security,
+8:u01:IANA,
+16:u02:Registration,
+11:u08:Changes,
+9:u10:13.1.,
+9:u11:13.2.,
+9:u12:13.3.,
+9:u13:13.4.,
+9:u14:13.5.,
+8:u23:13.3,
+13:uI0:..''.....,
+15:uI1:..''.......,
+6:uI1:11,
+7:u00:13.,
+9:u01:13.1.,
+9:u02:13.2.,
+9:u03:13.3.,
+9:u04:13.4.,
+9:u05:13.5.,
+9:u06:13.6.,
+7:u07:14.,
+7:u08:16.,
+8:u00:IANA,
+16:u01:Registration,
+11:u07:Changes,
+20:u08:Acknowledgements,
+9:u10:13.2.,
+9:u11:13.3.,
+9:u12:13.4.,
+9:u13:13.5.,
+9:u14:13.6.,
+8:u23:13.4,
+15:uI0:..''.......,
+14:uI2:..''......,
+6:uI0:11,
+9:u00:13.1.,
+9:u01:13.2.,
+9:u02:13.3.,
+9:u03:13.4.,
+9:u04:13.5.,
+9:u05:13.6.,
+7:u06:14.,
+7:u07:15.,
+9:u08:16.1.,
+16:u00:Registration,
+11:u06:Changes,
+20:u07:Acknowledgements,
+14:u08:References,
+9:u10:13.3.,
+9:u11:13.4.,
+9:u12:13.5.,
+9:u13:13.6.,
+7:u14:14.,
+8:u23:13.5,
+14:uI1:..''......,
+9:u00:13.2.,
+9:u01:13.3.,
+9:u02:13.4.,
+9:u03:13.5.,
+9:u04:13.6.,
+7:u05:14.,
+7:u06:15.,
+7:u07:16.,
+9:u08:16.2.,
+11:u05:Changes,
+20:u06:Acknowledgements,
+14:u07:References,
+13:u08:Normative,
+9:u10:13.4.,
+9:u11:13.5.,
+9:u12:13.6.,
+7:u13:14.,
+7:u14:15.,
+8:u23:13.6,
+14:uI0:..''......,
+25:uI2:.....................,
+9:u00:13.3.,
+9:u01:13.4.,
+9:u02:13.5.,
+9:u03:13.6.,
+7:u04:14.,
+7:u05:15.,
+7:u06:16.,
+9:u07:16.1.,
+12:u08:Authors',
+11:u04:Changes,
+20:u05:Acknowledgements,
+14:u06:References,
+13:u07:Normative,
+17:u08:Informational,
+9:u10:13.5.,
+9:u11:13.6.,
+7:u12:14.,
+7:u13:15.,
+7:u14:16.,
+6:u21:14,
+7:u22:14.,
+7:u23:14.,
+25:uI1:.....................,
+27:uI2:.......................,
+6:uI2:23,
+9:u00:13.4.,
+9:u01:13.5.,
+9:u02:13.6.,
+7:u03:14.,
+7:u04:15.,
+7:u05:16.,
+9:u06:16.1.,
+9:u07:16.2.,
+11:u03:Changes,
+20:u04:Acknowledgements,
+14:u05:References,
+13:u06:Normative,
+17:u07:Informational,
+13:u08:Addresses,
+9:u10:13.6.,
+7:u11:14.,
+7:u12:15.,
+7:u13:16.,
+9:u14:16.1.,
+6:u21:15,
+7:u22:15.,
+7:u23:15.,
+25:uI0:.....................,
+27:uI1:.......................,
+6:uI1:23,
+9:u00:13.5.,
+9:u01:13.6.,
+7:u02:14.,
+7:u03:15.,
+7:u04:16.,
+9:u05:16.1.,
+9:u06:16.2.,
+12:u07:Authors',
+11:u02:Changes,
+20:u03:Acknowledgements,
+14:u04:References,
+13:u05:Normative,
+17:u06:Informational,
+13:u07:Addresses,
+7:u10:14.,
+7:u11:15.,
+7:u12:16.,
+9:u13:16.1.,
+9:u14:16.2.,
+6:u21:16,
+7:u22:16.,
+7:u23:16.,
+27:uI0:.......................,
+6:uI0:23,
+9:u00:13.6.,
+7:u01:14.,
+7:u02:15.,
+7:u03:16.,
+9:u04:16.1.,
+9:u05:16.2.,
+12:u06:Authors',
+11:u01:Changes,
+20:u02:Acknowledgements,
+14:u03:References,
+13:u04:Normative,
+17:u05:Informational,
+13:u06:Addresses,
+7:u10:15.,
+7:u11:16.,
+9:u12:16.1.,
+9:u13:16.2.,
+12:u14:authors',
+8:u23:16.1,
+7:u00:14.,
+7:u01:15.,
+7:u02:16.,
+9:u03:16.1.,
+9:u04:16.2.,
+12:u05:Authors',
+11:u00:Changes,
+20:u01:Acknowledgements,
+14:u02:References,
+13:u03:Normative,
+17:u04:Informational,
+13:u05:Addresses,
+6:u08:2],
+7:u10:16.,
+9:u11:16.1.,
+9:u12:16.2.,
+12:u13:authors',
+8:u23:16.2,
+28:uI2:'.......................,
+7:u00:15.,
+7:u01:16.,
+9:u02:16.1.,
+9:u03:16.2.,
+12:u04:Authors',
+20:u00:Acknowledgements,
+14:u01:References,
+13:u02:Normative,
+17:u03:Informational,
+13:u04:Addresses,
+6:u07:2],
+9:u10:16.1.,
+9:u11:16.2.,
+12:u12:authors',
+6:u21:Au,
+7:u22:Aut,
+8:u23:Auth,
+5:uG2:1,
+28:uI1:'.......................,
+5:uJ3:0,
+7:u00:16.,
+9:u01:16.1.,
+9:u02:16.2.,
+12:u03:Authors',
+14:u00:References,
+13:u01:Normative,
+17:u02:Informational,
+13:u03:Addresses,
+6:u06:2],
+9:u10:16.2.,
+12:u11:authors',
+5:uG1:1,
+28:uI0:'.......................,
+5:uJ2:0,
+9:u00:16.1.,
+9:u01:16.2.,
+12:u02:Authors',
+13:u00:Normative,
+17:u01:Informational,
+13:u02:Addresses,
+6:u05:2],
+12:u10:authors',
+5:uG0:1,
+5:uJ1:0,
+9:u00:16.2.,
+12:u01:Authors',
+6:u08:As,
+17:u00:Informational,
+13:u01:Addresses,
+6:u04:2],
+12:u00:Authors',
+17:u08:specification,
+13:u00:Addresses,
+6:u03:2],
+13:u08:discussed,
+6:u07:As,
+9:u08:needs,
+6:u02:2],
+13:u07:discussed,
+34:u08:[I-D.ietf-bfcpbis-rfc4582bis],,
+6:u06:As,
+17:u07:specification,
+9:u08:floor,
+6:u01:2],
+13:u06:discussed,
+34:u07:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u08:a,
+6:u14:as,
+6:u05:As,
+17:u06:specification,
+9:u07:needs,
+6:u00:2],
+13:u05:discussed,
+34:u06:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u07:a,
+11:u08:control,
+6:u13:as,
+17:u14:specification,
+6:u04:As,
+17:u05:specification,
+9:u06:needs,
+9:u07:floor,
+7:u08:One,
+13:u04:discussed,
+34:u05:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u06:a,
+11:u07:control,
+11:u08:server,,
+6:u12:as,
+17:u13:specification,
+9:u14:needs,
+6:u21:As,
+6:u22:As,
+6:u23:As,
+11:uI2:[-.--],,
+5:uI2:7,
+6:u03:As,
+17:u04:specification,
+9:u05:needs,
+9:u06:floor,
+16:u08:offer/answer,
+13:u03:discussed,
+34:u04:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u05:a,
+11:u06:control,
+11:u07:server,,
+7:u08:way,
+6:u11:as,
+17:u12:specification,
+9:u13:needs,
+9:u14:floor,
+6:u21:sp,
+7:u22:spe,
+8:u23:spec,
+11:uI1:[-.--],,
+5:uI1:7,
+6:u02:As,
+17:u03:specification,
+9:u04:needs,
+9:u05:floor,
+7:u07:One,
+10:u08:encode,
+13:u02:discussed,
+34:u03:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u04:a,
+11:u05:control,
+11:u06:server,,
+7:u07:way,
+13:u08:[RFC3264],
+6:u10:as,
+17:u11:specification,
+9:u12:needs,
+9:u13:floor,
+5:u20:n,
+6:u21:ne,
+7:u22:nee,
+8:u23:need,
+11:uI0:[-.--],,
+5:uI0:7,
+6:u01:As,
+17:u02:specification,
+9:u03:needs,
+9:u04:floor,
+7:u06:One,
+16:u07:offer/answer,
+13:u01:discussed,
+34:u02:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u03:a,
+11:u04:control,
+11:u05:server,,
+7:u06:way,
+13:u07:[RFC3264],
+17:u10:specification,
+9:u11:needs,
+9:u12:floor,
+7:u14:one,
+5:u20:f,
+6:u21:fl,
+7:u22:flo,
+8:u23:floo,
+7:uI2:,,.,
+6:u00:As,
+17:u01:specification,
+9:u02:needs,
+9:u03:floor,
+7:u05:One,
+16:u06:offer/answer,
+10:u07:encode,
+8:u08:User,
+13:u00:discussed,
+34:u01:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u02:a,
+11:u03:control,
+11:u04:server,,
+7:u05:way,
+13:u06:[RFC3264],
+8:u08:such,
+9:u10:needs,
+9:u11:floor,
+7:u13:one,
+16:u14:offer/answer,
+7:uI1:,,.,
+17:u00:specification,
+9:u01:needs,
+9:u02:floor,
+7:u04:One,
+16:u05:offer/answer,
+10:u06:encode,
+10:u08:number,
+34:u00:[I-D.ietf-bfcpbis-rfc4582bis],,
+5:u01:a,
+11:u02:control,
+11:u03:server,,
+7:u04:way,
+13:u05:[RFC3264],
+8:u07:such,
+10:u08:agents,
+9:u10:floor,
+7:u12:one,
+16:u13:offer/answer,
+10:u14:encode,
+6:u21:On,
+7:u22:One,
+7:u23:One,
+7:uI0:,,.,
+8:uI2:/[].,
+9:u00:needs,
+9:u01:floor,
+7:u03:One,
+16:u04:offer/answer,
+10:u05:encode,
+8:u07:User,
+5:u00:a,
+11:u01:control,
+11:u02:server,,
+7:u03:way,
+13:u04:[RFC3264],
+8:u06:such,
+10:u07:agents,
+7:u11:one,
+16:u12:offer/answer,
+10:u13:encode,
+6:u14:of,
+5:u20:o,
+6:u21:of,
+7:u22:off,
+8:u23:offe,
+8:uI1:/[].,
+9:u00:floor,
+7:u02:One,
+16:u03:offer/answer,
+10:u04:encode,
+8:u06:User,
+10:u07:number,
+11:u00:control,
+11:u01:server,,
+7:u02:way,
+13:u03:[RFC3264],
+8:u05:such,
+10:u06:agents,
+14:u08:connection,
+7:u10:one,
+16:u11:offer/answer,
+10:u12:encode,
+6:u13:of,
+8:u14:user,
+5:u20:e,
+6:u21:en,
+7:u22:enc,
+8:u23:enco,
+8:uI0:/[].,
+6:uI2:/.,
+7:u01:One,
+16:u02:offer/answer,
+10:u03:encode,
+8:u05:User,
+10:u06:number,
+9:u08:apply,
+11:u00:server,,
+7:u01:way,
+13:u02:[RFC3264],
+8:u04:such,
+10:u05:agents,
+14:u07:connection,
+7:u08:'m',
+16:u10:offer/answer,
+10:u11:encode,
+6:u12:of,
+8:u13:user,
+10:u14:number,
+6:u22:of,
+6:u23:of,
+6:uI1:/.,
+5:uI2:/,
+7:u00:One,
+16:u01:offer/answer,
+10:u02:encode,
+8:u04:User,
+10:u05:number,
+11:u08:Section,
+7:u00:way,
+13:u01:[RFC3264],
+8:u03:such,
+10:u04:agents,
+14:u06:connection,
+7:u07:'m',
+10:u10:encode,
+6:u11:of,
+8:u12:user,
+10:u13:number,
+5:u20:U,
+6:u21:Us,
+7:u22:Use,
+8:u23:User,
+6:uI0:/.,
+5:uI1:/,
+6:uI2:.,,
+16:u00:offer/answer,
+10:u01:encode,
+8:u03:User,
+10:u04:number,
+9:u07:apply,
+13:u00:[RFC3264],
+8:u02:such,
+10:u03:agents,
+14:u05:connection,
+7:u06:'m',
+6:u10:of,
+8:u11:user,
+10:u12:number,
+7:u14:sdp,
+6:u21:nu,
+7:u22:num,
+8:u23:numb,
+5:uI0:/,
+6:uI1:.,,
+10:u00:encode,
+8:u02:User,
+10:u03:number,
+9:u06:apply,
+11:u07:Section,
+8:u01:such,
+10:u02:agents,
+14:u04:connection,
+7:u05:'m',
+8:u10:user,
+10:u11:number,
+7:u13:sdp,
+9:u14:apply,
+6:uI0:.,,
+7:uI2:'',,
+8:u01:User,
+10:u02:number,
+9:u05:apply,
+11:u06:Section,
+8:u00:such,
+10:u01:agents,
+14:u03:connection,
+7:u04:'m',
+10:u10:number,
+7:u12:sdp,
+9:u13:apply,
+11:u14:section,
+6:u21:SD,
+7:u22:SDP,
+7:u23:SDP,
+7:uI1:'',,
+8:u00:User,
+10:u01:number,
+9:u04:apply,
+11:u05:Section,
+10:u00:agents,
+14:u02:connection,
+7:u03:'m',
+15:u08:connection.,
+7:u11:sdp,
+9:u12:apply,
+11:u13:section,
+6:u21:ap,
+7:u22:app,
+8:u23:appl,
+5:uH2:5,
+7:uI0:'',,
+6:uI2:'',
+10:u00:number,
+9:u03:apply,
+11:u04:Section,
+14:u01:connection,
+7:u02:'m',
+15:u07:connection.,
+5:u08:6,
+7:u10:sdp,
+9:u11:apply,
+11:u12:section,
+7:u22:Sec,
+8:u23:Sect,
+5:uH1:5,
+6:uI1:'',
+9:u02:apply,
+11:u03:Section,
+14:u00:connection,
+7:u01:'m',
+15:u06:connection.,
+5:u07:6,
+9:u10:apply,
+11:u11:section,
+5:uH0:5,
+6:uI0:'',
+9:u01:apply,
+11:u02:Section,
+7:u00:'m',
+15:u05:connection.,
+5:u06:6,
+11:u10:section,
+9:u00:apply,
+11:u01:Section,
+15:u04:connection.,
+5:u05:6,
+11:u00:Section,
+13:u08:[RFC8445],
+15:u03:connection.,
+5:u04:6,
+5:uH2:7,
+15:u02:connection.,
+5:u03:6,
+18:u08:considerations,
+15:u14:connection.,
+5:uH1:7,
+13:u07:[RFC8445],
+15:u01:connection.,
+5:u02:6,
+18:u07:considerations,
+6:u08:10,
+15:u13:connection.,
+5:uH0:7,
+13:u06:[RFC8445],
+15:u00:connection.,
+5:u01:6,
+18:u06:considerations,
+6:u07:10,
+15:u12:connection.,
+13:u14:[rfc8445],
+6:u21:co,
+7:u22:con,
+8:u23:conn,
+13:u05:[RFC8445],
+7:u08:The,
+5:u00:6,
+18:u05:considerations,
+6:u06:10,
+15:u11:connection.,
+13:u13:[rfc8445],
+7:uI2:[].,
+13:u04:[RFC8445],
+13:u08:"SHOULD",,
+18:u04:considerations,
+6:u05:10,
+7:u08:key,
+15:u10:connection.,
+13:u12:[rfc8445],
+6:u21:[R,
+7:u22:[RF,
+8:u23:[RFC,
+7:uI1:[].,
+13:u03:[RFC8445],
+7:u07:The,
+14:u08:"OPTIONAL",
+18:u03:considerations,
+6:u04:10,
+7:u07:key,
+11:u08:"SHOULD,
+13:u11:[rfc8445],
+7:uI0:[].,
+13:u02:[RFC8445],
+7:u06:The,
+13:u07:"SHOULD",,
+6:u08:14,
+18:u02:considerations,
+6:u03:10,
+7:u06:key,
+11:u07:"SHOULD,
+13:u10:[rfc8445],
+13:u01:[RFC8445],
+7:u05:The,
+13:u06:"SHOULD",,
+14:u07:"OPTIONAL",
+13:u08:capitals,,
+18:u01:considerations,
+6:u02:10,
+7:u05:key,
+11:u06:"SHOULD,
+13:u08:[RFC2119],
+13:u14:"should",,
+19:uI2:"","","","","",,
+13:u00:[RFC8445],
+7:u04:The,
+13:u05:"SHOULD",,
+14:u06:"OPTIONAL",
+6:u07:14,
+18:u00:considerations,
+6:u01:10,
+7:u04:key,
+11:u05:"SHOULD,
+13:u07:[RFC2119],
+13:u13:"should",,
+14:u14:"optional",
+7:u22:The,
+7:u23:The,
+19:uI1:"","","","","",,
+7:u03:The,
+13:u04:"SHOULD",,
+14:u05:"OPTIONAL",
+6:u06:14,
+13:u07:capitals,,
+6:u00:10,
+7:u03:key,
+11:u04:"SHOULD,
+13:u06:[RFC2119],
+13:u12:"should",,
+14:u13:"optional",
+6:u14:14,
+5:u20:",
+6:u21:"S,
+7:u22:"SH,
+8:u23:"SHO,
+19:uI0:"","","","","",,
+6:uI2:"",
+7:u02:The,
+13:u03:"SHOULD",,
+14:u04:"OPTIONAL",
+6:u05:14,
+13:u06:capitals,,
+7:u02:key,
+11:u03:"SHOULD,
+13:u05:[RFC2119],
+13:u11:"should",,
+14:u12:"optional",
+6:u13:14,
+13:u14:capitals,,
+6:u21:"O,
+7:u22:"OP,
+8:u23:"OPT,
+6:uI1:"",
+10:uI2:[][],,,
+7:u01:The,
+13:u02:"SHOULD",,
+14:u03:"OPTIONAL",
+6:u04:14,
+13:u05:capitals,,
+7:u01:key,
+11:u02:"SHOULD,
+13:u04:[RFC2119],
+6:u08:3],
+13:u10:"should",,
+14:u11:"optional",
+6:u12:14,
+13:u13:capitals,,
+6:u22:14,
+6:u23:14,
+6:uI0:"",
+10:uI1:[][],,,
+7:u00:The,
+13:u01:"SHOULD",,
+14:u02:"OPTIONAL",
+6:u03:14,
+13:u04:capitals,,
+7:u00:key,
+11:u01:"SHOULD,
+13:u03:[RFC2119],
+6:u07:3],
+14:u10:"optional",
+6:u11:14,
+13:u12:capitals,,
+7:u22:cap,
+8:u23:capi,
+5:uG2:2,
+10:uI0:[][],,,
+13:u00:"SHOULD",,
+14:u01:"OPTIONAL",
+6:u02:14,
+13:u03:capitals,,
+11:u00:"SHOULD,
+13:u02:[RFC2119],
+6:u06:3],
+6:u10:14,
+13:u11:capitals,,
+5:uG1:2,
+14:u00:"OPTIONAL",
+6:u01:14,
+13:u02:capitals,,
+13:u01:[RFC2119],
+6:u05:3],
+13:u10:capitals,,
+5:uG0:2,
+6:u00:14,
+13:u01:capitals,,
+8:u08:When,
+13:u00:[RFC2119],
+6:u04:3],
+13:u00:capitals,,
+9:u08:which,
+6:u03:3],
+7:u08:two,
+8:u07:When,
+6:u02:3],
+7:u07:two,
+8:u06:When,
+9:u07:which,
+8:u08:Once,
+6:u01:3],
+7:u06:two,
+8:u14:when,
+8:u05:When,
+9:u06:which,
+19:u08:BFCP-controlled,
+6:u00:3],
+7:u05:two,
+8:u13:when,
+9:u14:which,
+8:u04:When,
+9:u05:which,
+8:u07:Once,
+7:u04:two,
+11:u08:streams,
+8:u12:when,
+9:u13:which,
+5:u20:W,
+6:u21:Wh,
+7:u22:Whe,
+8:u23:When,
+8:u03:When,
+9:u04:which,
+8:u06:Once,
+19:u07:BFCP-controlled,
+13:u08:According,
+7:u03:two,
+11:u07:streams,
+8:u11:when,
+9:u12:which,
+8:u14:once,
+6:u21:wh,
+7:u22:whi,
+8:u23:whic,
+8:u02:When,
+9:u03:which,
+8:u05:Once,
+19:u06:BFCP-controlled,
+7:u02:two,
+11:u06:streams,
+8:u10:when,
+9:u11:which,
+8:u13:once,
+19:u14:bfcp-controlled,
+8:u01:When,
+9:u02:which,
+8:u04:Once,
+19:u05:BFCP-controlled,
+13:u07:According,
+13:u08:m=,
+7:u01:two,
+11:u05:streams,
+14:u08:following:,
+9:u10:which,
+8:u12:once,
+19:u13:bfcp-controlled,
+7:u22:Onc,
+8:u23:Once,
+6:uI2:-.,
+8:u00:When,
+9:u01:which,
+8:u03:Once,
+19:u04:BFCP-controlled,
+13:u06:According,
+7:u00:two,
+11:u04:streams,
+14:u07:following:,
+10:u08:,
+8:u11:once,
+19:u12:bfcp-controlled,
+13:u14:according,
+6:uI1:-.,
+7:uI2:.'',
+9:u00:which,
+8:u02:Once,
+19:u03:BFCP-controlled,
+13:u05:According,
+13:u07:m=,
+11:u03:streams,
+14:u06:following:,
+10:u07:,
+11:u08:section,
+8:u10:once,
+19:u11:bfcp-controlled,
+13:u13:according,
+6:uI0:-.,
+7:uI1:.'',
+9:uI2:[],'',
+8:u01:Once,
+19:u02:BFCP-controlled,
+13:u04:According,
+13:u06:m=,
+11:u02:streams,
+14:u05:following:,
+10:u06:,
+11:u07:section,
+8:u08:('m',
+19:u10:bfcp-controlled,
+13:u12:according,
+13:u14:m=,
+6:u21:Ac,
+7:u22:Acc,
+8:u23:Acco,
+7:uI0:.'',
+9:uI1:[],'',
+8:u00:Once,
+19:u01:BFCP-controlled,
+13:u03:According,
+13:u05:m=,
+11:u01:streams,
+14:u04:following:,
+10:u05:,
+11:u06:section,
+8:u07:('m',
+9:u08:media,
+13:u11:according,
+13:u13:m=,
+9:uI0:[],'',
+7:uI2:...,
+19:u00:BFCP-controlled,
+13:u02:According,
+13:u04:m=,
+13:u08:explained,
+11:u00:streams,
+14:u03:following:,
+10:u04:,
+11:u05:section,
+8:u06:('m',
+9:u07:media,
+8:u08:port,
+13:u10:according,
+13:u12:m=,
+15:u14:description,
+6:u21:m=,
+7:u22:m=<,
+8:u23:m=,
+11:u08:meaning,
+14:u02:following:,
+10:u03:,
+11:u04:section,
+8:u05:('m',
+9:u06:media,
+8:u07:port,
+10:u08:below.,
+13:u11:m=,
+15:u13:description,
+7:uI0:...,
+9:uI2:('').,
+13:u00:According,
+13:u02:m=,
+13:u07:explained,
+10:u08:field.,
+14:u01:following:,
+10:u02:,
+11:u03:section,
+8:u04:('m',
+9:u05:media,
+8:u06:port,
+10:u07:below.,
+10:u08:(i.e.,,
+13:u10:m=,
+15:u12:description,
+7:u22:Des,
+8:u23:Desc,
+9:uI1:('').,
+7:uI2:"".,
+13:u01:m=,
+13:u06:explained,
+11:u07:meaning,
+14:u00:following:,
+10:u01:,
+11:u02:section,
+8:u03:('m',
+9:u04:media,
+8:u05:port,
+10:u06:below.,
+10:u07:(i.e.,,
+15:u11:description,
+13:u14:explained,
+9:uI0:('').,
+7:uI1:"".,
+13:u00:m=,
+13:u05:explained,
+11:u06:meaning,
+10:u07:field.,
+10:u00:,
+11:u01:section,
+8:u02:('m',
+9:u03:media,
+8:u04:port,
+10:u05:below.,
+10:u06:(i.e.,,
+15:u10:description,
+13:u13:explained,
+11:u14:meaning,
+7:uI0:"".,
+13:u04:explained,
+11:u05:meaning,
+10:u06:field.,
+13:u08:attribute,
+11:u00:section,
+8:u01:('m',
+9:u02:media,
+8:u03:port,
+10:u04:below.,
+10:u05:(i.e.,,
+9:u08:rules,
+13:u12:explained,
+11:u13:meaning,
+10:u14:field.,
+6:u21:ex,
+7:u22:exp,
+8:u23:expl,
+9:uI2:(..,),
+13:u03:explained,
+11:u04:meaning,
+10:u05:field.,
+8:u00:('m',
+9:u01:media,
+8:u02:port,
+10:u03:below.,
+10:u04:(i.e.,,
+9:u07:rules,
+14:u08:(discussed,
+13:u11:explained,
+11:u12:meaning,
+10:u13:field.,
+6:u21:me,
+7:u22:mea,
+8:u23:mean,
+9:uI1:(..,),
+13:u02:explained,
+11:u03:meaning,
+10:u04:field.,
+13:u07:attribute,
+9:u00:media,
+8:u01:port,
+10:u02:below.,
+10:u03:(i.e.,,
+9:u06:rules,
+14:u07:(discussed,
+13:u10:explained,
+11:u11:meaning,
+10:u12:field.,
+6:u21:fi,
+7:u22:fie,
+8:u23:fiel,
+9:uI0:(..,),
+13:u01:explained,
+11:u02:meaning,
+10:u03:field.,
+13:u06:attribute,
+8:u00:port,
+10:u01:below.,
+10:u02:(i.e.,,
+9:u05:rules,
+14:u06:(discussed,
+8:u08:case,
+11:u10:meaning,
+10:u11:field.,
+13:u14:attribute,
+9:uI2:[].'',
+13:u00:explained,
+11:u01:meaning,
+10:u02:field.,
+13:u05:attribute,
+10:u00:below.,
+10:u01:(i.e.,,
+9:u04:rules,
+14:u05:(discussed,
+8:u07:case,
+10:u08:remote,
+10:u10:field.,
+13:u13:attribute,
+8:u14:port,
+9:uI1:[].'',
+8:uI2:(.),,
+11:u00:meaning,
+10:u01:field.,
+13:u04:attribute,
+10:u00:(i.e.,,
+9:u03:rules,
+14:u04:(discussed,
+8:u06:case,
+10:u07:remote,
+7:u08:UDP,
+13:u12:attribute,
+8:u13:port,
+6:u21:at,
+7:u22:att,
+8:u23:attr,
+9:uI0:[].'',
+8:uI1:(.),,
+10:u00:field.,
+13:u03:attribute,
+14:u08:regardless,
+9:u02:rules,
+14:u03:(discussed,
+8:u05:case,
+10:u06:remote,
+7:u07:UDP,
+13:u11:attribute,
+8:u12:port,
+6:u21:po,
+7:u22:por,
+8:u23:port,
+8:uI0:(.),,
+13:u02:attribute,
+9:u01:rules,
+14:u02:(discussed,
+8:u04:case,
+10:u05:remote,
+7:u06:UDP,
+13:u10:attribute,
+8:u11:port,
+13:u01:attribute,
+14:u07:regardless,
+18:u08:TCP/DTLS/BFCP,,
+9:u00:rules,
+14:u01:(discussed,
+8:u03:case,
+10:u04:remote,
+7:u05:UDP,
+8:u10:port,
+13:u00:attribute,
+14:u06:regardless,
+14:u00:(discussed,
+8:u02:case,
+10:u03:remote,
+7:u04:UDP,
+17:u08:TCP/TLS/BFCP,,
+14:u14:regardless,
+14:u05:regardless,
+18:u07:TCP/DTLS/BFCP,,
+14:u08:'TCP/BFCP',
+8:u01:case,
+10:u02:remote,
+7:u03:UDP,
+17:u07:TCP/TLS/BFCP,,
+9:u08:proto,
+14:u13:regardless,
+7:uI2:''.,
+14:u04:regardless,
+18:u06:TCP/DTLS/BFCP,,
+15:u08:encryption,,
+8:u00:case,
+10:u01:remote,
+7:u02:UDP,
+17:u06:TCP/TLS/BFCP,,
+9:u07:proto,
+14:u12:regardless,
+18:u14:tcp/dtls/bfcp,,
+5:u20:r,
+6:u21:re,
+7:u22:reg,
+8:u23:rega,
+7:uI1:''.,
+7:uI2::/,,
+14:u03:regardless,
+18:u05:TCP/DTLS/BFCP,,
+14:u07:'TCP/BFCP',
+14:u08:endpoints.,
+10:u00:remote,
+7:u01:UDP,
+17:u05:TCP/TLS/BFCP,,
+9:u06:proto,
+14:u11:regardless,
+18:u13:tcp/dtls/bfcp,,
+7:uI0:''.,
+7:uI1::/,,
+15:uI2://,//,/,//.,
+14:u02:regardless,
+18:u04:TCP/DTLS/BFCP,,
+14:u06:'TCP/BFCP',
+15:u07:encryption,,
+7:u00:UDP,
+17:u04:TCP/TLS/BFCP,,
+9:u05:proto,
+14:u10:regardless,
+18:u12:tcp/dtls/bfcp,,
+14:u14:'tcp/bfcp',
+6:u21:TC,
+7:u22:TCP,
+8:u23:TCP/,
+6:uH2:10,
+7:uI0::/,,
+15:uI1://,//,/,//.,
+14:u01:regardless,
+18:u03:TCP/DTLS/BFCP,,
+14:u05:'TCP/BFCP',
+15:u06:encryption,,
+14:u07:endpoints.,
+17:u03:TCP/TLS/BFCP,,
+9:u04:proto,
+18:u11:tcp/dtls/bfcp,,
+14:u13:'tcp/bfcp',
+15:u14:encryption,,
+6:uH1:10,
+15:uI0://,//,/,//.,
+7:uI2:'/',
+14:u00:regardless,
+18:u02:TCP/DTLS/BFCP,,
+14:u04:'TCP/BFCP',
+15:u05:encryption,,
+14:u06:endpoints.,
+17:u02:TCP/TLS/BFCP,,
+9:u03:proto,
+18:u10:tcp/dtls/bfcp,,
+14:u12:'tcp/bfcp',
+15:u13:encryption,,
+14:u14:endpoints.,
+5:u20:',
+6:u21:'T,
+7:u22:'TC,
+8:u23:'TCP,
+6:uH0:10,
+7:uI1:'/',
+18:u01:TCP/DTLS/BFCP,,
+14:u03:'TCP/BFCP',
+15:u04:encryption,,
+14:u05:endpoints.,
+17:u01:TCP/TLS/BFCP,,
+9:u02:proto,
+6:u08:4],
+14:u11:'tcp/bfcp',
+15:u12:encryption,,
+14:u13:endpoints.,
+8:u23:encr,
+7:uI0:'/',
+18:u00:TCP/DTLS/BFCP,,
+14:u02:'TCP/BFCP',
+15:u03:encryption,,
+14:u04:endpoints.,
+17:u00:TCP/TLS/BFCP,,
+9:u01:proto,
+6:u07:4],
+14:u10:'tcp/bfcp',
+15:u11:encryption,,
+14:u12:endpoints.,
+7:u22:end,
+8:u23:endp,
+14:u01:'TCP/BFCP',
+15:u02:encryption,,
+14:u03:endpoints.,
+9:u00:proto,
+6:u06:4],
+15:u10:encryption,,
+14:u11:endpoints.,
+14:u00:'TCP/BFCP',
+15:u01:encryption,,
+14:u02:endpoints.,
+18:u08:'TCP/TLS/BFCP',
+6:u05:4],
+14:u10:endpoints.,
+15:u00:encryption,,
+14:u01:endpoints.,
+6:u04:4],
+14:u00:endpoints.,
+18:u07:'TCP/TLS/BFCP',
+13:u08:endpoints,
+6:u03:4],
+18:u06:'TCP/TLS/BFCP',
+14:u08:'UDP/BFCP',
+6:u02:4],
+8:u08:that,
+18:u14:'tcp/tls/bfcp',
+18:u05:'TCP/TLS/BFCP',
+13:u07:endpoints,
+14:u08:encryption,
+6:u01:4],
+8:u07:that,
+18:u13:'tcp/tls/bfcp',
+8:uI2:'//',
+18:u04:'TCP/TLS/BFCP',
+13:u06:endpoints,
+14:u07:'UDP/BFCP',
+18:u08:'UDP/TLS/BFCP',
+6:u00:4],
+8:u06:that,
+14:u08:[RFC6347].,
+18:u12:'tcp/tls/bfcp',
+13:u14:endpoints,
+8:uI1:'//',
+18:u03:'TCP/TLS/BFCP',
+13:u05:endpoints,
+14:u06:'UDP/BFCP',
+14:u07:encryption,
+15:u08:encryption.,
+8:u05:that,
+14:u07:[RFC6347].,
+18:u11:'tcp/tls/bfcp',
+13:u13:endpoints,
+14:u14:'udp/bfcp',
+8:uI0:'//',
+18:u02:'TCP/TLS/BFCP',
+13:u04:endpoints,
+14:u05:'UDP/BFCP',
+14:u06:encryption,
+18:u07:'UDP/TLS/BFCP',
+12:u08:(Section,
+8:u04:that,
+14:u06:[RFC6347].,
+18:u10:'tcp/tls/bfcp',
+13:u12:endpoints,
+14:u13:'udp/bfcp',
+14:u14:encryption,
+18:u01:'TCP/TLS/BFCP',
+13:u03:endpoints,
+14:u04:'UDP/BFCP',
+14:u05:encryption,
+18:u06:'UDP/TLS/BFCP',
+15:u07:encryption.,
+17:u08:compatibility,
+8:u03:that,
+14:u05:[RFC6347].,
+7:u08:9).,
+13:u11:endpoints,
+14:u12:'udp/bfcp',
+14:u13:encryption,
+18:u14:'udp/tls/bfcp',
+6:u21:'U,
+7:u22:'UD,
+8:u23:'UDP,
+18:u00:'TCP/TLS/BFCP',
+13:u02:endpoints,
+14:u03:'UDP/BFCP',
+14:u04:encryption,
+18:u05:'UDP/TLS/BFCP',
+15:u06:encryption.,
+12:u07:(Section,
+19:u08:'TCP/DTLS/BFCP',
+8:u02:that,
+14:u04:[RFC6347].,
+7:u07:9).,
+8:u08:with,
+13:u10:endpoints,
+14:u11:'udp/bfcp',
+14:u12:encryption,
+18:u13:'udp/tls/bfcp',
+15:u14:encryption.,
+13:u01:endpoints,
+14:u02:'UDP/BFCP',
+14:u03:encryption,
+18:u04:'UDP/TLS/BFCP',
+15:u05:encryption.,
+12:u06:(Section,
+17:u07:compatibility,
+8:u01:that,
+14:u03:[RFC6347].,
+7:u06:9).,
+8:u07:with,
+14:u10:'udp/bfcp',
+14:u11:encryption,
+18:u12:'udp/tls/bfcp',
+15:u13:encryption.,
+12:u14:(section,
+13:u00:endpoints,
+14:u01:'UDP/BFCP',
+14:u02:encryption,
+18:u03:'UDP/TLS/BFCP',
+15:u04:encryption.,
+12:u05:(Section,
+17:u06:compatibility,
+19:u07:'TCP/DTLS/BFCP',
+8:u00:that,
+14:u02:[RFC6347].,
+7:u05:9).,
+8:u06:with,
+11:u08:running,
+14:u10:encryption,
+18:u11:'udp/tls/bfcp',
+15:u12:encryption.,
+12:u13:(section,
+17:u14:compatibility,
+14:u00:'UDP/BFCP',
+14:u01:encryption,
+18:u02:'UDP/TLS/BFCP',
+15:u03:encryption.,
+12:u04:(Section,
+17:u05:compatibility,
+19:u06:'TCP/DTLS/BFCP',
+12:u08:RTP/RTCP,
+14:u01:[RFC6347].,
+7:u04:9).,
+8:u05:with,
+11:u07:running,
+14:u08:[RFC4571],,
+18:u10:'udp/tls/bfcp',
+15:u11:encryption.,
+12:u12:(section,
+17:u13:compatibility,
+19:u14:'tcp/dtls/bfcp',
+6:u21:(S,
+7:u22:(Se,
+8:u23:(Sec,
+14:u00:encryption,
+18:u01:'UDP/TLS/BFCP',
+15:u02:encryption.,
+12:u03:(Section,
+17:u04:compatibility,
+19:u05:'TCP/DTLS/BFCP',
+10:u08:length,
+14:u00:[RFC6347].,
+7:u03:9).,
+8:u04:with,
+11:u06:running,
+14:u07:[RFC4571],,
+11:u08:packets,
+15:u10:encryption.,
+12:u11:(section,
+17:u12:compatibility,
+19:u13:'tcp/dtls/bfcp',
+7:u22:com,
+8:u23:comp,
+18:u00:'UDP/TLS/BFCP',
+15:u01:encryption.,
+12:u02:(Section,
+17:u03:compatibility,
+19:u04:'TCP/DTLS/BFCP',
+12:u07:RTP/RTCP,
+7:u02:9).,
+8:u03:with,
+11:u05:running,
+14:u06:[RFC4571],,
+11:u07:packets,
+9:u08:field,
+12:u10:(section,
+17:u11:compatibility,
+19:u12:'tcp/dtls/bfcp',
+6:u14:in,
+15:u00:encryption.,
+12:u01:(Section,
+17:u02:compatibility,
+19:u03:'TCP/DTLS/BFCP',
+12:u06:RTP/RTCP,
+10:u07:length,
+6:u08:be,
+7:u01:9).,
+8:u02:with,
+11:u04:running,
+14:u05:[RFC4571],,
+11:u06:packets,
+9:u07:field,
+7:u08:one,
+17:u10:compatibility,
+19:u11:'tcp/dtls/bfcp',
+6:u13:in,
+12:u14:rtp/rtcp,
+7:uI2:[],,
+12:u00:(Section,
+17:u01:compatibility,
+19:u02:'TCP/DTLS/BFCP',
+12:u05:RTP/RTCP,
+10:u06:length,
+13:u08:compliant,
+7:u00:9).,
+8:u01:with,
+11:u03:running,
+14:u04:[RFC4571],,
+11:u05:packets,
+9:u06:field,
+7:u07:one,
+8:u08:used,
+19:u10:'tcp/dtls/bfcp',
+6:u12:in,
+12:u13:rtp/rtcp,
+10:u14:length,
+6:u22:in,
+6:u23:in,
+7:uI1:[],,
+17:u00:compatibility,
+19:u01:'TCP/DTLS/BFCP',
+12:u04:RTP/RTCP,
+10:u05:length,
+6:u07:be,
+8:u00:with,
+11:u02:running,
+14:u03:[RFC4571],,
+11:u04:packets,
+9:u05:field,
+7:u06:one,
+8:u07:used,
+6:u11:in,
+12:u12:rtp/rtcp,
+10:u13:length,
+6:u14:is,
+5:u20:R,
+6:u21:RT,
+7:u22:RTP,
+8:u23:RTP/,
+7:uI0:[],,
+19:u00:'TCP/DTLS/BFCP',
+12:u03:RTP/RTCP,
+10:u04:length,
+6:u06:be,
+13:u07:compliant,
+9:u08:lines,
+11:u01:running,
+14:u02:[RFC4571],,
+11:u03:packets,
+9:u04:field,
+7:u05:one,
+8:u06:used,
+7:u08:fmt,
+6:u10:in,
+12:u11:rtp/rtcp,
+10:u12:length,
+6:u13:is,
+6:u14:be,
+5:u20:l,
+6:u21:le,
+7:u22:len,
+8:u23:leng,
+12:u02:RTP/RTCP,
+10:u03:length,
+6:u05:be,
+13:u06:compliant,
+11:u08:contain,
+11:u00:running,
+14:u01:[RFC4571],,
+11:u02:packets,
+9:u03:field,
+7:u04:one,
+8:u05:used,
+7:u07:fmt,
+12:u10:rtp/rtcp,
+10:u11:length,
+6:u12:is,
+6:u13:be,
+13:u14:compliant,
+6:u21:is,
+6:u22:is,
+6:u23:is,
+12:u01:RTP/RTCP,
+10:u02:length,
+6:u04:be,
+13:u05:compliant,
+9:u07:lines,
+9:u08:other,
+14:u00:[RFC4571],,
+11:u01:packets,
+9:u02:field,
+7:u03:one,
+8:u04:used,
+7:u06:fmt,
+10:u10:length,
+6:u11:is,
+6:u12:be,
+13:u13:compliant,
+5:u20:b,
+6:u21:be,
+6:u22:be,
+6:u23:be,
+12:u00:RTP/RTCP,
+10:u01:length,
+6:u03:be,
+13:u04:compliant,
+9:u06:lines,
+11:u07:contain,
+11:u00:packets,
+9:u01:field,
+7:u02:one,
+8:u03:used,
+7:u05:fmt,
+9:u08:value,
+6:u10:is,
+6:u11:be,
+13:u12:compliant,
+9:u14:lines,
+9:uI2:().'',
+10:u00:length,
+6:u02:be,
+13:u03:compliant,
+9:u05:lines,
+11:u06:contain,
+9:u07:other,
+17:u08:m=application,
+9:u00:field,
+7:u01:one,
+8:u02:used,
+7:u04:fmt,
+9:u07:value,
+13:u08:following,
+6:u10:be,
+13:u11:compliant,
+9:u13:lines,
+11:u14:contain,
+9:uI1:().'',
+6:u01:be,
+13:u02:compliant,
+9:u04:lines,
+11:u05:contain,
+9:u06:other,
+7:u00:one,
+8:u01:used,
+7:u03:fmt,
+9:u06:value,
+13:u07:following,
+9:u08:50000,
+13:u10:compliant,
+9:u12:lines,
+11:u13:contain,
+9:u14:other,
+6:u21:li,
+7:u22:lin,
+8:u23:line,
+9:uI0:().'',
+8:uI2:"*".,
+6:u00:be,
+13:u01:compliant,
+9:u03:lines,
+11:u04:contain,
+9:u05:other,
+17:u07:m=application,
+8:u00:used,
+7:u02:fmt,
+9:u05:value,
+13:u06:following,
+9:u07:50000,
+9:u11:lines,
+11:u12:contain,
+9:u13:other,
+8:u23:cont,
+8:uI1:"*".,
+13:u00:compliant,
+9:u02:lines,
+11:u03:contain,
+9:u04:other,
+17:u06:m=application,
+7:u01:fmt,
+9:u04:value,
+13:u05:following,
+9:u06:50000,
+9:u10:lines,
+11:u11:contain,
+9:u12:other,
+17:u14:m=application,
+6:u21:ot,
+7:u22:oth,
+8:u23:othe,
+8:uI0:"*".,
+7:uI2:'':,
+9:u01:lines,
+11:u02:contain,
+9:u03:other,
+17:u05:m=application,
+7:u00:fmt,
+9:u03:value,
+13:u04:following,
+9:u05:50000,
+11:u10:contain,
+9:u11:other,
+17:u13:m=application,
+7:uI1:'':,
+7:uI2://*,
+9:u00:lines,
+11:u01:contain,
+9:u02:other,
+17:u04:m=application,
+11:u08:server),
+9:u02:value,
+13:u03:following,
+9:u04:50000,
+9:u10:other,
+17:u12:m=application,
+7:u22:m=a,
+8:u23:m=ap,
+7:uI0:'':,
+7:uI1://*,
+11:u00:contain,
+9:u01:other,
+17:u03:m=application,
+9:u01:value,
+13:u02:following,
+9:u03:50000,
+7:u08:for,
+17:u11:m=application,
+7:uI0://*,
+8:uI2:..'',
+9:u00:other,
+17:u02:m=application,
+11:u07:server),
+9:u00:value,
+13:u01:following,
+9:u02:50000,
+7:u07:for,
+17:u10:m=application,
+8:uI1:..'',
+8:uI2:''-.,
+17:u01:m=application,
+11:u06:server),
+13:u00:following,
+9:u01:50000,
+7:u06:for,
+11:u14:server),
+8:uI0:..'',
+8:uI1:''-.,
+5:uI2:(,
+17:u00:m=application,
+11:u05:server),
+9:u00:50000,
+7:u05:for,
+6:u08:5],
+11:u13:server),
+8:uI0:''-.,
+5:uI1:(,
+6:uI2:).,
+11:u04:server),
+7:u04:for,
+6:u07:5],
+11:u12:server),
+6:u21:se,
+7:u22:ser,
+8:u23:serv,
+5:uG2:3,
+5:uI0:(,
+6:uI1:).,
+11:u03:server),
+7:u03:for,
+6:u06:5],
+11:u11:server),
+5:uG1:3,
+6:uI0:).,
+11:u02:server),
+13:u08:Attribute,
+7:u02:for,
+6:u05:5],
+11:u10:server),
+5:uG0:3,
+11:u01:server),
+7:u01:for,
+6:u04:5],
+9:u08:Name:,
+11:u00:server),
+13:u07:Attribute,
+9:u08:Usage,
+7:u00:for,
+6:u03:5],
+9:u07:Name:,
+10:u08:Value:,
+13:u06:Attribute,
+11:u08:Charset,
+6:u02:5],
+9:u06:Name:,
+10:u07:Value:,
+10:u08:Level:,
+13:u05:Attribute,
+9:u07:Usage,
+7:u08:Mux,
+6:u01:5],
+9:u05:Name:,
+10:u06:Value:,
+10:u07:Level:,
+14:u08:Dependent:,
+13:u04:Attribute,
+9:u06:Usage,
+11:u07:Charset,
+6:u00:5],
+9:u04:Name:,
+10:u05:Value:,
+10:u06:Level:,
+14:u07:Dependent:,
+13:u08:Category:,
+9:u14:usage,
+6:u21:At,
+7:u22:Att,
+8:u23:Attr,
+6:uI2::-,
+13:u03:Attribute,
+9:u05:Usage,
+11:u06:Charset,
+7:u07:Mux,
+17:u08:floor-control,
+9:u03:Name:,
+10:u04:Value:,
+10:u05:Level:,
+14:u06:Dependent:,
+13:u07:Category:,
+13:u08:Augmented,
+9:u13:usage,
+11:u14:charset,
+6:uI1::-,
+13:u02:Attribute,
+9:u04:Usage,
+11:u05:Charset,
+7:u06:Mux,
+8:u08:role,
+9:u02:Name:,
+10:u03:Value:,
+10:u04:Level:,
+14:u05:Dependent:,
+13:u06:Category:,
+13:u07:Augmented,
+5:u08:=,
+9:u12:usage,
+11:u13:charset,
+7:u14:mux,
+7:u22:Usa,
+8:u23:Usag,
+6:uI0::-,
+13:u01:Attribute,
+9:u03:Usage,
+11:u04:Charset,
+7:u05:Mux,
+17:u07:floor-control,
+6:u08:An,
+9:u01:Name:,
+10:u02:Value:,
+10:u03:Level:,
+14:u04:Dependent:,
+13:u05:Category:,
+13:u06:Augmented,
+5:u07:=,
+9:u11:usage,
+11:u12:charset,
+7:u13:mux,
+6:u21:Ch,
+7:u22:Cha,
+8:u23:Char,
+13:u00:Attribute,
+9:u02:Usage,
+11:u03:Charset,
+7:u04:Mux,
+17:u06:floor-control,
+8:u07:role,
+9:u00:Name:,
+10:u01:Value:,
+10:u02:Level:,
+14:u03:Dependent:,
+13:u04:Category:,
+13:u05:Augmented,
+5:u06:=,
+12:u08:endpoint,
+9:u10:usage,
+11:u11:charset,
+7:u12:mux,
+17:u14:floor-control,
+5:u20:M,
+6:u21:Mu,
+7:u22:Mux,
+7:u23:Mux,
+7:uI2:[]:,
+9:u01:Usage,
+11:u02:Charset,
+7:u03:Mux,
+17:u05:floor-control,
+8:u06:role,
+6:u07:An,
+11:u08:c-only:,
+10:u00:Value:,
+10:u01:Level:,
+14:u02:Dependent:,
+13:u03:Category:,
+13:u04:Augmented,
+5:u05:=,
+12:u07:endpoint,
+11:u08:willing,
+11:u10:charset,
+7:u11:mux,
+17:u13:floor-control,
+8:u14:role,
+7:uI1:[]:,
+8:uI2:-*(),
+9:u00:Usage,
+11:u01:Charset,
+7:u02:Mux,
+17:u04:floor-control,
+8:u05:role,
+6:u06:An,
+11:u08:s-only:,
+10:u00:Level:,
+14:u01:Dependent:,
+13:u02:Category:,
+13:u03:Augmented,
+5:u04:=,
+12:u06:endpoint,
+11:u07:willing,
+7:u10:mux,
+17:u12:floor-control,
+8:u13:role,
+6:u14:an,
+7:uI0:[]:,
+8:uI1:-*(),
+15:uI2:"-"/"-"/"-",
+11:u00:Charset,
+7:u01:Mux,
+17:u03:floor-control,
+8:u04:role,
+6:u05:An,
+11:u07:c-only:,
+14:u00:Dependent:,
+13:u01:Category:,
+13:u02:Augmented,
+5:u03:=,
+12:u05:endpoint,
+11:u06:willing,
+17:u11:floor-control,
+8:u12:role,
+6:u13:an,
+6:u21:ro,
+7:u22:rol,
+8:u23:role,
+8:uI0:-*(),
+15:uI1:"-"/"-"/"-",
+7:u00:Mux,
+17:u02:floor-control,
+8:u03:role,
+6:u04:An,
+11:u06:c-only:,
+11:u07:s-only:,
+13:u00:Category:,
+13:u01:Augmented,
+5:u02:=,
+12:u04:endpoint,
+11:u05:willing,
+12:u08:inserted,
+17:u10:floor-control,
+8:u11:role,
+6:u12:an,
+11:u14:c-only:,
+6:u21:An,
+6:u22:An,
+6:u23:An,
+15:uI0:"-"/"-"/"-",
+6:uI2:-:,
+17:u01:floor-control,
+8:u02:role,
+6:u03:An,
+11:u05:c-only:,
+11:u06:s-only:,
+11:u08:answer,,
+13:u00:Augmented,
+5:u01:=,
+12:u03:endpoint,
+11:u04:willing,
+12:u07:inserted,
+10:u08:values,
+8:u10:role,
+6:u11:an,
+11:u13:c-only:,
+11:u14:s-only:,
+6:uI1:-:,
+7:uI2:-:.,
+17:u00:floor-control,
+8:u01:role,
+6:u02:An,
+11:u04:c-only:,
+11:u05:s-only:,
+5:u00:=,
+12:u02:endpoint,
+11:u03:willing,
+12:u06:inserted,
+10:u07:values,
+6:u10:an,
+11:u12:c-only:,
+11:u13:s-only:,
+6:u21:c-,
+7:u22:c-o,
+8:u23:c-on,
+6:uI0:-:,
+7:uI1:-:.,
+8:u00:role,
+6:u01:An,
+11:u03:c-only:,
+11:u04:s-only:,
+11:u07:answer,,
+12:u01:endpoint,
+11:u02:willing,
+12:u05:inserted,
+10:u06:values,
+13:u08:"s-only".,
+11:u11:c-only:,
+11:u12:s-only:,
+6:u21:s-,
+7:u22:s-o,
+8:u23:s-on,
+7:uI0:-:.,
+6:u00:An,
+11:u02:c-only:,
+11:u03:s-only:,
+11:u06:answer,,
+6:u08:In,
+12:u00:endpoint,
+11:u01:willing,
+12:u04:inserted,
+10:u05:values,
+13:u07:"s-only".,
+11:u08:offerer,
+11:u10:c-only:,
+11:u11:s-only:,
+11:u14:answer,,
+13:uI2:("-""-").,
+11:u01:c-only:,
+11:u02:s-only:,
+11:u05:answer,,
+9:u08:meant,
+11:u00:willing,
+12:u03:inserted,
+10:u04:values,
+13:u06:"s-only".,
+11:u07:offerer,
+14:u08:[RFC4583],,
+11:u10:s-only:,
+11:u13:answer,,
+6:u14:or,
+13:uI1:("-""-").,
+9:uI2:,:"-",
+11:u00:c-only:,
+11:u01:s-only:,
+11:u04:answer,,
+6:u07:In,
+10:u08:client,
+12:u02:inserted,
+10:u03:values,
+13:u05:"s-only".,
+11:u06:offerer,
+14:u07:[RFC4583],,
+11:u12:answer,,
+6:u13:or,
+13:uI0:("-""-").,
+9:uI1:,:"-",
+9:uI2:"-"..,
+11:u00:s-only:,
+11:u03:answer,,
+6:u06:In,
+9:u07:meant,
+10:u08:taking,
+12:u01:inserted,
+10:u02:values,
+13:u04:"s-only".,
+11:u05:offerer,
+14:u06:[RFC4583],,
+11:u11:answer,,
+6:u12:or,
+6:u21:or,
+6:u22:or,
+6:u23:or,
+9:uI0:,:"-",
+9:uI1:"-"..,
+11:u02:answer,,
+6:u05:In,
+9:u06:meant,
+10:u07:client,
+12:u00:inserted,
+10:u01:values,
+13:u03:"s-only".,
+11:u04:offerer,
+14:u05:[RFC4583],,
+13:u08:different,
+11:u10:answer,,
+6:u11:or,
+9:u14:meant,
+9:uI0:"-"..,
+12:uI2:[],,"-",,
+11:u01:answer,,
+6:u04:In,
+9:u05:meant,
+10:u06:client,
+10:u07:taking,
+14:u08:particular,
+10:u00:values,
+13:u02:"s-only".,
+11:u03:offerer,
+14:u04:[RFC4583],,
+13:u07:different,
+11:u08:feature,
+6:u10:or,
+9:u13:meant,
+10:u14:client,
+6:u22:In,
+6:u23:In,
+12:uI1:[],,"-",,
+11:u00:answer,,
+6:u03:In,
+9:u04:meant,
+10:u05:client,
+10:u06:taking,
+13:u01:"s-only".,
+11:u02:offerer,
+14:u03:[RFC4583],,
+13:u06:different,
+11:u07:feature,
+8:u08:many,
+9:u12:meant,
+10:u13:client,
+10:u14:taking,
+12:uI0:[],,"-",,
+6:u02:In,
+9:u03:meant,
+10:u04:client,
+10:u05:taking,
+14:u07:particular,
+11:u08:"c-only,
+13:u00:"s-only".,
+11:u01:offerer,
+14:u02:[RFC4583],,
+13:u05:different,
+11:u06:feature,
+8:u07:many,
+9:u11:meant,
+10:u12:client,
+10:u13:taking,
+6:u21:cl,
+7:u22:cli,
+8:u23:clie,
+6:u01:In,
+9:u02:meant,
+10:u03:client,
+10:u04:taking,
+14:u06:particular,
+8:u08:MUST,
+11:u00:offerer,
+14:u01:[RFC4583],,
+13:u04:different,
+11:u05:feature,
+8:u06:many,
+13:u08:s-only").,
+9:u10:meant,
+10:u11:client,
+10:u12:taking,
+14:u14:particular,
+6:u21:ta,
+7:u22:tak,
+8:u23:taki,
+6:u00:In,
+9:u01:meant,
+10:u02:client,
+10:u03:taking,
+14:u05:particular,
+11:u07:"c-only,
+6:u08:an,
+14:u00:[RFC4583],,
+13:u03:different,
+11:u04:feature,
+8:u05:many,
+13:u07:s-only").,
+7:u08:NOT,
+10:u10:client,
+10:u11:taking,
+14:u13:particular,
+12:u14:endpoint,
+7:uI2:"-",
+9:u00:meant,
+10:u01:client,
+10:u02:taking,
+14:u04:particular,
+11:u06:"c-only,
+8:u07:MUST,
+11:u08:process,
+13:u02:different,
+11:u03:feature,
+8:u04:many,
+13:u06:s-only").,
+7:u07:NOT,
+10:u10:taking,
+14:u12:particular,
+12:u13:endpoint,
+11:u14:"c-only,
+6:u21:pa,
+7:u22:par,
+8:u23:part,
+7:uI1:"-",
+10:u00:client,
+10:u01:taking,
+14:u03:particular,
+11:u05:"c-only,
+8:u06:MUST,
+6:u07:an,
+9:u08:Also,,
+13:u01:different,
+11:u02:feature,
+8:u03:many,
+13:u05:s-only").,
+7:u06:NOT,
+6:u08:it,
+14:u11:particular,
+12:u12:endpoint,
+11:u13:"c-only,
+8:u14:must,
+7:uI0:"-",
+10:uI2:"--").,
+10:u00:taking,
+14:u02:particular,
+11:u04:"c-only,
+8:u05:MUST,
+6:u06:an,
+11:u07:process,
+11:u08:allowed,
+13:u00:different,
+11:u01:feature,
+8:u02:many,
+13:u04:s-only").,
+7:u05:NOT,
+6:u07:it,
+14:u10:particular,
+12:u11:endpoint,
+11:u12:"c-only,
+8:u13:must,
+6:u21:"c,
+7:u22:"c-,
+8:u23:"c-o,
+10:uI1:"--").,
+14:u01:particular,
+11:u03:"c-only,
+8:u04:MUST,
+6:u05:an,
+11:u06:process,
+9:u07:Also,,
+11:u00:feature,
+8:u01:many,
+13:u03:s-only").,
+7:u04:NOT,
+6:u06:it,
+12:u10:endpoint,
+11:u11:"c-only,
+8:u12:must,
+11:u14:process,
+6:u21:MU,
+7:u22:MUS,
+8:u23:MUST,
+10:uI0:"--").,
+14:u00:particular,
+11:u02:"c-only,
+8:u03:MUST,
+6:u04:an,
+11:u05:process,
+9:u06:Also,,
+11:u07:allowed,
+8:u00:many,
+13:u02:s-only").,
+7:u03:NOT,
+6:u05:it,
+8:u08:each,
+11:u10:"c-only,
+8:u11:must,
+11:u13:process,
+9:u14:also,,
+6:u22:an,
+6:u23:an,
+15:uI2:"--"("--").,
+11:u01:"c-only,
+8:u02:MUST,
+6:u03:an,
+11:u04:process,
+9:u05:Also,,
+11:u06:allowed,
+10:u08:stream,
+13:u01:s-only").,
+7:u02:NOT,
+6:u04:it,
+8:u07:each,
+8:u08:will,
+8:u10:must,
+11:u12:process,
+9:u13:also,,
+11:u14:allowed,
+8:u23:proc,
+15:uI1:"--"("--").,
+11:u00:"c-only,
+8:u01:MUST,
+6:u02:an,
+11:u03:process,
+9:u04:Also,,
+11:u05:allowed,
+13:u00:s-only").,
+7:u01:NOT,
+6:u03:it,
+8:u06:each,
+8:u07:will,
+14:u08:associated,
+11:u11:process,
+9:u12:also,,
+11:u13:allowed,
+6:u21:Al,
+7:u22:Als,
+8:u23:Also,
+15:uI0:"--"("--").,
+12:uI2:,'-''-',,
+8:u00:MUST,
+6:u01:an,
+11:u02:process,
+9:u03:Also,,
+11:u04:allowed,
+10:u07:stream,
+6:u08:on,
+7:u00:NOT,
+6:u02:it,
+8:u05:each,
+8:u06:will,
+14:u07:associated,
+5:u08:1,
+11:u10:process,
+9:u11:also,,
+11:u12:allowed,
+6:u21:al,
+7:u22:all,
+8:u23:allo,
+12:uI1:,'-''-',,
+6:u00:an,
+11:u01:process,
+9:u02:Also,,
+11:u03:allowed,
+10:u06:stream,
+6:u01:it,
+8:u04:each,
+8:u05:will,
+14:u06:associated,
+5:u07:1,
+8:u08:what,
+9:u10:also,,
+11:u11:allowed,
+10:u14:stream,
+12:uI0:,'-''-',,
+11:u00:process,
+9:u01:Also,,
+11:u02:allowed,
+10:u05:stream,
+6:u07:on,
+6:u00:it,
+8:u03:each,
+8:u04:will,
+14:u05:associated,
+5:u06:1,
+8:u07:what,
+11:u10:allowed,
+10:u13:stream,
+9:u00:Also,,
+11:u01:allowed,
+10:u04:stream,
+6:u06:on,
+8:u02:each,
+8:u03:will,
+14:u04:associated,
+5:u05:1,
+8:u06:what,
+10:u12:stream,
+6:u14:on,
+6:u21:st,
+7:u22:str,
+8:u23:stre,
+11:u00:allowed,
+10:u03:stream,
+6:u05:on,
+8:u01:each,
+8:u02:will,
+14:u03:associated,
+5:u04:1,
+8:u05:what,
+6:u08:6],
+10:u11:stream,
+6:u13:on,
+10:u02:stream,
+6:u04:on,
+8:u00:each,
+8:u01:will,
+14:u02:associated,
+5:u03:1,
+8:u04:what,
+6:u07:6],
+10:u10:stream,
+6:u12:on,
+6:u21:on,
+6:u22:on,
+6:u23:on,
+10:u01:stream,
+6:u03:on,
+8:u00:will,
+14:u01:associated,
+5:u02:1,
+8:u03:what,
+6:u06:6],
+6:u11:on,
+10:u00:stream,
+6:u02:on,
+26:u08:+---------+----------+,
+14:u00:associated,
+5:u01:1,
+8:u02:what,
+6:u05:6],
+6:u10:on,
+6:u01:on,
+5:u08:|,
+5:u00:1,
+8:u01:what,
+6:u04:6],
+6:u00:on,
+26:u07:+---------+----------+,
+8:u00:what,
+6:u03:6],
+26:u06:+---------+----------+,
+5:u07:|,
+6:u02:6],
+26:u14:+---------+----------+,
+26:u05:+---------+----------+,
+5:u06:|,
+6:u01:6],
+10:u08:c-only,
+26:u13:+---------+----------+,
+5:u14:|,
+23:uI2:-------------------,
+26:u04:+---------+----------+,
+5:u05:|,
+6:u00:6],
+10:u07:c-only,
+10:u08:s-only,
+26:u12:+---------+----------+,
+5:u13:|,
+5:u20:+,
+6:u21:+-,
+7:u22:+--,
+8:u23:+---,
+23:uI1:-------------------,
+26:u03:+---------+----------+,
+5:u04:|,
+7:u08:c-s,
+10:u06:c-only,
+10:u07:s-only,
+26:u11:+---------+----------+,
+5:u12:|,
+5:u20:|,
+5:u21:|,
+5:u22:|,
+5:u23:|,
+23:uI0:-------------------,
+26:u02:+---------+----------+,
+5:u03:|,
+10:u05:c-only,
+10:u06:s-only,
+26:u10:+---------+----------+,
+5:u11:|,
+6:uI2:--,
+26:u01:+---------+----------+,
+5:u02:|,
+7:u07:c-s,
+10:u04:c-only,
+10:u05:s-only,
+5:u10:|,
+6:uI1:--,
+26:u00:+---------+----------+,
+5:u01:|,
+7:u06:c-s,
+10:u03:c-only,
+10:u04:s-only,
+7:u14:c-s,
+6:uI0:--,
+5:u00:|,
+7:u05:c-s,
+10:u02:c-only,
+10:u03:s-only,
+7:u13:c-s,
+7:u04:c-s,
+10:u01:c-only,
+10:u02:s-only,
+7:u12:c-s,
+7:u22:c-s,
+7:u23:c-s,
+7:u03:c-s,
+10:u00:c-only,
+10:u01:s-only,
+7:u11:c-s,
+7:u02:c-s,
+13:u08:Endpoints,
+10:u00:s-only,
+6:u08:1:,
+7:u10:c-s,
+7:u01:c-s,
+6:u07:1:,
+7:u00:c-s,
+13:u07:Endpoints,
+7:u08:not,
+6:u06:1:,
+13:u06:Endpoints,
+6:u05:1:,
+12:u08:present,,
+13:u05:Endpoints,
+7:u07:not,
+6:u04:1:,
+12:u07:present,,
+8:uI2:[]'',
+13:u04:Endpoints,
+7:u06:not,
+6:u03:1:,
+12:u06:present,,
+7:u14:not,
+6:u21:En,
+7:u22:End,
+8:u23:Endp,
+8:uI1:[]'',
+13:u03:Endpoints,
+7:u05:not,
+11:u08:defined,
+6:u02:1:,
+12:u05:present,,
+7:u13:not,
+11:u14:offerer,
+8:uI0:[]'',
+13:u02:Endpoints,
+7:u04:not,
+6:u01:1:,
+12:u04:present,,
+7:u12:not,
+11:u13:offerer,
+6:u21:no,
+7:u22:not,
+7:u23:not,
+13:u01:Endpoints,
+7:u03:not,
+11:u07:defined,
+22:u08:a=floorctrl:c-only,
+6:u00:1:,
+12:u03:present,,
+7:u11:not,
+11:u12:offerer,
+13:u00:Endpoints,
+7:u02:not,
+11:u06:defined,
+12:u02:present,,
+7:u10:not,
+11:u11:offerer,
+11:u14:defined,
+7:uI2:/'',
+7:u01:not,
+11:u05:defined,
+22:u07:a=floorctrl:c-only,
+12:u01:present,,
+11:u10:offerer,
+11:u13:defined,
+7:uI1:/'',
+7:u00:not,
+11:u04:defined,
+22:u06:a=floorctrl:c-only,
+12:u00:present,,
+11:u12:defined,
+22:u14:a=floorctrl:c-only,
+7:u22:def,
+8:u23:defi,
+7:uI0:/'',
+11:u03:defined,
+22:u05:a=floorctrl:c-only,
+6:u08:ID,
+11:u11:defined,
+22:u13:a=floorctrl:c-only,
+7:uI2::--,
+11:u02:defined,
+22:u04:a=floorctrl:c-only,
+19:u08:representation.,
+11:u10:defined,
+22:u12:a=floorctrl:c-only,
+6:u21:a=,
+7:u22:a=f,
+8:u23:a=fl,
+7:uI1::--,
+11:u01:defined,
+22:u03:a=floorctrl:c-only,
+6:u07:ID,
+22:u11:a=floorctrl:c-only,
+7:uI0::--,
+11:u00:defined,
+22:u02:a=floorctrl:c-only,
+6:u06:ID,
+19:u07:representation.,
+22:u10:a=floorctrl:c-only,
+6:u14:id,
+22:u01:a=floorctrl:c-only,
+6:u05:ID,
+19:u06:representation.,
+6:u13:id,
+19:u14:representation.,
+22:u00:a=floorctrl:c-only,
+6:u04:ID,
+19:u05:representation.,
+6:u08:7],
+6:u12:id,
+19:u13:representation.,
+6:u21:ID,
+6:u22:ID,
+6:u23:ID,
+6:u03:ID,
+19:u04:representation.,
+6:u07:7],
+6:u11:id,
+19:u12:representation.,
+7:u22:rep,
+8:u23:repr,
+6:u02:ID,
+19:u03:representation.,
+6:u06:7],
+6:u10:id,
+19:u11:representation.,
+6:u01:ID,
+19:u02:representation.,
+6:u05:7],
+19:u10:representation.,
+6:u00:ID,
+19:u01:representation.,
+6:u04:7],
+19:u00:representation.,
+6:u03:7],
+6:u02:7],
+6:u01:7],
+6:u00:7],
+17:u08:conference-id,
+9:u08:DIGIT,
+17:u07:conference-id,
+17:u06:conference-id,
+9:u07:DIGIT,
+17:u08:COMMON-HEADER,
+11:u08:maximum,
+17:u14:conference-id,
+17:u05:conference-id,
+9:u06:DIGIT,
+11:u07:maximum,
+10:u08:format,
+17:u13:conference-id,
+9:u14:digit,
+6:uI2:-*,
+17:u04:conference-id,
+9:u05:DIGIT,
+17:u07:COMMON-HEADER,
+11:u06:maximum,
+10:u07:format,
+17:u12:conference-id,
+9:u13:digit,
+8:u23:conf,
+6:uI1:-*,
+17:u03:conference-id,
+9:u04:DIGIT,
+17:u06:COMMON-HEADER,
+11:u05:maximum,
+10:u06:format,
+17:u11:conference-id,
+9:u12:digit,
+17:u14:common-header,
+6:u21:DI,
+7:u22:DIG,
+8:u23:DIGI,
+6:uI0:-*,
+17:u02:conference-id,
+9:u03:DIGIT,
+17:u05:COMMON-HEADER,
+11:u04:maximum,
+10:u05:format,
+17:u10:conference-id,
+9:u11:digit,
+17:u13:common-header,
+12:uI2:-[-.--].,
+17:u01:conference-id,
+9:u02:DIGIT,
+17:u04:COMMON-HEADER,
+11:u03:maximum,
+10:u04:format,
+9:u10:digit,
+17:u12:common-header,
+6:u21:CO,
+7:u22:COM,
+8:u23:COMM,
+5:uG2:4,
+12:uI1:-[-.--].,
+17:u00:conference-id,
+9:u01:DIGIT,
+17:u03:COMMON-HEADER,
+11:u02:maximum,
+10:u03:format,
+17:u11:common-header,
+5:uG1:4,
+12:uI0:-[-.--].,
+9:u00:DIGIT,
+17:u02:COMMON-HEADER,
+11:u01:maximum,
+10:u02:format,
+17:u10:common-header,
+5:uG0:4,
+17:u01:COMMON-HEADER,
+11:u00:maximum,
+10:u01:format,
+7:uI2:'-.,
+17:u00:COMMON-HEADER,
+10:u00:format,
+9:u14:value,
+7:uI1:'-.,
+9:u13:value,
+7:uI0:'-.,
+6:u08:8],
+9:u12:value,
+5:u20:v,
+6:u21:va,
+7:u22:val,
+8:u23:valu,
+6:u07:8],
+9:u11:value,
+6:u06:8],
+9:u10:value,
+6:u05:8],
+6:u04:8],
+6:u03:8],
+6:u02:8],
+6:u01:8],
+6:u00:8],
+11:u08:user-id,
+11:u07:user-id,
+11:u06:user-id,
+11:u14:user-id,
+11:u05:user-id,
+11:u13:user-id,
+11:u04:user-id,
+11:u12:user-id,
+5:u20:u,
+6:u21:us,
+7:u22:use,
+8:u23:user,
+11:u03:user-id,
+11:u11:user-id,
+11:u02:user-id,
+11:u10:user-id,
+11:u01:user-id,
+11:u00:user-id,
+19:u08:representation,,
+11:u08:conveys,
+14:u08:controlled,
+11:u07:conveys,
+19:u07:representation,,
+11:u06:conveys,
+19:u06:representation,,
+14:u07:controlled,
+11:u05:conveys,
+19:u14:representation,,
+19:u05:representation,,
+14:u06:controlled,
+11:u04:conveys,
+19:u13:representation,,
+14:u14:controlled,
+6:uI2:,-,
+19:u04:representation,,
+14:u05:controlled,
+11:u03:conveys,
+6:u08:9],
+19:u12:representation,,
+14:u13:controlled,
+6:uI1:,-,
+19:u03:representation,,
+14:u04:controlled,
+11:u02:conveys,
+6:u07:9],
+19:u11:representation,,
+14:u12:controlled,
+6:uI0:,-,
+19:u02:representation,,
+14:u03:controlled,
+11:u01:conveys,
+6:u06:9],
+19:u10:representation,,
+14:u11:controlled,
+19:u01:representation,,
+14:u02:controlled,
+11:u00:conveys,
+6:u05:9],
+14:u10:controlled,
+19:u00:representation,,
+14:u01:controlled,
+6:u04:9],
+14:u00:controlled,
+6:u03:9],
+6:u02:9],
+6:u01:9],
+6:u00:9],
+12:u08:floor-id,
+12:u07:floor-id,
+9:u08:token,
+12:u06:floor-id,
+12:u14:floor-id,
+12:u05:floor-id,
+9:u07:token,
+12:u08:FLOOR-ID,
+12:u13:floor-id,
+12:uI2:-*":"*(),
+12:u04:floor-id,
+9:u06:token,
+12:u12:floor-id,
+9:u14:token,
+12:uI1:-*":"*(),
+12:u03:floor-id,
+9:u05:token,
+12:u07:FLOOR-ID,
+12:u11:floor-id,
+9:u13:token,
+12:uI0:-*":"*(),
+12:u02:floor-id,
+9:u04:token,
+12:u06:FLOOR-ID,
+12:u10:floor-id,
+9:u12:token,
+7:u22:tok,
+8:u23:toke,
+12:u01:floor-id,
+9:u03:token,
+12:u05:FLOOR-ID,
+9:u11:token,
+12:u00:floor-id,
+9:u02:token,
+12:u04:FLOOR-ID,
+9:u10:token,
+5:u20:F,
+6:u21:FL,
+7:u22:FLO,
+8:u23:FLOO,
+9:u01:token,
+12:u03:FLOOR-ID,
+9:u08:Note:,
+8:u14:with,
+9:u00:token,
+12:u02:FLOOR-ID,
+12:u08:Although,
+8:u13:with,
+9:uI2:''[].,
+12:u01:FLOOR-ID,
+9:u07:Note:,
+11:u08:vendors,
+8:u12:with,
+6:u21:wi,
+7:u22:wit,
+8:u23:with,
+9:uI1:''[].,
+12:u00:FLOOR-ID,
+9:u06:Note:,
+12:u07:Although,
+8:u11:with,
+9:u14:note:,
+9:uI0:''[].,
+9:u05:Note:,
+12:u06:Although,
+11:u07:vendors,
+16:u08:interpreting,
+8:u10:with,
+9:u13:note:,
+12:u14:although,
+11:uI2::[]'-'.,
+9:u04:Note:,
+12:u05:Although,
+11:u06:vendors,
+14:u08:'m-stream',
+9:u12:note:,
+12:u13:although,
+11:u14:vendors,
+5:u20:N,
+6:u21:No,
+7:u22:Not,
+8:u23:Note,
+11:uI1::[]'-'.,
+6:uI2:-,,
+9:u03:Note:,
+12:u04:Although,
+11:u05:vendors,
+16:u07:interpreting,
+14:u07:'m-stream',
+9:u11:note:,
+12:u12:although,
+11:u13:vendors,
+7:u22:Alt,
+8:u23:Alth,
+11:uI0::[]'-'.,
+6:uI1:-,,
+9:u02:Note:,
+12:u03:Although,
+11:u04:vendors,
+16:u06:interpreting,
+14:u06:'m-stream',
+9:u10:note:,
+12:u11:although,
+11:u12:vendors,
+16:u14:interpreting,
+6:u21:ve,
+7:u22:ven,
+8:u23:vend,
+6:uI0:-,,
+9:u01:Note:,
+12:u02:Although,
+11:u03:vendors,
+16:u05:interpreting,
+11:u08:integer,
+14:u05:'m-stream',
+12:u10:although,
+11:u11:vendors,
+16:u13:interpreting,
+6:u21:as,
+6:u22:as,
+6:u23:as,
+10:uI2:'-'''.,
+9:u00:Note:,
+12:u01:Although,
+11:u02:vendors,
+16:u04:interpreting,
+14:u04:'m-stream',
+11:u10:vendors,
+16:u12:interpreting,
+7:u22:int,
+8:u23:inte,
+10:uI1:'-'''.,
+12:u00:Although,
+11:u01:vendors,
+16:u03:interpreting,
+11:u07:integer,
+14:u03:'m-stream',
+16:u11:interpreting,
+10:uI0:'-'''.,
+11:u00:vendors,
+16:u02:interpreting,
+11:u06:integer,
+14:u02:'m-stream',
+16:u10:interpreting,
+11:u14:integer,
+16:u01:interpreting,
+11:u05:integer,
+14:u01:'m-stream',
+11:u13:integer,
+16:u00:interpreting,
+11:u04:integer,
+14:u00:'m-stream',
+7:u08:10],
+11:u12:integer,
+11:u03:integer,
+7:u07:10],
+11:u11:integer,
+11:u02:integer,
+7:u06:10],
+11:u10:integer,
+11:u01:integer,
+7:u05:10],
+11:u00:integer,
+7:u04:10],
+7:u03:10],
+7:u02:10],
+7:u01:10],
+7:u00:10],
+16:u08:bfcp-version,
+11:u08:version,
+16:u07:bfcp-version,
+16:u06:bfcp-version,
+11:u07:version,
+11:u08:1*DIGIT,
+16:u14:bfcp-version,
+16:u05:bfcp-version,
+11:u06:version,
+11:u07:1*DIGIT,
+16:u13:bfcp-version,
+11:u14:version,
+16:u04:bfcp-version,
+11:u05:version,
+11:u06:1*DIGIT,
+16:u12:bfcp-version,
+11:u13:version,
+5:u14:=,
+6:u21:bf,
+7:u22:bfc,
+8:u23:bfcp,
+16:u03:bfcp-version,
+11:u04:version,
+11:u05:1*DIGIT,
+16:u11:bfcp-version,
+11:u12:version,
+5:u13:=,
+7:u22:ver,
+8:u23:vers,
+5:uI2:*,
+16:u02:bfcp-version,
+11:u03:version,
+11:u04:1*DIGIT,
+16:u10:bfcp-version,
+11:u11:version,
+5:u12:=,
+5:u20:=,
+5:u21:=,
+5:u22:=,
+5:u23:=,
+5:uI1:*,
+16:u01:bfcp-version,
+11:u02:version,
+12:u08:version,,
+11:u03:1*DIGIT,
+13:u08:supported,
+11:u10:version,
+5:u11:=,
+5:uI0:*,
+16:u00:bfcp-version,
+11:u01:version,
+13:u08:"Version",
+11:u02:1*DIGIT,
+13:u07:supported,
+5:u10:=,
+11:u00:version,
+12:u07:version,,
+34:u08:[I-D.ietf-bfcpbis-rfc4582bis].,
+11:u01:1*DIGIT,
+13:u06:supported,
+8:uI2:''(),
+12:u06:version,,
+13:u07:"Version",
+11:u00:1*DIGIT,
+13:u05:supported,
+12:u14:version,,
+8:uI1:''(),
+12:u05:version,,
+13:u06:"Version",
+34:u07:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u04:supported,
+12:u13:version,,
+13:u14:"version",
+8:uI0:''(),
+12:u04:version,,
+13:u05:"Version",
+34:u06:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u08:'bfcpver',
+13:u03:supported,
+12:u12:version,,
+13:u13:"version",
+34:u14:[i-d.ietf-bfcpbis-rfc4582bis].,
+7:uI2:""-,
+12:u03:version,,
+13:u04:"Version",
+34:u05:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u02:supported,
+12:u11:version,,
+13:u12:"version",
+34:u13:[i-d.ietf-bfcpbis-rfc4582bis].,
+6:u21:"V,
+7:u22:"Ve,
+8:u23:"Ver,
+7:uI1:""-,
+11:uI2:[-.--].,
+12:u02:version,,
+13:u03:"Version",
+34:u04:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u07:'bfcpver',
+13:u01:supported,
+12:u10:version,,
+13:u11:"version",
+34:u12:[i-d.ietf-bfcpbis-rfc4582bis].,
+6:u21:[I,
+7:u22:[I-,
+8:u23:[I-D,
+7:uI0:""-,
+11:uI1:[-.--].,
+7:uI2:-/.,
+12:u01:version,,
+13:u02:"Version",
+34:u03:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u06:'bfcpver',
+13:u00:supported,
+13:u10:"version",
+34:u11:[i-d.ietf-bfcpbis-rfc4582bis].,
+13:u14:'bfcpver',
+11:uI0:[-.--].,
+7:uI1:-/.,
+12:u00:version,,
+13:u01:"Version",
+34:u02:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u05:'bfcpver',
+34:u08:[I-D.ietf-bfcpbis-rfc4582bis]:,
+34:u10:[i-d.ietf-bfcpbis-rfc4582bis].,
+13:u13:'bfcpver',
+12:u14:present,,
+7:uI0:-/.,
+8:uI2:''.,,
+13:u00:"Version",
+34:u01:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u04:'bfcpver',
+8:u08:when,
+13:u12:'bfcpver',
+12:u13:present,,
+9:u14:field,
+6:u21:'b,
+7:u22:'bf,
+8:u23:'bfc,
+8:uI1:''.,,
+34:u00:[I-D.ietf-bfcpbis-rfc4582bis].,
+13:u03:'bfcpver',
+34:u07:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u08:transport,
+8:u07:when,
+11:u08:default,
+13:u11:'bfcpver',
+12:u12:present,,
+9:u13:field,
+7:u22:pre,
+8:u23:pres,
+8:uI0:''.,,
+13:u02:'bfcpver',
+34:u06:[I-D.ietf-bfcpbis-rfc4582bis]:,
+8:u08:from,
+8:u06:when,
+11:u07:default,
+13:u10:'bfcpver',
+12:u11:present,,
+9:u12:field,
+34:u14:[i-d.ietf-bfcpbis-rfc4582bis]:,
+13:u01:'bfcpver',
+34:u05:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u07:transport,
+8:u05:when,
+11:u06:default,
+12:u10:present,,
+9:u11:field,
+34:u13:[i-d.ietf-bfcpbis-rfc4582bis]:,
+11:uI2:[-.--]:,
+13:u00:'bfcpver',
+34:u04:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u06:transport,
+8:u07:from,
+8:u04:when,
+11:u05:default,
+9:u10:field,
+34:u12:[i-d.ietf-bfcpbis-rfc4582bis]:,
+13:u14:transport,
+11:uI1:[-.--]:,
+7:uI2:"",,
+34:u03:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u05:transport,
+8:u06:from,
+8:u03:when,
+11:u04:default,
+34:u11:[i-d.ietf-bfcpbis-rfc4582bis]:,
+13:u13:transport,
+8:u14:from,
+11:uI0:[-.--]:,
+7:uI1:"",,
+34:u02:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u04:transport,
+8:u05:from,
+8:u02:when,
+11:u03:default,
+34:u10:[i-d.ietf-bfcpbis-rfc4582bis]:,
+13:u12:transport,
+8:u13:from,
+6:u21:tr,
+7:u22:tra,
+8:u23:tran,
+7:uI0:"",,
+10:uI2:''()'',
+34:u01:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u03:transport,
+8:u04:from,
+44:u08:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+8:u01:when,
+11:u02:default,
+13:u11:transport,
+8:u12:from,
+6:u21:fr,
+7:u22:fro,
+8:u23:from,
+10:uI1:''()'',
+34:u00:[I-D.ietf-bfcpbis-rfc4582bis]:,
+13:u02:transport,
+8:u03:from,
+12:u08:multiple,
+8:u00:when,
+11:u01:default,
+11:u08:defines,
+13:u10:transport,
+8:u11:from,
+7:u22:sec,
+8:u23:sect,
+5:uG2:5,
+10:uI0:''()'',
+13:u01:transport,
+8:u02:from,
+44:u07:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+11:u00:default,
+11:u07:defines,
+8:u10:from,
+5:uG1:5,
+13:u00:transport,
+8:u01:from,
+44:u06:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u07:multiple,
+12:u08:streams.,
+11:u06:defines,
+10:u08:define,
+44:u14:[i-d.ietf-mmusic-sdp-bundle-negotiation],
+5:uG0:5,
+8:u00:from,
+44:u05:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u06:multiple,
+11:u05:defines,
+10:u07:define,
+14:u08:Therefore,,
+44:u13:[i-d.ietf-mmusic-sdp-bundle-negotiation],
+12:u14:multiple,
+12:uI2:[-.----],
+44:u04:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u05:multiple,
+12:u07:streams.,
+11:u04:defines,
+10:u06:define,
+14:u07:Therefore,,
+44:u12:[i-d.ietf-mmusic-sdp-bundle-negotiation],
+12:u13:multiple,
+12:uI1:[-.----],
+44:u03:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u04:multiple,
+12:u06:streams.,
+11:u03:defines,
+10:u05:define,
+14:u06:Therefore,,
+44:u11:[i-d.ietf-mmusic-sdp-bundle-negotiation],
+12:u12:multiple,
+12:u14:streams.,
+6:u21:mu,
+7:u22:mul,
+8:u23:mult,
+12:uI0:[-.----],
+44:u02:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u03:multiple,
+12:u05:streams.,
+11:u02:defines,
+10:u04:define,
+14:u05:Therefore,,
+7:u08:11],
+44:u10:[i-d.ietf-mmusic-sdp-bundle-negotiation],
+12:u11:multiple,
+12:u13:streams.,
+44:u01:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u02:multiple,
+12:u04:streams.,
+11:u01:defines,
+10:u03:define,
+14:u04:Therefore,,
+7:u07:11],
+12:u10:multiple,
+12:u12:streams.,
+44:u00:[I-D.ietf-mmusic-sdp-bundle-negotiation],
+12:u01:multiple,
+12:u03:streams.,
+11:u00:defines,
+10:u02:define,
+14:u03:Therefore,,
+7:u06:11],
+12:u11:streams.,
+12:u00:multiple,
+12:u02:streams.,
+10:u08:BUNDLE,
+10:u01:define,
+14:u02:Therefore,,
+7:u05:11],
+12:u10:streams.,
+12:u01:streams.,
+10:u00:define,
+14:u01:Therefore,,
+7:u04:11],
+9:u08:group,
+12:u00:streams.,
+10:u07:BUNDLE,
+14:u00:Therefore,,
+7:u03:11],
+9:u07:group,
+10:u06:BUNDLE,
+40:u08:[I-D.ietf-mmusic-sdp-mux-attributes],
+7:u02:11],
+9:u06:group,
+10:u14:bundle,
+10:u05:BUNDLE,
+7:u01:11],
+9:u05:group,
+10:u13:bundle,
+13:uI2:[-.----].,
+10:u04:BUNDLE,
+40:u07:[I-D.ietf-mmusic-sdp-mux-attributes],
+7:u00:11],
+9:u04:group,
+10:u12:bundle,
+6:u21:BU,
+7:u22:BUN,
+8:u23:BUND,
+13:uI1:[-.----].,
+10:u03:BUNDLE,
+40:u06:[I-D.ietf-mmusic-sdp-mux-attributes],
+9:u03:group,
+14:u08:attribute.,
+10:u11:bundle,
+40:u14:[i-d.ietf-mmusic-sdp-mux-attributes],
+13:uI0:[-.----].,
+10:u02:BUNDLE,
+40:u05:[I-D.ietf-mmusic-sdp-mux-attributes],
+73:u08:+---------+-------------------------------------+-------+-----------+,
+9:u02:group,
+14:u07:attribute.,
+14:u08:attribute:,
+10:u10:bundle,
+40:u13:[i-d.ietf-mmusic-sdp-mux-attributes],
+10:u01:BUNDLE,
+40:u04:[I-D.ietf-mmusic-sdp-mux-attributes],
+9:u01:group,
+14:u06:attribute.,
+14:u07:attribute:,
+40:u12:[i-d.ietf-mmusic-sdp-mux-attributes],
+10:u00:BUNDLE,
+40:u03:[I-D.ietf-mmusic-sdp-mux-attributes],
+73:u07:+---------+-------------------------------------+-------+-----------+,
+9:u00:group,
+14:u05:attribute.,
+14:u06:attribute:,
+8:u08:Name,
+40:u11:[i-d.ietf-mmusic-sdp-mux-attributes],
+40:u02:[I-D.ietf-mmusic-sdp-mux-attributes],
+73:u06:+---------+-------------------------------------+-------+-----------+,
+14:u04:attribute.,
+14:u05:attribute:,
+8:u07:Name,
+9:u08:Notes,
+40:u10:[i-d.ietf-mmusic-sdp-mux-attributes],
+73:u14:+---------+-------------------------------------+-------+-----------+,
+40:u01:[I-D.ietf-mmusic-sdp-mux-attributes],
+73:u05:+---------+-------------------------------------+-------+-----------+,
+14:u03:attribute.,
+14:u04:attribute:,
+8:u06:Name,
+9:u07:Notes,
+9:u08:Level,
+73:u13:+---------+-------------------------------------+-------+-----------+,
+68:uI2:----------------------------------------------------------------,
+6:uI2:64,
+40:u00:[I-D.ietf-mmusic-sdp-mux-attributes],
+73:u04:+---------+-------------------------------------+-------+-----------+,
+14:u02:attribute.,
+14:u03:attribute:,
+8:u05:Name,
+9:u06:Notes,
+9:u07:Level,
+73:u12:+---------+-------------------------------------+-------+-----------+,
+68:uI1:----------------------------------------------------------------,
+6:uI1:64,
+73:u03:+---------+-------------------------------------+-------+-----------+,
+14:u01:attribute.,
+14:u02:attribute:,
+8:u04:Name,
+9:u05:Notes,
+9:u06:Level,
+73:u11:+---------+-------------------------------------+-------+-----------+,
+68:uI0:----------------------------------------------------------------,
+6:uI0:64,
+73:u02:+---------+-------------------------------------+-------+-----------+,
+14:u00:attribute.,
+14:u01:attribute:,
+8:u03:Name,
+9:u04:Notes,
+9:u05:Level,
+73:u10:+---------+-------------------------------------+-------+-----------+,
+73:u01:+---------+-------------------------------------+-------+-----------+,
+14:u00:attribute:,
+8:u02:Name,
+9:u03:Notes,
+9:u04:Level,
+73:u00:+---------+-------------------------------------+-------+-----------+,
+8:u01:Name,
+9:u02:Notes,
+9:u03:Level,
+12:u08:Category,
+8:u00:Name,
+9:u01:Notes,
+9:u02:Level,
+12:u07:Category,
+9:u00:Notes,
+9:u01:Level,
+12:u06:Category,
+11:u08:bfcpver,
+9:u00:Level,
+12:u05:Category,
+11:u07:bfcpver,
+5:u08:M,
+12:u04:Category,
+11:u06:bfcpver,
+5:u07:M,
+7:u08:TBD,
+12:u03:Category,
+11:u05:bfcpver,
+5:u06:M,
+7:u07:TBD,
+12:u02:Category,
+11:u04:bfcpver,
+5:u05:M,
+7:u06:TBD,
+12:u01:Category,
+11:u03:bfcpver,
+5:u04:M,
+7:u05:TBD,
+12:u08:separate,
+12:u00:Category,
+11:u02:bfcpver,
+5:u03:M,
+7:u04:TBD,
+12:u07:separate,
+11:u01:bfcpver,
+5:u02:M,
+7:u03:TBD,
+12:u06:separate,
+11:u00:bfcpver,
+5:u01:M,
+7:u02:TBD,
+12:u05:separate,
+5:u00:M,
+7:u01:TBD,
+12:u04:separate,
+7:u00:TBD,
+12:u03:separate,
+6:u08:2:,
+12:u02:separate,
+6:u07:2:,
+12:u01:separate,
+6:u06:2:,
+11:u08:towards,
+12:u00:separate,
+6:u05:2:,
+14:u08:exchanging,
+6:u04:2:,
+14:u07:exchanging,
+11:u07:towards,
+15:u08:complicated,
+6:u03:2:,
+14:u06:exchanging,
+11:u06:towards,
+6:u02:2:,
+14:u05:exchanging,
+11:u14:towards,
+11:u05:towards,
+15:u07:complicated,
+14:u08:[RFC8445],,
+6:u01:2:,
+14:u04:exchanging,
+11:u13:towards,
+11:u04:towards,
+15:u06:complicated,
+6:u00:2:,
+14:u03:exchanging,
+11:u12:towards,
+15:u14:complicated,
+7:u22:tow,
+8:u23:towa,
+9:uI2:''''.,
+11:u03:towards,
+15:u05:complicated,
+14:u07:[RFC8445],,
+10:u08:apply.,
+14:u02:exchanging,
+11:u11:towards,
+15:u13:complicated,
+9:uI1:''''.,
+11:u02:towards,
+15:u04:complicated,
+14:u06:[RFC8445],,
+14:u01:exchanging,
+16:u08:TCP/TLS/BFCP,
+11:u10:towards,
+15:u12:complicated,
+14:u14:[rfc8445],,
+9:uI0:''''.,
+11:u01:towards,
+15:u03:complicated,
+14:u05:[RFC8445],,
+10:u07:apply.,
+14:u00:exchanging,
+16:u07:TCP/TLS/BFCP,
+15:u11:complicated,
+14:u13:[rfc8445],,
+14:u14:procedures,
+14:uI2:[],//,//,-,
+11:u00:towards,
+15:u02:complicated,
+14:u04:[RFC8445],,
+10:u06:apply.,
+16:u06:TCP/TLS/BFCP,
+15:u10:complicated,
+14:u12:[rfc8445],,
+14:u13:procedures,
+10:u14:apply.,
+14:uI1:[],//,//,-,
+15:u01:complicated,
+14:u03:[RFC8445],,
+10:u05:apply.,
+16:u05:TCP/TLS/BFCP,
+14:u08:management,
+14:u11:[rfc8445],,
+14:u12:procedures,
+10:u13:apply.,
+14:uI0:[],//,//,-,
+8:uI2:.///,
+15:u00:complicated,
+14:u02:[RFC8445],,
+10:u04:apply.,
+14:u08:[RFC4145].,
+16:u04:TCP/TLS/BFCP,
+14:u07:management,
+13:u08:performed,
+14:u10:[rfc8445],,
+14:u11:procedures,
+10:u12:apply.,
+8:uI1:.///,
+14:u01:[RFC8445],,
+10:u03:apply.,
+13:u08:initiates,
+16:u03:TCP/TLS/BFCP,
+14:u06:management,
+13:u07:performed,
+14:u10:procedures,
+10:u11:apply.,
+8:uI0:.///,
+14:u00:[RFC8445],,
+10:u02:apply.,
+14:u07:[RFC4145].,
+16:u02:TCP/TLS/BFCP,
+14:u05:management,
+13:u06:performed,
+10:u10:apply.,
+10:u01:apply.,
+14:u06:[RFC4145].,
+13:u07:initiates,
+16:u01:TCP/TLS/BFCP,
+14:u04:management,
+13:u05:performed,
+21:u08:re-establishment.,
+14:u14:[rfc4145].,
+8:uI2:'''',
+10:u00:apply.,
+14:u05:[RFC4145].,
+13:u06:initiates,
+16:u00:TCP/TLS/BFCP,
+14:u03:management,
+13:u04:performed,
+21:u07:re-establishment.,
+14:u13:[rfc4145].,
+13:u14:initiates,
+8:uI1:'''',
+14:u04:[RFC4145].,
+13:u05:initiates,
+14:u02:management,
+13:u03:performed,
+21:u06:re-establishment.,
+14:u12:[rfc4145].,
+13:u13:initiates,
+14:u14:connection,
+8:uI0:'''',
+14:u03:[RFC4145].,
+13:u04:initiates,
+12:u08:However,,
+14:u01:management,
+13:u02:performed,
+21:u05:re-establishment.,
+14:u11:[rfc4145].,
+13:u12:initiates,
+14:u13:connection,
+7:u22:ini,
+8:u23:init,
+14:u02:[RFC4145].,
+13:u03:initiates,
+14:u00:management,
+13:u01:performed,
+21:u04:re-establishment.,
+14:u10:[rfc4145].,
+13:u11:initiates,
+14:u12:connection,
+10:uI2:[-.--],
+14:u01:[RFC4145].,
+13:u02:initiates,
+12:u07:However,,
+15:u08:established,
+13:u00:performed,
+21:u03:re-establishment.,
+11:u08:because,
+13:u10:initiates,
+14:u11:connection,
+10:uI1:[-.--],
+14:u00:[RFC4145].,
+13:u01:initiates,
+12:u06:However,,
+13:u08:mechanism,
+21:u02:re-establishment.,
+11:u07:because,
+14:u10:connection,
+12:u14:however,,
+10:uI0:[-.--],
+13:u00:initiates,
+12:u05:However,,
+15:u07:established,
+21:u01:re-establishment.,
+11:u06:because,
+10:u08:follow,
+12:u13:however,,
+12:u04:However,,
+15:u06:established,
+13:u07:mechanism,
+21:u00:re-establishment.,
+11:u05:because,
+10:u07:follow,
+12:u12:however,,
+15:u14:established,
+5:u20:H,
+6:u21:Ho,
+7:u22:How,
+8:u23:Howe,
+12:u03:However,,
+15:u05:established,
+13:u06:mechanism,
+11:u04:because,
+10:u06:follow,
+12:u11:however,,
+15:u13:established,
+13:u14:mechanism,
+6:uI2:./,
+12:u02:However,,
+15:u04:established,
+13:u05:mechanism,
+11:u03:because,
+10:u05:follow,
+7:u08:12],
+12:u10:however,,
+15:u12:established,
+13:u13:mechanism,
+6:u21:es,
+7:u22:est,
+8:u23:esta,
+6:uI1:./,
+12:u01:However,,
+15:u03:established,
+13:u04:mechanism,
+11:u02:because,
+10:u04:follow,
+7:u07:12],
+15:u11:established,
+13:u12:mechanism,
+7:u22:mec,
+8:u23:mech,
+6:uI0:./,
+12:u00:However,,
+15:u02:established,
+13:u03:mechanism,
+11:u01:because,
+10:u03:follow,
+7:u06:12],
+15:u10:established,
+13:u11:mechanism,
+15:u01:established,
+13:u02:mechanism,
+11:u00:because,
+10:u02:follow,
+7:u05:12],
+13:u10:mechanism,
+15:u00:established,
+13:u01:mechanism,
+10:u01:follow,
+7:u04:12],
+13:u00:mechanism,
+10:u00:follow,
+7:u03:12],
+9:u08:order,
+7:u02:12],
+11:u08:deliver,
+7:u01:12],
+13:u14:following,
+9:u07:order,
+8:u08:send,
+7:u00:12],
+13:u13:following,
+9:u06:order,
+11:u07:deliver,
+13:u12:following,
+9:u14:order,
+6:u21:fo,
+7:u22:fol,
+8:u23:foll,
+9:u05:order,
+11:u06:deliver,
+8:u07:send,
+13:u11:following,
+9:u13:order,
+11:u14:deliver,
+9:u04:order,
+11:u05:deliver,
+8:u06:send,
+15:u08:connections,
+13:u10:following,
+9:u12:order,
+11:u13:deliver,
+8:u14:send,
+7:u22:ord,
+8:u23:orde,
+9:u03:order,
+11:u04:deliver,
+8:u05:send,
+9:u11:order,
+11:u12:deliver,
+8:u13:send,
+7:u22:del,
+8:u23:deli,
+9:u02:order,
+11:u03:deliver,
+8:u04:send,
+15:u07:connections,
+9:u10:order,
+11:u11:deliver,
+8:u12:send,
+7:u22:sen,
+8:u23:send,
+9:u01:order,
+11:u02:deliver,
+8:u03:send,
+15:u06:connections,
+8:u08:DTLS,
+11:u10:deliver,
+8:u11:send,
+15:u14:connections,
+9:u00:order,
+11:u01:deliver,
+8:u02:send,
+15:u05:connections,
+8:u07:DTLS,
+8:u10:send,
+15:u13:connections,
+11:u00:deliver,
+8:u01:send,
+15:u04:connections,
+16:u08:established,,
+8:u06:DTLS,
+7:u08:TLS,
+15:u12:connections,
+8:u00:send,
+15:u03:connections,
+8:u05:DTLS,
+7:u07:TLS,
+15:u11:connections,
+15:u02:connections,
+16:u07:established,,
+19:u08:re-establishing,
+8:u04:DTLS,
+7:u06:TLS,
+15:u10:connections,
+12:uI2:[-.---].,
+15:u01:connections,
+16:u06:established,,
+15:u08:negotiated,,
+8:u03:DTLS,
+7:u05:TLS,
+16:u14:established,,
+5:uG2:6,
+12:uI1:[-.---].,
+15:u00:connections,
+16:u05:established,,
+19:u07:re-establishing,
+14:u08:previously,
+8:u02:DTLS,
+7:u04:TLS,
+14:u08:subsequent,
+16:u13:established,,
+5:uG1:6,
+12:uI0:[-.---].,
+16:u04:established,,
+19:u06:re-establishing,
+15:u07:negotiated,,
+8:u01:DTLS,
+7:u03:TLS,
+14:u07:subsequent,
+14:u08:negotiated,
+16:u12:established,,
+19:u14:re-establishing,
+5:uG0:6,
+7:uI2:,[],
+16:u03:established,,
+19:u05:re-establishing,
+15:u06:negotiated,,
+14:u07:previously,
+13:u08:[RFC4583],
+8:u00:DTLS,
+7:u02:TLS,
+14:u06:subsequent,
+14:u07:negotiated,
+7:u08:For,
+16:u11:established,,
+19:u13:re-establishing,
+15:u14:negotiated,,
+7:uI1:,[],
+16:u02:established,,
+19:u04:re-establishing,
+15:u05:negotiated,,
+14:u06:previously,
+7:u01:TLS,
+14:u05:subsequent,
+14:u06:negotiated,
+7:u07:For,
+16:u10:established,,
+19:u12:re-establishing,
+15:u13:negotiated,,
+14:u14:previously,
+7:u22:re-,
+8:u23:re-e,
+7:uI0:,[],
+16:u01:established,,
+19:u03:re-establishing,
+15:u04:negotiated,,
+14:u05:previously,
+13:u07:[RFC4583],
+7:u00:TLS,
+14:u04:subsequent,
+14:u05:negotiated,
+7:u06:For,
+19:u11:re-establishing,
+15:u12:negotiated,,
+14:u13:previously,
+7:u22:neg,
+8:u23:nego,
+16:u00:established,,
+19:u02:re-establishing,
+15:u03:negotiated,,
+14:u04:previously,
+13:u06:[RFC4583],
+11:u08:Generic,
+14:u03:subsequent,
+14:u04:negotiated,
+7:u05:For,
+19:u10:re-establishing,
+15:u11:negotiated,,
+14:u12:previously,
+13:u14:[rfc4583],
+8:u23:prev,
+19:u01:re-establishing,
+15:u02:negotiated,,
+14:u03:previously,
+13:u05:[RFC4583],
+17:u08:Establishment,
+14:u02:subsequent,
+14:u03:negotiated,
+7:u04:For,
+15:u10:negotiated,,
+14:u11:previously,
+13:u13:[rfc4583],
+19:u00:re-establishing,
+15:u01:negotiated,,
+14:u02:previously,
+13:u04:[RFC4583],
+11:u07:Generic,
+14:u01:subsequent,
+14:u02:negotiated,
+7:u03:For,
+9:u08:(ICE),
+14:u10:previously,
+13:u12:[rfc4583],
+15:u00:negotiated,,
+14:u01:previously,
+13:u03:[RFC4583],
+11:u06:Generic,
+17:u07:Establishment,
+14:u00:subsequent,
+14:u01:negotiated,
+7:u02:For,
+9:u07:(ICE),
+13:u11:[rfc4583],
+11:u14:generic,
+14:u00:previously,
+13:u02:[RFC4583],
+11:u05:Generic,
+17:u06:Establishment,
+14:u00:negotiated,
+7:u01:For,
+9:u06:(ICE),
+13:u10:[rfc4583],
+11:u13:generic,
+17:u14:establishment,
+13:u01:[RFC4583],
+11:u04:Generic,
+17:u05:Establishment,
+7:u00:For,
+9:u05:(ICE),
+11:u12:generic,
+17:u13:establishment,
+6:u21:Ge,
+7:u22:Gen,
+8:u23:Gene,
+15:uI2:()[-.----].,
+13:u00:[RFC4583],
+11:u03:Generic,
+17:u04:Establishment,
+9:u08:Based,
+9:u04:(ICE),
+11:u11:generic,
+17:u12:establishment,
+6:u21:Es,
+7:u22:Est,
+8:u23:Esta,
+15:uI1:()[-.----].,
+11:u02:Generic,
+17:u03:Establishment,
+9:u03:(ICE),
+11:u10:generic,
+17:u11:establishment,
+15:uI0:()[-.----].,
+7:uI2://.,
+11:u01:Generic,
+17:u02:Establishment,
+9:u07:Based,
+9:u02:(ICE),
+9:u08:treat,
+17:u10:establishment,
+7:uI1://.,
+11:u00:Generic,
+17:u01:Establishment,
+9:u06:Based,
+9:u08:Thus,,
+9:u01:(ICE),
+9:u07:treat,
+7:u08:top,
+9:u14:based,
+7:uI0://.,
+17:u00:Establishment,
+9:u05:Based,
+8:u08:even,
+9:u00:(ICE),
+9:u06:treat,
+7:u07:top,
+9:u08:there,
+9:u13:based,
+12:uI2:[-.---],,
+9:u04:Based,
+9:u07:Thus,,
+9:u05:treat,
+7:u06:top,
+9:u07:there,
+6:u08:if,
+9:u12:based,
+6:u21:Ba,
+7:u22:Bas,
+8:u23:Base,
+12:uI1:[-.---],,
+9:u03:Based,
+9:u06:Thus,,
+8:u07:even,
+9:u04:treat,
+7:u05:top,
+9:u06:there,
+6:u07:if,
+11:u08:shifted,
+9:u11:based,
+9:u14:thus,,
+12:uI0:[-.---],,
+9:u02:Based,
+9:u05:Thus,,
+8:u06:even,
+10:u08:added,,
+9:u03:treat,
+7:u04:top,
+9:u05:there,
+6:u06:if,
+11:u07:shifted,
+9:u10:based,
+9:u13:thus,,
+8:u14:even,
+9:u01:Based,
+9:u04:Thus,,
+8:u05:even,
+9:u02:treat,
+7:u03:top,
+9:u04:there,
+6:u05:if,
+11:u06:shifted,
+8:u08:they,
+9:u12:thus,,
+8:u13:even,
+7:u22:Thu,
+8:u23:Thus,
+9:u00:Based,
+9:u03:Thus,,
+8:u04:even,
+10:u07:added,,
+9:u01:treat,
+7:u02:top,
+9:u03:there,
+6:u04:if,
+11:u05:shifted,
+8:u07:they,
+9:u11:thus,,
+8:u12:even,
+6:u21:ev,
+7:u22:eve,
+8:u23:even,
+9:u02:Thus,,
+8:u03:even,
+10:u06:added,,
+9:u00:treat,
+7:u01:top,
+9:u02:there,
+6:u03:if,
+11:u04:shifted,
+8:u06:they,
+9:u10:thus,,
+8:u11:even,
+10:u14:added,,
+9:u01:Thus,,
+8:u02:even,
+10:u05:added,,
+7:u00:top,
+9:u01:there,
+6:u02:if,
+11:u03:shifted,
+8:u05:they,
+7:u08:13],
+8:u10:even,
+10:u13:added,,
+9:u00:Thus,,
+8:u01:even,
+10:u04:added,,
+9:u00:there,
+6:u01:if,
+11:u02:shifted,
+8:u04:they,
+7:u07:13],
+10:u12:added,,
+6:u21:ad,
+7:u22:add,
+8:u23:adde,
+8:u00:even,
+10:u03:added,,
+6:u00:if,
+11:u01:shifted,
+8:u03:they,
+7:u06:13],
+10:u11:added,,
+10:u02:added,,
+11:u00:shifted,
+8:u02:they,
+7:u05:13],
+10:u10:added,,
+10:u01:added,,
+14:u08:endpoints,,
+8:u01:they,
+7:u04:13],
+10:u00:added,,
+11:u08:support,
+8:u00:they,
+7:u03:13],
+7:u08:all,
+14:u07:endpoints,,
+7:u02:13],
+7:u07:all,
+14:u06:endpoints,,
+11:u07:support,
+7:u01:13],
+7:u06:all,
+14:u14:endpoints,,
+14:u05:endpoints,,
+11:u06:support,
+13:u08:candidate,
+7:u00:13],
+7:u05:all,
+11:u08:stream,,
+14:u13:endpoints,,
+11:u14:support,
+7:uI2:,--,
+14:u04:endpoints,,
+11:u05:support,
+7:u04:all,
+11:u07:stream,,
+10:u08:SHOULD,
+14:u12:endpoints,,
+11:u13:support,
+7:uI1:,--,
+14:u03:endpoints,,
+11:u04:support,
+13:u07:candidate,
+7:u03:all,
+11:u06:stream,,
+10:u07:SHOULD,
+14:u11:endpoints,,
+11:u12:support,
+7:u22:sup,
+8:u23:supp,
+7:uI0:,--,
+14:u02:endpoints,,
+11:u03:support,
+13:u06:candidate,
+7:u02:all,
+11:u05:stream,,
+10:u06:SHOULD,
+14:u10:endpoints,,
+11:u11:support,
+13:u14:candidate,
+14:u01:endpoints,,
+11:u02:support,
+13:u05:candidate,
+7:u01:all,
+11:u04:stream,,
+10:u05:SHOULD,
+14:u08:candidate,,
+11:u10:support,
+13:u13:candidate,
+14:u00:endpoints,,
+11:u01:support,
+13:u04:candidate,
+17:u08:TCP/DTLS/BFCP,
+7:u00:all,
+11:u03:stream,,
+10:u04:SHOULD,
+14:u07:candidate,,
+13:u12:candidate,
+7:u22:can,
+8:u23:cand,
+7:uI2:,'',
+11:u00:support,
+13:u03:candidate,
+11:u02:stream,,
+10:u03:SHOULD,
+14:u06:candidate,,
+13:u11:candidate,
+11:u14:default,
+7:uI1:,'',
+9:uI2:'//'.,
+13:u02:candidate,
+17:u07:TCP/DTLS/BFCP,
+11:u01:stream,,
+10:u02:SHOULD,
+14:u05:candidate,,
+13:u10:candidate,
+11:u13:default,
+7:uI0:,'',
+9:uI1:'//'.,
+12:uI2:,'''//'.,
+13:u01:candidate,
+17:u06:TCP/DTLS/BFCP,
+15:u08:negotiating,
+11:u00:stream,,
+10:u01:SHOULD,
+14:u04:candidate,,
+11:u12:default,
+17:u14:tcp/dtls/bfcp,
+8:u23:defa,
+9:uI0:'//'.,
+12:uI1:,'''//'.,
+7:uI2:://,
+13:u00:candidate,
+17:u05:TCP/DTLS/BFCP,
+10:u00:SHOULD,
+14:u03:candidate,,
+11:u11:default,
+17:u13:tcp/dtls/bfcp,
+12:uI0:,'''//'.,
+7:uI1:://,
+17:u04:TCP/DTLS/BFCP,
+15:u07:negotiating,
+14:u02:candidate,,
+11:u10:default,
+17:u12:tcp/dtls/bfcp,
+7:uI0:://,
+17:u03:TCP/DTLS/BFCP,
+15:u06:negotiating,
+14:u01:candidate,,
+17:u11:tcp/dtls/bfcp,
+15:u14:negotiating,
+7:uI2:/[],
+17:u02:TCP/DTLS/BFCP,
+15:u05:negotiating,
+14:u08:explicitly,
+14:u00:candidate,,
+17:u10:tcp/dtls/bfcp,
+15:u13:negotiating,
+8:u14:dtls,
+7:uI1:/[],
+17:u01:TCP/DTLS/BFCP,
+15:u04:negotiating,
+14:u08:describing,
+10:u08:stated,
+15:u12:negotiating,
+8:u13:dtls,
+7:u14:for,
+7:uI0:/[],
+17:u00:TCP/DTLS/BFCP,
+15:u03:negotiating,
+14:u07:explicitly,
+10:u07:stated,
+15:u11:negotiating,
+8:u12:dtls,
+7:u13:for,
+6:u21:DT,
+7:u22:DTL,
+8:u23:DTLS,
+15:u02:negotiating,
+14:u06:explicitly,
+14:u07:describing,
+17:u08:independently,
+10:u06:stated,
+12:u08:sections,
+15:u10:negotiating,
+8:u11:dtls,
+7:u12:for,
+14:u14:explicitly,
+7:u22:for,
+7:u23:for,
+15:u01:negotiating,
+14:u05:explicitly,
+14:u06:describing,
+10:u08:Within,
+10:u05:stated,
+12:u07:sections,
+8:u10:dtls,
+7:u11:for,
+14:u13:explicitly,
+14:u14:describing,
+15:u00:negotiating,
+14:u04:explicitly,
+14:u05:describing,
+17:u07:independently,
+10:u08:within,
+10:u04:stated,
+12:u06:sections,
+7:u10:for,
+14:u12:explicitly,
+14:u13:describing,
+7:u14:'m',
+14:u03:explicitly,
+14:u04:describing,
+17:u06:independently,
+10:u07:Within,
+10:u03:stated,
+12:u05:sections,
+14:u11:explicitly,
+14:u12:describing,
+7:u13:'m',
+17:u14:independently,
+14:u02:explicitly,
+14:u03:describing,
+17:u05:independently,
+10:u06:Within,
+10:u07:within,
+13:u08:indicates,
+10:u02:stated,
+12:u04:sections,
+9:u08:(SIP),
+14:u10:explicitly,
+14:u11:describing,
+7:u12:'m',
+17:u13:independently,
+10:u14:within,
+6:u21:'m,
+7:u22:'m',
+7:u23:'m',
+14:u01:explicitly,
+14:u02:describing,
+17:u04:independently,
+10:u05:Within,
+10:u06:within,
+11:u08:stream.,
+10:u01:stated,
+12:u03:sections,
+9:u07:(SIP),
+14:u10:describing,
+7:u11:'m',
+17:u12:independently,
+10:u13:within,
+7:u22:ind,
+8:u23:inde,
+8:uI2:,'',,
+14:u00:explicitly,
+14:u01:describing,
+17:u03:independently,
+10:u04:Within,
+10:u05:within,
+13:u07:indicates,
+6:u08:If,
+10:u00:stated,
+12:u02:sections,
+9:u06:(SIP),
+7:u10:'m',
+17:u11:independently,
+10:u12:within,
+6:u21:Wi,
+7:u22:Wit,
+8:u23:With,
+8:uI1:,'',,
+7:uI2:(..,
+14:u00:describing,
+17:u02:independently,
+10:u03:Within,
+10:u04:within,
+13:u06:indicates,
+11:u07:stream.,
+19:u08:'UDP/TLS/BFCP',,
+12:u01:sections,
+9:u05:(SIP),
+17:u10:independently,
+10:u11:within,
+13:u14:indicates,
+8:uI0:,'',,
+7:uI1:(..,
+9:uI2:()[]),
+17:u01:independently,
+10:u02:Within,
+10:u03:within,
+13:u05:indicates,
+11:u06:stream.,
+6:u07:If,
+12:u00:sections,
+9:u04:(SIP),
+10:u10:within,
+13:u13:indicates,
+11:u14:stream.,
+7:uI0:(..,
+9:uI1:()[]),
+17:u00:independently,
+10:u01:Within,
+10:u02:within,
+13:u04:indicates,
+11:u05:stream.,
+6:u06:If,
+19:u07:'UDP/TLS/BFCP',,
+9:u03:(SIP),
+13:u12:indicates,
+11:u13:stream.,
+6:u14:if,
+8:u23:indi,
+9:uI0:()[]),
+10:u00:Within,
+10:u01:within,
+13:u03:indicates,
+11:u04:stream.,
+6:u05:If,
+19:u06:'UDP/TLS/BFCP',,
+8:u08:TCP',
+9:u02:(SIP),
+13:u11:indicates,
+11:u12:stream.,
+6:u13:if,
+19:u14:'udp/tls/bfcp',,
+17:uI2:'''''//','//',
+6:uI2:13,
+10:u00:within,
+13:u02:indicates,
+11:u03:stream.,
+6:u04:If,
+19:u05:'UDP/TLS/BFCP',,
+9:u01:(SIP),
+13:u10:indicates,
+11:u11:stream.,
+6:u12:if,
+19:u13:'udp/tls/bfcp',,
+6:u21:If,
+6:u22:If,
+6:u23:If,
+17:uI1:'''''//','//',
+9:uI2:'//',,
+6:uI1:13,
+13:u01:indicates,
+11:u02:stream.,
+6:u03:If,
+19:u04:'UDP/TLS/BFCP',,
+8:u07:TCP',
+9:u00:(SIP),
+13:u08:according,
+11:u10:stream.,
+6:u11:if,
+19:u12:'udp/tls/bfcp',,
+17:uI0:'''''//','//',
+9:uI1:'//',,
+6:uI0:13,
+13:u00:indicates,
+11:u01:stream.,
+6:u02:If,
+19:u03:'UDP/TLS/BFCP',,
+8:u06:TCP',
+20:u08:'TCP/DTLS/BFCP',,
+13:u07:according,
+6:u10:if,
+19:u11:'udp/tls/bfcp',,
+8:u14:tcp',
+9:uI0:'//',,
+18:uI2:'''/','//','//,
+11:u00:stream.,
+6:u01:If,
+19:u02:'UDP/TLS/BFCP',,
+8:u05:TCP',
+13:u06:according,
+19:u10:'udp/tls/bfcp',,
+8:u13:tcp',
+18:uI1:'''/','//','//,
+12:uI2:''//','',
+6:u00:If,
+19:u01:'UDP/TLS/BFCP',,
+8:u04:TCP',
+20:u07:'TCP/DTLS/BFCP',,
+13:u05:according,
+8:u12:tcp',
+8:u23:TCP',
+18:uI0:'''/','//','//,
+12:uI1:''//','',
+19:u00:'UDP/TLS/BFCP',,
+8:u03:TCP',
+20:u06:'TCP/DTLS/BFCP',,
+13:u04:according,
+8:u11:tcp',
+20:u14:'tcp/dtls/bfcp',,
+12:uI0:''//','',
+14:uI2:'''/','//',
+8:u02:TCP',
+20:u05:'TCP/DTLS/BFCP',,
+13:u03:according,
+8:u10:tcp',
+20:u13:'tcp/dtls/bfcp',,
+14:uI1:'''/','//',
+11:uI2:'//','',
+8:u01:TCP',
+20:u04:'TCP/DTLS/BFCP',,
+13:u02:according,
+20:u12:'tcp/dtls/bfcp',,
+14:uI0:'''/','//',
+11:uI1:'//','',
+8:u00:TCP',
+20:u03:'TCP/DTLS/BFCP',,
+13:u01:according,
+20:u11:'tcp/dtls/bfcp',,
+11:uI0:'//','',
+8:uI2::-[],
+20:u02:'TCP/DTLS/BFCP',,
+13:u00:according,
+7:u08:14],
+20:u10:'tcp/dtls/bfcp',,
+8:uI1::-[],
+20:u01:'TCP/DTLS/BFCP',,
+7:u07:14],
+8:uI0::-[],
+20:u00:'TCP/DTLS/BFCP',,
+7:u06:14],
+7:u05:14],
+7:u04:14],
+7:u03:14],
+7:u02:14],
+7:u01:14],
+7:u00:14],
+13:u08:addition,,
+5:uG2:7,
+5:u08:o,
+13:u07:addition,,
+12:u08:'s-only',
+5:uG1:7,
+11:uI2:''(.)'',
+12:u08:section;,
+13:u06:addition,,
+12:u07:'s-only',
+5:uG0:7,
+11:uI1:''(.)'',
+10:uI2:(.)''.,
+5:u07:o,
+13:u05:addition,,
+12:u06:'s-only',
+11:uI0:''(.)'',
+10:uI1:(.)''.,
+5:u06:o,
+12:u07:section;,
+13:u04:addition,,
+12:u05:'s-only',
+5:u14:o,
+10:uI0:(.)''.,
+12:uI2:'-''-',:,
+5:u05:o,
+12:u06:section;,
+13:u03:addition,,
+12:u04:'s-only',
+5:u13:o,
+12:u14:section;,
+12:uI1:'-''-',:,
+5:u04:o,
+12:u05:section;,
+13:u02:addition,,
+12:u03:'s-only',
+5:u12:o,
+12:u13:section;,
+5:u21:o,
+5:u22:o,
+5:u23:o,
+12:uI0:'-''-',:,
+5:uI2:;,
+5:u03:o,
+12:u04:section;,
+13:u01:addition,,
+12:u02:'s-only',
+5:u11:o,
+12:u12:section;,
+5:uI1:;,
+5:u02:o,
+12:u03:section;,
+13:u00:addition,,
+12:u01:'s-only',
+5:u10:o,
+12:u11:section;,
+5:uI0:;,
+5:u01:o,
+12:u02:section;,
+12:u00:'s-only',
+12:u10:section;,
+5:u00:o,
+12:u01:section;,
+9:u08:'c-s',
+12:u00:section;,
+12:uI2:''([])'',
+9:u07:'c-s',
+12:uI1:''([])'',
+9:u06:'c-s',
+9:u14:'c-s',
+12:uI0:''([])'',
+7:uI2::'',
+9:u05:'c-s',
+9:u13:'c-s',
+7:uI1::'',
+14:uI2:'-','-''-',
+9:u04:'c-s',
+9:u12:'c-s',
+6:u21:'c,
+7:u22:'c-,
+8:u23:'c-s,
+7:uI0::'',
+14:uI1:'-','-''-',
+9:u03:'c-s',
+9:u11:'c-s',
+14:uI0:'-','-''-',
+7:uI2:(.),
+9:u02:'c-s',
+9:u10:'c-s',
+6:u21:if,
+6:u22:if,
+6:u23:if,
+7:uI1:(.),
+9:u01:'c-s',
+7:uI0:(.),
+9:u00:'c-s',
+13:u08:versions,,
+9:u08:5.5).,
+12:u08:answerer,
+9:u07:5.5).,
+13:u07:versions,,
+9:u06:5.5).,
+11:u08:accepts,
+13:u06:versions,,
+12:u07:answerer,
+13:u08:identical,
+9:u05:5.5).,
+11:u07:accepts,
+13:u14:versions,,
+7:u22:one,
+7:u23:one,
+8:uI2:(.).,
+13:u05:versions,,
+12:u06:answerer,
+9:u04:5.5).,
+11:u06:accepts,
+13:u13:versions,,
+12:u14:answerer,
+8:uI1:(.).,
+9:uI2:,''.,,
+13:u04:versions,,
+12:u05:answerer,
+13:u07:identical,
+12:u08:versions,
+9:u03:5.5).,
+11:u05:accepts,
+13:u12:versions,,
+12:u13:answerer,
+8:uI0:(.).,
+9:uI1:,''.,,
+8:uI2:'',:,
+13:u03:versions,,
+12:u04:answerer,
+13:u06:identical,
+9:u02:5.5).,
+11:u04:accepts,
+13:u08:indicated,
+13:u11:versions,,
+12:u12:answerer,
+13:u14:identical,
+9:uI0:,''.,,
+8:uI1:'',:,
+13:u02:versions,,
+12:u03:answerer,
+13:u05:identical,
+12:u07:versions,
+9:u01:5.5).,
+11:u03:accepts,
+13:u07:indicated,
+13:u10:versions,,
+12:u11:answerer,
+13:u13:identical,
+8:uI0:'',:,
+9:uI2:''[];,
+13:u01:versions,,
+12:u02:answerer,
+13:u04:identical,
+12:u06:versions,
+9:u00:5.5).,
+11:u02:accepts,
+13:u06:indicated,
+12:u10:answerer,
+13:u12:identical,
+12:u14:versions,
+6:u21:id,
+7:u22:ide,
+8:u23:iden,
+9:uI1:''[];,
+13:u00:versions,,
+12:u01:answerer,
+13:u03:identical,
+12:u05:versions,
+11:u01:accepts,
+13:u05:indicated,
+9:u08:MUST,,
+13:u11:identical,
+12:u13:versions,
+9:uI0:''[];,
+12:u00:answerer,
+13:u02:identical,
+12:u04:versions,
+11:u00:accepts,
+13:u04:indicated,
+9:u07:MUST,,
+15:u08:'floorctrl',
+13:u10:identical,
+12:u12:versions,
+13:u01:identical,
+12:u03:versions,
+13:u03:indicated,
+9:u06:MUST,,
+15:u07:'floorctrl',
+12:u11:versions,
+13:u00:identical,
+12:u02:versions,
+13:u02:indicated,
+9:u05:MUST,,
+15:u06:'floorctrl',
+12:u10:versions,
+5:u14:a,
+12:u01:versions,
+13:u01:indicated,
+9:u04:MUST,,
+15:u05:'floorctrl',
+7:u08:15],
+5:u13:a,
+12:u00:versions,
+13:u00:indicated,
+9:u03:MUST,,
+15:u04:'floorctrl',
+7:u07:15],
+5:u12:a,
+5:u21:a,
+5:u22:a,
+5:u23:a,
+9:u02:MUST,,
+15:u03:'floorctrl',
+7:u06:15],
+5:u11:a,
+9:u01:MUST,,
+15:u02:'floorctrl',
+7:u05:15],
+5:u10:a,
+9:u00:MUST,,
+15:u01:'floorctrl',
+7:u04:15],
+15:u00:'floorctrl',
+7:u03:15],
+7:u02:15],
+7:u01:15],
+7:u00:15],
+9:uI2:'-',:,
+9:uI1:'-',:,
+9:uI2:'''';,
+9:uI0:'-',:,
+9:uI1:'''';,
+9:uI0:'''';,
+15:u14:'floorctrl',
+7:uI2::[],
+15:u13:'floorctrl',
+7:uI1::[],
+9:uI2:'''',,
+7:u08:(or,
+15:u12:'floorctrl',
+6:u21:'f,
+7:u22:'fl,
+8:u23:'flo,
+7:uI0::[],
+9:uI1:'''',,
+15:u08:connection;,
+20:u08:re-established),,
+15:u11:'floorctrl',
+9:uI0:'''',,
+6:uI2:,:,
+7:u07:(or,
+20:u07:re-established),,
+15:u10:'floorctrl',
+6:uI1:,:,
+7:u06:(or,
+15:u07:connection;,
+20:u06:re-established),,
+7:u14:(or,
+6:uI0:,:,
+7:u05:(or,
+15:u06:connection;,
+20:u05:re-established),,
+7:u13:(or,
+15:u14:connection;,
+8:uI2:(-),,
+7:u04:(or,
+15:u05:connection;,
+20:u04:re-established),,
+7:u12:(or,
+15:u13:connection;,
+6:u21:(o,
+7:u22:(or,
+7:u23:(or,
+8:uI1:(-),,
+7:u03:(or,
+15:u04:connection;,
+20:u03:re-established),,
+7:u08:(by,
+7:u11:(or,
+15:u12:connection;,
+8:uI0:(-),,
+7:uI2:,,/,
+7:u02:(or,
+15:u03:connection;,
+10:u08:assign,
+20:u02:re-established),,
+7:u07:(by,
+7:u10:(or,
+15:u11:connection;,
+7:uI1:,,/,
+7:u01:(or,
+15:u02:connection;,
+20:u01:re-established),,
+7:u06:(by,
+15:u10:connection;,
+7:uI0:,,/,
+9:uI2:(-),/,
+7:u00:(or,
+15:u01:connection;,
+10:u07:assign,
+20:u00:re-established),,
+7:u05:(by,
+9:uI1:(-),/,
+15:u00:connection;,
+10:u06:assign,
+12:u08:section.,
+7:u04:(by,
+10:u14:assign,
+9:uI0:(-),/,
+10:u05:assign,
+7:u03:(by,
+10:u13:assign,
+10:u04:assign,
+12:u07:section.,
+7:u02:(by,
+10:u12:assign,
+7:u22:ass,
+8:u23:assi,
+10:u03:assign,
+12:u06:section.,
+7:u01:(by,
+10:u11:assign,
+12:u14:section.,
+10:u02:assign,
+12:u05:section.,
+7:u00:(by,
+12:u08:non-zero,
+10:u10:assign,
+12:u13:section.,
+10:u01:assign,
+12:u04:section.,
+12:u07:non-zero,
+12:u12:section.,
+10:u00:assign,
+12:u03:section.,
+12:u06:non-zero,
+12:u11:section.,
+12:u02:section.,
+12:u05:non-zero,
+12:u10:section.,
+8:uI2:-,,:,
+12:u01:section.,
+12:u04:non-zero,
+8:uI1:-,,:,
+12:u00:section.,
+12:u03:non-zero,
+8:uI0:-,,:,
+12:u02:non-zero,
+12:u01:non-zero,
+12:u00:non-zero,
+5:uG2:8,
+5:uG1:8,
+5:uG0:8,
+7:u08:16],
+7:u07:16],
+7:u06:16],
+7:u05:16],
+7:u04:16],
+7:u03:16],
+7:u02:16],
+7:u01:16],
+7:u00:16],
+13:u08:offerer),,
+13:u07:offerer),,
+8:uI2:(..,,
+13:u06:offerer),,
+8:uI1:(..,,
+13:u05:offerer),,
+12:u14:tls/dtls,
+8:uI0:(..,,
+6:uI2:),,
+13:u04:offerer),,
+12:u13:tls/dtls,
+6:uI1:),,
+8:uI2:/''.,
+13:u03:offerer),,
+9:u08:10.1,,
+12:u12:tls/dtls,
+6:u21:TL,
+7:u22:TLS,
+8:u23:TLS/,
+6:uI0:),,
+8:uI1:/''.,
+8:u08:does,
+13:u02:offerer),,
+9:u07:10.1,,
+12:u11:tls/dtls,
+8:uI0:/''.,
+13:u01:offerer),,
+9:u06:10.1,,
+12:u10:tls/dtls,
+8:u07:does,
+15:u08:"existing",,
+13:u00:offerer),,
+9:u05:10.1,,
+7:uI2:.,:,
+8:u06:does,
+9:u04:10.1,,
+8:u14:does,
+7:uI1:.,:,
+8:u05:does,
+15:u07:"existing",,
+9:u03:10.1,,
+8:u13:does,
+7:uI0:.,:,
+8:u04:does,
+15:u06:"existing",,
+9:u02:10.1,,
+8:u12:does,
+15:u14:"existing",,
+7:u22:doe,
+8:u23:does,
+8:u03:does,
+15:u05:"existing",,
+14:u08:[RFC3264].,
+9:u01:10.1,,
+8:u11:does,
+15:u13:"existing",,
+10:uI2:"",'';,
+8:u02:does,
+15:u04:"existing",,
+9:u00:10.1,,
+8:u10:does,
+15:u12:"existing",,
+11:u14:stream,,
+6:u21:"e,
+7:u22:"ex,
+8:u23:"exi,
+10:uI1:"",'';,
+8:u01:does,
+15:u03:"existing",,
+14:u07:[RFC3264].,
+15:u11:"existing",,
+11:u13:stream,,
+14:u14:associated,
+10:uI0:"",'';,
+8:u00:does,
+15:u02:"existing",,
+14:u06:[RFC3264].,
+15:u08:description,
+15:u10:"existing",,
+11:u12:stream,,
+14:u13:associated,
+14:u14:[rfc3264].,
+15:u01:"existing",,
+14:u05:[RFC3264].,
+11:u11:stream,,
+14:u12:associated,
+14:u13:[rfc3264].,
+8:u23:asso,
+15:u00:"existing",,
+14:u04:[RFC3264].,
+15:u07:description,
+9:u08:their,
+11:u10:stream,,
+14:u11:associated,
+14:u12:[rfc3264].,
+14:u03:[RFC3264].,
+15:u06:description,
+9:u07:their,
+14:u10:associated,
+14:u11:[rfc3264].,
+14:u02:[RFC3264].,
+15:u05:description,
+9:u06:their,
+14:u10:[rfc3264].,
+6:u21:Fo,
+7:u22:For,
+7:u23:For,
+14:u01:[RFC3264].,
+15:u04:description,
+9:u05:their,
+14:u00:[RFC3264].,
+15:u03:description,
+9:u04:their,
+15:u02:description,
+9:u03:their,
+7:u08:17],
+15:u01:description,
+9:u02:their,
+7:u07:17],
+15:u00:description,
+9:u01:their,
+7:u06:17],
+9:u00:their,
+7:u05:17],
+19:u08:a=setup:actpass,
+7:u04:17],
+20:u08:a=connection:new,
+7:u03:17],
+19:u07:a=setup:actpass,
+25:u08:a=fingerprint:sha-256,
+7:u02:17],
+19:u06:a=setup:actpass,
+20:u07:a=connection:new,
+52:u08:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+7:u01:17],
+5:u08:\,
+19:u14:a=setup:actpass,
+19:u05:a=setup:actpass,
+20:u06:a=connection:new,
+25:u07:a=fingerprint:sha-256,
+51:u08:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+7:u00:17],
+5:u07:\,
+19:u13:a=setup:actpass,
+20:u14:a=connection:new,
+19:u04:a=setup:actpass,
+20:u05:a=connection:new,
+25:u06:a=fingerprint:sha-256,
+52:u07:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+5:u06:\,
+19:u12:a=setup:actpass,
+20:u13:a=connection:new,
+25:u14:a=fingerprint:sha-256,
+7:u22:a=s,
+8:u23:a=se,
+19:u03:a=setup:actpass,
+20:u04:a=connection:new,
+25:u05:a=fingerprint:sha-256,
+52:u06:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u07:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u08:a=confid:4321,
+5:u05:\,
+19:u11:a=setup:actpass,
+20:u12:a=connection:new,
+25:u13:a=fingerprint:sha-256,
+52:u14:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:,
+7:u22:a=c,
+8:u23:a=co,
+19:u02:a=setup:actpass,
+20:u03:a=connection:new,
+25:u04:a=fingerprint:sha-256,
+52:u05:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u06:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u08:a=userid:1234,
+5:u04:\,
+19:u10:a=setup:actpass,
+20:u11:a=connection:new,
+25:u12:a=fingerprint:sha-256,
+52:u13:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:,
+51:u14:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2,
+8:u23:a=fi,
+20:uI2:::::::::::::::::,
+6:uI2:16,
+19:u01:a=setup:actpass,
+20:u02:a=connection:new,
+25:u03:a=fingerprint:sha-256,
+52:u04:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u05:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u07:a=confid:4321,
+15:u08:a=floorid:1,
+5:u03:\,
+20:u10:a=connection:new,
+25:u11:a=fingerprint:sha-256,
+52:u12:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:,
+51:u13:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2,
+6:u21:19,
+7:u22:19:,
+8:u23:19:E,
+20:uI1:::::::::::::::::,
+19:uI2::::::::::::::::,
+6:uI1:16,
+19:u00:a=setup:actpass,
+20:u01:a=connection:new,
+25:u02:a=fingerprint:sha-256,
+52:u03:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u04:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u06:a=confid:4321,
+17:u07:a=userid:1234,
+15:u08:a=floorid:2,
+5:u02:\,
+12:u08:mstrm:10,
+25:u10:a=fingerprint:sha-256,
+52:u11:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:,
+51:u12:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2,
+17:u14:a=confid:4321,
+6:u21:BB,
+7:u22:BB:,
+8:u23:BB:0,
+20:uI0:::::::::::::::::,
+19:uI1::::::::::::::::,
+6:uI0:16,
+20:u00:a=connection:new,
+25:u01:a=fingerprint:sha-256,
+52:u02:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u03:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u05:a=confid:4321,
+17:u06:a=userid:1234,
+15:u07:a=floorid:1,
+15:u08:a=bfcpver:1,
+5:u01:\,
+12:u07:mstrm:10,
+12:u08:mstrm:11,
+52:u10:19:e2:1c:3b:4b:9f:81:e6:b8:5c:f4:a5:a8:d8:73:04:,
+51:u11:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2,
+17:u13:a=confid:4321,
+17:u14:a=userid:1234,
+19:uI0::::::::::::::::,
+25:u00:a=fingerprint:sha-256,
+52:u01:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u02:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u04:a=confid:4321,
+17:u05:a=userid:1234,
+15:u06:a=floorid:1,
+15:u07:a=floorid:2,
+11:u08:m=audio,
+5:u00:\,
+12:u06:mstrm:10,
+12:u07:mstrm:11,
+5:u08:2,
+51:u10:bb:05:2f:70:9f:04:a9:0e:05:e9:26:33:e8:70:88:a2,
+17:u12:a=confid:4321,
+17:u13:a=userid:1234,
+15:u14:a=floorid:1,
+5:uEL:1,
+52:u00:19:E2:1C:3B:4B:9F:81:E6:B8:5C:F4:A5:A8:D8:73:04:,
+51:u01:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u03:a=confid:4321,
+17:u04:a=userid:1234,
+15:u05:a=floorid:1,
+15:u06:a=floorid:2,
+15:u07:a=bfcpver:1,
+14:u08:a=label:10,
+12:u05:mstrm:10,
+12:u06:mstrm:11,
+5:u07:2,
+9:u08:50002,
+17:u11:a=confid:4321,
+17:u12:a=userid:1234,
+15:u13:a=floorid:1,
+15:u14:a=floorid:2,
+7:u22:a=u,
+8:u23:a=us,
+5:uE3:1,
+6:uI2:::,
+51:u00:BB:05:2F:70:9F:04:A9:0E:05:E9:26:33:E8:70:88:A2,
+17:u02:a=confid:4321,
+17:u03:a=userid:1234,
+15:u04:a=floorid:1,
+15:u05:a=floorid:2,
+15:u06:a=bfcpver:1,
+11:u07:m=audio,
+11:u08:m=video,
+12:u04:mstrm:10,
+12:u05:mstrm:11,
+5:u06:2,
+9:u07:50002,
+17:u10:a=confid:4321,
+17:u11:a=userid:1234,
+15:u12:a=floorid:1,
+15:u13:a=floorid:2,
+15:u14:a=bfcpver:1,
+6:uI1:::,
+17:u01:a=confid:4321,
+17:u02:a=userid:1234,
+15:u03:a=floorid:1,
+15:u04:a=floorid:2,
+15:u05:a=bfcpver:1,
+11:u06:m=audio,
+14:u07:a=label:10,
+14:u08:a=label:11,
+12:u03:mstrm:10,
+12:u04:mstrm:11,
+5:u05:2,
+9:u06:50002,
+9:u08:50004,
+17:u10:a=userid:1234,
+15:u11:a=floorid:1,
+15:u12:a=floorid:2,
+15:u13:a=bfcpver:1,
+11:u14:m=audio,
+6:uI0:::,
+17:u00:a=confid:4321,
+17:u01:a=userid:1234,
+15:u02:a=floorid:1,
+15:u03:a=floorid:2,
+15:u04:a=bfcpver:1,
+11:u05:m=audio,
+14:u06:a=label:10,
+11:u07:m=video,
+8:u08:Note,
+12:u02:mstrm:10,
+12:u03:mstrm:11,
+5:u04:2,
+9:u05:50002,
+9:u07:50004,
+15:u10:a=floorid:1,
+15:u11:a=floorid:2,
+15:u12:a=bfcpver:1,
+11:u13:m=audio,
+14:u14:a=label:10,
+7:u22:a=b,
+8:u23:a=bf,
+17:u00:a=userid:1234,
+15:u01:a=floorid:1,
+15:u02:a=floorid:2,
+15:u03:a=bfcpver:1,
+11:u04:m=audio,
+14:u05:a=label:10,
+11:u06:m=video,
+14:u07:a=label:11,
+10:u08:across,
+12:u01:mstrm:10,
+12:u02:mstrm:11,
+5:u03:2,
+9:u04:50002,
+9:u06:50004,
+15:u10:a=floorid:2,
+15:u11:a=bfcpver:1,
+11:u12:m=audio,
+14:u13:a=label:10,
+11:u14:m=video,
+8:u23:m=au,
+15:u00:a=floorid:1,
+15:u01:a=floorid:2,
+15:u02:a=bfcpver:1,
+11:u03:m=audio,
+14:u04:a=label:10,
+11:u05:m=video,
+14:u06:a=label:11,
+8:u07:Note,
+13:u08:character,
+12:u00:mstrm:10,
+12:u01:mstrm:11,
+5:u02:2,
+9:u03:50002,
+9:u05:50004,
+15:u10:a=bfcpver:1,
+11:u11:m=audio,
+14:u12:a=label:10,
+11:u13:m=video,
+14:u14:a=label:11,
+7:u22:a=l,
+8:u23:a=la,
+15:u00:a=floorid:2,
+15:u01:a=bfcpver:1,
+11:u02:m=audio,
+14:u03:a=label:10,
+11:u04:m=video,
+14:u05:a=label:11,
+8:u06:Note,
+10:u07:across,
+13:u08:backslash,
+12:u00:mstrm:11,
+5:u01:2,
+9:u02:50002,
+9:u04:50004,
+9:u08:marks,
+11:u10:m=audio,
+14:u11:a=label:10,
+11:u12:m=video,
+14:u13:a=label:11,
+8:u14:note,
+7:u22:m=v,
+8:u23:m=vi,
+15:u00:a=bfcpver:1,
+11:u01:m=audio,
+14:u02:a=label:10,
+11:u03:m=video,
+14:u04:a=label:11,
+8:u05:Note,
+10:u06:across,
+13:u07:character,
+10:u08:actual,
+5:u00:2,
+9:u01:50002,
+9:u03:50004,
+9:u07:marks,
+14:u10:a=label:10,
+11:u11:m=video,
+14:u12:a=label:11,
+8:u13:note,
+10:u14:across,
+11:u00:m=audio,
+14:u01:a=label:10,
+11:u02:m=video,
+14:u03:a=label:11,
+8:u04:Note,
+10:u05:across,
+13:u06:character,
+13:u07:backslash,
+9:u00:50002,
+9:u02:50004,
+9:u06:marks,
+11:u10:m=video,
+14:u11:a=label:11,
+8:u12:note,
+10:u13:across,
+13:u14:character,
+14:u00:a=label:10,
+11:u01:m=video,
+14:u02:a=label:11,
+8:u03:Note,
+10:u04:across,
+13:u05:character,
+13:u06:backslash,
+10:u07:actual,
+9:u01:50004,
+9:u05:marks,
+14:u10:a=label:11,
+8:u11:note,
+10:u12:across,
+13:u13:character,
+13:u14:backslash,
+6:u21:ac,
+7:u22:acr,
+8:u23:acro,
+11:u00:m=video,
+14:u01:a=label:11,
+8:u02:Note,
+10:u03:across,
+13:u04:character,
+13:u05:backslash,
+10:u06:actual,
+18:u08:a=setup:active,
+9:u00:50004,
+9:u04:marks,
+8:u10:note,
+10:u11:across,
+13:u12:character,
+13:u13:backslash,
+10:u14:actual,
+6:u21:ch,
+7:u22:cha,
+8:u23:char,
+14:u00:a=label:11,
+8:u01:Note,
+10:u02:across,
+13:u03:character,
+13:u04:backslash,
+10:u05:actual,
+9:u03:marks,
+10:u10:across,
+13:u11:character,
+13:u12:backslash,
+10:u13:actual,
+6:u21:ba,
+7:u22:bac,
+8:u23:back,
+8:u00:Note,
+10:u01:across,
+13:u02:character,
+13:u03:backslash,
+10:u04:actual,
+18:u07:a=setup:active,
+9:u02:marks,
+13:u10:character,
+13:u11:backslash,
+10:u12:actual,
+7:u22:act,
+8:u23:actu,
+10:u00:across,
+13:u01:character,
+13:u02:backslash,
+10:u03:actual,
+18:u06:a=setup:active,
+52:u08:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+9:u01:marks,
+13:u10:backslash,
+10:u11:actual,
+18:u14:a=setup:active,
+13:u00:character,
+13:u01:backslash,
+10:u02:actual,
+18:u05:a=setup:active,
+51:u08:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+9:u00:marks,
+10:u10:actual,
+18:u13:a=setup:active,
+13:u00:backslash,
+10:u01:actual,
+18:u04:a=setup:active,
+52:u07:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+18:u12:a=setup:active,
+10:u00:actual,
+18:u03:a=setup:active,
+52:u06:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u07:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+18:u11:a=setup:active,
+52:u14:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:,
+18:u02:a=setup:active,
+52:u05:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u06:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+18:u10:a=setup:active,
+52:u13:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:,
+51:u14:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08,
+18:u01:a=setup:active,
+52:u04:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u05:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+9:u08:55000,
+52:u12:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:,
+51:u13:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08,
+6:u21:6B,
+7:u22:6B:,
+8:u23:6B:8,
+18:u00:a=setup:active,
+52:u03:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u04:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+5:u08:A,
+9:u07:55000,
+9:u08:55002,
+52:u11:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:,
+51:u12:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08,
+6:u21:DC,
+7:u22:DC:,
+8:u23:DC:B,
+52:u02:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u03:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+9:u08:where,
+9:u06:55000,
+9:u07:55002,
+11:u08:similar,
+52:u10:6b:8b:f0:65:5f:78:e2:51:3b:ac:6f:f3:3f:46:1b:35:,
+51:u11:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08,
+52:u01:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u02:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+5:u07:A,
+9:u05:55000,
+9:u06:55002,
+11:u07:similar,
+51:u10:dc:b8:5f:64:1a:24:c2:43:f0:a1:58:d0:a1:2c:19:08,
+52:u00:6B:8B:F0:65:5F:78:E2:51:3B:AC:6F:F3:3F:46:1B:35:,
+51:u01:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+5:u06:A,
+9:u07:where,
+9:u04:55000,
+9:u05:55002,
+11:u06:similar,
+51:u00:DC:B8:5F:64:1A:24:C2:43:F0:A1:58:D0:A1:2C:19:08,
+5:u05:A,
+9:u06:where,
+9:u03:55000,
+9:u04:55002,
+11:u05:similar,
+9:u14:where,
+5:u04:A,
+9:u05:where,
+9:u02:55000,
+9:u03:55002,
+11:u04:similar,
+7:u08:18],
+9:u13:where,
+5:u21:A,
+5:u22:A,
+5:u23:A,
+5:u03:A,
+9:u04:where,
+9:u01:55000,
+9:u02:55002,
+11:u03:similar,
+7:u07:18],
+9:u12:where,
+7:u22:whe,
+8:u23:wher,
+5:u02:A,
+9:u03:where,
+9:u00:55000,
+9:u01:55002,
+11:u02:similar,
+7:u06:18],
+9:u11:where,
+5:u01:A,
+9:u02:where,
+9:u00:55002,
+11:u01:similar,
+7:u05:18],
+9:u10:where,
+5:u00:A,
+9:u01:where,
+11:u00:similar,
+7:u04:18],
+9:u00:where,
+20:u08:a=dtls-id:abc3dl,
+7:u03:18],
+7:u02:18],
+20:u07:a=dtls-id:abc3dl,
+7:u01:18],
+20:u06:a=dtls-id:abc3dl,
+7:u00:18],
+20:u14:a=dtls-id:abc3dl,
+20:u05:a=dtls-id:abc3dl,
+20:u13:a=dtls-id:abc3dl,
+20:u04:a=dtls-id:abc3dl,
+20:u12:a=dtls-id:abc3dl,
+7:u22:a=d,
+8:u23:a=dt,
+20:u03:a=dtls-id:abc3dl,
+20:u11:a=dtls-id:abc3dl,
+20:u02:a=dtls-id:abc3dl,
+20:u10:a=dtls-id:abc3dl,
+20:u01:a=dtls-id:abc3dl,
+20:u00:a=dtls-id:abc3dl,
+22:u08:a=floorctrl:s-only,
+22:u07:a=floorctrl:s-only,
+22:u06:a=floorctrl:s-only,
+22:u14:a=floorctrl:s-only,
+22:u05:a=floorctrl:s-only,
+22:u13:a=floorctrl:s-only,
+22:u04:a=floorctrl:s-only,
+15:u08:a=bfcpver:2,
+22:u12:a=floorctrl:s-only,
+22:u03:a=floorctrl:s-only,
+22:u11:a=floorctrl:s-only,
+22:u02:a=floorctrl:s-only,
+15:u07:a=bfcpver:2,
+22:u10:a=floorctrl:s-only,
+22:u01:a=floorctrl:s-only,
+15:u06:a=bfcpver:2,
+9:u08:55004,
+15:u14:a=bfcpver:2,
+22:u00:a=floorctrl:s-only,
+15:u05:a=bfcpver:2,
+9:u07:55004,
+15:u13:a=bfcpver:2,
+15:u04:a=bfcpver:2,
+9:u06:55004,
+15:u12:a=bfcpver:2,
+15:u03:a=bfcpver:2,
+9:u08:BFCP,,
+9:u05:55004,
+15:u11:a=bfcpver:2,
+15:u02:a=bfcpver:2,
+9:u04:55004,
+8:u08:SDP,,
+15:u10:a=bfcpver:2,
+5:uG2:9,
+15:u01:a=bfcpver:2,
+9:u07:BFCP,,
+9:u03:55004,
+8:u07:SDP,,
+13:u08:[RFC8122],
+5:uG1:9,
+15:uI2:[-.--],[],/,
+15:u00:a=bfcpver:2,
+9:u06:BFCP,,
+9:u02:55004,
+8:u06:SDP,,
+13:u07:[RFC8122],
+9:u14:bfcp,,
+5:uG0:9,
+15:uI1:[-.--],[],/,
+9:u05:BFCP,,
+9:u01:55004,
+8:u05:SDP,,
+13:u06:[RFC8122],
+9:u08:using,
+9:u13:bfcp,,
+15:uI0:[-.--],[],/,
+12:uI2:,,/,.,[],
+9:u04:BFCP,,
+9:u00:55004,
+8:u04:SDP,,
+13:u05:[RFC8122],
+9:u07:using,
+9:u12:bfcp,,
+7:u14:tcp,
+12:uI1:,,/,.,[],
+9:u03:BFCP,,
+8:u03:SDP,,
+13:u04:[RFC8122],
+9:u06:using,
+9:u08:usage,
+9:u11:bfcp,,
+7:u13:tcp,
+12:uI0:,,/,.,[],
+7:uI2:/.,,
+9:u02:BFCP,,
+13:u08:Operators,
+8:u02:SDP,,
+13:u03:[RFC8122],
+9:u05:using,
+9:u07:usage,
+10:u08:result,
+9:u10:bfcp,,
+7:u12:tcp,
+7:u23:TCP,
+7:uI1:/.,,
+6:uI2:,/,
+9:u01:BFCP,,
+19:u08:confidentiality,
+8:u01:SDP,,
+13:u02:[RFC8122],
+9:u04:using,
+9:u06:usage,
+10:u07:result,
+7:u11:tcp,
+8:u23:when,
+7:uI0:/.,,
+6:uI1:,/,
+9:u00:BFCP,,
+13:u07:Operators,
+8:u00:SDP,,
+13:u01:[RFC8122],
+9:u03:using,
+9:u05:usage,
+10:u06:result,
+14:u08:protection,
+7:u10:tcp,
+8:u14:will,
+6:uI0:,/,
+13:u06:Operators,
+19:u07:confidentiality,
+13:u00:[RFC8122],
+9:u02:using,
+9:u04:usage,
+10:u05:result,
+14:u07:protection,
+8:u13:will,
+13:u14:operators,
+13:u05:Operators,
+19:u06:confidentiality,
+9:u01:using,
+9:u03:usage,
+10:u04:result,
+14:u06:protection,
+8:u12:will,
+13:u13:operators,
+19:u14:confidentiality,
+7:u22:wil,
+8:u23:will,
+13:u04:Operators,
+19:u05:confidentiality,
+9:u00:using,
+9:u02:usage,
+10:u03:result,
+14:u05:protection,
+7:u08:19],
+8:u11:will,
+13:u12:operators,
+19:u13:confidentiality,
+6:u21:Op,
+7:u22:Ope,
+8:u23:Oper,
+13:u03:Operators,
+19:u04:confidentiality,
+9:u01:usage,
+10:u02:result,
+14:u04:protection,
+7:u07:19],
+8:u10:will,
+13:u11:operators,
+19:u12:confidentiality,
+13:u02:Operators,
+19:u03:confidentiality,
+9:u00:usage,
+10:u01:result,
+14:u03:protection,
+7:u06:19],
+13:u10:operators,
+19:u11:confidentiality,
+13:u01:Operators,
+19:u02:confidentiality,
+10:u00:result,
+14:u02:protection,
+7:u05:19],
+19:u10:confidentiality,
+13:u00:Operators,
+19:u01:confidentiality,
+14:u01:protection,
+7:u04:19],
+11:u08:generic,
+19:u00:confidentiality,
+14:u00:protection,
+7:u03:19],
+11:u07:generic,
+14:u08:individual,
+7:u02:19],
+11:u06:generic,
+6:u08:do,
+7:u01:19],
+11:u05:generic,
+6:u07:do,
+7:u14:are,
+14:u07:individual,
+7:u00:19],
+11:u04:generic,
+6:u06:do,
+7:u13:are,
+14:u06:individual,
+14:u08:[Editorial,
+11:u03:generic,
+6:u05:do,
+7:u12:are,
+14:u14:individual,
+6:u21:ar,
+7:u22:are,
+7:u23:are,
+14:u05:individual,
+12:u08:register,
+11:u02:generic,
+6:u04:do,
+9:u08:note:,
+7:u11:are,
+14:u13:individual,
+11:u14:streams,
+14:u04:individual,
+14:u07:[Editorial,
+11:u01:generic,
+6:u03:do,
+9:u07:note:,
+7:u10:are,
+14:u12:individual,
+11:u13:streams,
+14:u03:individual,
+14:u06:[Editorial,
+12:u07:register,
+13:u08:registers,
+11:u00:generic,
+6:u02:do,
+9:u06:note:,
+14:u11:individual,
+11:u12:streams,
+14:u14:[editorial,
+14:u02:individual,
+14:u05:[Editorial,
+12:u06:register,
+6:u01:do,
+9:u05:note:,
+14:u10:individual,
+11:u11:streams,
+14:u13:[editorial,
+12:u14:register,
+7:uI2:[:.,
+14:u01:individual,
+14:u04:[Editorial,
+12:u05:register,
+13:u07:registers,
+6:u00:do,
+9:u04:note:,
+15:u08:[RFC4582].],
+11:u10:streams,
+14:u12:[editorial,
+12:u13:register,
+6:u21:[E,
+7:u22:[Ed,
+8:u23:[Edi,
+7:uI1:[:.,
+10:uI2://,///,
+14:u00:individual,
+14:u03:[Editorial,
+12:u04:register,
+13:u06:registers,
+9:u03:note:,
+15:u07:[RFC4582].],
+14:u11:[editorial,
+12:u12:register,
+13:u14:registers,
+8:u23:regi,
+7:uI0:[:.,
+10:uI1://,///,
+8:uI2:''..,
+14:u02:[Editorial,
+12:u03:register,
+13:u05:registers,
+11:u08:'proto',
+9:u02:note:,
+15:u06:[RFC4582].],
+14:u10:[editorial,
+12:u11:register,
+13:u13:registers,
+10:uI0://,///,
+8:uI1:''..,
+14:u01:[Editorial,
+12:u02:register,
+13:u04:registers,
+13:u08:registry:,
+9:u01:note:,
+15:u05:[RFC4582].],
+12:u10:register,
+13:u12:registers,
+8:uI0:''..,
+8:uI2:[].],
+14:u00:[Editorial,
+12:u01:register,
+13:u03:registers,
+11:u07:'proto',
+34:u08:+---------------+------------+,
+9:u00:note:,
+15:u04:[RFC4582].],
+13:u11:registers,
+8:uI1:[].],
+12:u00:register,
+13:u02:registers,
+11:u06:'proto',
+13:u07:registry:,
+15:u03:[RFC4582].],
+13:u10:registers,
+11:u14:'proto',
+8:uI0:[].],
+13:u01:registers,
+11:u05:'proto',
+13:u06:registry:,
+34:u07:+---------------+------------+,
+15:u02:[RFC4582].],
+9:u08:Value,
+11:u13:'proto',
+13:u14:registry:,
+13:u00:registers,
+11:u04:'proto',
+13:u05:registry:,
+34:u06:+---------------+------------+,
+15:u01:[RFC4582].],
+9:u07:Value,
+13:u08:Reference,
+11:u12:'proto',
+13:u13:registry:,
+34:u14:+---------------+------------+,
+6:u21:'p,
+7:u22:'pr,
+8:u23:'pro,
+11:u03:'proto',
+13:u04:registry:,
+34:u05:+---------------+------------+,
+15:u00:[RFC4582].],
+9:u06:Value,
+13:u07:Reference,
+11:u11:'proto',
+13:u12:registry:,
+34:u13:+---------------+------------+,
+31:uI2:---------------------------,
+11:u02:'proto',
+13:u03:registry:,
+34:u04:+---------------+------------+,
+9:u05:Value,
+13:u06:Reference,
+12:u08:TCP/BFCP,
+11:u10:'proto',
+13:u11:registry:,
+34:u12:+---------------+------------+,
+31:uI1:---------------------------,
+11:u01:'proto',
+13:u02:registry:,
+34:u03:+---------------+------------+,
+9:u04:Value,
+13:u05:Reference,
+12:u07:TCP/BFCP,
+8:u08:[RFC,
+13:u10:registry:,
+34:u11:+---------------+------------+,
+31:uI0:---------------------------,
+11:u00:'proto',
+13:u01:registry:,
+34:u02:+---------------+------------+,
+9:u03:Value,
+13:u04:Reference,
+12:u06:TCP/BFCP,
+8:u07:[RFC,
+34:u10:+---------------+------------+,
+13:u00:registry:,
+34:u01:+---------------+------------+,
+9:u02:Value,
+13:u03:Reference,
+12:u05:TCP/BFCP,
+8:u06:[RFC,
+34:u00:+---------------+------------+,
+9:u01:Value,
+13:u02:Reference,
+12:u04:TCP/BFCP,
+8:u05:[RFC,
+12:u08:UDP/BFCP,
+9:u00:Value,
+13:u01:Reference,
+12:u03:TCP/BFCP,
+8:u04:[RFC,
+12:u07:UDP/BFCP,
+8:uI2://[],
+13:u00:Reference,
+12:u02:TCP/BFCP,
+8:u03:[RFC,
+12:u06:UDP/BFCP,
+16:u08:UDP/TLS/BFCP,
+8:uI1://[],
+12:u01:TCP/BFCP,
+8:u02:[RFC,
+12:u05:UDP/BFCP,
+16:u07:UDP/TLS/BFCP,
+8:uI0://[],
+12:u00:TCP/BFCP,
+8:u01:[RFC,
+12:u04:UDP/BFCP,
+16:u06:UDP/TLS/BFCP,
+6:u08:3:,
+8:u00:[RFC,
+12:u03:UDP/BFCP,
+16:u05:UDP/TLS/BFCP,
+6:u07:3:,
+12:u02:UDP/BFCP,
+16:u04:UDP/TLS/BFCP,
+6:u06:3:,
+12:u01:UDP/BFCP,
+16:u03:UDP/TLS/BFCP,
+6:u05:3:,
+12:u00:UDP/BFCP,
+16:u02:UDP/TLS/BFCP,
+6:u04:3:,
+16:u01:UDP/TLS/BFCP,
+6:u03:3:,
+8:uI2:,''.,
+16:u00:UDP/TLS/BFCP,
+6:u02:3:,
+8:uI1:,''.,
+6:u01:3:,
+8:uI0:,''.,
+6:u00:3:,
+7:u08:20],
+7:u07:20],
+7:u06:20],
+7:u05:20],
+7:u04:20],
+7:u03:20],
+7:u02:20],
+7:u01:20],
+7:u00:20],
+13:u08:Following,
+14:u08:[RFC4583].,
+13:u07:Following,
+8:u08:Main,
+13:u06:Following,
+14:u07:[RFC4583].,
+11:u08:purpose,
+13:u05:Following,
+14:u06:[RFC4583].,
+8:u07:Main,
+11:u07:purpose,
+14:u14:[rfc4583].,
+13:u04:Following,
+14:u05:[RFC4583].,
+8:u06:Main,
+11:u06:purpose,
+13:u08:resulting,
+14:u13:[rfc4583].,
+8:u14:main,
+7:u22:Fol,
+8:u23:Foll,
+13:u03:Following,
+14:u04:[RFC4583].,
+8:u05:Main,
+11:u05:purpose,
+13:u07:resulting,
+14:u12:[rfc4583].,
+8:u13:main,
+13:u02:Following,
+14:u03:[RFC4583].,
+8:u04:Main,
+11:u04:purpose,
+13:u06:resulting,
+14:u11:[rfc4583].,
+8:u12:main,
+34:u14:[i-d.ietf-bfcpbis-rfc4582bis],,
+6:u21:Ma,
+7:u22:Mai,
+8:u23:Main,
+13:u01:Following,
+14:u02:[RFC4583].,
+8:u03:Main,
+11:u03:purpose,
+13:u05:resulting,
+14:u10:[rfc4583].,
+8:u11:main,
+34:u13:[i-d.ietf-bfcpbis-rfc4582bis],,
+12:uI2:[-.--],:,
+13:u00:Following,
+14:u01:[RFC4583].,
+8:u02:Main,
+11:u02:purpose,
+13:u04:resulting,
+8:u10:main,
+34:u12:[i-d.ietf-bfcpbis-rfc4582bis],,
+12:uI1:[-.--],:,
+10:uI2:.''():,
+14:u00:[RFC4583].,
+8:u01:Main,
+11:u01:purpose,
+13:u03:resulting,
+34:u11:[i-d.ietf-bfcpbis-rfc4582bis],,
+12:uI0:[-.--],:,
+10:uI1:.''():,
+8:u00:Main,
+16:u08:requirements,
+11:u00:purpose,
+13:u02:resulting,
+34:u10:[i-d.ietf-bfcpbis-rfc4582bis],,
+10:uI0:.''():,
+31:u08:[I-D.ietf-mmusic-dtls-sdp].,
+13:u01:resulting,
+11:uI2://,///.,
+16:u07:requirements,
+13:u00:resulting,
+6:uG2:10,
+11:uI1://,///.,
+8:uI2:.():,
+16:u06:requirements,
+31:u07:[I-D.ietf-mmusic-dtls-sdp].,
+12:u08:Register,
+16:u14:requirements,
+6:uG1:10,
+11:uI0://,///.,
+8:uI1:.():,
+16:u05:requirements,
+31:u06:[I-D.ietf-mmusic-dtls-sdp].,
+16:u13:requirements,
+31:u14:[i-d.ietf-mmusic-dtls-sdp].,
+6:uG0:10,
+8:uI0:.():,
+16:u04:requirements,
+31:u05:[I-D.ietf-mmusic-dtls-sdp].,
+12:u07:Register,
+16:u12:requirements,
+31:u13:[i-d.ietf-mmusic-dtls-sdp].,
+7:u22:req,
+8:u23:requ,
+16:u03:requirements,
+31:u04:[I-D.ietf-mmusic-dtls-sdp].,
+12:u06:Register,
+16:u11:requirements,
+31:u12:[i-d.ietf-mmusic-dtls-sdp].,
+11:uI2:.''(.):,
+16:u02:requirements,
+31:u03:[I-D.ietf-mmusic-dtls-sdp].,
+12:u05:Register,
+10:u08:signal,
+7:u08:new,
+16:u10:requirements,
+31:u11:[i-d.ietf-mmusic-dtls-sdp].,
+16:u14:udp/tls/bfcp,
+11:uI1:.''(.):,
+8:uI2://,/,
+16:u01:requirements,
+31:u02:[I-D.ietf-mmusic-dtls-sdp].,
+12:u04:Register,
+7:u07:new,
+31:u10:[i-d.ietf-mmusic-dtls-sdp].,
+16:u13:udp/tls/bfcp,
+6:u21:Re,
+7:u22:Reg,
+8:u23:Regi,
+11:uI0:.''(.):,
+8:uI1://,/,
+16:u00:requirements,
+31:u01:[I-D.ietf-mmusic-dtls-sdp].,
+12:u03:Register,
+10:u07:signal,
+14:u08:unreliable,
+7:u06:new,
+12:u08:addition,
+16:u12:udp/tls/bfcp,
+6:u21:UD,
+7:u22:UDP,
+8:u23:UDP/,
+8:uI0://,/,
+9:uI2:.(.):,
+31:u00:[I-D.ietf-mmusic-dtls-sdp].,
+12:u02:Register,
+10:u06:signal,
+7:u05:new,
+12:u07:addition,
+14:u08:transport,,
+16:u11:udp/tls/bfcp,
+10:u14:signal,
+9:uI1:.(.):,
+7:uI2:''-,
+12:u01:Register,
+10:u05:signal,
+14:u07:unreliable,
+8:u08:been,
+7:u04:new,
+12:u06:addition,
+14:u07:transport,,
+16:u10:udp/tls/bfcp,
+10:u13:signal,
+9:uI0:.(.):,
+7:uI1:''-,
+12:u00:Register,
+10:u04:signal,
+14:u06:unreliable,
+7:u03:new,
+12:u05:addition,
+14:u06:transport,,
+12:u08:removed.,
+10:u12:signal,
+14:u14:unreliable,
+6:u21:si,
+7:u22:sig,
+8:u23:sign,
+7:uI0:''-,
+10:u03:signal,
+14:u05:unreliable,
+8:u07:been,
+17:u08:Clarification,
+7:u02:new,
+12:u04:addition,
+14:u05:transport,,
+12:u07:removed.,
+10:u11:signal,
+14:u13:unreliable,
+10:u02:signal,
+14:u04:unreliable,
+8:u06:been,
+7:u01:new,
+12:u03:addition,
+14:u04:transport,,
+12:u06:removed.,
+10:u10:signal,
+14:u12:unreliable,
+8:u14:been,
+6:u21:un,
+7:u22:unr,
+8:u23:unre,
+10:u01:signal,
+14:u03:unreliable,
+8:u05:been,
+17:u07:Clarification,
+7:u00:new,
+12:u02:addition,
+14:u03:transport,,
+12:u05:removed.,
+10:u08:Errata,
+14:u11:unreliable,
+8:u13:been,
+10:u00:signal,
+14:u02:unreliable,
+8:u04:been,
+17:u06:Clarification,
+12:u01:addition,
+14:u02:transport,,
+12:u04:removed.,
+10:u07:Errata,
+14:u10:unreliable,
+8:u12:been,
+17:u14:clarification,
+7:u22:bee,
+8:u23:been,
+14:u01:unreliable,
+8:u03:been,
+17:u05:Clarification,
+12:u00:addition,
+14:u01:transport,,
+12:u03:removed.,
+10:u06:Errata,
+8:u11:been,
+17:u13:clarification,
+14:u00:unreliable,
+8:u02:been,
+17:u04:Clarification,
+14:u00:transport,,
+12:u02:removed.,
+10:u05:Errata,
+7:u08:21],
+8:u10:been,
+17:u12:clarification,
+6:u21:Cl,
+7:u22:Cla,
+8:u23:Clar,
+9:uI2:.:():,
+8:u01:been,
+17:u03:Clarification,
+12:u01:removed.,
+10:u04:Errata,
+7:u07:21],
+17:u11:clarification,
+9:uI1:.:():,
+8:u00:been,
+17:u02:Clarification,
+12:u00:removed.,
+10:u03:Errata,
+7:u06:21],
+17:u10:clarification,
+9:uI0:.:():,
+17:u01:Clarification,
+12:u08:Language,
+10:u02:Errata,
+7:u05:21],
+17:u00:Clarification,
+9:u08:"used,
+10:u01:Errata,
+7:u04:21],
+18:u08:clarification.,
+12:u07:Language,
+15:u08:media-level,
+10:u00:Errata,
+7:u03:21],
+18:u07:clarification.,
+12:u06:Language,
+9:u07:"used,
+7:u02:21],
+18:u06:clarification.,
+12:u14:language,
+12:u05:Language,
+9:u06:"used,
+15:u07:media-level,
+6:u08:Do,
+7:u01:21],
+18:u05:clarification.,
+7:u08:Fix,
+12:u13:language,
+9:u14:"used,
+6:uI2:.',
+12:u04:Language,
+9:u05:"used,
+15:u06:media-level,
+7:u00:21],
+18:u04:clarification.,
+7:u07:Fix,
+12:u12:language,
+9:u13:"used,
+15:u14:media-level,
+5:u20:L,
+6:u21:La,
+7:u22:Lan,
+8:u23:Lang,
+6:uI1:.',
+9:uI2:"''",,
+12:u03:Language,
+9:u04:"used,
+15:u05:media-level,
+6:u07:Do,
+18:u03:clarification.,
+7:u06:Fix,
+13:u08:specified,
+12:u11:language,
+9:u12:"used,
+15:u13:media-level,
+6:u21:"u,
+7:u22:"us,
+8:u23:"use,
+6:uI0:.',
+9:uI1:"''",,
+12:u02:Language,
+9:u03:"used,
+15:u04:media-level,
+6:u06:Do,
+18:u02:clarification.,
+7:u05:Fix,
+13:u07:specified,
+12:u10:language,
+9:u11:"used,
+15:u12:media-level,
+6:u14:do,
+7:u22:med,
+8:u23:medi,
+9:uI0:"''",,
+12:u01:Language,
+9:u02:"used,
+15:u03:media-level,
+6:u05:Do,
+18:u01:clarification.,
+7:u04:Fix,
+13:u06:specified,
+12:u08:Assorted,
+9:u10:"used,
+15:u11:media-level,
+6:u13:do,
+10:uI2:'-','',
+12:u00:Language,
+9:u01:"used,
+15:u02:media-level,
+6:u04:Do,
+13:u08:normative,
+18:u00:clarification.,
+7:u03:Fix,
+13:u05:specified,
+12:u07:Assorted,
+18:u08:clarifications,
+15:u10:media-level,
+6:u12:do,
+6:u14:it,
+6:u21:Do,
+6:u22:Do,
+6:u23:Do,
+10:uI1:'-','',
+8:uI2:.'-',
+9:u00:"used,
+15:u01:media-level,
+6:u03:Do,
+11:u08:changed,
+7:u02:Fix,
+13:u04:specified,
+12:u06:Assorted,
+18:u07:clarifications,
+12:u08:language,
+6:u11:do,
+6:u13:it,
+10:uI0:'-','',
+8:uI1:.'-',
+15:u00:media-level,
+6:u02:Do,
+13:u07:normative,
+7:u01:Fix,
+13:u03:specified,
+12:u05:Assorted,
+18:u06:clarifications,
+12:u07:language,
+6:u10:do,
+6:u12:it,
+6:u21:it,
+6:u22:it,
+6:u23:it,
+8:uI0:.'-',
+6:u01:Do,
+13:u06:normative,
+11:u07:changed,
+9:u08:Joerg,
+7:u00:Fix,
+13:u02:specified,
+12:u04:Assorted,
+18:u05:clarifications,
+12:u06:language,
+6:u11:it,
+13:u14:normative,
+6:u00:Do,
+13:u05:normative,
+11:u06:changed,
+9:u08:Oscar,
+13:u01:specified,
+12:u03:Assorted,
+18:u04:clarifications,
+12:u05:language,
+8:u08:Ott,,
+6:u10:it,
+13:u13:normative,
+11:u14:changed,
+7:uI2:,..,
+13:u04:normative,
+11:u05:changed,
+9:u07:Joerg,
+11:u08:authors,
+13:u00:specified,
+12:u02:Assorted,
+18:u03:clarifications,
+12:u04:language,
+8:u07:Ott,,
+8:u08:Novo,
+13:u12:normative,
+11:u13:changed,
+7:u22:nor,
+8:u23:norm,
+7:uI1:,..,
+13:u03:normative,
+11:u04:changed,
+9:u06:Joerg,
+9:u07:Oscar,
+7:u08:use,
+12:u01:Assorted,
+18:u02:clarifications,
+12:u03:language,
+8:u06:Ott,,
+8:u07:Novo,
+8:u08:also,
+13:u11:normative,
+11:u12:changed,
+9:u14:joerg,
+8:u23:chan,
+7:uI0:,..,
+13:u02:normative,
+11:u03:changed,
+9:u05:Joerg,
+9:u06:Oscar,
+11:u07:authors,
+10:u08:Eckel,,
+12:u00:Assorted,
+18:u01:clarifications,
+12:u02:language,
+8:u05:Ott,,
+8:u06:Novo,
+8:u07:also,
+8:u08:over,
+13:u10:normative,
+11:u11:changed,
+9:u13:joerg,
+9:u14:oscar,
+9:uI2:,,,,,,
+13:u01:normative,
+11:u02:changed,
+9:u04:Joerg,
+9:u05:Oscar,
+11:u06:authors,
+7:u07:use,
+13:u08:important,
+18:u00:clarifications,
+12:u01:language,
+8:u04:Ott,,
+8:u05:Novo,
+8:u06:also,
+8:u07:over,
+8:u08:Alan,
+11:u10:changed,
+9:u12:joerg,
+9:u13:oscar,
+11:u14:authors,
+5:u20:J,
+6:u21:Jo,
+7:u22:Joe,
+8:u23:Joer,
+9:uI1:,,,,,,
+13:u00:normative,
+11:u01:changed,
+9:u03:Joerg,
+9:u04:Oscar,
+11:u05:authors,
+7:u06:use,
+10:u07:Eckel,,
+11:u08:Charles,
+12:u00:language,
+8:u03:Ott,,
+8:u04:Novo,
+8:u05:also,
+8:u06:over,
+8:u07:Alan,
+9:u08:final,
+9:u11:joerg,
+9:u12:oscar,
+11:u13:authors,
+7:u14:use,
+6:u21:Os,
+7:u22:Osc,
+8:u23:Osca,
+9:uI0:,,,,,,
+11:u00:changed,
+9:u02:Joerg,
+9:u03:Oscar,
+11:u04:authors,
+7:u05:use,
+10:u06:Eckel,,
+13:u07:important,
+16:u08:considerable,
+8:u02:Ott,,
+8:u03:Novo,
+8:u04:also,
+8:u05:over,
+8:u06:Alan,
+9:u07:final,
+10:u08:Eckel.,
+9:u10:joerg,
+9:u11:oscar,
+11:u12:authors,
+7:u13:use,
+10:u14:eckel,,
+6:u21:au,
+7:u22:aut,
+8:u23:auth,
+9:u01:Joerg,
+9:u02:Oscar,
+11:u03:authors,
+7:u04:use,
+10:u05:Eckel,,
+13:u06:important,
+11:u07:Charles,
+8:u01:Ott,,
+8:u02:Novo,
+8:u03:also,
+8:u04:over,
+8:u05:Alan,
+9:u06:final,
+10:u07:Eckel.,
+10:u08:effort,
+9:u10:oscar,
+11:u11:authors,
+7:u12:use,
+10:u13:eckel,,
+13:u14:important,
+7:u23:use,
+9:u00:Joerg,
+9:u01:Oscar,
+11:u02:authors,
+7:u03:use,
+10:u04:Eckel,,
+13:u05:important,
+11:u06:Charles,
+16:u07:considerable,
+8:u00:Ott,,
+8:u01:Novo,
+8:u02:also,
+8:u03:over,
+8:u04:Alan,
+9:u05:final,
+10:u06:Eckel.,
+10:u07:effort,
+11:u10:authors,
+7:u11:use,
+10:u12:eckel,,
+13:u13:important,
+11:u14:charles,
+6:u21:Ec,
+7:u22:Eck,
+8:u23:Ecke,
+9:u00:Oscar,
+11:u01:authors,
+7:u02:use,
+10:u03:Eckel,,
+13:u04:important,
+11:u05:Charles,
+16:u06:considerable,
+33:u08:[I-D.ietf-bfcpbis-rfc4582bis],
+8:u00:Novo,
+8:u01:also,
+8:u02:over,
+8:u03:Alan,
+9:u04:final,
+10:u05:Eckel.,
+10:u06:effort,
+7:u10:use,
+10:u11:eckel,,
+13:u12:important,
+11:u13:charles,
+16:u14:considerable,
+6:u21:im,
+7:u22:imp,
+8:u23:impo,
+11:u00:authors,
+7:u01:use,
+10:u02:Eckel,,
+13:u03:important,
+11:u04:Charles,
+16:u05:considerable,
+8:u00:also,
+8:u01:over,
+8:u02:Alan,
+9:u03:final,
+10:u04:Eckel.,
+10:u05:effort,
+10:u10:eckel,,
+13:u11:important,
+11:u12:charles,
+16:u13:considerable,
+7:u00:use,
+10:u01:Eckel,,
+13:u02:important,
+11:u03:Charles,
+16:u04:considerable,
+33:u07:[I-D.ietf-bfcpbis-rfc4582bis],
+8:u00:over,
+8:u01:Alan,
+9:u02:final,
+10:u03:Eckel.,
+10:u04:effort,
+7:u08:G.,,
+13:u10:important,
+11:u11:charles,
+16:u12:considerable,
+8:u23:cons,
+10:u00:Eckel,,
+13:u01:important,
+11:u02:Charles,
+16:u03:considerable,
+33:u06:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u08:ietf-bfcpbis-rfc4582bis-16,
+8:u00:Alan,
+9:u01:final,
+10:u02:Eckel.,
+10:u03:effort,
+7:u07:G.,,
+8:u08:"The,
+11:u10:charles,
+16:u11:considerable,
+33:u14:[i-d.ietf-bfcpbis-rfc4582bis],
+13:u00:important,
+11:u01:Charles,
+16:u02:considerable,
+33:u05:[I-D.ietf-bfcpbis-rfc4582bis],
+9:u08:2015.,
+9:u00:final,
+10:u01:Eckel.,
+10:u02:effort,
+7:u06:G.,,
+8:u07:"The,
+9:u08:(work,
+16:u10:considerable,
+33:u13:[i-d.ietf-bfcpbis-rfc4582bis],
+11:u00:Charles,
+16:u01:considerable,
+33:u04:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u07:ietf-bfcpbis-rfc4582bis-16,
+30:u08:[I-D.ietf-mmusic-dtls-sdp],
+10:u00:Eckel.,
+10:u01:effort,
+7:u05:G.,,
+8:u06:"The,
+9:u07:(work,
+33:u12:[i-d.ietf-bfcpbis-rfc4582bis],
+17:uI2:,.,,.,,.,,.,.,
+16:u00:considerable,
+33:u03:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u06:ietf-bfcpbis-rfc4582bis-16,
+9:u07:2015.,
+13:u08:Holmberg,,
+10:u00:effort,
+7:u04:G.,,
+8:u05:"The,
+9:u06:(work,
+33:u11:[i-d.ietf-bfcpbis-rfc4582bis],
+30:u14:ietf-bfcpbis-rfc4582bis-16,
+17:uI1:,.,,.,,.,,.,.,
+11:uI2:,"()",-,
+33:u02:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u05:ietf-bfcpbis-rfc4582bis-16,
+9:u06:2015.,
+30:u07:[I-D.ietf-mmusic-dtls-sdp],
+9:u08:(SDP),
+7:u03:G.,,
+8:u04:"The,
+9:u05:(work,
+33:u10:[i-d.ietf-bfcpbis-rfc4582bis],
+30:u13:ietf-bfcpbis-rfc4582bis-16,
+9:u14:2015.,
+17:uI0:,.,,.,,.,,.,.,
+11:uI1:,"()",-,
+10:uI2:---(),,
+33:u01:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u04:ietf-bfcpbis-rfc4582bis-16,
+9:u05:2015.,
+30:u06:[I-D.ietf-mmusic-dtls-sdp],
+13:u07:Holmberg,,
+9:u08:Layer,
+7:u02:G.,,
+8:u03:"The,
+9:u04:(work,
+16:u08:Offer/Answer,
+30:u12:ietf-bfcpbis-rfc4582bis-16,
+9:u13:2015.,
+30:u14:[i-d.ietf-mmusic-dtls-sdp],
+6:u21:ie,
+7:u22:iet,
+8:u23:ietf,
+11:uI0:,"()",-,
+10:uI1:---(),,
+33:u00:[I-D.ietf-bfcpbis-rfc4582bis],
+30:u03:ietf-bfcpbis-rfc4582bis-16,
+9:u04:2015.,
+30:u05:[I-D.ietf-mmusic-dtls-sdp],
+13:u06:Holmberg,,
+9:u07:(SDP),
+33:u08:draft-ietf-mmusic-dtls-sdp-32,
+7:u01:G.,,
+8:u02:"The,
+9:u03:(work,
+16:u07:Offer/Answer,
+30:u11:ietf-bfcpbis-rfc4582bis-16,
+9:u12:2015.,
+30:u13:[i-d.ietf-mmusic-dtls-sdp],
+13:u14:holmberg,,
+6:u21:20,
+7:u22:201,
+8:u23:2015,
+10:uI0:---(),,
+11:uI2:[-.---],
+30:u02:ietf-bfcpbis-rfc4582bis-16,
+9:u03:2015.,
+30:u04:[I-D.ietf-mmusic-dtls-sdp],
+13:u05:Holmberg,,
+9:u06:(SDP),
+9:u07:Layer,
+9:u08:2017.,
+7:u00:G.,,
+8:u01:"The,
+9:u02:(work,
+16:u06:Offer/Answer,
+30:u10:ietf-bfcpbis-rfc4582bis-16,
+9:u11:2015.,
+30:u12:[i-d.ietf-mmusic-dtls-sdp],
+13:u13:holmberg,,
+9:u14:(sdp),
+11:uI1:[-.---],
+9:uI2:,..,",
+30:u01:ietf-bfcpbis-rfc4582bis-16,
+9:u02:2015.,
+30:u03:[I-D.ietf-mmusic-dtls-sdp],
+13:u04:Holmberg,,
+9:u05:(SDP),
+9:u06:Layer,
+33:u07:draft-ietf-mmusic-dtls-sdp-32,
+33:u08:[I-D.ietf-mmusic-ice-sip-sdp],
+8:u00:"The,
+9:u01:(work,
+16:u05:Offer/Answer,
+9:u10:2015.,
+30:u11:[i-d.ietf-mmusic-dtls-sdp],
+13:u12:holmberg,,
+9:u13:(sdp),
+9:u14:layer,
+7:u22:Hol,
+8:u23:Holm,
+11:uI0:[-.---],
+9:uI1:,..,",
+30:u00:ietf-bfcpbis-rfc4582bis-16,
+9:u01:2015.,
+30:u02:[I-D.ietf-mmusic-dtls-sdp],
+13:u03:Holmberg,,
+9:u04:(SDP),
+9:u05:Layer,
+33:u06:draft-ietf-mmusic-dtls-sdp-32,
+9:u07:2017.,
+19:u08:Petit-Huguenin,,
+9:u00:(work,
+16:u04:Offer/Answer,
+30:u10:[i-d.ietf-mmusic-dtls-sdp],
+13:u11:holmberg,,
+9:u12:(sdp),
+9:u13:layer,
+33:u14:draft-ietf-mmusic-dtls-sdp-32,
+7:u22:(SD,
+8:u23:(SDP,
+9:uI0:,..,",
+10:uI2:()()",,
+9:u00:2015.,
+30:u01:[I-D.ietf-mmusic-dtls-sdp],
+13:u02:Holmberg,,
+9:u03:(SDP),
+9:u04:Layer,
+33:u05:draft-ietf-mmusic-dtls-sdp-32,
+9:u06:2017.,
+33:u07:[I-D.ietf-mmusic-ice-sip-sdp],
+12:u08:"Session,
+16:u03:Offer/Answer,
+7:u08:M.,,
+13:u10:holmberg,,
+9:u11:(sdp),
+9:u12:layer,
+33:u13:draft-ietf-mmusic-dtls-sdp-32,
+9:u14:2017.,
+7:u22:Lay,
+8:u23:Laye,
+10:uI1:()()",,
+12:uI2:-----(),,
+30:u00:[I-D.ietf-mmusic-dtls-sdp],
+13:u01:Holmberg,,
+9:u02:(SDP),
+9:u03:Layer,
+33:u04:draft-ietf-mmusic-dtls-sdp-32,
+9:u05:2017.,
+33:u06:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u07:Petit-Huguenin,,
+16:u02:Offer/Answer,
+7:u07:M.,,
+9:u10:(sdp),
+9:u11:layer,
+33:u12:draft-ietf-mmusic-dtls-sdp-32,
+9:u13:2017.,
+33:u14:[i-d.ietf-mmusic-ice-sip-sdp],
+10:uI0:()()",,
+12:uI1:-----(),,
+13:u00:Holmberg,,
+9:u01:(SDP),
+9:u02:Layer,
+33:u03:draft-ietf-mmusic-dtls-sdp-32,
+9:u04:2017.,
+33:u05:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u06:Petit-Huguenin,,
+12:u07:"Session,
+11:u08:(ICE)",,
+16:u01:Offer/Answer,
+7:u06:M.,,
+9:u10:layer,
+33:u11:draft-ietf-mmusic-dtls-sdp-32,
+9:u12:2017.,
+33:u13:[i-d.ietf-mmusic-ice-sip-sdp],
+19:u14:petit-huguenin,,
+8:u23:2017,
+12:uI0:-----(),,
+9:u00:(SDP),
+9:u01:Layer,
+33:u02:draft-ietf-mmusic-dtls-sdp-32,
+9:u03:2017.,
+33:u04:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u05:Petit-Huguenin,,
+12:u06:"Session,
+14:u08:progress),,
+16:u00:Offer/Answer,
+7:u05:M.,,
+36:u08:draft-ietf-mmusic-ice-sip-sdp-24,
+33:u10:draft-ietf-mmusic-dtls-sdp-32,
+9:u11:2017.,
+33:u12:[i-d.ietf-mmusic-ice-sip-sdp],
+19:u13:petit-huguenin,,
+12:u14:"session,
+13:uI2:-,.,,.,.,,
+9:u00:Layer,
+33:u01:draft-ietf-mmusic-dtls-sdp-32,
+9:u02:2017.,
+33:u03:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u04:Petit-Huguenin,,
+12:u05:"Session,
+11:u07:(ICE)",,
+7:u04:M.,,
+36:u07:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u08:November,
+9:u10:2017.,
+33:u11:[i-d.ietf-mmusic-ice-sip-sdp],
+19:u12:petit-huguenin,,
+12:u13:"session,
+6:u21:Pe,
+7:u22:Pet,
+8:u23:Peti,
+13:uI1:-,.,,.,.,,
+8:uI2:"()/,
+33:u00:draft-ietf-mmusic-dtls-sdp-32,
+9:u01:2017.,
+33:u02:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u03:Petit-Huguenin,,
+12:u04:"Session,
+11:u06:(ICE)",,
+14:u07:progress),,
+7:u03:M.,,
+36:u06:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u07:November,
+33:u10:[i-d.ietf-mmusic-ice-sip-sdp],
+19:u11:petit-huguenin,,
+12:u12:"session,
+11:u14:(ice)",,
+7:u22:"Se,
+8:u23:"Ses,
+13:uI0:-,.,,.,.,,
+8:uI1:"()/,
+9:u00:2017.,
+33:u01:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u02:Petit-Huguenin,,
+12:u03:"Session,
+11:u05:(ICE)",,
+14:u06:progress),,
+7:u02:M.,,
+36:u05:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u06:November,
+19:u10:petit-huguenin,,
+12:u11:"session,
+11:u13:(ice)",,
+14:u14:progress),,
+8:uI0:"()/,
+15:uI2:()",------(,
+33:u00:[I-D.ietf-mmusic-ice-sip-sdp],
+19:u01:Petit-Huguenin,,
+12:u02:"Session,
+11:u04:(ICE)",,
+14:u05:progress),,
+7:u01:M.,,
+36:u04:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u05:November,
+7:u08:22],
+12:u10:"session,
+11:u12:(ice)",,
+14:u13:progress),,
+6:u21:(I,
+7:u22:(IC,
+8:u23:(ICE,
+15:uI1:()",------(,
+7:uI2:),.,
+19:u00:Petit-Huguenin,,
+12:u01:"Session,
+11:u03:(ICE)",,
+14:u04:progress),,
+7:u00:M.,,
+36:u03:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u04:November,
+7:u07:22],
+11:u11:(ice)",,
+14:u12:progress),,
+8:u23:prog,
+15:uI0:()",------(,
+7:uI1:),.,
+12:u00:"Session,
+11:u02:(ICE)",,
+14:u03:progress),,
+36:u02:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u03:November,
+7:u06:22],
+11:u10:(ice)",,
+14:u11:progress),,
+7:uI0:),.,
+11:u01:(ICE)",,
+14:u02:progress),,
+36:u01:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u02:November,
+7:u05:22],
+14:u10:progress),,
+11:u00:(ICE)",,
+14:u01:progress),,
+15:u08:Nandakumar,,
+36:u00:draft-ietf-mmusic-ice-sip-sdp-24,
+12:u01:November,
+7:u04:22],
+14:u00:progress),,
+18:u08:Multiplexing",,
+12:u00:November,
+7:u03:22],
+7:u08:S.,,
+15:u07:Nandakumar,,
+7:u02:22],
+7:u07:S.,,
+43:u08:draft-ietf-mmusic-sdp-mux-attributes-17,
+15:u06:Nandakumar,,
+18:u07:Multiplexing",,
+7:u01:22],
+7:u06:S.,,
+43:u07:draft-ietf-mmusic-sdp-mux-attributes-17,
+15:u14:nandakumar,,
+15:u05:Nandakumar,,
+18:u06:Multiplexing",,
+15:u08:Requirement,
+7:u00:22],
+7:u05:S.,,
+43:u06:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u08:Bradner,,
+15:u13:nandakumar,,
+18:u14:multiplexing",,
+8:uI2:,.,",
+15:u04:Nandakumar,,
+18:u05:Multiplexing",,
+7:u08:DOI,
+7:u04:S.,,
+43:u05:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u07:Bradner,,
+12:u08:Levels",,
+15:u12:nandakumar,,
+18:u13:multiplexing",,
+9:u14:(work,
+6:u21:Na,
+7:u22:Nan,
+8:u23:Nand,
+8:uI1:,.,",
+12:uI2:",------,
+15:u03:Nandakumar,,
+18:u04:Multiplexing",,
+15:u07:Requirement,
+29:u08:editor.org/info/rfc2119>.,
+7:u03:S.,,
+43:u04:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u06:Bradner,,
+12:u07:Levels",,
+21:u08:10.17487/RFC2119,,
+15:u11:nandakumar,,
+18:u12:multiplexing",,
+9:u13:(work,
+13:u14:[rfc2119],
+7:u22:Mul,
+8:u23:Mult,
+8:uI0:,.,",
+12:uI1:",------,
+8:uI2:(),.,
+15:u02:Nandakumar,,
+18:u03:Multiplexing",,
+15:u06:Requirement,
+7:u07:DOI,
+13:u08:[RFC3261],
+7:u02:S.,,
+43:u03:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u05:Bradner,,
+12:u06:Levels",,
+21:u07:10.17487/RFC2119,,
+15:u10:nandakumar,,
+18:u11:multiplexing",,
+9:u12:(work,
+13:u13:[rfc2119],
+15:u14:requirement,
+6:u21:(w,
+7:u22:(wo,
+8:u23:(wor,
+12:uI0:",------,
+8:uI1:(),.,
+10:uI2:[],.,",
+15:u01:Nandakumar,,
+18:u02:Multiplexing",,
+15:u05:Requirement,
+7:u06:DOI,
+29:u07:editor.org/info/rfc2119>.,
+7:u08:A.,,
+7:u01:S.,,
+43:u02:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u04:Bradner,,
+12:u05:Levels",,
+21:u06:10.17487/RFC2119,,
+14:u08:Rosenberg,,
+18:u10:multiplexing",,
+9:u11:(work,
+13:u12:[rfc2119],
+15:u13:requirement,
+7:u14:doi,
+8:uI0:(),.,
+10:uI1:[],.,",
+8:uI2:",,,,
+15:u00:Nandakumar,,
+18:u01:Multiplexing",,
+15:u04:Requirement,
+7:u05:DOI,
+29:u06:editor.org/info/rfc2119>.,
+13:u07:[RFC3261],
+13:u08:Schooler,,
+7:u00:S.,,
+43:u01:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u03:Bradner,,
+12:u04:Levels",,
+21:u05:10.17487/RFC2119,,
+14:u07:Rosenberg,,
+13:u08:Peterson,,
+9:u10:(work,
+13:u11:[rfc2119],
+15:u12:requirement,
+7:u13:doi,
+29:u14:editor.org/info/rfc2119>.,
+7:u22:Req,
+8:u23:Requ,
+10:uI0:[],.,",
+8:uI1:",,,,
+13:uI2:./,,://.-,
+18:u00:Multiplexing",,
+15:u03:Requirement,
+7:u04:DOI,
+29:u05:editor.org/info/rfc2119>.,
+13:u06:[RFC3261],
+7:u07:A.,,
+43:u00:draft-ietf-mmusic-sdp-mux-attributes-17,
+12:u02:Bradner,,
+12:u03:Levels",,
+21:u04:10.17487/RFC2119,,
+14:u06:Rosenberg,,
+13:u07:Peterson,,
+9:u08:"SIP:,
+13:u10:[rfc2119],
+15:u11:requirement,
+7:u12:doi,
+29:u13:editor.org/info/rfc2119>.,
+13:u14:[rfc3261],
+6:u21:DO,
+7:u22:DOI,
+7:u23:DOI,
+8:uI0:",,,,
+13:uI1:./,,://.-,
+8:uI2:.//.,
+15:u02:Requirement,
+7:u03:DOI,
+29:u04:editor.org/info/rfc2119>.,
+13:u05:[RFC3261],
+7:u06:A.,,
+13:u07:Schooler,,
+29:u08:editor.org/info/rfc3261>.,
+12:u01:Bradner,,
+12:u02:Levels",,
+21:u03:10.17487/RFC2119,,
+14:u05:Rosenberg,,
+13:u06:Peterson,,
+9:u07:"SIP:,
+21:u08:10.17487/RFC3261,,
+15:u10:requirement,
+7:u11:doi,
+29:u12:editor.org/info/rfc2119>.,
+13:u13:[rfc3261],
+7:u14:a.,,
+6:u21:ed,
+7:u22:edi,
+8:u23:edit,
+13:uI0:./,,://.-,
+8:uI1:.//.,
+16:uI2:[],.,,.,,.,,,
+15:u01:Requirement,
+7:u02:DOI,
+29:u03:editor.org/info/rfc2119>.,
+13:u04:[RFC3261],
+7:u05:A.,,
+13:u06:Schooler,,
+12:u00:Bradner,,
+12:u01:Levels",,
+21:u02:10.17487/RFC2119,,
+14:u04:Rosenberg,,
+13:u05:Peterson,,
+9:u06:"SIP:,
+21:u07:10.17487/RFC3261,,
+7:u10:doi,
+29:u11:editor.org/info/rfc2119>.,
+13:u12:[rfc3261],
+7:u13:a.,,
+13:u14:schooler,,
+8:uI0:.//.,
+16:uI1:[],.,,.,,.,,,
+16:uI2:.,,.,,.,,.,.,
+15:u00:Requirement,
+7:u01:DOI,
+29:u02:editor.org/info/rfc2119>.,
+13:u03:[RFC3261],
+7:u04:A.,,
+13:u05:Schooler,,
+29:u07:editor.org/info/rfc3261>.,
+12:u00:Levels",,
+21:u01:10.17487/RFC2119,,
+14:u03:Rosenberg,,
+13:u04:Peterson,,
+9:u05:"SIP:,
+21:u06:10.17487/RFC3261,,
+29:u10:editor.org/info/rfc2119>.,
+13:u11:[rfc3261],
+7:u12:a.,,
+13:u13:schooler,,
+6:u21:A.,
+7:u22:A.,,
+7:u23:A.,,
+16:uI0:[],.,,.,,.,,,
+16:uI1:.,,.,,.,,.,.,
+10:uI2:,":",,,
+7:u00:DOI,
+29:u01:editor.org/info/rfc2119>.,
+13:u02:[RFC3261],
+7:u03:A.,,
+13:u04:Schooler,,
+29:u06:editor.org/info/rfc3261>.,
+21:u00:10.17487/RFC2119,,
+14:u02:Rosenberg,,
+13:u03:Peterson,,
+9:u04:"SIP:,
+21:u05:10.17487/RFC3261,,
+13:u10:[rfc3261],
+7:u11:a.,,
+13:u12:schooler,,
+29:u14:editor.org/info/rfc3261>.,
+6:u21:Sc,
+7:u22:Sch,
+8:u23:Scho,
+16:uI0:.,,.,,.,,.,.,
+10:uI1:,":",,,
+29:u00:editor.org/info/rfc2119>.,
+13:u01:[RFC3261],
+7:u02:A.,,
+13:u03:Schooler,,
+29:u05:editor.org/info/rfc3261>.,
+29:u08:editor.org/info/rfc3264>.,
+14:u01:Rosenberg,,
+13:u02:Peterson,,
+9:u03:"SIP:,
+21:u04:10.17487/RFC3261,,
+21:u08:10.17487/RFC3264,,
+7:u10:a.,,
+13:u11:schooler,,
+29:u13:editor.org/info/rfc3261>.,
+13:u14:[rfc3264],
+10:uI0:,":",,,
+13:u00:[RFC3261],
+7:u01:A.,,
+13:u02:Schooler,,
+29:u04:editor.org/info/rfc3261>.,
+13:u08:[RFC4145],
+14:u00:Rosenberg,,
+13:u01:Peterson,,
+9:u02:"SIP:,
+21:u03:10.17487/RFC3261,,
+21:u07:10.17487/RFC3264,,
+13:u10:schooler,,
+29:u12:editor.org/info/rfc3261>.,
+13:u13:[rfc3264],
+12:uI2:[],..,"/,
+7:u00:A.,,
+13:u01:Schooler,,
+29:u03:editor.org/info/rfc3261>.,
+29:u07:editor.org/info/rfc3264>.,
+13:u00:Peterson,,
+9:u01:"SIP:,
+21:u02:10.17487/RFC3261,,
+21:u06:10.17487/RFC3264,,
+8:u08:Yon,,
+29:u11:editor.org/info/rfc3261>.,
+13:u12:[rfc3264],
+12:uI1:[],..,"/,
+9:uI2:()",,,
+13:u00:Schooler,,
+29:u02:editor.org/info/rfc3261>.,
+29:u06:editor.org/info/rfc3264>.,
+13:u07:[RFC4145],
+9:u00:"SIP:,
+21:u01:10.17487/RFC3261,,
+21:u05:10.17487/RFC3264,,
+8:u07:Yon,,
+29:u10:editor.org/info/rfc3261>.,
+13:u11:[rfc3264],
+29:u14:editor.org/info/rfc3264>.,
+12:uI0:[],..,"/,
+9:uI1:()",,,
+29:u01:editor.org/info/rfc3261>.,
+29:u05:editor.org/info/rfc3264>.,
+13:u06:[RFC4145],
+29:u08:editor.org/info/rfc4145>.,
+21:u00:10.17487/RFC3261,,
+21:u04:10.17487/RFC3264,,
+8:u06:Yon,,
+21:u08:10.17487/RFC4145,,
+13:u10:[rfc3264],
+29:u13:editor.org/info/rfc3264>.,
+13:u14:[rfc4145],
+9:uI0:()",,,
+29:u00:editor.org/info/rfc3261>.,
+29:u04:editor.org/info/rfc3264>.,
+13:u05:[RFC4145],
+13:u08:[RFC4566],
+21:u03:10.17487/RFC3264,,
+8:u05:Yon,,
+21:u07:10.17487/RFC4145,,
+29:u12:editor.org/info/rfc3264>.,
+13:u13:[rfc4145],
+6:uG2:11,
+12:uI2:[],..,"-,
+29:u03:editor.org/info/rfc3264>.,
+13:u04:[RFC4145],
+29:u07:editor.org/info/rfc4145>.,
+21:u02:10.17487/RFC3264,,
+8:u04:Yon,,
+21:u06:10.17487/RFC4145,,
+12:u08:Handley,,
+29:u11:editor.org/info/rfc3264>.,
+13:u12:[rfc4145],
+6:uG1:11,
+12:uI1:[],..,"-,
+29:u02:editor.org/info/rfc3264>.,
+13:u03:[RFC4145],
+29:u06:editor.org/info/rfc4145>.,
+13:u07:[RFC4566],
+8:u08:July,
+21:u01:10.17487/RFC3264,,
+8:u03:Yon,,
+21:u05:10.17487/RFC4145,,
+12:u07:Handley,,
+14:u08:Protocol",,
+29:u10:editor.org/info/rfc3264>.,
+13:u11:[rfc4145],
+29:u14:editor.org/info/rfc4145>.,
+6:uG0:11,
+12:uI0:[],..,"-,
+29:u01:editor.org/info/rfc3264>.,
+13:u02:[RFC4145],
+29:u05:editor.org/info/rfc4145>.,
+13:u06:[RFC4566],
+13:u08:[RFC4571],
+21:u00:10.17487/RFC3264,,
+8:u02:Yon,,
+21:u04:10.17487/RFC4145,,
+12:u06:Handley,,
+14:u07:Protocol",,
+9:u08:2006,,
+13:u10:[rfc4145],
+29:u13:editor.org/info/rfc4145>.,
+13:u14:[rfc4566],
+29:u00:editor.org/info/rfc3264>.,
+13:u01:[RFC4145],
+29:u04:editor.org/info/rfc4145>.,
+13:u05:[RFC4566],
+8:u07:July,
+8:u01:Yon,,
+21:u03:10.17487/RFC4145,,
+12:u05:Handley,,
+14:u06:Protocol",,
+9:u07:2006,,
+12:u08:Lazzaro,,
+29:u12:editor.org/info/rfc4145>.,
+13:u13:[rfc4566],
+16:uI2:[],.,,.,.,":,
+13:u00:[RFC4145],
+29:u03:editor.org/info/rfc4145>.,
+13:u04:[RFC4566],
+8:u06:July,
+13:u07:[RFC4571],
+12:u08:Oriented,
+8:u00:Yon,,
+21:u02:10.17487/RFC4145,,
+12:u04:Handley,,
+14:u05:Protocol",,
+9:u06:2006,,
+12:u07:Lazzaro,,
+7:u08:RTP,
+29:u11:editor.org/info/rfc4145>.,
+13:u12:[rfc4566],
+8:u14:july,
+16:uI1:[],.,,.,.,":,
+10:uI2:",,./,,
+29:u02:editor.org/info/rfc4145>.,
+13:u03:[RFC4566],
+8:u05:July,
+13:u06:[RFC4571],
+21:u01:10.17487/RFC4145,,
+12:u03:Handley,,
+14:u04:Protocol",,
+9:u05:2006,,
+12:u06:Lazzaro,,
+7:u07:RTP,
+15:u08:Transport",,
+29:u10:editor.org/info/rfc4145>.,
+13:u11:[rfc4566],
+8:u13:july,
+13:u14:[rfc4571],
+16:uI0:[],.,,.,.,":,
+10:uI1:",,./,,
+14:uI2:,://.-.//.,
+29:u01:editor.org/info/rfc4145>.,
+13:u02:[RFC4566],
+8:u04:July,
+13:u05:[RFC4571],
+12:u07:Oriented,
+13:u08:[RFC4574],
+21:u00:10.17487/RFC4145,,
+12:u02:Handley,,
+14:u03:Protocol",,
+9:u04:2006,,
+12:u05:Lazzaro,,
+7:u06:RTP,
+15:u07:Transport",,
+46:u08:.,
+13:u10:[rfc4566],
+8:u12:july,
+13:u13:[rfc4571],
+6:u21:Ju,
+7:u22:Jul,
+8:u23:July,
+10:uI0:",,./,,
+14:uI1:,://.-.//.,
+13:uI2:[],.,"-(),
+29:u00:editor.org/info/rfc4145>.,
+13:u01:[RFC4566],
+8:u03:July,
+13:u04:[RFC4571],
+12:u06:Oriented,
+12:u01:Handley,,
+14:u02:Protocol",,
+9:u03:2006,,
+12:u04:Lazzaro,,
+7:u05:RTP,
+15:u06:Transport",,
+46:u07:.,
+10:u08:Levin,,
+8:u11:july,
+13:u12:[rfc4571],
+12:u14:oriented,
+14:uI0:,://.-.//.,
+13:uI1:[],.,"-(),
+7:uI2:()-,
+13:u00:[RFC4566],
+8:u02:July,
+13:u03:[RFC4571],
+12:u05:Oriented,
+13:u07:[RFC4574],
+12:u00:Handley,,
+14:u01:Protocol",,
+9:u02:2006,,
+12:u03:Lazzaro,,
+7:u04:RTP,
+15:u05:Transport",,
+46:u06:.,
+10:u07:Levin,,
+8:u10:july,
+13:u11:[rfc4571],
+12:u13:oriented,
+9:u14:2006,,
+13:uI0:[],.,"-(),
+7:uI1:()-,
+8:u01:July,
+13:u02:[RFC4571],
+12:u04:Oriented,
+13:u06:[RFC4574],
+29:u08:editor.org/info/rfc4574>.,
+14:u00:Protocol",,
+9:u01:2006,,
+12:u02:Lazzaro,,
+7:u03:RTP,
+15:u04:Transport",,
+46:u05:.,
+10:u06:Levin,,
+21:u08:10.17487/RFC4574,,
+13:u10:[rfc4571],
+12:u12:oriented,
+9:u13:2006,,
+13:u14:[rfc4574],
+6:u21:Or,
+7:u22:Ori,
+8:u23:Orie,
+7:uI0:()-,
+8:u00:July,
+13:u01:[RFC4571],
+12:u03:Oriented,
+13:u05:[RFC4574],
+13:u08:[RFC4582],
+9:u00:2006,,
+12:u01:Lazzaro,,
+7:u02:RTP,
+15:u03:Transport",,
+46:u04:.,
+10:u05:Levin,,
+21:u07:10.17487/RFC4574,,
+12:u11:oriented,
+9:u12:2006,,
+13:u13:[rfc4574],
+7:u22:200,
+8:u23:2006,
+11:uI2:[],..,",
+13:u00:[RFC4571],
+12:u02:Oriented,
+13:u04:[RFC4574],
+29:u07:editor.org/info/rfc4574>.,
+12:u00:Lazzaro,,
+7:u01:RTP,
+15:u02:Transport",,
+46:u03:.,
+10:u04:Levin,,
+21:u06:10.17487/RFC4574,,
+12:u10:oriented,
+9:u11:2006,,
+13:u12:[rfc4574],
+11:uI1:[],..,",
+12:u01:Oriented,
+13:u03:[RFC4574],
+29:u06:editor.org/info/rfc4574>.,
+13:u07:[RFC4582],
+7:u00:RTP,
+15:u01:Transport",,
+46:u02:.,
+10:u03:Levin,,
+21:u05:10.17487/RFC4574,,
+9:u10:2006,,
+13:u11:[rfc4574],
+29:u14:editor.org/info/rfc4574>.,
+11:uI0:[],..,",
+12:u00:Oriented,
+13:u02:[RFC4574],
+29:u05:editor.org/info/rfc4574>.,
+13:u06:[RFC4582],
+15:u00:Transport",,
+46:u01:.,
+10:u02:Levin,,
+21:u04:10.17487/RFC4574,,
+13:u10:[rfc4574],
+29:u13:editor.org/info/rfc4574>.,
+13:u14:[rfc4582],
+13:u01:[RFC4574],
+29:u04:editor.org/info/rfc4574>.,
+13:u05:[RFC4582],
+46:u00:.,
+10:u01:Levin,,
+21:u03:10.17487/RFC4574,,
+29:u12:editor.org/info/rfc4574>.,
+13:u13:[rfc4582],
+15:uI2:[],.,,.,.,",
+13:u00:[RFC4574],
+29:u03:editor.org/info/rfc4574>.,
+13:u04:[RFC4582],
+7:u08:RFC,
+10:u00:Levin,,
+21:u02:10.17487/RFC4574,,
+10:u08:Binary,
+29:u11:editor.org/info/rfc4574>.,
+13:u12:[rfc4582],
+12:u14:november,
+15:uI1:[],.,,.,.,",
+12:uI2:()",,./,,
+29:u02:editor.org/info/rfc4574>.,
+13:u03:[RFC4582],
+46:u08:.,
+21:u01:10.17487/RFC4574,,
+10:u07:Binary,
+9:u08:4583,,
+29:u10:editor.org/info/rfc4574>.,
+13:u11:[rfc4582],
+12:u13:november,
+15:uI0:[],.,,.,.,",
+12:uI1:()",,./,,
+29:u01:editor.org/info/rfc4574>.,
+13:u02:[RFC4582],
+7:u07:RFC,
+21:u00:10.17487/RFC4574,,
+10:u06:Binary,
+9:u07:4583,,
+13:u10:[rfc4582],
+12:u12:november,
+7:u22:Nov,
+8:u23:Nove,
+12:uI0:()",,./,,
+12:uI2:[],.,"(),
+29:u00:editor.org/info/rfc4574>.,
+13:u01:[RFC4582],
+7:u06:RFC,
+46:u07:.,
+10:u05:Binary,
+9:u06:4583,,
+12:u11:november,
+7:u14:rfc,
+12:uI1:[],.,"(),
+8:uI2:()",,
+13:u00:[RFC4582],
+7:u05:RFC,
+46:u06:.,
+10:u04:Binary,
+9:u05:4583,,
+12:u10:november,
+7:u13:rfc,
+46:u14:.,
+12:uI0:[],.,"(),
+8:uI1:()",,
+9:uI2:,./,,,
+7:u04:RFC,
+46:u05:.,
+10:u03:Binary,
+9:u04:4583,,
+7:u08:23],
+7:u12:rfc,
+46:u13:.,
+6:u21:RF,
+7:u22:RFC,
+7:u23:RFC,
+8:uI0:()",,
+9:uI1:,./,,,
+13:uI2:://.-.//.,
+7:u03:RFC,
+46:u04:.,
+10:u02:Binary,
+9:u03:4583,,
+7:u07:23],
+7:u11:rfc,
+46:u12:.,
+5:u20:<,
+6:u21:.,
+10:u01:Binary,
+9:u02:4583,,
+7:u06:23],
+7:u10:rfc,
+46:u11:.,
+13:uI0:://.-.//.,
+7:u01:RFC,
+46:u02:.,
+13:u08:[RFC5234],
+10:u00:Binary,
+9:u01:4583,,
+7:u05:23],
+46:u10:.,
+7:u00:RFC,
+46:u01:.,
+19:u08:Specifications:,
+9:u00:4583,,
+7:u04:23],
+12:u08:Crocker,,
+46:u00:.,
+13:u07:[RFC5234],
+7:u03:23],
+12:u07:Crocker,,
+10:u08:ABNF",,
+13:u06:[RFC5234],
+19:u07:Specifications:,
+29:u08:editor.org/info/rfc5234>.,
+7:u02:23],
+12:u06:Crocker,,
+10:u07:ABNF",,
+21:u08:10.17487/RFC5234,,
+13:u14:[rfc5234],
+13:u05:[RFC5234],
+19:u06:Specifications:,
+13:u08:[RFC6347],
+7:u01:23],
+12:u05:Crocker,,
+10:u06:ABNF",,
+21:u07:10.17487/RFC5234,,
+13:u13:[rfc5234],
+19:u14:specifications:,
+13:uI2:[],.,..,",
+13:u04:[RFC5234],
+19:u05:Specifications:,
+29:u07:editor.org/info/rfc5234>.,
+7:u00:23],
+12:u04:Crocker,,
+10:u05:ABNF",,
+21:u06:10.17487/RFC5234,,
+13:u08:Rescorla,,
+13:u12:[rfc5234],
+19:u13:specifications:,
+13:uI1:[],.,..,",
+9:uI2::",,,,
+13:u03:[RFC5234],
+19:u04:Specifications:,
+29:u06:editor.org/info/rfc5234>.,
+13:u07:[RFC6347],
+11:u08:January,
+12:u03:Crocker,,
+10:u04:ABNF",,
+21:u05:10.17487/RFC5234,,
+13:u07:Rescorla,,
+11:u08:Version,
+13:u11:[rfc5234],
+19:u12:specifications:,
+29:u14:editor.org/info/rfc5234>.,
+6:u21:Sp,
+7:u22:Spe,
+8:u23:Spec,
+13:uI0:[],.,..,",
+9:uI1::",,,,
+13:u02:[RFC5234],
+19:u03:Specifications:,
+29:u05:editor.org/info/rfc5234>.,
+13:u06:[RFC6347],
+13:u08:[RFC6544],
+12:u02:Crocker,,
+10:u03:ABNF",,
+21:u04:10.17487/RFC5234,,
+13:u06:Rescorla,,
+11:u07:Version,
+9:u08:2012,,
+13:u10:[rfc5234],
+19:u11:specifications:,
+29:u13:editor.org/info/rfc5234>.,
+13:u14:[rfc6347],
+9:uI0::",,,,
+13:u01:[RFC5234],
+19:u02:Specifications:,
+29:u04:editor.org/info/rfc5234>.,
+13:u05:[RFC6347],
+11:u07:January,
+8:u08:"TCP,
+12:u01:Crocker,,
+10:u02:ABNF",,
+21:u03:10.17487/RFC5234,,
+13:u05:Rescorla,,
+11:u06:Version,
+9:u07:2012,,
+19:u10:specifications:,
+29:u12:editor.org/info/rfc5234>.,
+13:u13:[rfc6347],
+12:u14:security,
+13:u00:[RFC5234],
+19:u01:Specifications:,
+29:u03:editor.org/info/rfc5234>.,
+13:u04:[RFC6347],
+11:u06:January,
+13:u07:[RFC6544],
+12:u00:Crocker,,
+10:u01:ABNF",,
+21:u02:10.17487/RFC5234,,
+13:u04:Rescorla,,
+11:u05:Version,
+9:u06:2012,,
+14:u08:Candidates,
+29:u11:editor.org/info/rfc5234>.,
+13:u12:[rfc6347],
+12:u13:security,
+11:u14:january,
+11:uI2:.",,./,,
+19:u00:Specifications:,
+29:u02:editor.org/info/rfc5234>.,
+13:u03:[RFC6347],
+11:u05:January,
+13:u06:[RFC6544],
+8:u07:"TCP,
+9:u08:March,
+10:u00:ABNF",,
+21:u01:10.17487/RFC5234,,
+13:u03:Rescorla,,
+11:u04:Version,
+9:u05:2012,,
+14:u07:Candidates,
+29:u10:editor.org/info/rfc5234>.,
+13:u11:[rfc6347],
+12:u12:security,
+11:u13:january,
+13:u14:[rfc6544],
+8:u23:Secu,
+11:uI1:.",,./,,
+29:u01:editor.org/info/rfc5234>.,
+13:u02:[RFC6347],
+11:u04:January,
+13:u05:[RFC6544],
+8:u06:"TCP,
+21:u00:10.17487/RFC5234,,
+13:u02:Rescorla,,
+11:u03:Version,
+9:u04:2012,,
+14:u06:Candidates,
+13:u10:[rfc6347],
+12:u11:security,
+11:u12:january,
+13:u13:[rfc6544],
+8:u14:"tcp,
+6:u21:Ja,
+7:u22:Jan,
+8:u23:Janu,
+11:uI0:.",,./,,
+17:uI2:[],.,,.,,.,.,,
+29:u00:editor.org/info/rfc5234>.,
+13:u01:[RFC6347],
+11:u03:January,
+13:u04:[RFC6544],
+8:u05:"TCP,
+9:u07:March,
+13:u08:Transport,
+13:u01:Rescorla,,
+11:u02:Version,
+9:u03:2012,,
+14:u05:Candidates,
+11:u08:Lennox,,
+12:u10:security,
+11:u11:january,
+13:u12:[rfc6544],
+8:u13:"tcp,
+17:uI1:[],.,,.,,.,.,,
+5:uI2:",
+13:u00:[RFC6347],
+11:u02:January,
+13:u03:[RFC6544],
+8:u04:"TCP,
+9:u06:March,
+13:u00:Rescorla,,
+11:u01:Version,
+9:u02:2012,,
+14:u04:Candidates,
+11:u07:Lennox,,
+11:u10:january,
+13:u11:[rfc6544],
+8:u12:"tcp,
+9:u14:march,
+6:u21:"T,
+7:u22:"TC,
+8:u23:"TCP,
+17:uI0:[],.,,.,,.,.,,
+5:uI1:",
+11:u01:January,
+13:u02:[RFC6544],
+8:u03:"TCP,
+9:u05:March,
+13:u07:Transport,
+11:u00:Version,
+9:u01:2012,,
+14:u03:Candidates,
+11:u06:Lennox,,
+13:u10:[rfc6544],
+8:u11:"tcp,
+9:u13:march,
+13:u14:[rfc8122],
+5:uI0:",
+11:u00:January,
+13:u01:[RFC6544],
+8:u02:"TCP,
+9:u04:March,
+13:u06:Transport,
+29:u08:editor.org/info/rfc8122>.,
+9:u00:2012,,
+14:u02:Candidates,
+11:u05:Lennox,,
+21:u08:10.17487/RFC8122,,
+8:u10:"tcp,
+9:u12:march,
+13:u13:[rfc8122],
+7:u22:Mar,
+8:u23:Marc,
+13:u00:[RFC6544],
+8:u01:"TCP,
+9:u03:March,
+13:u05:Transport,
+13:u08:[RFC8174],
+14:u01:Candidates,
+11:u04:Lennox,,
+21:u07:10.17487/RFC8122,,
+9:u11:march,
+13:u12:[rfc8122],
+8:u00:"TCP,
+9:u02:March,
+13:u04:Transport,
+29:u07:editor.org/info/rfc8122>.,
+8:u08:2119,
+14:u00:Candidates,
+11:u03:Lennox,,
+21:u06:10.17487/RFC8122,,
+10:u08:Leiba,,
+9:u10:march,
+13:u11:[rfc8122],
+6:u21:Tr,
+7:u22:Tra,
+8:u23:Tran,
+9:u01:March,
+13:u03:Transport,
+29:u06:editor.org/info/rfc8122>.,
+13:u07:[RFC8174],
+7:u08:May,
+11:u02:Lennox,,
+21:u05:10.17487/RFC8122,,
+10:u07:Leiba,,
+7:u08:Key,
+13:u10:[rfc8122],
+29:u14:editor.org/info/rfc8122>.,
+9:u00:March,
+13:u02:Transport,
+29:u05:editor.org/info/rfc8122>.,
+13:u06:[RFC8174],
+8:u07:2119,
+11:u01:Lennox,,
+21:u04:10.17487/RFC8122,,
+10:u06:Leiba,,
+7:u07:Key,
+9:u08:2017,,
+29:u13:editor.org/info/rfc8122>.,
+13:u14:[rfc8174],
+13:u01:Transport,
+29:u04:editor.org/info/rfc8122>.,
+13:u05:[RFC8174],
+8:u06:2119,
+7:u07:May,
+16:u08:Connectivity,
+11:u00:Lennox,,
+21:u03:10.17487/RFC8122,,
+10:u05:Leiba,,
+7:u06:Key,
+9:u07:2017,,
+12:u08:Keranen,,
+29:u12:editor.org/info/rfc8122>.,
+13:u13:[rfc8174],
+8:u14:2119,
+13:u00:Transport,
+29:u03:editor.org/info/rfc8122>.,
+13:u04:[RFC8174],
+8:u05:2119,
+7:u06:May,
+11:u08:Address,
+21:u02:10.17487/RFC8122,,
+10:u04:Leiba,,
+7:u05:Key,
+9:u06:2017,,
+12:u07:Keranen,,
+29:u11:editor.org/info/rfc8122>.,
+13:u12:[rfc8174],
+8:u13:2119,
+7:u14:may,
+11:uI2:",,,./,,
+29:u02:editor.org/info/rfc8122>.,
+13:u03:[RFC8174],
+8:u04:2119,
+7:u05:May,
+16:u07:Connectivity,
+21:u01:10.17487/RFC8122,,
+10:u03:Leiba,,
+7:u04:Key,
+9:u05:2017,,
+12:u06:Keranen,,
+14:u08:Translator,
+29:u10:editor.org/info/rfc8122>.,
+13:u11:[rfc8174],
+8:u12:2119,
+7:u13:may,
+6:u21:21,
+7:u22:211,
+8:u23:2119,
+11:uI1:",,,./,,
+29:u01:editor.org/info/rfc8122>.,
+13:u02:[RFC8174],
+8:u03:2119,
+7:u04:May,
+16:u06:Connectivity,
+11:u07:Address,
+29:u08:editor.org/info/rfc8445>.,
+21:u00:10.17487/RFC8122,,
+10:u02:Leiba,,
+7:u03:Key,
+9:u04:2017,,
+12:u05:Keranen,,
+14:u07:Translator,
+21:u08:10.17487/RFC8445,,
+13:u10:[rfc8174],
+8:u11:2119,
+7:u12:may,
+16:u14:connectivity,
+7:u22:May,
+7:u23:May,
+11:uI0:",,,./,,
+29:u00:editor.org/info/rfc8122>.,
+13:u01:[RFC8174],
+8:u02:2119,
+7:u03:May,
+16:u05:Connectivity,
+11:u06:Address,
+10:u01:Leiba,,
+7:u02:Key,
+9:u03:2017,,
+12:u04:Keranen,,
+14:u06:Translator,
+21:u07:10.17487/RFC8445,,
+8:u10:2119,
+7:u11:may,
+16:u13:connectivity,
+11:u14:address,
+7:uI2:():,
+13:u00:[RFC8174],
+8:u01:2119,
+7:u02:May,
+16:u04:Connectivity,
+11:u05:Address,
+29:u07:editor.org/info/rfc8445>.,
+10:u00:Leiba,,
+7:u01:Key,
+9:u02:2017,,
+12:u03:Keranen,,
+14:u05:Translator,
+21:u06:10.17487/RFC8445,,
+7:u10:may,
+16:u12:connectivity,
+11:u13:address,
+8:u23:Conn,
+7:uI1:():,
+8:u00:2119,
+7:u01:May,
+16:u03:Connectivity,
+11:u04:Address,
+29:u06:editor.org/info/rfc8445>.,
+7:u00:Key,
+9:u01:2017,,
+12:u02:Keranen,,
+14:u04:Translator,
+21:u05:10.17487/RFC8445,,
+16:u11:connectivity,
+11:u12:address,
+29:u14:editor.org/info/rfc8445>.,
+6:u21:Ad,
+7:u22:Add,
+8:u23:Addr,
+7:uI0:():,
+7:u00:May,
+16:u02:Connectivity,
+11:u03:Address,
+29:u05:editor.org/info/rfc8445>.,
+16:u08:"Negotiating,
+9:u00:2017,,
+12:u01:Keranen,,
+14:u03:Translator,
+21:u04:10.17487/RFC8445,,
+7:u08:C.,,
+16:u10:connectivity,
+11:u11:address,
+29:u13:editor.org/info/rfc8445>.,
+16:u01:Connectivity,
+11:u02:Address,
+29:u04:editor.org/info/rfc8445>.,
+12:u00:Keranen,,
+14:u02:Translator,
+21:u03:10.17487/RFC8445,,
+7:u07:C.,,
+9:u08:Media,
+11:u10:address,
+29:u12:editor.org/info/rfc8445>.,
+16:u00:Connectivity,
+11:u01:Address,
+29:u03:editor.org/info/rfc8445>.,
+16:u07:"Negotiating,
+18:u08:negotiation-53,
+14:u01:Translator,
+21:u02:10.17487/RFC8445,,
+7:u06:C.,,
+9:u07:Media,
+29:u11:editor.org/info/rfc8445>.,
+11:u00:Address,
+29:u02:editor.org/info/rfc8445>.,
+16:u06:"Negotiating,
+13:u08:[RFC5576],
+14:u00:Translator,
+21:u01:10.17487/RFC8445,,
+7:u05:C.,,
+9:u06:Media,
+29:u10:editor.org/info/rfc8445>.,
+16:u14:"negotiating,
+12:uI2:,.,,.,.,,
+29:u01:editor.org/info/rfc8445>.,
+16:u05:"Negotiating,
+18:u07:negotiation-53,
+21:u00:10.17487/RFC8445,,
+7:u04:C.,,
+9:u05:Media,
+16:u13:"negotiating,
+12:uI1:,.,,.,.,,
+29:u00:editor.org/info/rfc8445>.,
+16:u04:"Negotiating,
+18:u06:negotiation-53,
+13:u07:[RFC5576],
+11:u08:(SDP)",,
+7:u03:C.,,
+9:u04:Media,
+14:u08:Attributes,
+16:u12:"negotiating,
+18:u14:negotiation-53,
+6:u21:"N,
+7:u22:"Ne,
+8:u23:"Neg,
+12:uI0:,.,,.,.,,
+13:uI2:()",-----,
+16:u03:"Negotiating,
+18:u05:negotiation-53,
+13:u06:[RFC5576],
+46:u08:.,
+7:u02:C.,,
+9:u03:Media,
+14:u07:Attributes,
+16:u11:"negotiating,
+18:u13:negotiation-53,
+13:u14:[rfc5576],
+13:uI1:()",-----,
+9:uI2:-(),.,
+16:u02:"Negotiating,
+18:u04:negotiation-53,
+13:u05:[RFC5576],
+11:u07:(SDP)",,
+7:u01:C.,,
+9:u02:Media,
+14:u06:Attributes,
+16:u10:"negotiating,
+18:u12:negotiation-53,
+13:u13:[rfc5576],
+9:u14:media,
+13:uI0:()",-----,
+9:uI1:-(),.,
+16:uI2:[],.,,.,.,"-,
+16:u01:"Negotiating,
+18:u03:negotiation-53,
+13:u04:[RFC5576],
+11:u06:(SDP)",,
+46:u07:.,
+7:u00:C.,,
+9:u01:Media,
+14:u05:Attributes,
+18:u11:negotiation-53,
+13:u12:[rfc5576],
+9:u13:media,
+11:u14:(sdp)",,
+9:uI0:-(),.,
+16:uI1:[],.,,.,.,"-,
+16:u00:"Negotiating,
+18:u02:negotiation-53,
+13:u03:[RFC5576],
+11:u05:(SDP)",,
+46:u06:.,
+9:u00:Media,
+14:u04:Attributes,
+18:u10:negotiation-53,
+13:u11:[rfc5576],
+9:u12:media,
+11:u13:(sdp)",,
+46:u14:.,
+6:u21:Me,
+7:u22:Med,
+8:u23:Medi,
+16:uI0:[],.,,.,.,"-,
+13:uI2:()",,./,,,
+18:u01:negotiation-53,
+13:u02:[RFC5576],
+11:u04:(SDP)",,
+46:u05:.,
+14:u03:Attributes,
+13:u10:[rfc5576],
+9:u11:media,
+11:u12:(sdp)",,
+46:u13:.,
+13:uI1:()",,./,,,
+18:u00:negotiation-53,
+13:u01:[RFC5576],
+11:u03:(SDP)",,
+46:u04:.,
+14:u02:Attributes,
+7:u08:24],
+9:u10:media,
+11:u11:(sdp)",,
+46:u12:.,
+13:uI0:()",,./,,,
+13:u00:[RFC5576],
+11:u02:(SDP)",,
+46:u03:.,
+14:u01:Attributes,
+7:u07:24],
+11:u10:(sdp)",,
+46:u11:.,
+11:u01:(SDP)",,
+46:u02:.,
+14:u00:Attributes,
+7:u06:24],
+46:u10:.,
+11:u00:(SDP)",,
+46:u01:.,
+11:u08:Gonzalo,
+7:u05:24],
+46:u00:.,
+7:u04:24],
+13:u08:Camarillo,
+11:u07:Gonzalo,
+15:u08:Hirsalantie,
+7:u03:24],
+13:u07:Camarillo,
+11:u06:Gonzalo,
+12:u08:FI-02420,
+7:u02:24],
+13:u06:Camarillo,
+6:u08:11,
+11:u14:gonzalo,
+11:u05:Gonzalo,
+15:u07:Hirsalantie,
+11:u08:Finland,
+7:u01:24],
+6:u07:11,
+10:u08:Jorvas,
+11:u13:gonzalo,
+11:u04:Gonzalo,
+15:u06:Hirsalantie,
+12:u07:FI-02420,
+10:u08:Email:,
+7:u00:24],
+6:u06:11,
+10:u07:Jorvas,
+11:u12:gonzalo,
+15:u14:hirsalantie,
+6:u21:Go,
+7:u22:Gon,
+8:u23:Gonz,
+11:u03:Gonzalo,
+15:u05:Hirsalantie,
+12:u06:FI-02420,
+11:u07:Finland,
+7:u08:Tom,
+6:u05:11,
+10:u06:Jorvas,
+34:u08:Gonzalo.Camarillo@ericsson.com,
+11:u11:gonzalo,
+15:u13:hirsalantie,
+12:u14:fi-02420,
+11:u02:Gonzalo,
+15:u04:Hirsalantie,
+12:u05:FI-02420,
+11:u06:Finland,
+10:u07:Email:,
+6:u04:11,
+10:u05:Jorvas,
+34:u07:Gonzalo.Camarillo@ericsson.com,
+11:u10:gonzalo,
+15:u12:hirsalantie,
+12:u13:fi-02420,
+11:u14:finland,
+6:u21:Hi,
+7:u22:Hir,
+8:u23:Hirs,
+11:u01:Gonzalo,
+15:u03:Hirsalantie,
+12:u04:FI-02420,
+11:u05:Finland,
+10:u06:Email:,
+7:u07:Tom,
+10:u08:Philip,
+6:u03:11,
+10:u04:Jorvas,
+34:u06:Gonzalo.Camarillo@ericsson.com,
+15:u11:hirsalantie,
+12:u12:fi-02420,
+11:u13:finland,
+10:u14:email:,
+6:u21:FI,
+7:u22:FI-,
+8:u23:FI-0,
+11:u00:Gonzalo,
+15:u02:Hirsalantie,
+12:u03:FI-02420,
+11:u04:Finland,
+10:u05:Email:,
+7:u06:Tom,
+11:u08:NO-1366,
+6:u02:11,
+10:u03:Jorvas,
+34:u05:Gonzalo.Camarillo@ericsson.com,
+13:u08:Pedersens,
+15:u10:hirsalantie,
+12:u11:fi-02420,
+11:u12:finland,
+10:u13:email:,
+7:u14:tom,
+6:u21:Fi,
+7:u22:Fin,
+8:u23:Finl,
+7:uI2::..,
+15:u01:Hirsalantie,
+12:u02:FI-02420,
+11:u03:Finland,
+10:u04:Email:,
+7:u05:Tom,
+10:u07:Philip,
+10:u08:Norway,
+6:u01:11,
+10:u02:Jorvas,
+34:u04:Gonzalo.Camarillo@ericsson.com,
+13:u07:Pedersens,
+11:u08:Lysaker,
+12:u10:fi-02420,
+11:u11:finland,
+10:u12:email:,
+7:u13:tom,
+6:u21:Em,
+7:u22:Ema,
+8:u23:Emai,
+7:uI1::..,
+15:u00:Hirsalantie,
+12:u01:FI-02420,
+11:u02:Finland,
+10:u03:Email:,
+7:u04:Tom,
+10:u06:Philip,
+11:u07:NO-1366,
+6:u00:11,
+10:u01:Jorvas,
+34:u03:Gonzalo.Camarillo@ericsson.com,
+13:u06:Pedersens,
+11:u07:Lysaker,
+11:u10:finland,
+10:u11:email:,
+7:u12:tom,
+10:u14:philip,
+6:u21:To,
+7:u22:Tom,
+7:u23:Tom,
+7:uI0::..,
+12:u00:FI-02420,
+11:u01:Finland,
+10:u02:Email:,
+7:u03:Tom,
+10:u05:Philip,
+11:u06:NO-1366,
+10:u07:Norway,
+12:u08:Christer,
+10:u00:Jorvas,
+34:u02:Gonzalo.Camarillo@ericsson.com,
+13:u05:Pedersens,
+11:u06:Lysaker,
+23:u08:tomkrist@cisco.com,,
+10:u10:email:,
+7:u11:tom,
+10:u13:philip,
+11:u14:no-1366,
+11:u00:Finland,
+10:u01:Email:,
+7:u02:Tom,
+10:u04:Philip,
+11:u05:NO-1366,
+10:u06:Norway,
+34:u01:Gonzalo.Camarillo@ericsson.com,
+13:u04:Pedersens,
+11:u05:Lysaker,
+23:u07:tomkrist@cisco.com,,
+7:u10:tom,
+10:u12:philip,
+11:u13:no-1366,
+10:u14:norway,
+6:u21:Ph,
+7:u22:Phi,
+8:u23:Phil,
+10:u00:Email:,
+7:u01:Tom,
+10:u03:Philip,
+11:u04:NO-1366,
+10:u05:Norway,
+12:u07:Christer,
+34:u00:Gonzalo.Camarillo@ericsson.com,
+13:u03:Pedersens,
+11:u04:Lysaker,
+23:u06:tomkrist@cisco.com,,
+10:u11:philip,
+11:u12:no-1366,
+10:u13:norway,
+6:u21:NO,
+7:u22:NO-,
+8:u23:NO-1,
+7:u00:Tom,
+10:u02:Philip,
+11:u03:NO-1366,
+10:u04:Norway,
+12:u06:Christer,
+13:u02:Pedersens,
+11:u03:Lysaker,
+23:u05:tomkrist@cisco.com,,
+10:u10:philip,
+11:u11:no-1366,
+10:u12:norway,
+12:u14:christer,
+7:u22:Nor,
+8:u23:Norw,
+9:uI2::.,..,
+10:u01:Philip,
+11:u02:NO-1366,
+10:u03:Norway,
+12:u05:Christer,
+13:u01:Pedersens,
+11:u02:Lysaker,
+23:u04:tomkrist@cisco.com,,
+9:u08:02420,
+11:u10:no-1366,
+10:u11:norway,
+12:u13:christer,
+9:uI1::.,..,
+10:u00:Philip,
+11:u01:NO-1366,
+10:u02:Norway,
+12:u04:Christer,
+13:u00:Pedersens,
+11:u01:Lysaker,
+23:u03:tomkrist@cisco.com,,
+9:u07:02420,
+10:u10:norway,
+12:u12:christer,
+7:u22:Chr,
+8:u23:Chri,
+9:uI0::.,..,
+11:u00:NO-1366,
+10:u01:Norway,
+12:u03:Christer,
+11:u00:Lysaker,
+23:u02:tomkrist@cisco.com,,
+9:u06:02420,
+34:u08:christer.holmberg@ericsson.com,
+12:u11:christer,
+10:u14:jorvas,
+10:u00:Norway,
+12:u02:Christer,
+23:u01:tomkrist@cisco.com,,
+9:u05:02420,
+34:u07:christer.holmberg@ericsson.com,
+12:u10:christer,
+10:u13:jorvas,
+12:u01:Christer,
+23:u00:tomkrist@cisco.com,,
+9:u04:02420,
+34:u06:christer.holmberg@ericsson.com,
+10:u12:jorvas,
+7:u22:Jor,
+8:u23:Jorv,
+12:u00:Christer,
+8:u08:_x+1,
+9:u03:02420,
+34:u05:christer.holmberg@ericsson.com,
+7:u08:25],
+10:u11:jorvas,
+8:u08:_x+2,
+9:u02:02420,
+34:u04:christer.holmberg@ericsson.com,
+7:u07:25],
+10:u10:jorvas,
+8:u07:_x+1,
+8:u08:_x+3,
+9:u01:02420,
+34:u03:christer.holmberg@ericsson.com,
+7:u06:25],
+8:uG5:_x+1,
+8:uH5:_x+1,
+8:u06:_x+1,
+8:u07:_x+2,
+8:u08:_x+4,
+9:u00:02420,
+34:u02:christer.holmberg@ericsson.com,
+7:u05:25],
+8:u14:_x+1,
+8:uG4:_x+1,
+8:uG5:_x+2,
+8:uH4:_x+1,
+8:uH5:_x+2,
+8:u05:_x+1,
+8:u06:_x+2,
+8:u07:_x+3,
+8:u08:_x+#,
+34:u01:christer.holmberg@ericsson.com,
+7:u04:25],
+8:u13:_x+1,
+8:u14:_x+2,
+8:u42:_x+1,
+8:u62:_x+1,
+8:u72:_x+1,
+8:u82:_x+1,
+8:u92:_x+1,
+8:uA2:_x+1,
+8:uB1:_x+1,
+8:uC2:_x+1,
+8:uD2:_x+1,
+8:uEI:_x+1,
+8:uEJ:_x+1,
+8:uEK:_x+1,
+8:uEL:_x+1,
+8:uEM:_x+1,
+8:uEN:_x+1,
+8:uEO:_x+1,
+8:uG2:_x+1,
+8:uH2:_x+1,
+8:uI2:_x+1,
+8:uG3:_x+1,
+8:uG4:_x+2,
+8:uG5:_x+3,
+8:uH3:_x+1,
+8:uH4:_x+2,
+8:uH5:_x+3,
+8:uI3:_x+1,
+8:uJ3:_x+1,
+10:u04:server,
+12:u05:Internet,
+6:u06:J.,
+11:u07:Request,
+12:u08:Updates:,
+8:u04:date,
+15:u05:Engineering,
+9:u06:Arkko,
+10:u12:server,
+12:u13:internet,
+6:u14:j.,
+11:u72:NEWFONT,
+14:u82:HIGHERFONT,
+5:u91:1,
+5:u92:1,
+10:u03:server,
+12:u04:Internet,
+6:u05:J.,
+11:u06:Request,
+8:u03:date,
+15:u04:Engineering,
+9:u05:Arkko,
+8:u08:3219,
+10:u11:server,
+12:u12:internet,
+6:u13:j.,
+11:u14:request,
+5:u90:1,
+10:u02:server,
+12:u03:Internet,
+6:u04:J.,
+11:u05:Request,
+12:u07:Updates:,
+8:u02:date,
+15:u03:Engineering,
+9:u04:Arkko,
+8:u07:3219,
+10:u08:Hardie,
+10:u10:server,
+12:u11:internet,
+6:u12:j.,
+11:u13:request,
+6:u21:J.,
+6:u22:J.,
+6:u23:J.,
+10:u01:server,
+12:u02:Internet,
+6:u03:J.,
+11:u04:Request,
+12:u06:Updates:,
+8:u01:date,
+15:u02:Engineering,
+9:u03:Arkko,
+8:u06:3219,
+10:u07:Hardie,
+13:u08:Standards,
+12:u10:internet,
+6:u11:j.,
+11:u12:request,
+12:u14:updates:,
+10:u00:server,
+12:u01:Internet,
+6:u02:J.,
+11:u03:Request,
+12:u05:Updates:,
+9:u08:ISSN:,
+8:u00:date,
+15:u01:Engineering,
+9:u02:Arkko,
+8:u05:3219,
+10:u06:Hardie,
+13:u07:Standards,
+8:u08:2019,
+6:u10:j.,
+11:u11:request,
+12:u13:updates:,
+12:u00:Internet,
+6:u01:J.,
+11:u02:Request,
+12:u04:Updates:,
+10:u08:Update,
+15:u00:Engineering,
+9:u01:Arkko,
+8:u04:3219,
+10:u05:Hardie,
+13:u06:Standards,
+8:u07:2019,
+13:u08:2070-1721,
+11:u10:request,
+12:u12:updates:,
+13:u14:category:,
+6:u21:Up,
+7:u22:Upd,
+8:u23:Upda,
+6:u00:J.,
+11:u01:Request,
+12:u03:Updates:,
+9:u07:ISSN:,
+13:u08:regarding,
+9:u00:Arkko,
+8:u03:3219,
+10:u04:Hardie,
+13:u05:Standards,
+8:u06:2019,
+13:u07:2070-1721,
+12:u11:updates:,
+13:u13:category:,
+11:u00:Request,
+12:u02:Updates:,
+9:u06:ISSN:,
+10:u07:Update,
+8:u02:3219,
+10:u03:Hardie,
+13:u04:Standards,
+8:u05:2019,
+13:u06:2070-1721,
+10:u08:Postal,
+12:u10:updates:,
+13:u12:category:,
+9:u14:issn:,
+7:u22:Cat,
+8:u23:Cate,
+12:u01:Updates:,
+9:u05:ISSN:,
+10:u06:Update,
+13:u07:regarding,
+8:u01:3219,
+10:u02:Hardie,
+13:u03:Standards,
+8:u04:2019,
+13:u05:2070-1721,
+10:u07:Postal,
+13:u11:category:,
+9:u13:issn:,
+10:u14:update,
+12:u00:Updates:,
+9:u04:ISSN:,
+10:u05:Update,
+13:u06:regarding,
+8:u00:3219,
+10:u01:Hardie,
+13:u02:Standards,
+8:u03:2019,
+13:u04:2070-1721,
+10:u06:Postal,
+8:u08:memo,
+13:u10:category:,
+9:u12:issn:,
+10:u13:update,
+13:u14:regarding,
+6:u21:IS,
+7:u22:ISS,
+8:u23:ISSN,
+9:u03:ISSN:,
+10:u04:Update,
+13:u05:regarding,
+10:u00:Hardie,
+13:u01:Standards,
+8:u02:2019,
+13:u03:2070-1721,
+10:u05:Postal,
+8:u07:memo,
+6:u08:IP,
+9:u11:issn:,
+10:u12:update,
+13:u13:regarding,
+9:u02:ISSN:,
+10:u03:Update,
+13:u04:regarding,
+13:u00:Standards,
+8:u01:2019,
+13:u02:2070-1721,
+10:u04:Postal,
+8:u06:memo,
+6:u07:IP,
+12:u08:included,
+9:u10:issn:,
+10:u11:update,
+13:u12:regarding,
+9:u01:ISSN:,
+10:u02:Update,
+13:u03:regarding,
+8:u00:2019,
+13:u01:2070-1721,
+10:u03:Postal,
+8:u05:memo,
+6:u06:IP,
+12:u07:included,
+10:u10:update,
+13:u11:regarding,
+8:u14:over,
+9:u00:ISSN:,
+10:u01:Update,
+13:u02:regarding,
+13:u00:2070-1721,
+10:u02:Postal,
+8:u04:memo,
+6:u05:IP,
+12:u06:included,
+13:u10:regarding,
+8:u13:over,
+7:uI2:(),,
+10:u00:Update,
+13:u01:regarding,
+10:u01:Postal,
+8:u03:memo,
+6:u04:IP,
+12:u05:included,
+8:u12:over,
+6:u21:ov,
+7:u22:ove,
+8:u23:over,
+7:uI1:(),,
+13:u00:regarding,
+11:u08:(IETF).,
+10:u00:Postal,
+8:u02:memo,
+6:u03:IP,
+12:u04:included,
+8:u11:over,
+7:uI0:(),,
+12:u08:received,
+8:u01:memo,
+6:u02:IP,
+12:u03:included,
+8:u10:over,
+11:u07:(IETF).,
+12:u08:Internet,
+8:u00:memo,
+6:u01:IP,
+12:u02:included,
+10:u08:public,
+11:u06:(IETF).,
+12:u07:received,
+6:u00:IP,
+12:u01:included,
+10:u07:public,
+15:u08:Engineering,
+11:u14:(ietf).,
+11:u05:(IETF).,
+12:u06:received,
+12:u07:Internet,
+15:u08:Information,
+12:u00:included,
+10:u06:public,
+15:u07:Engineering,
+11:u13:(ietf).,
+12:u14:received,
+8:uI2:()..,
+11:u04:(IETF).,
+12:u05:received,
+12:u06:Internet,
+10:u05:public,
+15:u06:Engineering,
+9:u08:about,
+11:u12:(ietf).,
+12:u13:received,
+12:u14:internet,
+7:u22:(IE,
+8:u23:(IET,
+8:uI1:()..,
+11:u03:(IETF).,
+12:u04:received,
+15:u07:Information,
+44:u08:https://www.rfc-editor.org/info/rfc8602.,
+10:u04:public,
+9:u07:about,
+7:u08:how,
+11:u11:(ietf).,
+12:u12:received,
+7:u22:rec,
+8:u23:rece,
+8:uI0:()..,
+11:u02:(IETF).,
+12:u03:received,
+15:u06:Information,
+10:u03:public,
+9:u06:about,
+7:u07:how,
+11:u10:(ietf).,
+12:u11:received,
+15:u14:information,
+11:u01:(IETF).,
+12:u02:received,
+15:u05:Information,
+44:u07:https://www.rfc-editor.org/info/rfc8602.,
+10:u02:public,
+9:u05:about,
+7:u06:how,
+12:u10:received,
+15:u13:information,
+11:u00:(IETF).,
+12:u01:received,
+15:u04:Information,
+44:u06:https://www.rfc-editor.org/info/rfc8602.,
+10:u01:public,
+9:u04:about,
+7:u05:how,
+15:u12:information,
+44:u14:https://www.rfc-editor.org/info/rfc8602.,
+7:u22:Inf,
+8:u23:Info,
+12:u00:received,
+15:u03:Information,
+44:u05:https://www.rfc-editor.org/info/rfc8602.,
+10:u00:public,
+9:u03:about,
+7:u04:how,
+15:u11:information,
+44:u13:https://www.rfc-editor.org/info/rfc8602.,
+15:u02:Information,
+44:u04:https://www.rfc-editor.org/info/rfc8602.,
+9:u02:about,
+7:u03:how,
+15:u10:information,
+44:u12:https://www.rfc-editor.org/info/rfc8602.,
+5:u20:h,
+6:u21:ht,
+7:u22:htt,
+8:u23:http,
+15:u01:Information,
+44:u03:https://www.rfc-editor.org/info/rfc8602.,
+43:u08:(https://trustee.ietf.org/license-info),
+9:u01:about,
+7:u02:how,
+44:u11:https://www.rfc-editor.org/info/rfc8602.,
+15:u00:Information,
+44:u02:https://www.rfc-editor.org/info/rfc8602.,
+9:u00:about,
+7:u01:how,
+44:u10:https://www.rfc-editor.org/info/rfc8602.,
+44:u01:https://www.rfc-editor.org/info/rfc8602.,
+43:u07:(https://trustee.ietf.org/license-info),
+7:u00:how,
+44:u00:https://www.rfc-editor.org/info/rfc8602.,
+43:u06:(https://trustee.ietf.org/license-info),
+43:u14:(https://trustee.ietf.org/license-info),
+43:u05:(https://trustee.ietf.org/license-info),
+43:u13:(https://trustee.ietf.org/license-info),
+43:u04:(https://trustee.ietf.org/license-info),
+43:u12:(https://trustee.ietf.org/license-info),
+43:u03:(https://trustee.ietf.org/license-info),
+43:u11:(https://trustee.ietf.org/license-info),
+43:u02:(https://trustee.ietf.org/license-info),
+9:u08:Arkko,
+43:u10:(https://trustee.ietf.org/license-info),
+43:u01:(https://trustee.ietf.org/license-info),
+5:u08:&,
+43:u00:(https://trustee.ietf.org/license-info),
+9:u07:Arkko,
+5:u07:&,
+9:u08:Track,
+5:u06:&,
+9:u07:Track,
+9:u14:arkko,
+8:u08:TRIP,
+5:u05:&,
+9:u06:Track,
+8:u08:8602,
+9:u13:arkko,
+13:u14:standards,
+5:u04:&,
+9:u05:Track,
+8:u07:8602,
+12:u08:Registry,
+9:u12:arkko,
+13:u13:standards,
+6:u21:Ar,
+7:u22:Ark,
+8:u23:Arkk,
+8:u07:TRIP,
+5:u03:&,
+9:u04:Track,
+8:u06:8602,
+12:u07:Registry,
+9:u11:arkko,
+13:u12:standards,
+8:u23:Stan,
+8:u06:TRIP,
+5:u02:&,
+9:u03:Track,
+8:u05:8602,
+12:u06:Registry,
+9:u10:arkko,
+13:u11:standards,
+8:u14:trip,
+8:u05:TRIP,
+5:u01:&,
+9:u02:Track,
+8:u04:8602,
+12:u05:Registry,
+13:u10:standards,
+8:u13:trip,
+8:u04:TRIP,
+5:u00:&,
+9:u01:Track,
+8:u03:8602,
+12:u04:Registry,
+8:u12:trip,
+6:u21:TR,
+7:u22:TRI,
+8:u23:TRIP,
+8:u03:TRIP,
+9:u00:Track,
+8:u02:8602,
+12:u03:Registry,
+8:u11:trip,
+8:u02:TRIP,
+8:u01:8602,
+12:u02:Registry,
+8:u10:trip,
+5:u14:2,
+8:u01:TRIP,
+8:u00:8602,
+12:u01:Registry,
+5:u13:2,
+8:u00:TRIP,
+12:u00:Registry,
+5:u12:2,
+5:u21:2,
+5:u22:2,
+5:u23:2,
+5:u11:2,
+5:u10:2,
+5:u08:.,
+5:u07:.,
+5:u06:.,
+20:u14:acknowledgements,
+5:u05:.,
+20:u13:acknowledgements,
+5:u04:.,
+20:u12:acknowledgements,
+7:u22:Ack,
+8:u23:Ackn,
+5:u03:.,
+20:u11:acknowledgements,
+5:u02:.,
+20:u10:acknowledgements,
+15:u08:identified,,
+5:u01:.,
+5:u00:.,
+15:u07:identified,,
+15:u06:identified,,
+15:u14:identified,,
+15:u05:identified,,
+15:u13:identified,,
+15:u04:identified,,
+18:u08:Administrative,
+15:u08:([RFC3219],,
+15:u12:identified,,
+15:u03:identified,,
+12:u08:follows.,
+15:u07:([RFC3219],,
+10:u08:Domain,
+15:u11:identified,,
+15:u02:identified,,
+18:u07:Administrative,
+15:u06:([RFC3219],,
+10:u07:Domain,
+15:u10:identified,,
+14:u14:attributes,
+15:u01:identified,,
+18:u06:Administrative,
+12:u07:follows.,
+15:u08:information,
+15:u05:([RFC3219],,
+10:u06:Domain,
+8:u08:IETF,
+14:u13:attributes,
+18:u14:administrative,
+10:uI2:([],.),
+15:u00:identified,,
+18:u05:Administrative,
+12:u06:follows.,
+7:u08:has,
+15:u04:([RFC3219],,
+10:u05:Domain,
+8:u07:IETF,
+14:u12:attributes,
+18:u13:administrative,
+12:u14:follows.,
+10:uI1:([],.),
+12:uI2:()([],.),
+18:u04:Administrative,
+12:u05:follows.,
+15:u07:information,
+15:u08:registries.,
+15:u03:([RFC3219],,
+10:u04:Domain,
+8:u06:IETF,
+11:u08:removed,
+14:u11:attributes,
+18:u12:administrative,
+12:u13:follows.,
+7:u22:Adm,
+8:u23:Admi,
+10:uI0:([],.),
+12:uI1:()([],.),
+18:u03:Administrative,
+12:u04:follows.,
+15:u06:information,
+7:u07:has,
+15:u02:([RFC3219],,
+10:u03:Domain,
+8:u05:IETF,
+11:u07:removed,
+14:u10:attributes,
+18:u11:administrative,
+12:u12:follows.,
+12:uI0:()([],.),
+18:u02:Administrative,
+12:u03:follows.,
+15:u05:information,
+7:u06:has,
+15:u07:registries.,
+6:u08:No,
+15:u01:([RFC3219],,
+10:u02:Domain,
+8:u04:IETF,
+11:u06:removed,
+18:u10:administrative,
+12:u11:follows.,
+7:u14:has,
+18:u01:Administrative,
+12:u02:follows.,
+15:u04:information,
+7:u05:has,
+15:u06:registries.,
+15:u00:([RFC3219],,
+10:u01:Domain,
+8:u03:IETF,
+11:u05:removed,
+12:u08:security,
+12:u10:follows.,
+7:u13:has,
+15:u14:registries.,
+7:u22:inf,
+8:u23:info,
+18:u00:Administrative,
+12:u01:follows.,
+15:u03:information,
+7:u04:has,
+15:u05:registries.,
+6:u07:No,
+13:u08:[RFC3219],
+10:u00:Domain,
+8:u02:IETF,
+11:u04:removed,
+12:u07:security,
+7:u12:has,
+15:u13:registries.,
+6:u21:ha,
+7:u22:has,
+7:u23:has,
+12:u00:follows.,
+15:u02:information,
+7:u03:has,
+15:u04:registries.,
+6:u06:No,
+11:u08:Routing,
+8:u01:IETF,
+11:u03:removed,
+12:u06:security,
+7:u11:has,
+15:u12:registries.,
+6:u14:no,
+15:u01:information,
+7:u02:has,
+15:u03:registries.,
+6:u05:No,
+13:u07:[RFC3219],
+8:u00:IETF,
+11:u02:removed,
+12:u05:security,
+7:u10:has,
+15:u11:registries.,
+6:u13:no,
+15:u00:information,
+7:u01:has,
+15:u02:registries.,
+6:u04:No,
+13:u06:[RFC3219],
+11:u07:Routing,
+13:u08:[RFC8126],
+11:u01:removed,
+12:u04:security,
+9:u08:2002,,
+15:u10:registries.,
+6:u12:no,
+13:u14:[rfc3219],
+6:u22:No,
+6:u23:No,
+7:u00:has,
+15:u01:registries.,
+6:u03:No,
+13:u05:[RFC3219],
+11:u06:Routing,
+11:u08:Writing,
+11:u00:removed,
+12:u03:security,
+9:u07:2002,,
+11:u08:Cotton,,
+6:u11:no,
+13:u13:[rfc3219],
+11:u14:routing,
+15:u00:registries.,
+6:u02:No,
+13:u04:[RFC3219],
+11:u05:Routing,
+13:u07:[RFC8126],
+12:u02:security,
+9:u06:2002,,
+11:u07:Cotton,,
+6:u10:no,
+13:u12:[rfc3219],
+11:u13:routing,
+6:u01:No,
+13:u03:[RFC3219],
+11:u04:Routing,
+13:u06:[RFC8126],
+11:u07:Writing,
+46:u08:.,
+12:u01:security,
+9:u05:2002,,
+11:u06:Cotton,,
+9:u08:8126,,
+13:u11:[rfc3219],
+11:u12:routing,
+13:u14:[rfc8126],
+6:u21:Ro,
+7:u22:Rou,
+8:u23:Rout,
+6:u00:No,
+13:u02:[RFC3219],
+11:u03:Routing,
+13:u05:[RFC8126],
+11:u06:Writing,
+12:u00:security,
+9:u04:2002,,
+11:u05:Cotton,,
+9:u07:8126,,
+13:u10:[rfc3219],
+11:u11:routing,
+13:u13:[rfc8126],
+11:u14:writing,
+13:u01:[RFC3219],
+11:u02:Routing,
+13:u04:[RFC8126],
+11:u05:Writing,
+46:u07:.,
+9:u03:2002,,
+11:u04:Cotton,,
+9:u06:8126,,
+11:u10:routing,
+13:u12:[rfc8126],
+11:u13:writing,
+7:uI2:",,,
+13:u00:[RFC3219],
+11:u01:Routing,
+13:u03:[RFC8126],
+11:u04:Writing,
+46:u06:.,
+9:u02:2002,,
+11:u03:Cotton,,
+9:u05:8126,,
+13:u11:[rfc8126],
+11:u12:writing,
+46:u14:.,
+6:u21:Wr,
+7:u22:Wri,
+8:u23:Writ,
+7:uI1:",,,
+11:u00:Routing,
+13:u02:[RFC8126],
+11:u03:Writing,
+46:u05:.,
+9:u01:2002,,
+11:u02:Cotton,,
+9:u04:8126,,
+13:u10:[rfc8126],
+11:u11:writing,
+46:u13:.,
+7:uI0:",,,
+13:u01:[RFC8126],
+11:u02:Writing,
+46:u04:.,
+9:u00:2002,,
+11:u01:Cotton,,
+9:u03:8126,,
+11:u10:writing,
+46:u12:.,
+13:u00:[RFC8126],
+11:u01:Writing,
+46:u03:.,
+11:u00:Cotton,,
+9:u02:8126,,
+46:u11:.,
+11:u00:Writing,
+46:u02:.,
+9:u01:8126,,
+46:u10:.,
+46:u01:.,
+9:u00:8126,,
+46:u00:.,
+12:u08:Jonathan,
+13:u08:Rosenberg,
+12:u07:Jonathan,
+14:u08:Abdussalam,
+13:u07:Rosenberg,
+12:u06:Jonathan,
+13:u06:Rosenberg,
+11:u08:Baryun,,
+12:u14:jonathan,
+12:u05:Jonathan,
+14:u07:Abdussalam,
+8:u08:Jari,
+13:u05:Rosenberg,
+11:u07:Baryun,,
+12:u13:jonathan,
+12:u04:Jonathan,
+14:u06:Abdussalam,
+13:u04:Rosenberg,
+11:u06:Baryun,,
+12:u12:jonathan,
+14:u14:abdussalam,
+7:u22:Jon,
+8:u23:Jona,
+12:u03:Jonathan,
+14:u05:Abdussalam,
+8:u07:Jari,
+14:u08:Kauniainen,
+13:u03:Rosenberg,
+11:u05:Baryun,,
+12:u11:jonathan,
+14:u13:abdussalam,
+12:u02:Jonathan,
+14:u04:Abdussalam,
+8:u06:Jari,
+13:u02:Rosenberg,
+11:u04:Baryun,,
+9:u08:02700,
+12:u10:jonathan,
+14:u12:abdussalam,
+8:u14:jari,
+7:u22:Abd,
+8:u23:Abdu,
+12:u01:Jonathan,
+14:u03:Abdussalam,
+8:u05:Jari,
+14:u07:Kauniainen,
+13:u01:Rosenberg,
+11:u03:Baryun,,
+9:u07:02700,
+14:u11:abdussalam,
+8:u13:jari,
+12:u00:Jonathan,
+14:u02:Abdussalam,
+8:u04:Jari,
+14:u06:Kauniainen,
+7:u08:Ted,
+13:u00:Rosenberg,
+11:u02:Baryun,,
+9:u06:02700,
+24:u08:jari.arkko@piuha.net,
+14:u10:abdussalam,
+8:u12:jari,
+14:u14:kauniainen,
+7:u22:Jar,
+8:u23:Jari,
+14:u01:Abdussalam,
+8:u03:Jari,
+14:u05:Kauniainen,
+11:u01:Baryun,,
+9:u05:02700,
+24:u07:jari.arkko@piuha.net,
+8:u11:jari,
+14:u13:kauniainen,
+14:u00:Abdussalam,
+8:u02:Jari,
+14:u04:Kauniainen,
+7:u07:Ted,
+11:u00:Baryun,,
+9:u04:02700,
+24:u06:jari.arkko@piuha.net,
+22:u08:ted.ietf@gmail.com,
+8:u10:jari,
+14:u12:kauniainen,
+5:u20:K,
+6:u21:Ka,
+7:u22:Kau,
+8:u23:Kaun,
+8:u01:Jari,
+14:u03:Kauniainen,
+7:u06:Ted,
+9:u03:02700,
+24:u05:jari.arkko@piuha.net,
+22:u07:ted.ietf@gmail.com,
+14:u11:kauniainen,
+7:u14:ted,
+8:u00:Jari,
+14:u02:Kauniainen,
+7:u05:Ted,
+9:u02:02700,
+24:u04:jari.arkko@piuha.net,
+22:u06:ted.ietf@gmail.com,
+14:u10:kauniainen,
+7:u13:ted,
+14:u01:Kauniainen,
+7:u04:Ted,
+9:u01:02700,
+24:u03:jari.arkko@piuha.net,
+22:u05:ted.ietf@gmail.com,
+7:u12:ted,
+6:u21:Te,
+7:u22:Ted,
+7:u23:Ted,
+14:u00:Kauniainen,
+7:u03:Ted,
+9:u00:02700,
+24:u02:jari.arkko@piuha.net,
+22:u04:ted.ietf@gmail.com,
+7:u11:ted,
+7:u02:Ted,
+24:u01:jari.arkko@piuha.net,
+22:u03:ted.ietf@gmail.com,
+7:u10:ted,
+7:u01:Ted,
+24:u00:jari.arkko@piuha.net,
+22:u02:ted.ietf@gmail.com,
+7:u00:Ted,
+22:u01:ted.ietf@gmail.com,
+11:u05:Network,
+6:u06:B.,
+10:u08:Huawei,
+11:u05:Working,
+7:u06:Liu,
+16:u08:Technologies,
+11:u13:network,
+6:u14:b.,
+11:u04:Network,
+6:u05:B.,
+10:u07:Huawei,
+7:u05:Liu,
+16:u07:Technologies,
+11:u12:network,
+6:u13:b.,
+6:u21:Ne,
+7:u22:Net,
+8:u23:Netw,
+11:u03:Network,
+6:u04:B.,
+10:u06:Huawei,
+7:u04:Liu,
+16:u06:Technologies,
+11:u11:network,
+6:u12:b.,
+10:u14:huawei,
+6:u21:B.,
+6:u22:B.,
+6:u23:B.,
+11:u02:Network,
+6:u03:B.,
+10:u05:Huawei,
+11:u08:Instant,
+7:u03:Liu,
+16:u05:Technologies,
+11:u10:network,
+6:u11:b.,
+10:u13:huawei,
+11:u01:Network,
+6:u02:B.,
+10:u04:Huawei,
+7:u02:Liu,
+16:u04:Technologies,
+14:u08:Congestion,
+6:u10:b.,
+10:u12:huawei,
+6:u21:Hu,
+7:u22:Hua,
+8:u23:Huaw,
+11:u00:Network,
+6:u01:B.,
+10:u03:Huawei,
+11:u07:Instant,
+21:u08:draft-liu-ican-00,
+7:u01:Liu,
+16:u03:Technologies,
+14:u07:Congestion,
+10:u11:huawei,
+6:u00:B.,
+10:u02:Huawei,
+11:u06:Instant,
+7:u00:Liu,
+16:u02:Technologies,
+14:u06:Congestion,
+10:u10:huawei,
+11:u14:instant,
+10:u01:Huawei,
+11:u05:Instant,
+21:u07:draft-liu-ican-00,
+8:u08:iCAN,
+16:u01:Technologies,
+14:u05:Congestion,
+11:u13:instant,
+15:u14:engineering,
+10:u00:Huawei,
+11:u04:Instant,
+21:u06:draft-liu-ican-00,
+16:u00:Technologies,
+14:u04:Congestion,
+12:u08:(instant,
+11:u12:instant,
+15:u13:engineering,
+21:u14:draft-liu-ican-00,
+7:u22:Ins,
+8:u23:Inst,
+11:u03:Instant,
+21:u05:draft-liu-ican-00,
+8:u07:iCAN,
+14:u03:Congestion,
+12:u07:(instant,
+12:u08:directly,
+11:u11:instant,
+15:u12:engineering,
+21:u13:draft-liu-ican-00,
+7:u22:Eng,
+8:u23:Engi,
+7:uI2:---,
+11:u02:Instant,
+21:u04:draft-liu-ican-00,
+8:u06:iCAN,
+14:u02:Congestion,
+12:u06:(instant,
+12:u07:directly,
+6:u08:To,
+11:u10:instant,
+15:u11:engineering,
+21:u12:draft-liu-ican-00,
+8:u14:ican,
+7:uI1:---,
+11:u01:Instant,
+21:u03:draft-liu-ican-00,
+8:u05:iCAN,
+14:u01:Congestion,
+12:u05:(instant,
+12:u06:directly,
+6:u07:To,
+10:u08:paths.,
+15:u10:engineering,
+21:u11:draft-liu-ican-00,
+8:u13:ican,
+11:u14:running,
+7:uI0:---,
+11:u00:Instant,
+21:u02:draft-liu-ican-00,
+8:u04:iCAN,
+9:u08:path,,
+14:u00:Congestion,
+12:u04:(instant,
+12:u05:directly,
+6:u06:To,
+10:u07:paths.,
+21:u10:draft-liu-ican-00,
+8:u12:ican,
+11:u13:running,
+6:u21:iC,
+7:u22:iCA,
+8:u23:iCAN,
+21:u01:draft-liu-ican-00,
+8:u03:iCAN,
+12:u03:(instant,
+12:u04:directly,
+6:u05:To,
+10:u06:paths.,
+6:u08:so,
+8:u11:ican,
+11:u12:running,
+6:u21:ru,
+7:u22:run,
+8:u23:runn,
+21:u00:draft-liu-ican-00,
+8:u02:iCAN,
+9:u07:path,,
+12:u02:(instant,
+12:u03:directly,
+6:u04:To,
+10:u05:paths.,
+6:u07:so,
+12:u08:switched,
+8:u10:ican,
+11:u11:running,
+8:u01:iCAN,
+9:u06:path,,
+12:u08:achieve:,
+12:u01:(instant,
+12:u02:directly,
+6:u03:To,
+10:u04:paths.,
+6:u06:so,
+12:u07:switched,
+11:u10:running,
+9:u14:path,,
+8:u00:iCAN,
+9:u05:path,,
+12:u00:(instant,
+12:u01:directly,
+6:u02:To,
+10:u03:paths.,
+6:u05:so,
+12:u06:switched,
+9:u13:path,,
+9:u04:path,,
+12:u07:achieve:,
+8:u08:able,
+12:u00:directly,
+6:u01:To,
+10:u02:paths.,
+6:u04:so,
+12:u05:switched,
+7:u08:SDN,
+9:u12:path,,
+7:u22:pat,
+8:u23:path,
+9:u03:path,,
+12:u06:achieve:,
+7:u08:nor,
+6:u00:To,
+10:u01:paths.,
+6:u03:so,
+12:u04:switched,
+7:u07:SDN,
+9:u11:path,,
+12:u14:achieve:,
+9:u02:path,,
+12:u05:achieve:,
+8:u07:able,
+15:u08:(especially,
+10:u00:paths.,
+6:u02:so,
+12:u03:switched,
+7:u06:SDN,
+9:u10:path,,
+12:u13:achieve:,
+9:u01:path,,
+12:u04:achieve:,
+8:u06:able,
+7:u07:nor,
+14:u08:perfectly:,
+6:u01:so,
+12:u02:switched,
+7:u05:SDN,
+12:u12:achieve:,
+8:u14:able,
+7:u22:ach,
+8:u23:achi,
+9:u00:path,,
+12:u03:achieve:,
+8:u05:able,
+7:u06:nor,
+15:u07:(especially,
+6:u00:so,
+12:u01:switched,
+7:u04:SDN,
+14:u08:controller,
+12:u11:achieve:,
+8:u13:able,
+7:u14:nor,
+12:u02:achieve:,
+8:u04:able,
+7:u05:nor,
+15:u06:(especially,
+14:u07:perfectly:,
+12:u00:switched,
+7:u03:SDN,
+14:u07:controller,
+12:u10:achieve:,
+8:u12:able,
+7:u13:nor,
+15:u14:(especially,
+6:u21:ab,
+7:u22:abl,
+8:u23:able,
+12:u01:achieve:,
+8:u03:able,
+7:u04:nor,
+15:u05:(especially,
+14:u06:perfectly:,
+7:u02:SDN,
+14:u06:controller,
+15:u08:Traditional,
+8:u11:able,
+7:u12:nor,
+15:u13:(especially,
+14:u14:perfectly:,
+7:u23:nor,
+8:uI2:().,,
+12:u00:achieve:,
+8:u02:able,
+7:u03:nor,
+15:u04:(especially,
+14:u05:perfectly:,
+7:u01:SDN,
+14:u05:controller,
+15:u07:Traditional,
+8:u10:able,
+7:u11:nor,
+15:u12:(especially,
+14:u13:perfectly:,
+6:u21:(e,
+7:u22:(es,
+8:u23:(esp,
+8:uI1:().,,
+7:uI2::-,,
+8:u01:able,
+7:u02:nor,
+15:u03:(especially,
+14:u04:perfectly:,
+7:u00:SDN,
+14:u04:controller,
+15:u06:Traditional,
+7:u10:nor,
+15:u11:(especially,
+14:u12:perfectly:,
+6:u21:pe,
+7:u22:per,
+8:u23:perf,
+8:uI0:().,,
+7:uI1::-,,
+8:u00:able,
+7:u01:nor,
+15:u02:(especially,
+14:u03:perfectly:,
+14:u03:controller,
+15:u05:Traditional,
+15:u10:(especially,
+14:u11:perfectly:,
+7:uI0::-,,
+7:u00:nor,
+15:u01:(especially,
+14:u02:perfectly:,
+14:u02:controller,
+15:u04:Traditional,
+14:u10:perfectly:,
+15:u00:(especially,
+14:u01:perfectly:,
+14:u01:controller,
+15:u03:Traditional,
+14:u00:perfectly:,
+14:u00:controller,
+15:u02:Traditional,
+15:u01:Traditional,
+15:u00:Traditional,
+7:u08:Liu,
+7:u07:Liu,
+7:u14:liu,
+7:u13:liu,
+7:u12:liu,
+6:u21:Li,
+7:u22:Liu,
+7:u23:Liu,
+7:u11:liu,
+7:u10:liu,
+8:u08:2.1.,
+16:u08:Architecture,
+8:u07:2.1.,
+8:u08:2.2.,
+16:u07:Architecture,
+11:uI2:.......,
+8:u06:2.1.,
+16:u06:Architecture,
+8:u14:2.1.,
+11:uI1:.......,
+8:u05:2.1.,
+8:u07:2.2.,
+10:u08:2.2.1.,
+16:u05:Architecture,
+8:u13:2.1.,
+11:uI0:.......,
+8:u04:2.1.,
+8:u06:2.2.,
+16:u04:Architecture,
+8:u08:Path,
+8:u12:2.1.,
+8:u14:2.2.,
+7:u22:2.1,
+8:u23:2.1.,
+8:u03:2.1.,
+8:u05:2.2.,
+10:u07:2.2.1.,
+10:u08:2.2.2.,
+16:u03:Architecture,
+8:u07:Path,
+8:u11:2.1.,
+8:u13:2.2.,
+8:u02:2.1.,
+8:u04:2.2.,
+10:u06:2.2.1.,
+16:u02:Architecture,
+8:u06:Path,
+15:u08:Recognition,
+8:u10:2.1.,
+8:u12:2.2.,
+10:u14:2.2.1.,
+7:u22:2.2,
+8:u23:2.2.,
+8:u01:2.1.,
+8:u03:2.2.,
+10:u05:2.2.1.,
+10:u07:2.2.2.,
+10:u08:2.2.3.,
+16:u01:Architecture,
+8:u05:Path,
+15:u07:Recognition,
+8:u11:2.2.,
+10:u13:2.2.1.,
+8:u00:2.1.,
+8:u02:2.2.,
+10:u04:2.2.1.,
+10:u06:2.2.2.,
+16:u00:Architecture,
+8:u04:Path,
+15:u06:Recognition,
+8:u08:Flow,
+8:u10:2.2.,
+10:u12:2.2.1.,
+10:u14:2.2.2.,
+8:u01:2.2.,
+10:u03:2.2.1.,
+10:u05:2.2.2.,
+10:u07:2.2.3.,
+8:u03:Path,
+15:u05:Recognition,
+8:u07:Flow,
+10:u11:2.2.1.,
+10:u13:2.2.2.,
+8:u00:2.2.,
+10:u02:2.2.1.,
+10:u04:2.2.2.,
+10:u06:2.2.3.,
+8:u02:Path,
+15:u04:Recognition,
+8:u06:Flow,
+7:u08:Use,
+10:u10:2.2.1.,
+10:u12:2.2.2.,
+10:u14:2.2.3.,
+10:u01:2.2.1.,
+10:u03:2.2.2.,
+10:u05:2.2.3.,
+8:u08:3.1.,
+8:u01:Path,
+15:u03:Recognition,
+8:u05:Flow,
+7:u07:Use,
+10:u11:2.2.2.,
+10:u13:2.2.3.,
+19:uI2:...............,
+10:u00:2.2.1.,
+10:u02:2.2.2.,
+10:u04:2.2.3.,
+8:u00:Path,
+15:u02:Recognition,
+8:u04:Flow,
+7:u06:Use,
+11:u08:Network,
+10:u10:2.2.2.,
+10:u12:2.2.3.,
+19:uI1:...............,
+10:u01:2.2.2.,
+10:u03:2.2.3.,
+8:u07:3.1.,
+8:u08:3.2.,
+15:u01:Recognition,
+8:u03:Flow,
+7:u05:Use,
+11:u07:Network,
+10:u11:2.2.3.,
+5:u14:6,
+19:uI0:...............,
+10:u00:2.2.2.,
+10:u02:2.2.3.,
+8:u06:3.1.,
+15:u00:Recognition,
+8:u02:Flow,
+7:u04:Use,
+11:u06:Network,
+7:u08:SLA,
+10:u10:2.2.3.,
+5:u13:6,
+8:u14:3.1.,
+10:u01:2.2.3.,
+8:u05:3.1.,
+8:u07:3.2.,
+8:u08:3.3.,
+8:u01:Flow,
+7:u03:Use,
+7:u07:SLA,
+5:u12:6,
+8:u13:3.1.,
+5:u21:6,
+5:u22:6,
+5:u23:6,
+10:u00:2.2.3.,
+8:u04:3.1.,
+8:u06:3.2.,
+8:u00:Flow,
+7:u02:Use,
+7:u06:SLA,
+20:u08:Fine-Granularity,
+5:u11:6,
+8:u12:3.1.,
+8:u14:3.2.,
+7:u22:3.1,
+8:u23:3.1.,
+8:u03:3.1.,
+8:u05:3.2.,
+8:u07:3.3.,
+7:u01:Use,
+7:u05:SLA,
+20:u07:Fine-Granularity,
+5:u10:6,
+8:u11:3.1.,
+8:u13:3.2.,
+8:u02:3.1.,
+8:u04:3.2.,
+8:u06:3.3.,
+7:u00:Use,
+7:u04:SLA,
+20:u06:Fine-Granularity,
+18:u08:Implementation,
+8:u10:3.1.,
+8:u12:3.2.,
+8:u14:3.3.,
+7:u22:3.2,
+8:u23:3.2.,
+8:u01:3.1.,
+8:u03:3.2.,
+8:u05:3.3.,
+8:u08:4.1.,
+7:u03:SLA,
+20:u05:Fine-Granularity,
+18:u07:Implementation,
+8:u11:3.2.,
+8:u13:3.3.,
+21:uI2:..-..............,
+8:u00:3.1.,
+8:u02:3.2.,
+8:u04:3.3.,
+7:u02:SLA,
+20:u04:Fine-Granularity,
+18:u06:Implementation,
+8:u10:3.2.,
+8:u12:3.3.,
+7:u22:3.3,
+8:u23:3.3.,
+21:uI1:..-..............,
+8:u01:3.2.,
+8:u03:3.3.,
+8:u07:4.1.,
+8:u08:4.2.,
+7:u01:SLA,
+20:u03:Fine-Granularity,
+18:u05:Implementation,
+8:u11:3.3.,
+21:uI0:..-..............,
+8:u00:3.2.,
+8:u02:3.3.,
+8:u06:4.1.,
+7:u00:SLA,
+20:u02:Fine-Granularity,
+18:u04:Implementation,
+8:u10:3.3.,
+8:u14:4.1.,
+8:u01:3.3.,
+8:u05:4.1.,
+8:u07:4.2.,
+8:u08:4.3.,
+20:u01:Fine-Granularity,
+18:u03:Implementation,
+8:u13:4.1.,
+8:u00:3.3.,
+8:u04:4.1.,
+8:u06:4.2.,
+20:u00:Fine-Granularity,
+18:u02:Implementation,
+8:u12:4.1.,
+8:u14:4.2.,
+7:u22:4.1,
+8:u23:4.1.,
+8:u03:4.1.,
+8:u05:4.2.,
+8:u07:4.3.,
+18:u01:Implementation,
+8:u11:4.1.,
+8:u13:4.2.,
+8:u02:4.1.,
+8:u04:4.2.,
+8:u06:4.3.,
+18:u00:Implementation,
+19:u08:Standardization,
+8:u10:4.1.,
+8:u12:4.2.,
+8:u14:4.3.,
+7:u22:4.2,
+8:u23:4.2.,
+8:u01:4.1.,
+8:u03:4.2.,
+8:u05:4.3.,
+19:u07:Standardization,
+8:u11:4.2.,
+8:u13:4.3.,
+25:uI2:../-.................,
+8:u00:4.1.,
+8:u02:4.2.,
+8:u04:4.3.,
+19:u06:Standardization,
+8:u10:4.2.,
+8:u12:4.3.,
+7:u22:4.3,
+8:u23:4.3.,
+25:uI1:../-.................,
+8:u01:4.2.,
+8:u03:4.3.,
+19:u05:Standardization,
+8:u11:4.3.,
+25:uI0:../-.................,
+8:u00:4.2.,
+8:u02:4.3.,
+19:u04:Standardization,
+8:u10:4.3.,
+8:u01:4.3.,
+19:u03:Standardization,
+8:u00:4.3.,
+19:u02:Standardization,
+19:u01:Standardization,
+19:u00:Standardization,
+8:u08:9.1.,
+8:u07:9.1.,
+8:u08:9.2.,
+8:u06:9.1.,
+15:u08:Informative,
+8:u14:9.1.,
+8:u05:9.1.,
+8:u07:9.2.,
+12:u08:Author's,
+15:u07:Informative,
+8:u13:9.1.,
+8:u04:9.1.,
+8:u06:9.2.,
+15:u06:Informative,
+8:u12:9.1.,
+8:u14:9.2.,
+7:u22:9.1,
+8:u23:9.1.,
+8:u03:9.1.,
+8:u05:9.2.,
+12:u07:Author's,
+15:u05:Informative,
+8:u11:9.1.,
+8:u13:9.2.,
+8:u02:9.1.,
+8:u04:9.2.,
+12:u06:Author's,
+15:u04:Informative,
+8:u10:9.1.,
+8:u12:9.2.,
+12:u14:author's,
+7:u22:9.2,
+8:u23:9.2.,
+8:u01:9.1.,
+8:u03:9.2.,
+12:u05:Author's,
+15:u03:Informative,
+8:u11:9.2.,
+12:u13:author's,
+29:uI2:'........................,
+8:u00:9.1.,
+8:u02:9.2.,
+12:u04:Author's,
+15:u02:Informative,
+7:u08:can,
+8:u10:9.2.,
+12:u12:author's,
+29:uI1:'........................,
+8:u01:9.2.,
+12:u03:Author's,
+15:u01:Informative,
+7:u07:can,
+14:u08:capability,
+12:u11:author's,
+15:u14:traditional,
+29:uI0:'........................,
+8:u00:9.2.,
+12:u02:Author's,
+15:u00:Informative,
+7:u06:can,
+14:u07:capability,
+12:u10:author's,
+15:u13:traditional,
+12:u01:Author's,
+7:u05:can,
+14:u06:capability,
+15:u12:traditional,
+8:u23:Trad,
+12:u00:Author's,
+7:u04:can,
+14:u05:capability,
+15:u11:traditional,
+7:u03:can,
+14:u04:capability,
+15:u10:traditional,
+7:u02:can,
+14:u03:capability,
+7:u01:can,
+14:u02:capability,
+7:u00:can,
+14:u01:capability,
+11:u08:doable;,
+15:u08:flexibility,
+14:u00:capability,
+11:u07:doable;,
+15:u08:controller,,
+11:u06:doable;,
+15:u07:flexibility,
+11:u05:doable;,
+7:uI2:;,-,
+15:u06:flexibility,
+15:u07:controller,,
+11:u04:doable;,
+15:u14:flexibility,
+7:uI1:;,-,
+15:u05:flexibility,
+15:u06:controller,,
+13:u08:situation,
+11:u03:doable;,
+11:u08:implies,
+15:u13:flexibility,
+15:u14:controller,,
+7:uI0:;,-,
+15:u04:flexibility,
+15:u05:controller,,
+24:u08:planning/controlling,
+11:u02:doable;,
+11:u07:implies,
+15:u12:flexibility,
+15:u13:controller,,
+7:u22:fle,
+8:u23:flex,
+15:u03:flexibility,
+15:u04:controller,,
+13:u07:situation,
+11:u08:traffic,
+11:u01:doable;,
+11:u06:implies,
+13:u08:(minuets,,
+15:u11:flexibility,
+15:u12:controller,,
+15:u02:flexibility,
+15:u03:controller,,
+13:u06:situation,
+24:u07:planning/controlling,
+13:u08:real-time,
+11:u00:doable;,
+11:u05:implies,
+13:u07:(minuets,,
+15:u10:flexibility,
+15:u11:controller,,
+13:u14:situation,
+15:u01:flexibility,
+15:u02:controller,,
+13:u05:situation,
+24:u06:planning/controlling,
+11:u07:traffic,
+11:u08:(metro,,
+11:u04:implies,
+13:u06:(minuets,,
+9:u08:(e.g.,
+15:u10:controller,,
+13:u13:situation,
+24:u14:planning/controlling,
+15:u00:flexibility,
+15:u01:controller,,
+13:u04:situation,
+24:u05:planning/controlling,
+11:u06:traffic,
+13:u07:real-time,
+13:u08:resources,
+11:u03:implies,
+13:u05:(minuets,,
+9:u07:(e.g.,
+13:u08:backbones,
+13:u12:situation,
+24:u13:planning/controlling,
+11:u14:traffic,
+7:u22:sit,
+8:u23:situ,
+9:uI2:/(,-),
+15:u00:controller,,
+13:u03:situation,
+24:u04:planning/controlling,
+11:u05:traffic,
+13:u06:real-time,
+11:u07:(metro,,
+9:u08:waste,
+11:u02:implies,
+13:u04:(minuets,,
+9:u06:(e.g.,
+13:u07:backbones,
+9:u08:could,
+13:u11:situation,
+24:u12:planning/controlling,
+11:u13:traffic,
+13:u14:real-time,
+6:u21:pl,
+7:u22:pla,
+8:u23:plan,
+9:uI1:/(,-),
+13:u02:situation,
+24:u03:planning/controlling,
+11:u04:traffic,
+13:u05:real-time,
+11:u06:(metro,,
+13:u07:resources,
+11:u01:implies,
+13:u03:(minuets,,
+9:u05:(e.g.,
+13:u06:backbones,
+9:u07:could,
+13:u10:situation,
+24:u11:planning/controlling,
+11:u12:traffic,
+13:u13:real-time,
+11:u14:(metro,,
+8:u23:traf,
+9:uI0:/(,-),
+12:uI2:-(..-).,,
+13:u01:situation,
+24:u02:planning/controlling,
+11:u03:traffic,
+13:u04:real-time,
+11:u05:(metro,,
+13:u06:resources,
+9:u07:waste,
+16:u08:architecture,
+11:u00:implies,
+13:u02:(minuets,,
+9:u04:(e.g.,
+13:u05:backbones,
+9:u06:could,
+9:u08:draft,
+24:u10:planning/controlling,
+11:u11:traffic,
+13:u12:real-time,
+11:u13:(metro,,
+13:u14:resources,
+7:u22:rea,
+8:u23:real,
+12:uI1:-(..-).,,
+9:uI2:(,.),,
+13:u00:situation,
+24:u01:planning/controlling,
+11:u02:traffic,
+13:u03:real-time,
+11:u04:(metro,,
+13:u05:resources,
+9:u06:waste,
+8:u08:time,
+13:u01:(minuets,,
+9:u03:(e.g.,
+13:u04:backbones,
+9:u05:could,
+9:u07:draft,
+11:u10:traffic,
+13:u11:real-time,
+11:u12:(metro,,
+13:u13:resources,
+9:u14:waste,
+6:u21:(m,
+7:u22:(me,
+8:u23:(met,
+12:uI0:-(..-).,,
+9:uI1:(,.),,
+24:u00:planning/controlling,
+11:u01:traffic,
+13:u02:real-time,
+11:u03:(metro,,
+13:u04:resources,
+9:u05:waste,
+16:u07:architecture,
+13:u00:(minuets,,
+9:u02:(e.g.,
+13:u03:backbones,
+9:u04:could,
+9:u06:draft,
+13:u10:real-time,
+11:u11:(metro,,
+13:u12:resources,
+9:u13:waste,
+7:u22:res,
+8:u23:reso,
+9:uI0:(,.),,
+11:u00:traffic,
+13:u01:real-time,
+11:u02:(metro,,
+13:u03:resources,
+9:u04:waste,
+16:u06:architecture,
+8:u07:time,
+9:u01:(e.g.,
+13:u02:backbones,
+9:u03:could,
+9:u05:draft,
+12:u08:includes,
+11:u10:(metro,,
+13:u11:resources,
+9:u12:waste,
+16:u14:architecture,
+6:u21:wa,
+7:u22:was,
+8:u23:wast,
+13:u00:real-time,
+11:u01:(metro,,
+13:u02:resources,
+9:u03:waste,
+16:u05:architecture,
+8:u06:time,
+14:u08:congestion,
+9:u00:(e.g.,
+13:u01:backbones,
+9:u02:could,
+9:u04:draft,
+12:u07:includes,
+13:u10:resources,
+9:u11:waste,
+16:u13:architecture,
+8:u14:time,
+11:u00:(metro,,
+13:u01:resources,
+9:u02:waste,
+16:u04:architecture,
+8:u05:time,
+13:u00:backbones,
+9:u01:could,
+9:u03:draft,
+12:u06:includes,
+9:u10:waste,
+16:u12:architecture,
+8:u13:time,
+7:u22:arc,
+8:u23:arch,
+13:u00:resources,
+9:u01:waste,
+16:u03:architecture,
+8:u04:time,
+14:u07:congestion,
+9:u00:could,
+9:u02:draft,
+12:u05:includes,
+13:u08:underload,
+16:u11:architecture,
+8:u12:time,
+9:u00:waste,
+16:u02:architecture,
+8:u03:time,
+14:u06:congestion,
+9:u01:draft,
+12:u04:includes,
+13:u07:underload,
+15:u08:Recognizing,
+16:u10:architecture,
+8:u11:time,
+14:u14:congestion,
+16:u01:architecture,
+8:u02:time,
+14:u05:congestion,
+12:u08:balance,,
+9:u00:draft,
+12:u03:includes,
+13:u06:underload,
+15:u07:Recognizing,
+11:u08:Ingress,
+8:u10:time,
+14:u13:congestion,
+16:u00:architecture,
+8:u01:time,
+14:u04:congestion,
+12:u02:includes,
+13:u05:underload,
+15:u06:Recognizing,
+11:u07:Ingress,
+14:u12:congestion,
+8:u23:cong,
+8:u00:time,
+14:u03:congestion,
+12:u07:balance,,
+9:u08:iCAN.,
+12:u01:includes,
+13:u04:underload,
+15:u05:Recognizing,
+11:u06:Ingress,
+14:u11:congestion,
+14:u02:congestion,
+12:u06:balance,,
+12:u00:includes,
+13:u03:underload,
+15:u04:Recognizing,
+11:u05:Ingress,
+14:u10:congestion,
+12:u14:balance,,
+14:u01:congestion,
+12:u05:balance,,
+9:u07:iCAN.,
+13:u02:underload,
+15:u03:Recognizing,
+11:u04:Ingress,
+12:u13:balance,,
+14:u00:congestion,
+12:u04:balance,,
+9:u06:iCAN.,
+13:u01:underload,
+15:u02:Recognizing,
+11:u03:Ingress,
+12:u12:balance,,
+9:u14:ican.,
+7:u22:bal,
+8:u23:bala,
+12:u03:balance,,
+9:u05:iCAN.,
+13:u00:underload,
+15:u01:Recognizing,
+11:u02:Ingress,
+12:u11:balance,,
+9:u13:ican.,
+12:u02:balance,,
+9:u04:iCAN.,
+15:u00:Recognizing,
+11:u01:Ingress,
+12:u10:balance,,
+9:u12:ican.,
+12:u01:balance,,
+9:u03:iCAN.,
+11:u00:Ingress,
+9:u11:ican.,
+12:u00:balance,,
+9:u02:iCAN.,
+9:u10:ican.,
+9:u01:iCAN.,
+9:u00:iCAN.,
+17:u08:+-----------+,
+17:u07:+-----------+,
+17:u06:+-----------+,
+17:u14:+-----------+,
+17:u05:+-----------+,
+15:u08:Controller|,
+17:u13:+-----------+,
+15:uI2:-----------,
+17:u04:+-----------+,
+15:u07:Controller|,
+17:u12:+-----------+,
+15:uI1:-----------,
+17:u03:+-----------+,
+15:u06:Controller|,
+17:u11:+-----------+,
+15:uI0:-----------,
+17:u02:+-----------+,
+15:u05:Controller|,
+17:u10:+-----------+,
+17:u01:+-----------+,
+16:u08:0.Multi-path,
+15:u04:Controller|,
+17:u00:+-----------+,
+12:u08:Planning,
+15:u03:Controller|,
+16:u07:0.Multi-path,
+15:u02:Controller|,
+16:u06:0.Multi-path,
+12:u07:Planning,
+15:u01:Controller|,
+16:u14:0.multi-path,
+16:u05:0.Multi-path,
+12:u06:Planning,
+5:u08:v,
+15:u00:Controller|,
+16:u13:0.multi-path,
+12:u14:planning,
+16:u04:0.Multi-path,
+12:u05:Planning,
+16:u12:0.multi-path,
+12:u13:planning,
+5:u20:0,
+6:u21:0.,
+7:u22:0.M,
+8:u23:0.Mu,
+16:u03:0.Multi-path,
+12:u04:Planning,
+5:u07:v,
+12:u08:Imcoming,
+16:u08:--------Path,
+16:u11:0.multi-path,
+12:u12:planning,
+6:u21:Pl,
+7:u22:Pla,
+8:u23:Plan,
+16:u02:0.Multi-path,
+12:u03:Planning,
+5:u06:v,
+16:u07:--------Path,
+9:u08:Flows,
+16:u10:0.multi-path,
+12:u11:planning,
+5:u14:v,
+16:u01:0.Multi-path,
+12:u02:Planning,
+5:u05:v,
+12:u07:Imcoming,
+19:u08:-------------->,
+16:u06:--------Path,
+9:u07:Flows,
+12:u10:planning,
+5:u13:v,
+16:u00:0.Multi-path,
+12:u01:Planning,
+5:u04:v,
+12:u06:Imcoming,
+16:u05:--------Path,
+9:u06:Flows,
+5:u12:v,
+12:u14:imcoming,
+5:u21:v,
+5:u22:v,
+5:u23:v,
+45:uI2:-----------------------------------------,
+6:uI2:41,
+12:u00:Planning,
+5:u03:v,
+12:u05:Imcoming,
+19:u07:-------------->,
+16:u04:--------Path,
+9:u05:Flows,
+5:u11:v,
+12:u13:imcoming,
+45:uI1:-----------------------------------------,
+6:uI1:41,
+5:u02:v,
+12:u04:Imcoming,
+19:u06:-------------->,
+16:u03:--------Path,
+9:u04:Flows,
+5:u10:v,
+12:u12:imcoming,
+19:u14:-------------->,
+6:u21:Im,
+7:u22:Imc,
+8:u23:Imco,
+45:uI0:-----------------------------------------,
+6:uI0:41,
+5:u01:v,
+12:u03:Imcoming,
+19:u05:-------------->,
+16:u02:--------Path,
+9:u03:Flows,
+12:u11:imcoming,
+19:u13:-------------->,
+18:uI2:--------------,
+5:u00:v,
+12:u02:Imcoming,
+19:u04:-------------->,
+16:u01:--------Path,
+9:u02:Flows,
+12:u10:imcoming,
+19:u12:-------------->,
+5:u20:-,
+6:u21:--,
+7:u22:---,
+8:u23:----,
+18:uI1:--------------,
+24:uI2:--------------------,
+12:u01:Imcoming,
+19:u03:-------------->,
+16:u00:--------Path,
+9:u01:Flows,
+19:u11:-------------->,
+18:uI0:--------------,
+24:uI1:--------------------,
+12:u00:Imcoming,
+19:u02:-------------->,
+17:u08:+-/------\--+,
+9:u00:Flows,
+19:u10:-------------->,
+24:uI0:--------------------,
+19:u01:-------------->,
+5:u08:/,
+32:u08:<-------------------------->,
+19:u00:-------------->,
+17:u07:+-/------\--+,
+32:u07:<-------------------------->,
+17:u06:+-/------\--+,
+5:u07:/,
+10:u08:1.Path,
+32:u06:<-------------------------->,
+17:u14:+-/------\--+,
+17:u05:+-/------\--+,
+5:u06:/,
+32:u05:<-------------------------->,
+11:u08:Quality,
+17:u13:+-/------\--+,
+5:u14:/,
+50:uI2:-/--------------------------------------------,
+6:uI2:46,
+17:u04:+-/------\--+,
+5:u05:/,
+10:u07:1.Path,
+32:u04:<-------------------------->,
+11:u07:Quality,
+17:u12:+-/------\--+,
+5:u13:/,
+5:u14:\,
+7:u22:+-/,
+8:u23:+-/-,
+50:uI1:-/--------------------------------------------,
+6:uI1:46,
+17:u03:+-/------\--+,
+5:u04:/,
+10:u06:1.Path,
+32:u03:<-------------------------->,
+11:u06:Quality,
+15:u08:recognition,
+17:u11:+-/------\--+,
+5:u12:/,
+5:u13:\,
+10:u14:1.path,
+5:u20:/,
+5:u21:/,
+5:u22:/,
+5:u23:/,
+50:uI0:-/--------------------------------------------,
+6:uI0:46,
+17:u02:+-/------\--+,
+5:u03:/,
+10:u05:1.Path,
+32:u02:<-------------------------->,
+11:u05:Quality,
+15:u07:recognition,
+17:u10:+-/------\--+,
+5:u11:/,
+5:u12:\,
+10:u13:1.path,
+5:u20:\,
+5:u21:\,
+5:u22:\,
+5:u23:\,
+17:u01:+-/------\--+,
+5:u02:/,
+10:u04:1.Path,
+32:u01:<-------------------------->,
+11:u04:Quality,
+15:u06:recognition,
+5:u10:/,
+5:u11:\,
+10:u12:1.path,
+7:u22:1.P,
+8:u23:1.Pa,
+8:uI2:/.(),
+17:u00:+-/------\--+,
+5:u01:/,
+10:u03:1.Path,
+32:u00:<-------------------------->,
+11:u03:Quality,
+15:u05:recognition,
+9:u08:above,
+5:u10:\,
+10:u11:1.path,
+8:uI1:/.(),
+5:u00:/,
+10:u02:1.Path,
+16:u08:-Responsible,
+11:u02:Quality,
+15:u04:recognition,
+9:u07:above,
+14:u08:Controller,
+10:u10:1.path,
+8:uI0:/.(),
+10:u01:1.Path,
+11:u01:Quality,
+15:u03:recognition,
+9:u06:above,
+14:u07:Controller,
+10:u00:1.Path,
+16:u07:-Responsible,
+10:u08:-After,
+11:u00:Quality,
+15:u02:recognition,
+9:u05:above,
+14:u06:Controller,
+16:u06:-Responsible,
+15:u01:recognition,
+9:u04:above,
+14:u05:Controller,
+14:u08:delivering,
+16:u14:-responsible,
+16:u05:-Responsible,
+10:u07:-After,
+15:u00:recognition,
+9:u03:above,
+14:u04:Controller,
+14:u07:delivering,
+9:u08:would,
+16:u13:-responsible,
+8:u14:that,
+16:u04:-Responsible,
+10:u06:-After,
+11:u08:-Serves,
+9:u02:above,
+14:u03:Controller,
+14:u06:delivering,
+9:u07:would,
+16:u12:-responsible,
+8:u13:that,
+10:u14:-after,
+6:u21:-R,
+7:u22:-Re,
+8:u23:-Res,
+16:u03:-Responsible,
+10:u05:-After,
+9:u01:above,
+14:u02:Controller,
+14:u05:delivering,
+9:u06:would,
+16:u11:-responsible,
+8:u12:that,
+10:u13:-after,
+14:u14:controller,
+7:u22:tha,
+8:u23:that,
+16:u02:-Responsible,
+10:u04:-After,
+11:u07:-Serves,
+9:u00:above,
+14:u01:Controller,
+14:u04:delivering,
+9:u05:would,
+16:u10:-responsible,
+8:u11:that,
+10:u12:-after,
+14:u13:controller,
+6:u21:-A,
+7:u22:-Af,
+8:u23:-Aft,
+16:u01:-Responsible,
+10:u03:-After,
+11:u06:-Serves,
+15:u08:measurement,
+14:u00:Controller,
+14:u03:delivering,
+9:u04:would,
+8:u10:that,
+10:u11:-after,
+14:u12:controller,
+11:u14:-serves,
+6:uI2:.:,
+16:u00:-Responsible,
+10:u02:-After,
+11:u05:-Serves,
+14:u02:delivering,
+9:u03:would,
+13:u08:protocol.,
+10:u10:-after,
+14:u11:controller,
+11:u13:-serves,
+6:uI1:.:,
+8:uI2:-"".,
+10:u01:-After,
+11:u04:-Serves,
+15:u07:measurement,
+13:u08:calculate,
+14:u01:delivering,
+9:u02:would,
+13:u07:protocol.,
+11:u08:getting,
+14:u10:controller,
+11:u12:-serves,
+6:u21:-S,
+7:u22:-Se,
+8:u23:-Ser,
+6:uI0:.:,
+8:uI1:-"".,
+10:u00:-After,
+11:u03:-Serves,
+15:u06:measurement,
+14:u00:delivering,
+9:u01:would,
+13:u06:protocol.,
+11:u07:getting,
+11:u11:-serves,
+15:u14:measurement,
+8:uI0:-"".,
+11:u02:-Serves,
+15:u05:measurement,
+13:u07:calculate,
+9:u00:would,
+13:u05:protocol.,
+11:u06:getting,
+11:u10:-serves,
+15:u13:measurement,
+11:u01:-Serves,
+15:u04:measurement,
+13:u06:calculate,
+7:u08:-In,
+13:u04:protocol.,
+11:u05:getting,
+11:u08:quality,
+15:u12:measurement,
+13:u14:calculate,
+8:u23:meas,
+11:u00:-Serves,
+15:u03:measurement,
+13:u05:calculate,
+10:u08:router,
+13:u03:protocol.,
+11:u04:getting,
+11:u07:quality,
+15:u11:measurement,
+13:u13:calculate,
+15:u02:measurement,
+13:u04:calculate,
+7:u07:-In,
+13:u08:switching,
+13:u02:protocol.,
+11:u03:getting,
+11:u06:quality,
+15:u10:measurement,
+13:u12:calculate,
+7:u22:cal,
+8:u23:calc,
+15:u01:measurement,
+13:u03:calculate,
+7:u06:-In,
+10:u07:router,
+13:u01:protocol.,
+11:u02:getting,
+11:u05:quality,
+13:u11:calculate,
+7:u14:-in,
+15:u00:measurement,
+13:u02:calculate,
+7:u05:-In,
+10:u06:router,
+13:u07:switching,
+13:u00:protocol.,
+11:u01:getting,
+11:u04:quality,
+13:u10:calculate,
+7:u13:-in,
+10:u14:router,
+13:u01:calculate,
+7:u04:-In,
+10:u05:router,
+13:u06:switching,
+11:u00:getting,
+11:u03:quality,
+7:u12:-in,
+10:u13:router,
+13:u14:switching,
+6:u21:-I,
+7:u22:-In,
+7:u23:-In,
+13:u00:calculate,
+7:u03:-In,
+10:u04:router,
+13:u05:switching,
+11:u02:quality,
+7:u11:-in,
+10:u12:router,
+13:u13:switching,
+7:u22:rou,
+8:u23:rout,
+7:u02:-In,
+10:u03:router,
+13:u04:switching,
+11:u01:quality,
+7:u10:-in,
+10:u11:router,
+13:u12:switching,
+6:u21:sw,
+7:u22:swi,
+8:u23:swit,
+7:u01:-In,
+10:u02:router,
+13:u03:switching,
+11:u00:quality,
+10:u10:router,
+13:u11:switching,
+7:u00:-In,
+10:u01:router,
+13:u02:switching,
+13:u10:switching,
+10:u00:router,
+13:u01:switching,
+9:u08:-Only,
+10:u08:Egress,
+13:u00:switching,
+8:u08:path,
+10:u07:Egress,
+9:u07:-Only,
+10:u06:Egress,
+15:u08:assessment.,
+9:u06:-Only,
+8:u07:path,
+10:u05:Egress,
+15:u07:assessment.,
+9:u14:-only,
+9:u05:-Only,
+8:u06:path,
+10:u04:Egress,
+15:u06:assessment.,
+9:u13:-only,
+8:u14:path,
+9:u04:-Only,
+8:u05:path,
+10:u03:Egress,
+15:u05:assessment.,
+10:u08:Req-1:,
+9:u12:-only,
+8:u13:path,
+6:u21:-O,
+7:u22:-On,
+8:u23:-Onl,
+9:u03:-Only,
+8:u04:path,
+32:u08:[I-D.dang-ippm-congestion].),
+10:u02:Egress,
+15:u04:assessment.,
+10:u07:Req-1:,
+10:u08:(Note:,
+9:u11:-only,
+8:u12:path,
+9:u02:-Only,
+8:u03:path,
+10:u01:Egress,
+15:u03:assessment.,
+10:u06:Req-1:,
+10:u07:(Note:,
+9:u10:-only,
+8:u11:path,
+9:u01:-Only,
+8:u02:path,
+32:u07:[I-D.dang-ippm-congestion].),
+10:u00:Egress,
+15:u02:assessment.,
+10:u05:Req-1:,
+10:u06:(Note:,
+10:u08:Req-2:,
+8:u10:path,
+10:u14:paths.,
+9:u00:-Only,
+8:u01:path,
+32:u06:[I-D.dang-ippm-congestion].),
+15:u01:assessment.,
+10:u04:Req-1:,
+10:u05:(Note:,
+10:u07:Req-2:,
+10:u13:paths.,
+32:u14:[i-d.dang-ippm-congestion].),
+8:uI2:.(::,
+8:u00:path,
+32:u05:[I-D.dang-ippm-congestion].),
+15:u00:assessment.,
+10:u03:Req-1:,
+10:u04:(Note:,
+10:u06:Req-2:,
+10:u12:paths.,
+32:u13:[i-d.dang-ippm-congestion].),
+8:uI1:.(::,
+12:uI2:[-.--].),
+32:u04:[I-D.dang-ippm-congestion].),
+8:u08:same,
+10:u02:Req-1:,
+10:u03:(Note:,
+10:u05:Req-2:,
+10:u08:Req-3:,
+10:u11:paths.,
+32:u12:[i-d.dang-ippm-congestion].),
+8:uI0:.(::,
+12:uI1:[-.--].),
+32:u03:[I-D.dang-ippm-congestion].),
+10:u01:Req-1:,
+10:u02:(Note:,
+10:u04:Req-2:,
+10:u07:Req-3:,
+18:u08:ingress/egress,
+10:u10:paths.,
+32:u11:[i-d.dang-ippm-congestion].),
+12:uI0:[-.--].),
+32:u02:[I-D.dang-ippm-congestion].),
+8:u07:same,
+47:u08:[I-D.dang-ippm-multiple-path-measurement].),
+10:u00:Req-1:,
+10:u01:(Note:,
+10:u03:Req-2:,
+10:u06:Req-3:,
+18:u07:ingress/egress,
+10:u08:metric,
+32:u10:[i-d.dang-ippm-congestion].),
+32:u01:[I-D.dang-ippm-congestion].),
+8:u06:same,
+10:u00:(Note:,
+10:u02:Req-2:,
+10:u05:Req-3:,
+18:u06:ingress/egress,
+10:u07:metric,
+8:u14:same,
+32:u00:[I-D.dang-ippm-congestion].),
+8:u05:same,
+47:u07:[I-D.dang-ippm-multiple-path-measurement].),
+10:u01:Req-2:,
+10:u04:Req-3:,
+18:u05:ingress/egress,
+10:u06:metric,
+8:u13:same,
+8:uI2:/.(:,
+8:u04:same,
+47:u06:[I-D.dang-ippm-multiple-path-measurement].),
+10:u00:Req-2:,
+10:u03:Req-3:,
+18:u04:ingress/egress,
+10:u05:metric,
+8:u12:same,
+47:u14:[i-d.dang-ippm-multiple-path-measurement].),
+6:u21:sa,
+7:u22:sam,
+8:u23:same,
+8:uI1:/.(:,
+8:u03:same,
+47:u05:[I-D.dang-ippm-multiple-path-measurement].),
+10:u02:Req-3:,
+18:u03:ingress/egress,
+10:u04:metric,
+8:u11:same,
+47:u13:[i-d.dang-ippm-multiple-path-measurement].),
+8:uI0:/.(:,
+14:uI2:[-.----].),
+8:u02:same,
+47:u04:[I-D.dang-ippm-multiple-path-measurement].),
+13:u08:timeslot.,
+10:u01:Req-3:,
+18:u02:ingress/egress,
+10:u03:metric,
+8:u10:same,
+47:u12:[i-d.dang-ippm-multiple-path-measurement].),
+14:uI1:[-.----].),
+8:u01:same,
+47:u03:[I-D.dang-ippm-multiple-path-measurement].),
+10:u00:Req-3:,
+18:u01:ingress/egress,
+10:u02:metric,
+47:u11:[i-d.dang-ippm-multiple-path-measurement].),
+14:uI0:[-.----].),
+8:u00:same,
+47:u02:[I-D.dang-ippm-multiple-path-measurement].),
+13:u07:timeslot.,
+18:u00:ingress/egress,
+10:u01:metric,
+47:u10:[i-d.dang-ippm-multiple-path-measurement].),
+47:u01:[I-D.dang-ippm-multiple-path-measurement].),
+13:u06:timeslot.,
+10:u00:metric,
+13:u14:timeslot.,
+7:uI2:-:',
+47:u00:[I-D.dang-ippm-multiple-path-measurement].),
+13:u05:timeslot.,
+13:u13:timeslot.,
+7:uI1:-:',
+13:u04:timeslot.,
+16:u08:artificially,
+13:u12:timeslot.,
+7:uI0:-:',
+13:u03:timeslot.,
+16:u08:immediately,,
+10:u08:create,
+13:u11:timeslot.,
+13:u02:timeslot.,
+16:u07:artificially,
+16:u08:out-of-order,
+10:u07:create,
+8:u08:then,
+13:u10:timeslot.,
+13:u01:timeslot.,
+16:u06:artificially,
+16:u07:immediately,,
+10:u06:create,
+8:u07:then,
+16:u14:artificially,
+13:u00:timeslot.,
+16:u05:artificially,
+16:u06:immediately,,
+16:u07:out-of-order,
+10:u05:create,
+8:u06:then,
+16:u13:artificially,
+16:u14:immediately,,
+16:u04:artificially,
+16:u05:immediately,,
+16:u06:out-of-order,
+9:u08:flows,
+10:u04:create,
+8:u05:then,
+16:u12:artificially,
+16:u13:immediately,,
+16:u14:out-of-order,
+7:u22:art,
+8:u23:arti,
+16:u03:artificially,
+16:u04:immediately,,
+16:u05:out-of-order,
+10:u03:create,
+8:u04:then,
+16:u11:artificially,
+16:u12:immediately,,
+16:u13:out-of-order,
+7:u22:imm,
+8:u23:imme,
+16:u02:artificially,
+16:u03:immediately,,
+16:u04:out-of-order,
+9:u07:flows,
+10:u02:create,
+8:u03:then,
+10:u08:Req-4:,
+16:u10:artificially,
+16:u11:immediately,,
+16:u12:out-of-order,
+6:u21:ou,
+7:u22:out,
+8:u23:out-,
+16:u01:artificially,
+16:u02:immediately,,
+16:u03:out-of-order,
+9:u06:flows,
+10:u01:create,
+8:u02:then,
+10:u07:Req-4:,
+16:u10:immediately,,
+16:u11:out-of-order,
+9:u14:flows,
+16:u00:artificially,
+16:u01:immediately,,
+16:u02:out-of-order,
+9:u05:flows,
+10:u00:create,
+8:u01:then,
+10:u06:Req-4:,
+9:u08:avoid,
+16:u10:out-of-order,
+9:u13:flows,
+16:u00:immediately,,
+16:u01:out-of-order,
+9:u04:flows,
+8:u00:then,
+10:u05:Req-4:,
+9:u07:avoid,
+9:u12:flows,
+8:u23:flow,
+16:u00:out-of-order,
+9:u03:flows,
+10:u04:Req-4:,
+9:u06:avoid,
+9:u11:flows,
+6:uI2:',,
+9:u02:flows,
+10:u03:Req-4:,
+9:u05:avoid,
+9:u10:flows,
+6:uI1:',,
+9:u01:flows,
+10:u02:Req-4:,
+9:u04:avoid,
+6:uI0:',,
+9:u00:flows,
+10:u01:Req-4:,
+9:u03:avoid,
+10:u00:Req-4:,
+9:u02:avoid,
+9:u01:avoid,
+14:u08:Background,
+9:u00:avoid,
+9:u08:While,
+12:u08:problem:,
+14:u07:Background,
+11:u08:loaded:,
+12:u07:problem:,
+8:u08:some,
+14:u06:Background,
+9:u07:While,
+12:u06:problem:,
+8:u07:some,
+13:u08:unbalance,
+14:u14:background,
+14:u05:Background,
+9:u06:While,
+11:u07:loaded:,
+12:u05:problem:,
+8:u06:some,
+13:u07:unbalance,
+14:u13:background,
+9:u14:while,
+6:uI2::.,
+14:u04:Background,
+9:u05:While,
+11:u06:loaded:,
+8:u08:e.g.,
+12:u04:problem:,
+8:u05:some,
+13:u06:unbalance,
+8:u08:lows,
+14:u12:background,
+9:u13:while,
+11:u14:loaded:,
+7:u22:Bac,
+8:u23:Back,
+6:uI1::.,
+14:u03:Background,
+9:u04:While,
+11:u05:loaded:,
+12:u08:traffic,,
+12:u03:problem:,
+8:u04:some,
+13:u05:unbalance,
+8:u07:lows,
+14:u11:background,
+9:u12:while,
+11:u13:loaded:,
+9:u14:could,
+7:u22:Whi,
+8:u23:Whil,
+6:uI0::.,
+8:uI2::(..,
+14:u02:Background,
+9:u03:While,
+11:u04:loaded:,
+8:u07:e.g.,
+12:u02:problem:,
+8:u03:some,
+13:u04:unbalance,
+8:u06:lows,
+14:u10:background,
+9:u11:while,
+11:u12:loaded:,
+9:u13:could,
+6:u21:lo,
+7:u22:loa,
+8:u23:load,
+8:uI1::(..,
+7:uI2:/);,
+14:u01:Background,
+9:u02:While,
+11:u03:loaded:,
+8:u06:e.g.,
+12:u07:traffic,,
+12:u01:problem:,
+8:u02:some,
+13:u03:unbalance,
+8:u05:lows,
+9:u10:while,
+11:u11:loaded:,
+9:u12:could,
+8:u14:e.g.,
+7:u22:cou,
+8:u23:coul,
+8:uI0::(..,
+7:uI1:/);,
+6:uI2:(,,
+14:u00:Background,
+9:u01:While,
+11:u02:loaded:,
+8:u05:e.g.,
+12:u06:traffic,,
+8:u08:real,
+12:u00:problem:,
+8:u01:some,
+13:u02:unbalance,
+8:u04:lows,
+8:u08:pair,
+11:u10:loaded:,
+9:u11:could,
+8:u13:e.g.,
+12:u14:traffic,,
+7:uI0:/);,
+6:uI1:(,,
+9:u00:While,
+11:u01:loaded:,
+8:u04:e.g.,
+12:u05:traffic,,
+8:u00:some,
+13:u01:unbalance,
+8:u03:lows,
+8:u07:pair,
+14:u08:throughput,
+9:u10:could,
+8:u12:e.g.,
+12:u13:traffic,,
+6:u21:e.,
+7:u22:e.g,
+8:u23:e.g.,
+6:uI0:(,,
+7:uI2:,).,
+11:u00:loaded:,
+8:u03:e.g.,
+12:u04:traffic,,
+8:u07:real,
+9:u08:Since,
+13:u00:unbalance,
+8:u02:lows,
+8:u06:pair,
+14:u07:throughput,
+8:u11:e.g.,
+12:u12:traffic,,
+7:uI1:,).,
+8:u02:e.g.,
+12:u03:traffic,,
+8:u06:real,
+8:u01:lows,
+8:u05:pair,
+14:u06:throughput,
+8:u10:e.g.,
+12:u11:traffic,,
+8:u14:real,
+7:uI0:,).,
+8:u01:e.g.,
+12:u02:traffic,,
+8:u05:real,
+9:u07:Since,
+8:u00:lows,
+8:u04:pair,
+14:u05:throughput,
+10:u08:flows.,
+12:u10:traffic,,
+8:u13:real,
+8:u00:e.g.,
+12:u01:traffic,,
+8:u04:real,
+9:u06:Since,
+10:u08:paths,,
+8:u03:pair,
+14:u04:throughput,
+10:u07:flows.,
+8:u12:real,
+9:u14:since,
+12:u00:traffic,,
+8:u03:real,
+9:u05:Since,
+9:u08:path.,
+8:u02:pair,
+14:u03:throughput,
+10:u06:flows.,
+8:u11:real,
+9:u13:since,
+8:u02:real,
+9:u04:Since,
+10:u07:paths,,
+9:u08:(More,
+8:u01:pair,
+14:u02:throughput,
+10:u05:flows.,
+8:u10:real,
+9:u12:since,
+6:u21:Si,
+7:u22:Sin,
+8:u23:Sinc,
+8:u01:real,
+9:u03:Since,
+10:u06:paths,,
+9:u07:path.,
+8:u00:pair,
+14:u01:throughput,
+10:u04:flows.,
+11:u08:content,
+9:u11:since,
+10:u14:paths,,
+8:u00:real,
+9:u02:Since,
+10:u05:paths,,
+9:u06:path.,
+9:u07:(More,
+14:u00:throughput,
+10:u03:flows.,
+11:u07:content,
+9:u10:since,
+10:u13:paths,,
+9:u14:path.,
+9:u01:Since,
+10:u04:paths,,
+9:u05:path.,
+9:u06:(More,
+8:u08:link,
+10:u02:flows.,
+11:u06:content,
+15:u08:reliability,
+10:u12:paths,,
+9:u13:path.,
+9:u14:(more,
+9:u00:Since,
+10:u03:paths,,
+9:u04:path.,
+9:u05:(More,
+10:u01:flows.,
+11:u05:content,
+15:u07:reliability,
+10:u11:paths,,
+9:u12:path.,
+9:u13:(more,
+10:u02:paths,,
+9:u03:path.,
+9:u04:(More,
+8:u07:link,
+10:u00:flows.,
+11:u04:content,
+15:u06:reliability,
+10:u10:paths,,
+9:u11:path.,
+9:u12:(more,
+6:u21:(M,
+7:u22:(Mo,
+8:u23:(Mor,
+7:uI2:..-,
+10:u01:paths,,
+9:u02:path.,
+9:u03:(More,
+8:u06:link,
+11:u03:content,
+15:u05:reliability,
+9:u10:path.,
+9:u11:(more,
+8:u14:link,
+7:uI1:..-,
+10:u00:paths,,
+9:u01:path.,
+9:u02:(More,
+8:u05:link,
+11:u02:content,
+15:u04:reliability,
+9:u10:(more,
+8:u13:link,
+7:uI0:..-,
+9:u00:path.,
+9:u01:(More,
+8:u04:link,
+7:u08:-SR,
+11:u01:content,
+15:u03:reliability,
+8:u12:link,
+8:u23:link,
+9:u00:(More,
+8:u03:link,
+11:u00:content,
+15:u02:reliability,
+12:u08:Multiple,
+8:u11:link,
+8:u02:link,
+7:u07:-SR,
+10:u08:nodes,,
+15:u01:reliability,
+12:u07:Multiple,
+12:u08:example,,
+8:u10:link,
+8:u01:link,
+7:u06:-SR,
+13:u08:LSP1/2/3.,
+15:u00:reliability,
+12:u06:Multiple,
+12:u07:example,,
+7:u14:-sr,
+8:u00:link,
+7:u05:-SR,
+10:u07:nodes,,
+12:u05:Multiple,
+12:u06:example,,
+7:u13:-sr,
+7:u04:-SR,
+10:u06:nodes,,
+13:u07:LSP1/2/3.,
+8:u08:list,
+12:u04:Multiple,
+12:u05:example,,
+9:u08:probe,
+7:u12:-sr,
+10:u14:nodes,,
+7:u22:-SR,
+7:u23:-SR,
+7:u03:-SR,
+10:u05:nodes,,
+13:u06:LSP1/2/3.,
+12:u03:Multiple,
+12:u04:example,,
+9:u07:probe,
+7:u11:-sr,
+10:u13:nodes,,
+13:u14:lsp1/2/3.,
+7:u02:-SR,
+10:u04:nodes,,
+13:u05:LSP1/2/3.,
+8:u07:list,
+12:u02:Multiple,
+12:u03:example,,
+9:u06:probe,
+9:u08:three,
+7:u10:-sr,
+10:u12:nodes,,
+13:u13:lsp1/2/3.,
+7:u22:nod,
+8:u23:node,
+7:u01:-SR,
+10:u03:nodes,,
+13:u04:LSP1/2/3.,
+8:u06:list,
+12:u01:Multiple,
+12:u02:example,,
+9:u05:probe,
+9:u07:three,
+10:u11:nodes,,
+13:u12:lsp1/2/3.,
+8:u14:list,
+6:u21:LS,
+7:u22:LSP,
+8:u23:LSP1,
+7:u00:-SR,
+10:u02:nodes,,
+13:u03:LSP1/2/3.,
+8:u05:list,
+12:u00:Multiple,
+12:u01:example,,
+9:u04:probe,
+9:u06:three,
+10:u10:nodes,,
+13:u11:lsp1/2/3.,
+8:u13:list,
+10:u01:nodes,,
+13:u02:LSP1/2/3.,
+8:u04:list,
+12:u00:example,,
+9:u03:probe,
+9:u05:three,
+13:u10:lsp1/2/3.,
+8:u12:list,
+7:u22:lis,
+8:u23:list,
+10:u00:nodes,,
+13:u01:LSP1/2/3.,
+8:u03:list,
+9:u02:probe,
+9:u04:three,
+8:u11:list,
+13:u00:LSP1/2/3.,
+8:u02:list,
+9:u01:probe,
+9:u03:three,
+8:u10:list,
+8:u01:list,
+13:u08:SR-lists,,
+9:u00:probe,
+9:u02:three,
+8:u00:list,
+9:u01:three,
+13:u07:SR-lists,,
+9:u00:three,
+13:u06:SR-lists,,
+13:u14:sr-lists,,
+13:u05:SR-lists,,
+9:u08:loose,
+13:u13:sr-lists,,
+13:u04:SR-lists,,
+14:u08:operations,
+9:u07:loose,
+13:u12:sr-lists,,
+6:u21:SR,
+7:u22:SR-,
+8:u23:SR-l,
+13:u03:SR-lists,,
+13:u08:scenario.,
+9:u06:loose,
+13:u11:sr-lists,,
+13:u02:SR-lists,,
+14:u07:operations,
+9:u05:loose,
+13:u10:sr-lists,,
+13:u01:SR-lists,,
+14:u06:operations,
+13:u07:scenario.,
+8:u08:TBD.,
+9:u04:loose,
+14:u14:operations,
+13:u00:SR-lists,,
+14:u05:operations,
+13:u06:scenario.,
+9:u03:loose,
+14:u13:operations,
+13:u14:scenario.,
+14:u04:operations,
+13:u05:scenario.,
+8:u07:TBD.,
+9:u02:loose,
+14:u12:operations,
+13:u13:scenario.,
+6:u21:op,
+7:u22:ope,
+8:u23:oper,
+14:u03:operations,
+13:u04:scenario.,
+8:u06:TBD.,
+9:u01:loose,
+14:u11:operations,
+13:u12:scenario.,
+8:u14:tbd.,
+6:u21:sc,
+7:u22:sce,
+8:u23:scen,
+14:u02:operations,
+13:u03:scenario.,
+8:u05:TBD.,
+9:u00:loose,
+14:u10:operations,
+13:u11:scenario.,
+8:u13:tbd.,
+14:u01:operations,
+13:u02:scenario.,
+8:u04:TBD.,
+12:u08:devices),
+14:u08:Multi-path,
+13:u10:scenario.,
+8:u12:tbd.,
+6:u21:TB,
+7:u22:TBD,
+8:u23:TBD.,
+8:uI2:../-,
+14:u00:operations,
+13:u01:scenario.,
+8:u03:TBD.,
+14:u07:Multi-path,
+8:u11:tbd.,
+8:uI1:../-,
+13:u00:scenario.,
+8:u02:TBD.,
+12:u07:devices),
+10:u08:mostly,
+14:u06:Multi-path,
+8:u10:tbd.,
+8:uI0:../-,
+8:u01:TBD.,
+12:u06:devices),
+14:u05:Multi-path,
+12:u14:devices),
+7:uI2:.-(,
+8:u00:TBD.,
+12:u05:devices),
+10:u07:mostly,
+13:u08:devices),,
+14:u04:Multi-path,
+12:u13:devices),
+7:uI1:.-(,
+5:uI2:),
+12:u04:devices),
+10:u06:mostly,
+14:u03:Multi-path,
+12:u12:devices),
+10:u14:mostly,
+7:u22:dev,
+8:u23:devi,
+7:uI0:.-(,
+5:uI1:),
+8:uI2:.(),,
+12:u03:devices),
+10:u05:mostly,
+13:u07:devices),,
+14:u02:Multi-path,
+12:u11:devices),
+10:u13:mostly,
+5:uI0:),
+8:uI1:.(),,
+8:uI2:-...,
+12:u02:devices),
+10:u04:mostly,
+13:u06:devices),,
+14:u01:Multi-path,
+12:u10:devices),
+10:u12:mostly,
+13:u14:devices),,
+6:u21:mo,
+7:u22:mos,
+8:u23:most,
+8:uI0:.(),,
+8:uI1:-...,
+6:uI2:.(,
+12:u01:devices),
+10:u03:mostly,
+13:u05:devices),,
+14:u00:Multi-path,
+10:u11:mostly,
+13:u13:devices),,
+5:u14:.,
+8:uI0:-...,
+6:uI1:.(,
+9:uI2:),-..,
+12:u00:devices),
+10:u02:mostly,
+13:u04:devices),,
+10:u10:mostly,
+13:u12:devices),,
+5:u13:.,
+6:uI0:.(,
+9:uI1:),-..,
+10:u01:mostly,
+13:u03:devices),,
+13:u11:devices),,
+5:u12:.,
+5:u20:.,
+5:u21:.,
+5:u22:.,
+5:u23:.,
+9:uI0:),-..,
+10:u00:mostly,
+13:u02:devices),,
+13:u10:devices),,
+5:u11:.,
+13:u01:devices),,
+8:u08:Very,
+5:u10:.,
+13:u00:devices),,
+12:u08:valuable,
+8:u07:Very,
+12:u07:valuable,
+9:u08:Bruno,
+8:u06:Very,
+9:u08:prove,
+12:u06:valuable,
+9:u07:Bruno,
+14:u08:commercial,
+8:u14:very,
+8:u05:Very,
+12:u05:valuable,
+9:u06:Bruno,
+14:u07:commercial,
+8:u13:very,
+8:u04:Very,
+9:u07:prove,
+12:u04:valuable,
+9:u05:Bruno,
+14:u06:commercial,
+8:u12:very,
+5:u20:V,
+6:u21:Ve,
+7:u22:Ver,
+8:u23:Very,
+8:u03:Very,
+9:u06:prove,
+12:u03:valuable,
+9:u04:Bruno,
+14:u05:commercial,
+8:u11:very,
+9:u14:prove,
+8:u02:Very,
+9:u05:prove,
+12:u02:valuable,
+9:u03:Bruno,
+14:u04:commercial,
+8:u10:very,
+9:u13:prove,
+8:u01:Very,
+9:u04:prove,
+12:u01:valuable,
+9:u02:Bruno,
+14:u03:commercial,
+9:u12:prove,
+8:u00:Very,
+9:u03:prove,
+12:u00:valuable,
+9:u01:Bruno,
+14:u02:commercial,
+9:u11:prove,
+9:u02:prove,
+9:u00:Bruno,
+14:u01:commercial,
+9:u10:prove,
+9:u01:prove,
+14:u00:commercial,
+9:u00:prove,
+46:u08:.,
+13:u08:[RFC2629],
+46:u07:.,
+9:u08:Rose,,
+46:u06:.,
+13:u07:[RFC2629],
+46:u08:.,
+9:u07:Rose,,
+21:u08:10.17487/RFC2629,,
+46:u14:.,
+8:uI2:./,,,
+46:u05:.,
+13:u06:[RFC2629],
+9:u06:Rose,,
+21:u07:10.17487/RFC2629,,
+46:u13:.,
+13:u14:[rfc2629],
+8:uI1:./,,,
+46:u04:.,
+13:u05:[RFC2629],
+46:u07:.,
+30:u08:[I-D.dang-ippm-congestion],
+9:u05:Rose,,
+21:u06:10.17487/RFC2629,,
+46:u12:.,
+13:u13:[rfc2629],
+8:uI0:./,,,
+14:uI2:[],.,"-",,,
+46:u03:.,
+13:u04:[RFC2629],
+46:u06:.,
+9:u08:Dang,,
+9:u04:Rose,,
+21:u05:10.17487/RFC2629,,
+46:u11:.,
+13:u12:[rfc2629],
+46:u14:.,
+14:uI1:[],.,"-",,,
+46:u02:.,
+13:u03:[RFC2629],
+46:u05:.,
+30:u07:[I-D.dang-ippm-congestion],
+10:u08:IPPM",,
+9:u03:Rose,,
+21:u04:10.17487/RFC2629,,
+6:u08:J.,
+46:u10:.,
+13:u11:[rfc2629],
+46:u13:.,
+14:uI0:[],.,"-",,,
+46:u01:.,
+13:u02:[RFC2629],
+46:u04:.,
+30:u06:[I-D.dang-ippm-congestion],
+9:u07:Dang,,
+9:u02:Rose,,
+21:u03:10.17487/RFC2629,,
+6:u07:J.,
+33:u08:draft-dang-ippm-congestion-01,
+13:u10:[rfc2629],
+46:u12:.,
+30:u14:[i-d.dang-ippm-congestion],
+46:u00:.,
+13:u01:[RFC2629],
+46:u03:.,
+30:u05:[I-D.dang-ippm-congestion],
+9:u06:Dang,,
+10:u07:IPPM",,
+45:u08:[I-D.dang-ippm-multiple-path-measurement],
+9:u01:Rose,,
+21:u02:10.17487/RFC2629,,
+33:u07:draft-dang-ippm-congestion-01,
+9:u08:2019.,
+46:u11:.,
+30:u13:[i-d.dang-ippm-congestion],
+9:u14:dang,,
+13:u00:[RFC2629],
+46:u02:.,
+30:u04:[I-D.dang-ippm-congestion],
+9:u05:Dang,,
+10:u06:IPPM",,
+9:u00:Rose,,
+21:u01:10.17487/RFC2629,,
+33:u06:draft-dang-ippm-congestion-01,
+9:u07:2019.,
+46:u10:.,
+30:u12:[i-d.dang-ippm-congestion],
+9:u13:dang,,
+10:u14:ippm",,
+10:uI2:,..,"-,
+46:u01:.,
+30:u03:[I-D.dang-ippm-congestion],
+9:u04:Dang,,
+10:u05:IPPM",,
+45:u07:[I-D.dang-ippm-multiple-path-measurement],
+21:u00:10.17487/RFC2629,,
+33:u05:draft-dang-ippm-congestion-01,
+9:u06:2019.,
+30:u11:[i-d.dang-ippm-congestion],
+9:u12:dang,,
+10:u13:ippm",,
+6:u21:Da,
+7:u22:Dan,
+8:u23:Dang,
+10:uI1:,..,"-,
+13:uI2:",----(),,
+46:u00:.,
+30:u02:[I-D.dang-ippm-congestion],
+9:u03:Dang,,
+10:u04:IPPM",,
+45:u06:[I-D.dang-ippm-multiple-path-measurement],
+18:u08:measurement-01,
+33:u04:draft-dang-ippm-congestion-01,
+9:u05:2019.,
+30:u10:[i-d.dang-ippm-congestion],
+9:u11:dang,,
+10:u12:ippm",,
+45:u14:[i-d.dang-ippm-multiple-path-measurement],
+6:u21:IP,
+7:u22:IPP,
+8:u23:IPPM,
+10:uI0:,..,"-,
+13:uI1:",----(),,
+30:u01:[I-D.dang-ippm-congestion],
+9:u02:Dang,,
+10:u03:IPPM",,
+45:u05:[I-D.dang-ippm-multiple-path-measurement],
+33:u03:draft-dang-ippm-congestion-01,
+9:u04:2019.,
+9:u10:dang,,
+10:u11:ippm",,
+45:u13:[i-d.dang-ippm-multiple-path-measurement],
+13:uI0:",----(),,
+30:u00:[I-D.dang-ippm-congestion],
+9:u01:Dang,,
+10:u02:IPPM",,
+45:u04:[I-D.dang-ippm-multiple-path-measurement],
+18:u07:measurement-01,
+8:u08:Bing,
+33:u02:draft-dang-ippm-congestion-01,
+9:u03:2019.,
+10:u10:ippm",,
+45:u12:[i-d.dang-ippm-multiple-path-measurement],
+9:u00:Dang,,
+10:u01:IPPM",,
+45:u03:[I-D.dang-ippm-multiple-path-measurement],
+18:u06:measurement-01,
+33:u01:draft-dang-ippm-congestion-01,
+9:u02:2019.,
+45:u11:[i-d.dang-ippm-multiple-path-measurement],
+18:u14:measurement-01,
+11:uI2:",-----,
+10:u00:IPPM",,
+45:u02:[I-D.dang-ippm-multiple-path-measurement],
+18:u05:measurement-01,
+8:u07:Bing,
+8:u08:Q14,,
+33:u00:draft-dang-ippm-congestion-01,
+9:u01:2019.,
+45:u10:[i-d.dang-ippm-multiple-path-measurement],
+18:u13:measurement-01,
+11:uI1:",-----,
+45:u01:[I-D.dang-ippm-multiple-path-measurement],
+18:u04:measurement-01,
+8:u06:Bing,
+10:u08:No.156,
+9:u00:2019.,
+18:u12:measurement-01,
+8:u14:bing,
+11:uI0:",-----,
+45:u00:[I-D.dang-ippm-multiple-path-measurement],
+18:u03:measurement-01,
+8:u05:Bing,
+8:u07:Q14,,
+12:u08:Hai-Dian,
+11:u08:Beiqing,
+18:u11:measurement-01,
+8:u13:bing,
+18:u02:measurement-01,
+8:u04:Bing,
+8:u06:Q14,,
+10:u07:No.156,
+8:u08:P.R.,
+11:u07:Beiqing,
+13:u08:District,,
+18:u10:measurement-01,
+8:u12:bing,
+8:u14:q14,,
+6:u21:Bi,
+7:u22:Bin,
+8:u23:Bing,
+18:u01:measurement-01,
+8:u03:Bing,
+8:u05:Q14,,
+10:u06:No.156,
+12:u07:Hai-Dian,
+11:u06:Beiqing,
+13:u07:District,,
+9:u08:China,
+8:u11:bing,
+8:u13:q14,,
+10:u14:no.156,
+18:u00:measurement-01,
+8:u02:Bing,
+8:u04:Q14,,
+10:u05:No.156,
+12:u06:Hai-Dian,
+8:u07:P.R.,
+11:u05:Beiqing,
+13:u06:District,,
+9:u07:China,
+26:u08:leo.liubing@huawei.com,
+8:u10:bing,
+8:u12:q14,,
+10:u13:no.156,
+12:u14:hai-dian,
+5:u20:Q,
+6:u21:Q1,
+7:u22:Q14,
+8:u23:Q14,,
+8:u01:Bing,
+8:u03:Q14,,
+10:u04:No.156,
+12:u05:Hai-Dian,
+8:u06:P.R.,
+11:u04:Beiqing,
+13:u05:District,,
+9:u06:China,
+26:u07:leo.liubing@huawei.com,
+8:u11:q14,,
+10:u12:no.156,
+12:u13:hai-dian,
+8:u14:p.r.,
+7:u22:No.,
+8:u23:No.1,
+8:u00:Bing,
+8:u02:Q14,,
+10:u03:No.156,
+12:u04:Hai-Dian,
+8:u05:P.R.,
+11:u03:Beiqing,
+13:u04:District,,
+9:u05:China,
+26:u06:leo.liubing@huawei.com,
+8:u10:q14,,
+10:u11:no.156,
+12:u12:hai-dian,
+8:u13:p.r.,
+6:u21:Ha,
+7:u22:Hai,
+8:u23:Hai-,
+8:u01:Q14,,
+10:u02:No.156,
+12:u03:Hai-Dian,
+8:u04:P.R.,
+11:u02:Beiqing,
+13:u03:District,,
+9:u04:China,
+26:u05:leo.liubing@huawei.com,
+10:u10:no.156,
+12:u11:hai-dian,
+8:u12:p.r.,
+6:u21:P.,
+7:u22:P.R,
+8:u23:P.R.,
+8:u00:Q14,,
+10:u01:No.156,
+12:u02:Hai-Dian,
+8:u03:P.R.,
+11:u01:Beiqing,
+13:u02:District,,
+9:u03:China,
+26:u04:leo.liubing@huawei.com,
+12:u10:hai-dian,
+8:u11:p.r.,
+10:u00:No.156,
+12:u01:Hai-Dian,
+8:u02:P.R.,
+11:u00:Beiqing,
+13:u01:District,,
+9:u02:China,
+26:u03:leo.liubing@huawei.com,
+8:u10:p.r.,
+12:u00:Hai-Dian,
+8:u01:P.R.,
+13:u00:District,,
+9:u01:China,
+26:u02:leo.liubing@huawei.com,
+8:u00:P.R.,
+9:u00:China,
+26:u01:leo.liubing@huawei.com,
+13:u08:SimulaMet,
+13:u06:Dreibholz,
+13:u07:SimulaMet,
+6:u08:X.,
+13:u05:Dreibholz,
+13:u06:SimulaMet,
+13:u04:Dreibholz,
+8:u08:Zhou,
+13:u14:simulamet,
+13:u05:SimulaMet,
+6:u07:X.,
+10:u08:Hainan,
+13:u03:Dreibholz,
+8:u07:Zhou,
+13:u13:simulamet,
+13:u04:SimulaMet,
+6:u06:X.,
+13:u08:September,
+13:u02:Dreibholz,
+8:u06:Zhou,
+14:u08:University,
+13:u12:simulamet,
+6:u14:x.,
+7:u22:Sim,
+8:u23:Simu,
+13:u03:SimulaMet,
+6:u05:X.,
+10:u07:Hainan,
+12:u08:Takeover,
+13:u01:Dreibholz,
+8:u05:Zhou,
+14:u07:University,
+7:u08:10,,
+13:u11:simulamet,
+6:u13:x.,
+13:u02:SimulaMet,
+6:u04:X.,
+10:u06:Hainan,
+13:u07:September,
+45:u08:draft-dreibholz-rserpool-enrp-takeover-22,
+13:u00:Dreibholz,
+8:u04:Zhou,
+14:u06:University,
+7:u07:10,,
+14:u08:Suggestion,
+13:u10:simulamet,
+6:u12:x.,
+10:u14:hainan,
+5:u20:X,
+6:u21:X.,
+6:u22:X.,
+6:u23:X.,
+13:u01:SimulaMet,
+6:u03:X.,
+10:u05:Hainan,
+13:u06:September,
+12:u07:Takeover,
+8:u03:Zhou,
+14:u05:University,
+7:u06:10,,
+14:u07:Suggestion,
+6:u11:x.,
+10:u13:hainan,
+13:u14:september,
+13:u00:SimulaMet,
+6:u02:X.,
+10:u04:Hainan,
+13:u05:September,
+12:u06:Takeover,
+45:u07:draft-dreibholz-rserpool-enrp-takeover-22,
+8:u02:Zhou,
+14:u04:University,
+7:u05:10,,
+14:u06:Suggestion,
+6:u10:x.,
+10:u12:hainan,
+13:u13:september,
+12:u14:takeover,
+8:u23:Hain,
+6:u01:X.,
+10:u03:Hainan,
+13:u04:September,
+12:u05:Takeover,
+45:u06:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u08:ENRP_HANDLE_UPDATE,
+8:u01:Zhou,
+14:u03:University,
+7:u04:10,,
+14:u05:Suggestion,
+10:u11:hainan,
+13:u12:september,
+12:u13:takeover,
+45:u14:draft-dreibholz-rserpool-enrp-takeover-22,
+7:u22:Sep,
+8:u23:Sept,
+6:u00:X.,
+10:u02:Hainan,
+13:u03:September,
+12:u04:Takeover,
+45:u05:draft-dreibholz-rserpool-enrp-takeover-22,
+8:u00:Zhou,
+14:u02:University,
+7:u03:10,,
+14:u04:Suggestion,
+11:u08:message,
+10:u10:hainan,
+13:u11:september,
+12:u12:takeover,
+45:u13:draft-dreibholz-rserpool-enrp-takeover-22,
+7:u22:Tak,
+8:u23:Take,
+9:uI2:-----,
+10:u01:Hainan,
+13:u02:September,
+12:u03:Takeover,
+45:u04:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u07:ENRP_HANDLE_UPDATE,
+14:u01:University,
+7:u02:10,,
+14:u03:Suggestion,
+11:u07:message,
+13:u10:september,
+12:u11:takeover,
+45:u12:draft-dreibholz-rserpool-enrp-takeover-22,
+9:uI1:-----,
+10:u00:Hainan,
+13:u01:September,
+12:u02:Takeover,
+45:u03:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u06:ENRP_HANDLE_UPDATE,
+14:u00:University,
+7:u01:10,,
+14:u02:Suggestion,
+11:u06:message,
+12:u10:takeover,
+45:u11:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u14:enrp_handle_update,
+9:uI0:-----,
+13:u00:September,
+12:u01:Takeover,
+45:u02:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u05:ENRP_HANDLE_UPDATE,
+7:u00:10,,
+14:u01:Suggestion,
+11:u05:message,
+45:u10:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u13:enrp_handle_update,
+12:u00:Takeover,
+45:u01:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u04:ENRP_HANDLE_UPDATE,
+14:u00:Suggestion,
+11:u04:message,
+22:u12:enrp_handle_update,
+6:u21:EN,
+7:u22:ENR,
+8:u23:ENRP,
+45:u00:draft-dreibholz-rserpool-enrp-takeover-22,
+22:u03:ENRP_HANDLE_UPDATE,
+11:u03:message,
+22:u11:enrp_handle_update,
+22:u02:ENRP_HANDLE_UPDATE,
+11:u02:message,
+22:u10:enrp_handle_update,
+22:u01:ENRP_HANDLE_UPDATE,
+11:u01:message,
+22:u00:ENRP_HANDLE_UPDATE,
+11:u00:message,
+13:u08:Dreibholz,
+13:u07:Dreibholz,
+13:u14:dreibholz,
+13:u13:dreibholz,
+13:u12:dreibholz,
+7:u22:Dre,
+8:u23:Drei,
+13:u11:dreibholz,
+13:u10:dreibholz,
+8:u08:1.1.,
+9:u08:Scope,
+8:u07:1.1.,
+8:u08:1.2.,
+9:u07:Scope,
+8:u06:1.1.,
+9:u06:Scope,
+15:u08:Terminology,
+8:u14:1.1.,
+8:u05:1.1.,
+8:u07:1.2.,
+8:u08:1.3.,
+9:u05:Scope,
+15:u07:Terminology,
+8:u13:1.1.,
+32:uI2:............................,
+6:uI2:28,
+8:u04:1.1.,
+8:u06:1.2.,
+9:u04:Scope,
+15:u06:Terminology,
+8:u12:1.1.,
+8:u14:1.2.,
+7:u22:1.1,
+8:u23:1.1.,
+32:uI1:............................,
+6:uI1:28,
+8:u03:1.1.,
+8:u05:1.2.,
+8:u07:1.3.,
+9:u03:Scope,
+15:u05:Terminology,
+8:u11:1.1.,
+8:u13:1.2.,
+32:uI0:............................,
+6:uI0:28,
+8:u02:1.1.,
+8:u04:1.2.,
+8:u06:1.3.,
+9:u02:Scope,
+15:u04:Terminology,
+8:u10:1.1.,
+8:u12:1.2.,
+8:u14:1.3.,
+7:u22:1.2,
+8:u23:1.2.,
+8:u01:1.1.,
+8:u03:1.2.,
+8:u05:1.3.,
+9:u01:Scope,
+15:u03:Terminology,
+8:u11:1.2.,
+8:u13:1.3.,
+8:u00:1.1.,
+8:u02:1.2.,
+8:u04:1.3.,
+9:u00:Scope,
+15:u02:Terminology,
+14:u08:Definition,
+8:u10:1.2.,
+8:u12:1.3.,
+7:u22:1.3,
+8:u23:1.3.,
+8:u01:1.2.,
+8:u03:1.3.,
+15:u01:Terminology,
+14:u07:Definition,
+8:u11:1.3.,
+8:u00:1.2.,
+8:u02:1.3.,
+15:u00:Terminology,
+14:u06:Definition,
+8:u10:1.3.,
+8:u01:1.3.,
+14:u05:Definition,
+8:u00:1.3.,
+14:u04:Definition,
+11:u08:Testbed,
+14:u03:Definition,
+11:u07:Testbed,
+14:u02:Definition,
+11:u06:Testbed,
+14:u01:Definition,
+11:u05:Testbed,
+14:u00:Definition,
+11:u04:Testbed,
+11:u03:Testbed,
+11:u02:Testbed,
+11:u01:Testbed,
+11:u00:Testbed,
+8:u08:7.2.,
+8:u07:7.2.,
+8:u06:7.2.,
+8:u14:7.2.,
+8:u05:7.2.,
+8:u13:7.2.,
+8:u04:7.2.,
+12:u08:Reliable,
+8:u12:7.2.,
+7:u22:7.2,
+8:u23:7.2.,
+8:u03:7.2.,
+10:u08:Server,
+8:u11:7.2.,
+8:u02:7.2.,
+12:u07:Reliable,
+10:u07:Server,
+13:u08:providing,
+8:u10:7.2.,
+8:u01:7.2.,
+12:u06:Reliable,
+13:u08:Registrar,
+10:u06:Server,
+13:u07:providing,
+12:u14:reliable,
+8:u00:7.2.,
+12:u05:Reliable,
+9:u08:point,
+10:u05:Server,
+13:u06:providing,
+9:u08:(PR).,
+12:u13:reliable,
+12:u04:Reliable,
+13:u07:Registrar,
+11:u08:denoted,
+10:u04:Server,
+13:u05:providing,
+9:u07:(PR).,
+12:u12:reliable,
+8:u14:used,
+7:u22:Rel,
+8:u23:Reli,
+12:u03:Reliable,
+13:u06:Registrar,
+9:u07:point,
+16:u08:registration,
+10:u03:Server,
+13:u04:providing,
+9:u06:(PR).,
+12:u11:reliable,
+8:u13:used,
+13:u14:registrar,
+12:u02:Reliable,
+13:u05:Registrar,
+9:u06:point,
+11:u07:denoted,
+8:u08:ENRP,
+10:u02:Server,
+13:u03:providing,
+9:u05:(PR).,
+8:u08:into,
+12:u10:reliable,
+8:u12:used,
+13:u13:registrar,
+9:u14:point,
+8:u23:used,
+12:u01:Reliable,
+13:u04:Registrar,
+9:u05:point,
+11:u06:denoted,
+16:u07:registration,
+15:u08:responsible,
+10:u01:Server,
+13:u02:providing,
+9:u04:(PR).,
+8:u07:into,
+11:u08:Server,,
+8:u11:used,
+13:u12:registrar,
+9:u13:point,
+11:u14:denoted,
+7:uI2:,.,,
+12:u00:Reliable,
+13:u03:Registrar,
+9:u04:point,
+11:u05:denoted,
+16:u06:registration,
+8:u07:ENRP,
+11:u08:servers,
+10:u00:Server,
+13:u01:providing,
+9:u03:(PR).,
+8:u06:into,
+11:u07:Server,,
+8:u10:used,
+13:u11:registrar,
+9:u12:point,
+11:u13:denoted,
+16:u14:registration,
+7:u22:poi,
+8:u23:poin,
+7:uI1:,.,,
+13:u02:Registrar,
+9:u03:point,
+11:u04:denoted,
+16:u05:registration,
+8:u06:ENRP,
+15:u07:responsible,
+13:u00:providing,
+9:u02:(PR).,
+8:u05:into,
+11:u06:Server,,
+13:u10:registrar,
+9:u11:point,
+11:u12:denoted,
+16:u13:registration,
+8:u14:enrp,
+7:u22:den,
+8:u23:deno,
+7:uI0:,.,,
+13:u01:Registrar,
+9:u02:point,
+11:u03:denoted,
+16:u04:registration,
+8:u05:ENRP,
+15:u06:responsible,
+11:u07:servers,
+9:u01:(PR).,
+8:u04:into,
+11:u05:Server,,
+6:u08:PE,
+9:u10:point,
+11:u11:denoted,
+16:u12:registration,
+8:u13:enrp,
+15:u14:responsible,
+10:uI2:,(-),.,
+13:u00:Registrar,
+9:u01:point,
+11:u02:denoted,
+16:u03:registration,
+8:u04:ENRP,
+15:u05:responsible,
+11:u06:servers,
+9:u00:(PR).,
+8:u03:into,
+11:u04:Server,,
+6:u07:PE,
+9:u08:shown,
+11:u10:denoted,
+16:u11:registration,
+8:u12:enrp,
+15:u13:responsible,
+11:u14:servers,
+10:uI1:,(-),.,
+9:u00:point,
+11:u01:denoted,
+16:u02:registration,
+8:u03:ENRP,
+15:u04:responsible,
+11:u05:servers,
+8:u02:into,
+11:u03:Server,,
+6:u06:PE,
+9:u07:shown,
+10:u08:server,
+16:u10:registration,
+8:u11:enrp,
+15:u12:responsible,
+11:u13:servers,
+8:u23:resp,
+10:uI0:,(-),.,
+11:u00:denoted,
+16:u01:registration,
+8:u02:ENRP,
+15:u03:responsible,
+11:u04:servers,
+8:u01:into,
+11:u02:Server,,
+6:u05:PE,
+9:u06:shown,
+10:u07:server,
+10:u08:subset,
+8:u10:enrp,
+15:u11:responsible,
+11:u12:servers,
+8:uI2:(-).,
+16:u00:registration,
+8:u01:ENRP,
+15:u02:responsible,
+11:u03:servers,
+12:u08:reliable,
+8:u00:into,
+11:u01:Server,,
+6:u04:PE,
+9:u05:shown,
+10:u06:server,
+10:u07:subset,
+13:u08:problems),
+15:u10:responsible,
+11:u11:servers,
+8:uI1:(-).,
+8:u00:ENRP,
+15:u01:responsible,
+11:u02:servers,
+11:u00:Server,,
+6:u03:PE,
+9:u04:shown,
+10:u05:server,
+10:u06:subset,
+13:u07:problems),
+11:u10:servers,
+8:uI0:(-).,
+15:u00:responsible,
+11:u01:servers,
+12:u07:reliable,
+6:u02:PE,
+9:u03:shown,
+10:u05:subset,
+13:u06:problems),
+11:u00:servers,
+12:u06:reliable,
+6:u01:PE,
+9:u02:shown,
+10:u04:subset,
+13:u05:problems),
+7:uI2:).,,
+12:u05:reliable,
+9:u08:large,
+6:u00:PE,
+9:u01:shown,
+10:u03:subset,
+13:u04:problems),
+6:u08:by,
+7:u14:all,
+7:uI1:).,,
+12:u04:reliable,
+9:u00:shown,
+10:u02:subset,
+13:u03:problems),
+6:u07:by,
+12:u08:RSerPool,
+7:u13:all,
+7:u22:rel,
+8:u23:reli,
+7:uI0:).,,
+12:u03:reliable,
+9:u07:large,
+10:u01:subset,
+13:u02:problems),
+6:u06:by,
+12:u07:RSerPool,
+7:u12:all,
+9:u14:shown,
+7:u23:all,
+6:uI2:-(,
+12:u02:reliable,
+9:u06:large,
+10:u00:subset,
+13:u01:problems),
+6:u05:by,
+12:u06:RSerPool,
+11:u08:network,
+7:u11:all,
+9:u13:shown,
+9:u14:large,
+6:uI1:-(,
+8:uI2:[]),,
+12:u01:reliable,
+9:u05:large,
+13:u00:problems),
+6:u04:by,
+12:u05:RSerPool,
+11:u07:network,
+7:u10:all,
+9:u12:shown,
+9:u13:large,
+6:u21:sh,
+7:u22:sho,
+8:u23:show,
+6:uI0:-(,
+8:uI1:[]),,
+12:u00:reliable,
+9:u04:large,
+6:u03:by,
+12:u04:RSerPool,
+11:u06:network,
+9:u11:shown,
+9:u12:large,
+6:u21:la,
+7:u22:lar,
+8:u23:larg,
+8:uI0:[]),,
+9:u03:large,
+6:u02:by,
+12:u03:RSerPool,
+11:u05:network,
+9:u10:shown,
+9:u11:large,
+9:u02:large,
+6:u01:by,
+12:u02:RSerPool,
+11:u04:network,
+9:u10:large,
+9:u01:large,
+6:u00:by,
+12:u01:RSerPool,
+11:u03:network,
+9:u00:large,
+12:u00:RSerPool,
+11:u02:network,
+11:u01:network,
+11:u00:network,
+12:u08:message.,
+12:u07:message.,
+12:u06:message.,
+9:u08:terms,
+12:u05:message.,
+9:u07:terms,
+12:u04:message.,
+9:u06:terms,
+12:u03:message.,
+9:u05:terms,
+12:u02:message.,
+9:u04:terms,
+12:u01:message.,
+9:u03:terms,
+12:u00:message.,
+9:u02:terms,
+9:u01:terms,
+9:u00:terms,
+9:u08:shows,
+5:u08:0,
+9:u07:shows,
+11:u14:message,
+9:u06:shows,
+5:u07:0,
+11:u13:message,
+9:u14:shows,
+9:u05:shows,
+5:u06:0,
+11:u12:message,
+9:u13:shows,
+5:u14:0,
+7:u22:mes,
+8:u23:mess,
+9:u04:shows,
+5:u05:0,
+11:u11:message,
+9:u12:shows,
+5:u13:0,
+5:u14:1,
+9:u03:shows,
+5:u04:0,
+69:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+11:u10:message,
+9:u11:shows,
+5:u12:0,
+5:u13:1,
+5:u21:0,
+5:u22:0,
+5:u23:0,
+9:u02:shows,
+5:u03:0,
+9:u10:shows,
+5:u11:0,
+5:u12:1,
+5:u21:1,
+5:u22:1,
+5:u23:1,
+9:u01:shows,
+5:u02:0,
+69:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u08:Type,
+5:u10:0,
+5:u11:1,
+9:u00:shows,
+5:u01:0,
+69:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+11:u08:Message,
+5:u10:1,
+69:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+5:u00:0,
+69:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u07:Type,
+10:u08:Length,
+69:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+36:uI2:--------------------------------,
+6:uI2:32,
+69:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u06:Type,
+11:u07:Message,
+10:u07:Length,
+69:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u14:type,
+7:u22:+-+,
+8:u23:+-+-,
+36:uI1:--------------------------------,
+6:uI1:32,
+69:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u05:Type,
+11:u06:Message,
+10:u06:Length,
+69:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u13:type,
+36:uI0:--------------------------------,
+6:uI0:32,
+69:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u04:Type,
+11:u05:Message,
+11:u08:Sending,
+10:u05:Length,
+69:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u12:type,
+6:u21:Ty,
+7:u22:Typ,
+8:u23:Type,
+69:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u03:Type,
+11:u04:Message,
+10:u04:Length,
+12:u08:Server's,
+8:u11:type,
+7:u22:Mes,
+8:u23:Mess,
+69:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+8:u02:Type,
+11:u03:Message,
+11:u07:Sending,
+10:u03:Length,
+12:u07:Server's,
+8:u10:type,
+8:u01:Type,
+11:u02:Message,
+11:u06:Sending,
+10:u02:Length,
+12:u06:Server's,
+11:u14:sending,
+8:u00:Type,
+11:u01:Message,
+11:u05:Sending,
+13:u08:Receiving,
+10:u01:Length,
+12:u05:Server's,
+11:u13:sending,
+11:u00:Message,
+11:u04:Sending,
+10:u00:Length,
+12:u04:Server's,
+11:u12:sending,
+7:u22:Sen,
+8:u23:Send,
+11:u03:Sending,
+13:u07:Receiving,
+12:u03:Server's,
+11:u11:sending,
+11:u02:Sending,
+13:u06:Receiving,
+12:u02:Server's,
+11:u10:sending,
+13:u14:receiving,
+11:u01:Sending,
+13:u05:Receiving,
+12:u01:Server's,
+13:u13:receiving,
+11:u00:Sending,
+13:u04:Receiving,
+12:u00:Server's,
+10:u08:Action,
+13:u12:receiving,
+7:u22:Rec,
+8:u23:Rece,
+13:u03:Receiving,
+14:u08:(reserved),
+10:u07:Action,
+13:u11:receiving,
+13:u02:Receiving,
+10:u06:Action,
+13:u10:receiving,
+13:u01:Receiving,
+14:u07:(reserved),
+10:u05:Action,
+13:u00:Receiving,
+14:u06:(reserved),
+5:u08::,
+10:u04:Action,
+14:u14:(reserved),
+14:u05:(reserved),
+8:u08:Pool,
+10:u03:Action,
+14:u13:(reserved),
+14:u04:(reserved),
+5:u07::,
+10:u02:Action,
+10:u08:Handle,
+14:u12:(reserved),
+6:u21:(r,
+7:u22:(re,
+8:u23:(res,
+14:u03:(reserved),
+5:u06::,
+8:u07:Pool,
+10:u01:Action,
+10:u07:Handle,
+14:u11:(reserved),
+5:u14::,
+14:u02:(reserved),
+5:u05::,
+8:u06:Pool,
+10:u00:Action,
+10:u06:Handle,
+14:u10:(reserved),
+5:u13::,
+8:u14:pool,
+14:u01:(reserved),
+5:u04::,
+8:u05:Pool,
+10:u05:Handle,
+5:u12::,
+8:u13:pool,
+5:u20::,
+5:u21::,
+5:u22::,
+5:u23::,
+14:u00:(reserved),
+5:u03::,
+8:u04:Pool,
+10:u04:Handle,
+11:u08:Element,
+5:u11::,
+8:u12:pool,
+6:u21:Po,
+7:u22:Poo,
+8:u23:Pool,
+5:u02::,
+8:u03:Pool,
+10:u03:Handle,
+11:u07:Element,
+5:u10::,
+8:u11:pool,
+5:u01::,
+8:u02:Pool,
+5:u08:T,
+10:u02:Handle,
+11:u06:Element,
+8:u10:pool,
+5:u00::,
+8:u01:Pool,
+10:u01:Handle,
+11:u05:Element,
+9:u08:flag:,
+8:u00:Pool,
+5:u07:T,
+10:u00:Handle,
+11:u04:Element,
+9:u07:flag:,
+8:u08:set,,
+5:u06:T,
+15:u08:RECOMMENDED,
+11:u03:Element,
+9:u06:flag:,
+8:u07:set,,
+5:u14:t,
+5:u05:T,
+11:u02:Element,
+9:u05:flag:,
+8:u06:set,,
+5:u13:t,
+5:u04:T,
+15:u07:RECOMMENDED,
+11:u01:Element,
+9:u04:flag:,
+8:u05:set,,
+5:u12:t,
+13:u14:specified,
+5:u21:T,
+5:u22:T,
+5:u23:T,
+5:u03:T,
+15:u06:RECOMMENDED,
+11:u00:Element,
+9:u03:flag:,
+8:u04:set,,
+5:u11:t,
+13:u13:specified,
+15:u14:recommended,
+5:u02:T,
+15:u05:RECOMMENDED,
+9:u02:flag:,
+8:u03:set,,
+5:u10:t,
+13:u12:specified,
+15:u13:recommended,
+5:u01:T,
+15:u04:RECOMMENDED,
+9:u01:flag:,
+8:u02:set,,
+13:u11:specified,
+15:u12:recommended,
+6:u21:RE,
+7:u22:REC,
+8:u23:RECO,
+5:u00:T,
+15:u03:RECOMMENDED,
+9:u00:flag:,
+8:u01:set,,
+13:u10:specified,
+15:u11:recommended,
+15:u02:RECOMMENDED,
+8:u00:set,,
+15:u10:recommended,
+15:u01:RECOMMENDED,
+15:u00:RECOMMENDED,
+23:u08:[RSerPool-Website].,
+14:u08:[RFC5351],,
+23:u07:[RSerPool-Website].,
+14:u08:[RFC5352],,
+23:u06:[RSerPool-Website].,
+14:u07:[RFC5351],,
+34:u08:[I-D.dreibholz-rserpool-delay],
+14:u07:[RFC5352],,
+11:u08:options,
+23:u14:[rserpool-website].,
+23:u05:[RSerPool-Website].,
+14:u06:[RFC5351],,
+14:u06:[RFC5352],,
+11:u07:options,
+23:u13:[rserpool-website].,
+14:u14:[rfc5351],,
+8:uI2:[-].,
+23:u04:[RSerPool-Website].,
+14:u05:[RFC5351],,
+34:u07:[I-D.dreibholz-rserpool-delay],
+14:u08:[Dre2006].,
+14:u05:[RFC5352],,
+11:u06:options,
+13:u08:document.,
+23:u12:[rserpool-website].,
+14:u13:[rfc5351],,
+7:u22:[RS,
+8:u23:[RSe,
+8:uI1:[-].,
+17:uI2:[],[],[],[][],
+23:u03:[RSerPool-Website].,
+14:u04:[RFC5351],,
+34:u06:[I-D.dreibholz-rserpool-delay],
+14:u04:[RFC5352],,
+11:u05:options,
+13:u07:document.,
+23:u11:[rserpool-website].,
+14:u12:[rfc5351],,
+34:u14:[i-d.dreibholz-rserpool-delay],
+8:uI0:[-].,
+17:uI1:[],[],[],[][],
+23:u02:[RSerPool-Website].,
+14:u03:[RFC5351],,
+34:u05:[I-D.dreibholz-rserpool-delay],
+14:u07:[Dre2006].,
+14:u03:[RFC5352],,
+11:u04:options,
+13:u06:document.,
+23:u10:[rserpool-website].,
+14:u11:[rfc5351],,
+34:u13:[i-d.dreibholz-rserpool-delay],
+17:uI0:[],[],[],[][],
+23:u01:[RSerPool-Website].,
+14:u02:[RFC5351],,
+34:u04:[I-D.dreibholz-rserpool-delay],
+14:u06:[Dre2006].,
+14:u02:[RFC5352],,
+11:u03:options,
+13:u05:document.,
+15:u08:large-scale,
+14:u10:[rfc5351],,
+34:u12:[i-d.dreibholz-rserpool-delay],
+14:u14:[dre2006].,
+23:u00:[RSerPool-Website].,
+14:u01:[RFC5351],,
+34:u03:[I-D.dreibholz-rserpool-delay],
+14:u05:[Dre2006].,
+11:u08:NorNet.,
+14:u01:[RFC5352],,
+11:u02:options,
+13:u04:document.,
+15:u07:large-scale,
+34:u11:[i-d.dreibholz-rserpool-delay],
+14:u13:[dre2006].,
+7:u22:thi,
+8:u23:this,
+14:u00:[RFC5351],,
+34:u02:[I-D.dreibholz-rserpool-delay],
+14:u04:[Dre2006].,
+14:u00:[RFC5352],,
+11:u01:options,
+13:u03:document.,
+15:u06:large-scale,
+34:u10:[i-d.dreibholz-rserpool-delay],
+14:u12:[dre2006].,
+6:u21:[D,
+7:u22:[Dr,
+8:u23:[Dre,
+34:u01:[I-D.dreibholz-rserpool-delay],
+14:u03:[Dre2006].,
+11:u07:NorNet.,
+21:u08:[NorNet-Website].,
+11:u00:options,
+13:u02:document.,
+15:u05:large-scale,
+11:u08:further,
+14:u11:[dre2006].,
+34:u00:[I-D.dreibholz-rserpool-delay],
+14:u02:[Dre2006].,
+11:u06:NorNet.,
+13:u01:document.,
+15:u04:large-scale,
+11:u07:further,
+14:u10:[dre2006].,
+11:u14:nornet.,
+14:u01:[Dre2006].,
+11:u05:NorNet.,
+21:u07:[NorNet-Website].,
+13:u00:document.,
+15:u03:large-scale,
+11:u06:further,
+11:u13:nornet.,
+8:u14:some,
+9:uI2:.[-],,
+14:u00:[Dre2006].,
+11:u04:NorNet.,
+21:u06:[NorNet-Website].,
+14:u08:[RFC5355].,
+15:u02:large-scale,
+11:u05:further,
+11:u12:nornet.,
+8:u13:some,
+21:u14:[nornet-website].,
+8:u23:NorN,
+9:uI1:.[-],,
+11:u03:NorNet.,
+21:u05:[NorNet-Website].,
+15:u01:large-scale,
+11:u04:further,
+11:u11:nornet.,
+8:u12:some,
+21:u13:[nornet-website].,
+6:u21:so,
+7:u22:som,
+8:u23:some,
+9:uI0:.[-],,
+11:u02:NorNet.,
+21:u04:[NorNet-Website].,
+14:u07:[RFC5355].,
+15:u00:large-scale,
+11:u03:further,
+11:u10:nornet.,
+8:u11:some,
+21:u12:[nornet-website].,
+6:u21:[N,
+7:u22:[No,
+8:u23:[Nor,
+11:u01:NorNet.,
+21:u03:[NorNet-Website].,
+14:u06:[RFC5355].,
+11:u08:already,
+11:u02:further,
+8:u10:some,
+21:u11:[nornet-website].,
+14:u14:[rfc5355].,
+11:u00:NorNet.,
+21:u02:[NorNet-Website].,
+14:u05:[RFC5355].,
+11:u01:further,
+14:u08:identified,
+21:u10:[nornet-website].,
+14:u13:[rfc5355].,
+21:u01:[NorNet-Website].,
+14:u04:[RFC5355].,
+11:u07:already,
+11:u00:further,
+14:u07:identified,
+14:u12:[rfc5355].,
+21:u00:[NorNet-Website].,
+14:u03:[RFC5355].,
+11:u06:already,
+39:u08:[I-D.dreibholz-rserpool-asap-hropt],
+14:u06:identified,
+14:u11:[rfc5355].,
+11:u14:already,
+14:u02:[RFC5355].,
+11:u05:already,
+14:u08:Dreibholz,,
+14:u05:identified,
+14:u10:[rfc5355].,
+11:u13:already,
+14:u01:[RFC5355].,
+11:u04:already,
+39:u07:[I-D.dreibholz-rserpool-asap-hropt],
+36:u08:dreibholz-rserpool-asap-hropt-24,
+14:u04:identified,
+7:u08:T.,,
+11:u12:already,
+7:u22:alr,
+8:u23:alre,
+14:u00:[RFC5355].,
+11:u03:already,
+39:u06:[I-D.dreibholz-rserpool-asap-hropt],
+14:u07:Dreibholz,,
+14:u03:identified,
+7:u07:T.,,
+11:u11:already,
+39:u14:[i-d.dreibholz-rserpool-asap-hropt],
+11:u02:already,
+39:u05:[I-D.dreibholz-rserpool-asap-hropt],
+14:u06:Dreibholz,,
+36:u07:dreibholz-rserpool-asap-hropt-24,
+14:u02:identified,
+7:u06:T.,,
+11:u10:already,
+39:u13:[i-d.dreibholz-rserpool-asap-hropt],
+14:u14:dreibholz,,
+11:u01:already,
+39:u04:[I-D.dreibholz-rserpool-asap-hropt],
+14:u05:Dreibholz,,
+36:u06:dreibholz-rserpool-asap-hropt-24,
+14:u01:identified,
+7:u05:T.,,
+39:u12:[i-d.dreibholz-rserpool-asap-hropt],
+14:u13:dreibholz,,
+36:u14:dreibholz-rserpool-asap-hropt-24,
+11:uI2:,.,"",-,
+11:u00:already,
+39:u03:[I-D.dreibholz-rserpool-asap-hropt],
+14:u04:Dreibholz,,
+36:u05:dreibholz-rserpool-asap-hropt-24,
+15:u08:Measurement,
+14:u00:identified,
+7:u04:T.,,
+39:u11:[i-d.dreibholz-rserpool-asap-hropt],
+14:u12:dreibholz,,
+36:u13:dreibholz-rserpool-asap-hropt-24,
+9:u14:2019.,
+11:uI1:,.,"",-,
+11:uI2:----(),,
+39:u02:[I-D.dreibholz-rserpool-asap-hropt],
+14:u03:Dreibholz,,
+36:u04:dreibholz-rserpool-asap-hropt-24,
+10:u08:Policy,
+7:u03:T.,,
+18:u08:Infrastructure,
+39:u10:[i-d.dreibholz-rserpool-asap-hropt],
+14:u11:dreibholz,,
+36:u12:dreibholz-rserpool-asap-hropt-24,
+9:u13:2019.,
+7:u22:dre,
+8:u23:drei,
+11:uI0:,.,"",-,
+11:uI1:----(),,
+39:u01:[I-D.dreibholz-rserpool-asap-hropt],
+14:u02:Dreibholz,,
+36:u03:dreibholz-rserpool-asap-hropt-24,
+15:u07:Measurement,
+21:u08:rserpool-delay-23,
+7:u02:T.,,
+18:u07:Infrastructure,
+14:u10:dreibholz,,
+36:u11:dreibholz-rserpool-asap-hropt-24,
+9:u12:2019.,
+8:u23:2019,
+11:uI0:----(),,
+39:u00:[I-D.dreibholz-rserpool-asap-hropt],
+14:u01:Dreibholz,,
+36:u02:dreibholz-rserpool-asap-hropt-24,
+15:u06:Measurement,
+10:u07:Policy,
+7:u01:T.,,
+18:u06:Infrastructure,
+36:u10:dreibholz-rserpool-asap-hropt-24,
+9:u11:2019.,
+14:u00:Dreibholz,,
+36:u01:dreibholz-rserpool-asap-hropt-24,
+15:u05:Measurement,
+10:u06:Policy,
+21:u07:rserpool-delay-23,
+7:u00:T.,,
+18:u05:Infrastructure,
+9:u10:2019.,
+10:u14:policy,
+36:u00:dreibholz-rserpool-asap-hropt-24,
+15:u04:Measurement,
+10:u05:Policy,
+21:u06:rserpool-delay-23,
+18:u04:Infrastructure,
+10:u13:policy,
+21:u14:rserpool-delay-23,
+7:u22:Mea,
+8:u23:Meas,
+8:uI2:",--,
+15:u03:Measurement,
+10:u04:Policy,
+21:u05:rserpool-delay-23,
+18:u03:Infrastructure,
+10:u12:policy,
+21:u13:rserpool-delay-23,
+7:u22:Pol,
+8:u23:Poli,
+8:uI1:",--,
+10:uI2:--(),.,
+15:u02:Measurement,
+10:u03:Policy,
+21:u04:rserpool-delay-23,
+18:u02:Infrastructure,
+10:u11:policy,
+21:u12:rserpool-delay-23,
+6:u21:rs,
+7:u22:rse,
+8:u23:rser,
+8:uI0:",--,
+10:uI1:--(),.,
+15:u01:Measurement,
+10:u02:Policy,
+21:u03:rserpool-delay-23,
+18:u01:Infrastructure,
+10:u10:policy,
+21:u11:rserpool-delay-23,
+10:uI0:--(),.,
+15:u00:Measurement,
+10:u01:Policy,
+21:u02:rserpool-delay-23,
+18:u00:Infrastructure,
+21:u10:rserpool-delay-23,
+10:u00:Policy,
+21:u01:rserpool-delay-23,
+21:u00:rserpool-delay-23,
+13:u08:[RFC5351],
+12:u08:Overview,
+8:u08:Lei,,
+13:u07:[RFC5351],
+8:u07:Lei,,
+13:u06:[RFC5351],
+12:u07:Overview,
+46:u08:.,
+8:u06:Lei,,
+21:u08:10.17487/RFC5351,,
+13:u14:[rfc5351],
+13:u05:[RFC5351],
+12:u06:Overview,
+13:u08:[RFC5352],
+8:u05:Lei,,
+21:u07:10.17487/RFC5351,,
+13:u13:[rfc5351],
+12:u14:overview,
+18:uI2:[],.,,.,,.,.,",
+13:u04:[RFC5351],
+12:u05:Overview,
+46:u07:.,
+14:u08:"Aggregate,
+8:u04:Lei,,
+21:u06:10.17487/RFC5351,,
+12:u08:Stewart,,
+13:u12:[rfc5351],
+12:u13:overview,
+18:uI1:[],.,,.,,.,.,",
+13:u03:[RFC5351],
+12:u04:Overview,
+46:u06:.,
+13:u07:[RFC5352],
+8:u03:Lei,,
+21:u05:10.17487/RFC5351,,
+12:u07:Stewart,,
+13:u11:[rfc5351],
+12:u12:overview,
+46:u14:.,
+6:u21:Ov,
+7:u22:Ove,
+8:u23:Over,
+18:uI0:[],.,,.,,.,.,",
+13:u02:[RFC5351],
+12:u03:Overview,
+46:u05:.,
+13:u06:[RFC5352],
+14:u07:"Aggregate,
+46:u08:.,
+8:u02:Lei,,
+21:u04:10.17487/RFC5351,,
+12:u06:Stewart,,
+21:u08:10.17487/RFC5352,,
+13:u10:[rfc5351],
+12:u11:overview,
+46:u13:.,
+13:u14:[rfc5352],
+13:u01:[RFC5351],
+12:u02:Overview,
+46:u04:.,
+13:u05:[RFC5352],
+14:u06:"Aggregate,
+13:u08:[RFC5353],
+8:u01:Lei,,
+21:u03:10.17487/RFC5351,,
+12:u05:Stewart,,
+21:u07:10.17487/RFC5352,,
+12:u10:overview,
+46:u12:.,
+13:u13:[rfc5352],
+14:u14:"aggregate,
+13:u00:[RFC5351],
+12:u01:Overview,
+46:u03:.,
+13:u04:[RFC5352],
+14:u05:"Aggregate,
+46:u07:.,
+14:u08:Silverton,,
+8:u00:Lei,,
+21:u02:10.17487/RFC5351,,
+12:u04:Stewart,,
+21:u06:10.17487/RFC5352,,
+8:u08:Xie,,
+46:u11:.,
+13:u12:[rfc5352],
+14:u13:"aggregate,
+10:uI2:"()",,,
+12:u00:Overview,
+46:u02:.,
+13:u03:[RFC5352],
+14:u04:"Aggregate,
+46:u06:.,
+13:u07:[RFC5353],
+12:u08:(ENRP)",,
+21:u01:10.17487/RFC5351,,
+12:u03:Stewart,,
+21:u05:10.17487/RFC5352,,
+8:u07:Xie,,
+13:u08:"Endpoint,
+46:u10:.,
+13:u11:[rfc5352],
+14:u12:"aggregate,
+46:u14:.,
+6:u21:"A,
+7:u22:"Ag,
+8:u23:"Agg,
+10:uI1:"()",,,
+46:u01:.,
+13:u02:[RFC5352],
+14:u03:"Aggregate,
+46:u05:.,
+13:u06:[RFC5353],
+14:u07:Silverton,,
+46:u08:.,
+21:u00:10.17487/RFC5351,,
+12:u02:Stewart,,
+21:u04:10.17487/RFC5352,,
+8:u06:Xie,,
+13:u07:"Endpoint,
+13:u10:[rfc5352],
+14:u11:"aggregate,
+46:u13:.,
+13:u14:[rfc5353],
+10:uI0:"()",,,
+46:u00:.,
+13:u01:[RFC5352],
+14:u02:"Aggregate,
+46:u04:.,
+13:u05:[RFC5353],
+14:u06:Silverton,,
+12:u07:(ENRP)",,
+13:u08:[RFC5354],
+12:u01:Stewart,,
+21:u03:10.17487/RFC5352,,
+8:u05:Xie,,
+13:u06:"Endpoint,
+14:u10:"aggregate,
+46:u12:.,
+13:u13:[rfc5353],
+14:u14:silverton,,
+19:uI2:[],.,,.,,.,,.,.,
+13:u00:[RFC5352],
+14:u01:"Aggregate,
+46:u03:.,
+13:u04:[RFC5353],
+14:u05:Silverton,,
+12:u06:(ENRP)",,
+46:u07:.,
+12:u00:Stewart,,
+21:u02:10.17487/RFC5352,,
+8:u04:Xie,,
+13:u05:"Endpoint,
+46:u11:.,
+13:u12:[rfc5353],
+14:u13:silverton,,
+12:u14:(enrp)",,
+19:uI1:[],.,,.,,.,,.,.,
+6:uI2:,",
+14:u00:"Aggregate,
+46:u02:.,
+13:u03:[RFC5353],
+14:u04:Silverton,,
+12:u05:(ENRP)",,
+46:u06:.,
+13:u07:[RFC5354],
+15:u08:Handlespace,
+21:u01:10.17487/RFC5352,,
+8:u03:Xie,,
+13:u04:"Endpoint,
+46:u10:.,
+13:u11:[rfc5353],
+14:u12:silverton,,
+12:u13:(enrp)",,
+46:u14:.,
+7:u22:Sil,
+8:u23:Silv,
+19:uI0:[],.,,.,,.,,.,.,
+6:uI1:,",
+46:u01:.,
+13:u02:[RFC5353],
+14:u03:Silverton,,
+12:u04:(ENRP)",,
+46:u05:.,
+13:u06:[RFC5354],
+21:u00:10.17487/RFC5352,,
+8:u02:Xie,,
+13:u03:"Endpoint,
+14:u08:Redundancy,
+13:u10:[rfc5353],
+14:u11:silverton,,
+12:u12:(enrp)",,
+46:u13:.,
+13:u14:[rfc5354],
+6:u21:(E,
+7:u22:(EN,
+8:u23:(ENR,
+6:uI0:,",
+46:u00:.,
+13:u01:[RFC5353],
+14:u02:Silverton,,
+12:u03:(ENRP)",,
+46:u04:.,
+13:u05:[RFC5354],
+15:u07:Handlespace,
+46:u08:.,
+8:u01:Xie,,
+13:u02:"Endpoint,
+14:u07:Redundancy,
+9:u08:5354,,
+14:u10:silverton,,
+12:u11:(enrp)",,
+46:u12:.,
+13:u13:[rfc5354],
+13:u00:[RFC5353],
+14:u01:Silverton,,
+12:u02:(ENRP)",,
+46:u03:.,
+13:u04:[RFC5354],
+15:u06:Handlespace,
+13:u08:[RFC5355],
+8:u00:Xie,,
+13:u01:"Endpoint,
+14:u06:Redundancy,
+9:u07:5354,,
+12:u10:(enrp)",,
+46:u11:.,
+13:u12:[rfc5354],
+15:u14:handlespace,
+7:uI2:"(),
+14:u00:Silverton,,
+12:u01:(ENRP)",,
+46:u02:.,
+13:u03:[RFC5354],
+15:u05:Handlespace,
+46:u07:.,
+13:u00:"Endpoint,
+14:u05:Redundancy,
+9:u06:5354,,
+13:u08:Stillman,,
+46:u10:.,
+13:u11:[rfc5354],
+15:u13:handlespace,
+7:uI1:"(),
+12:u00:(ENRP)",,
+46:u01:.,
+13:u02:[RFC5354],
+15:u04:Handlespace,
+46:u06:.,
+13:u07:[RFC5355],
+11:u08:Pooling,
+14:u04:Redundancy,
+9:u05:5354,,
+13:u07:Stillman,,
+6:u08:M.,
+13:u10:[rfc5354],
+15:u12:handlespace,
+46:u14:.,
+7:u22:Han,
+8:u23:Hand,
+7:uI0:"(),
+46:u00:.,
+13:u01:[RFC5354],
+15:u03:Handlespace,
+46:u05:.,
+13:u06:[RFC5355],
+12:u08:Response,
+14:u03:Redundancy,
+9:u04:5354,,
+13:u06:Stillman,,
+6:u07:M.,
+14:u08:(RSerPool),
+15:u11:handlespace,
+46:u13:.,
+13:u14:[rfc5355],
+13:u00:[RFC5354],
+15:u02:Handlespace,
+46:u04:.,
+13:u05:[RFC5355],
+11:u07:Pooling,
+14:u02:Redundancy,
+9:u03:5354,,
+13:u05:Stillman,,
+6:u06:M.,
+14:u07:(RSerPool),
+15:u10:handlespace,
+46:u12:.,
+13:u13:[rfc5355],
+20:uI2:[],.,.,,.,,.,,.,,
+15:u01:Handlespace,
+46:u03:.,
+13:u04:[RFC5355],
+11:u06:Pooling,
+12:u07:Response,
+13:u08:[RFC5356],
+14:u01:Redundancy,
+9:u02:5354,,
+13:u04:Stillman,,
+6:u05:M.,
+14:u06:(RSerPool),
+9:u08:2008,,
+46:u11:.,
+13:u12:[rfc5355],
+11:u14:pooling,
+20:uI1:[],.,.,,.,,.,,.,,
+7:uI2:.,",
+15:u00:Handlespace,
+46:u02:.,
+13:u03:[RFC5355],
+11:u05:Pooling,
+12:u06:Response,
+14:u08:Policies",,
+14:u00:Redundancy,
+9:u01:5354,,
+13:u03:Stillman,,
+6:u04:M.,
+14:u05:(RSerPool),
+9:u07:2008,,
+46:u10:.,
+13:u11:[rfc5355],
+11:u13:pooling,
+12:u14:response,
+20:uI0:[],.,.,,.,,.,,.,,
+7:uI1:.,",
+46:u01:.,
+13:u02:[RFC5355],
+11:u04:Pooling,
+12:u05:Response,
+13:u07:[RFC5356],
+46:u08:.,
+9:u00:5354,,
+13:u02:Stillman,,
+6:u03:M.,
+14:u04:(RSerPool),
+9:u06:2008,,
+13:u10:[rfc5355],
+11:u12:pooling,
+12:u13:response,
+7:uI0:.,",
+46:u00:.,
+13:u01:[RFC5355],
+11:u03:Pooling,
+12:u04:Response,
+13:u06:[RFC5356],
+14:u07:Policies",,
+13:u01:Stillman,,
+6:u02:M.,
+14:u03:(RSerPool),
+9:u05:2008,,
+11:u11:pooling,
+12:u12:response,
+13:u14:[rfc5356],
+7:u22:Res,
+8:u23:Resp,
+13:u00:[RFC5355],
+11:u02:Pooling,
+12:u03:Response,
+13:u05:[RFC5356],
+14:u06:Policies",,
+46:u07:.,
+13:u00:Stillman,,
+6:u01:M.,
+14:u02:(RSerPool),
+9:u04:2008,,
+11:u10:pooling,
+12:u11:response,
+13:u13:[rfc5356],
+14:u14:policies",,
+11:u01:Pooling,
+12:u02:Response,
+13:u04:[RFC5356],
+14:u05:Policies",,
+46:u06:.,
+6:u00:M.,
+14:u01:(RSerPool),
+9:u03:2008,,
+12:u10:response,
+13:u12:[rfc5356],
+14:u13:policies",,
+46:u14:.,
+11:uI2:",,./,,,
+11:u00:Pooling,
+12:u01:Response,
+13:u03:[RFC5356],
+14:u04:Policies",,
+46:u05:.,
+14:u00:(RSerPool),
+9:u02:2008,,
+13:u11:[rfc5356],
+14:u12:policies",,
+46:u13:.,
+11:uI1:",,./,,,
+12:u00:Response,
+13:u02:[RFC5356],
+14:u03:Policies",,
+46:u04:.,
+14:u08:[AINA2009],
+9:u01:2008,,
+13:u10:[rfc5356],
+14:u11:policies",,
+46:u12:.,
+11:uI0:",,./,,,
+13:u01:[RFC5356],
+14:u02:Policies",,
+46:u03:.,
+9:u08:Zhou,,
+9:u00:2008,,
+14:u10:policies",,
+46:u11:.,
+13:u00:[RFC5356],
+14:u01:Policies",,
+46:u02:.,
+14:u07:[AINA2009],
+15:u08:"Evaluation,
+7:u08:X.,,
+46:u10:.,
+14:u00:Policies",,
+46:u01:.,
+14:u06:[AINA2009],
+9:u07:Zhou,,
+12:u08:Handling,
+7:u07:X.,,
+14:u14:[aina2009],
+46:u00:.,
+14:u05:[AINA2009],
+9:u06:Zhou,,
+15:u07:"Evaluation,
+7:u06:X.,,
+14:u13:[aina2009],
+9:u14:zhou,,
+14:u04:[AINA2009],
+9:u05:Zhou,,
+15:u06:"Evaluation,
+12:u07:Handling,
+7:u05:X.,,
+14:u12:[aina2009],
+9:u13:zhou,,
+15:u14:"evaluation,
+6:u21:[A,
+7:u22:[AI,
+8:u23:[AIN,
+18:uI2:,.,,.,,.,,.,.,,
+14:u03:[AINA2009],
+9:u04:Zhou,,
+15:u05:"Evaluation,
+12:u06:Handling,
+12:u08:256-262,,
+7:u04:X.,,
+14:u08:Networking,
+14:u11:[aina2009],
+9:u12:zhou,,
+15:u13:"evaluation,
+12:u14:handling,
+5:u20:Z,
+6:u21:Zh,
+7:u22:Zho,
+8:u23:Zhou,
+18:uI1:,.,,.,,.,,.,.,,
+14:u02:[AINA2009],
+9:u03:Zhou,,
+15:u04:"Evaluation,
+12:u05:Handling,
+7:u03:X.,,
+14:u07:Networking,
+8:u08:ISBN,
+14:u10:[aina2009],
+9:u11:zhou,,
+15:u12:"evaluation,
+12:u13:handling,
+6:u21:"E,
+7:u22:"Ev,
+8:u23:"Eva,
+18:uI0:,.,,.,,.,,.,.,,
+6:uI2:",,
+14:u01:[AINA2009],
+9:u02:Zhou,,
+15:u03:"Evaluation,
+12:u04:Handling,
+12:u07:256-262,,
+34:u08:due.de/fileadmin/fileupload/I-,
+7:u02:X.,,
+14:u06:Networking,
+8:u07:ISBN,
+9:u08:2009,,
+9:u10:zhou,,
+15:u11:"evaluation,
+12:u12:handling,
+6:uI1:",,
+14:u00:[AINA2009],
+9:u01:Zhou,,
+15:u02:"Evaluation,
+12:u03:Handling,
+12:u06:256-262,,
+50:u08:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+7:u01:X.,,
+14:u05:Networking,
+8:u06:ISBN,
+9:u07:2009,,
+15:u10:"evaluation,
+12:u11:handling,
+12:u14:256-262,,
+6:uI0:",,
+9:u00:Zhou,,
+15:u01:"Evaluation,
+12:u02:Handling,
+12:u05:256-262,,
+34:u07:due.de/fileadmin/fileupload/I-,
+7:u00:X.,,
+14:u04:Networking,
+8:u05:ISBN,
+9:u06:2009,,
+12:u10:handling,
+12:u13:256-262,,
+16:uI2:-,----,./..,,
+15:u00:"Evaluation,
+12:u01:Handling,
+12:u04:256-262,,
+34:u06:due.de/fileadmin/fileupload/I-,
+50:u07:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+14:u03:Networking,
+8:u04:ISBN,
+9:u05:2009,,
+12:u12:256-262,,
+34:u14:due.de/fileadmin/fileupload/i-,
+6:u21:25,
+7:u22:256,
+8:u23:256-,
+16:uI1:-,----,./..,,
+11:uI2:,://..-,
+12:u00:Handling,
+12:u03:256-262,,
+34:u05:due.de/fileadmin/fileupload/I-,
+50:u06:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+14:u02:Networking,
+8:u03:ISBN,
+9:u04:2009,,
+12:u11:256-262,,
+34:u13:due.de/fileadmin/fileupload/i-,
+50:u14:tdr/reliableserver/publications/aina2009.pdf>.,
+16:uI0:-,----,./..,,
+11:uI1:,://..-,
+9:uI2:.///-,
+12:u02:256-262,,
+34:u04:due.de/fileadmin/fileupload/I-,
+50:u05:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+14:u01:Networking,
+8:u02:ISBN,
+9:u03:2009,,
+12:u10:256-262,,
+34:u12:due.de/fileadmin/fileupload/i-,
+50:u13:tdr/reliableserver/publications/aina2009.pdf>.,
+6:u21:du,
+7:u22:due,
+8:u23:due.,
+11:uI0:,://..-,
+9:uI1:.///-,
+9:uI2:///..,
+12:u01:256-262,,
+34:u03:due.de/fileadmin/fileupload/I-,
+50:u04:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+14:u00:Networking,
+8:u01:ISBN,
+9:u02:2009,,
+34:u11:due.de/fileadmin/fileupload/i-,
+50:u12:tdr/reliableserver/publications/aina2009.pdf>.,
+6:u21:TD,
+7:u22:TDR,
+8:u23:TDR/,
+9:uI0:.///-,
+9:uI1:///..,
+12:u00:256-262,,
+34:u02:due.de/fileadmin/fileupload/I-,
+50:u03:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+8:u00:ISBN,
+9:u01:2009,,
+34:u10:due.de/fileadmin/fileupload/i-,
+50:u11:tdr/reliableserver/publications/aina2009.pdf>.,
+9:uI0:///..,
+34:u01:due.de/fileadmin/fileupload/I-,
+50:u02:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+13:u08:[Dre2006],
+9:u00:2009,,
+50:u10:tdr/reliableserver/publications/aina2009.pdf>.,
+34:u00:due.de/fileadmin/fileupload/I-,
+50:u01:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+16:u08:Optimization,
+50:u00:TDR/ReliableServer/Publications/AINA2009.pdf>.,
+13:u07:[Dre2006],
+13:u06:[Dre2006],
+16:u07:Optimization,
+53:u08:essen.de/servlets/DerivateServlet/Derivate-16326/,
+9:u08:2007,,
+13:u14:[dre2006],
+13:u05:[Dre2006],
+16:u06:Optimization,
+23:u08:Dre2006_final.pdf>.,
+9:u07:2007,,
+13:u13:[dre2006],
+16:u14:optimization,
+12:uI2:[],.,"-,,
+13:u04:[Dre2006],
+16:u05:Optimization,
+53:u07:essen.de/servlets/DerivateServlet/Derivate-16326/,
+15:u08:[IJHIT2008],
+9:u06:2007,,
+13:u12:[dre2006],
+16:u13:optimization,
+12:uI1:[],.,"-,,
+13:u03:[Dre2006],
+16:u04:Optimization,
+53:u06:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u07:Dre2006_final.pdf>.,
+9:u05:2007,,
+13:u11:[dre2006],
+16:u12:optimization,
+53:u14:essen.de/servlets/derivateservlet/derivate-16326/,
+7:u22:Opt,
+8:u23:Opti,
+12:uI0:[],.,"-,,
+11:uI2:,://.--,
+13:u02:[Dre2006],
+16:u03:Optimization,
+53:u05:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u06:Dre2006_final.pdf>.,
+15:u07:[IJHIT2008],
+15:u08:Maintenance,
+9:u04:2007,,
+13:u10:[dre2006],
+16:u11:optimization,
+53:u13:essen.de/servlets/derivateservlet/derivate-16326/,
+23:u14:dre2006_final.pdf>.,
+11:uI1:,://.--,
+10:uI2:.///-/,
+13:u01:[Dre2006],
+16:u02:Optimization,
+53:u04:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u05:Dre2006_final.pdf>.,
+15:u06:[IJHIT2008],
+9:u08:SERSC,
+9:u03:2007,,
+12:u08:Overhead,
+16:u10:optimization,
+53:u12:essen.de/servlets/derivateservlet/derivate-16326/,
+23:u13:dre2006_final.pdf>.,
+15:u14:[ijhit2008],
+7:u22:ess,
+8:u23:esse,
+11:uI0:,://.--,
+10:uI1:.///-/,
+13:u00:[Dre2006],
+16:u01:Optimization,
+53:u03:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u04:Dre2006_final.pdf>.,
+15:u05:[IJHIT2008],
+15:u07:Maintenance,
+14:u08:Technology,
+9:u02:2007,,
+12:u07:Overhead,
+17:u08:International,
+53:u11:essen.de/servlets/derivateservlet/derivate-16326/,
+23:u12:dre2006_final.pdf>.,
+15:u13:[ijhit2008],
+8:u23:Dre2,
+10:uI0:.///-/,
+16:u00:Optimization,
+53:u02:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u03:Dre2006_final.pdf>.,
+15:u04:[IJHIT2008],
+15:u06:Maintenance,
+9:u07:SERSC,
+8:u08:ISSN,
+9:u01:2007,,
+12:u06:Overhead,
+17:u07:International,
+11:u08:(IJHIT),
+53:u10:essen.de/servlets/derivateservlet/derivate-16326/,
+23:u11:dre2006_final.pdf>.,
+15:u12:[ijhit2008],
+15:u14:maintenance,
+7:u22:[IJ,
+8:u23:[IJH,
+53:u01:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u02:Dre2006_final.pdf>.,
+15:u03:[IJHIT2008],
+15:u05:Maintenance,
+9:u06:SERSC,
+14:u07:Technology,
+9:u00:2007,,
+12:u05:Overhead,
+17:u06:International,
+11:u07:(IJHIT),
+14:u08:1738-9968,,
+23:u10:dre2006_final.pdf>.,
+15:u11:[ijhit2008],
+15:u13:maintenance,
+9:u14:sersc,
+53:u00:essen.de/servlets/DerivateServlet/Derivate-16326/,
+23:u01:Dre2006_final.pdf>.,
+15:u02:[IJHIT2008],
+15:u04:Maintenance,
+9:u05:SERSC,
+14:u06:Technology,
+8:u07:ISSN,
+51:u08:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+12:u04:Overhead,
+17:u05:International,
+11:u06:(IJHIT),
+14:u07:1738-9968,,
+15:u10:[ijhit2008],
+15:u12:maintenance,
+9:u13:sersc,
+14:u14:technology,
+23:u00:Dre2006_final.pdf>.,
+15:u01:[IJHIT2008],
+15:u03:Maintenance,
+9:u04:SERSC,
+14:u05:Technology,
+8:u06:ISSN,
+20:u08:[NorNet-Website],
+12:u03:Overhead,
+17:u04:International,
+11:u05:(IJHIT),
+14:u06:1738-9968,,
+15:u11:maintenance,
+9:u12:sersc,
+14:u13:technology,
+8:u14:issn,
+6:u21:SE,
+7:u22:SER,
+8:u23:SERS,
+10:uI2:(),,-,,
+15:u00:[IJHIT2008],
+15:u02:Maintenance,
+9:u03:SERSC,
+14:u04:Technology,
+8:u05:ISSN,
+51:u07:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+12:u02:Overhead,
+17:u03:International,
+11:u04:(IJHIT),
+14:u05:1738-9968,,
+15:u10:maintenance,
+9:u11:sersc,
+14:u12:technology,
+8:u13:issn,
+7:u22:Tec,
+8:u23:Tech,
+10:uI1:(),,-,,
+13:uI2:-,,://..-,
+15:u01:Maintenance,
+9:u02:SERSC,
+14:u03:Technology,
+8:u04:ISSN,
+51:u06:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u07:[NorNet-Website],
+10:u08:Homing,
+12:u01:Overhead,
+17:u02:International,
+11:u03:(IJHIT),
+14:u04:1738-9968,,
+9:u10:sersc,
+14:u11:technology,
+8:u12:issn,
+51:u14:tdr/reliableserver/publications/ijhit2008.pdf>.,
+10:uI0:(),,-,,
+13:uI1:-,,://..-,
+15:u00:Maintenance,
+9:u01:SERSC,
+14:u02:Technology,
+8:u03:ISSN,
+51:u05:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u06:[NorNet-Website],
+27:u08:.,
+12:u00:Overhead,
+17:u01:International,
+11:u02:(IJHIT),
+14:u03:1738-9968,,
+13:u08:Testbed",,
+14:u10:technology,
+8:u11:issn,
+51:u13:tdr/reliableserver/publications/ijhit2008.pdf>.,
+20:u14:[nornet-website],
+13:uI0:-,,://..-,
+9:u00:SERSC,
+14:u01:Technology,
+8:u02:ISSN,
+51:u04:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u05:[NorNet-Website],
+10:u07:Homing,
+21:u08:[PAMS2013-NorNet],
+17:u00:International,
+11:u01:(IJHIT),
+14:u02:1738-9968,,
+13:u07:Testbed",,
+8:u10:issn,
+51:u12:tdr/reliableserver/publications/ijhit2008.pdf>.,
+20:u13:[nornet-website],
+7:uI2:[-],
+14:u00:Technology,
+8:u01:ISSN,
+51:u03:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u04:[NorNet-Website],
+10:u06:Homing,
+27:u07:.,
+11:u00:(IJHIT),
+14:u01:1738-9968,,
+13:u06:Testbed",,
+51:u11:tdr/reliableserver/publications/ijhit2008.pdf>.,
+20:u12:[nornet-website],
+10:u14:homing,
+7:uI1:[-],
+13:uI2:,.,"--,--,
+8:u00:ISSN,
+51:u02:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u03:[NorNet-Website],
+10:u05:Homing,
+27:u06:.,
+21:u07:[PAMS2013-NorNet],
+14:u00:1738-9968,,
+13:u05:Testbed",,
+51:u10:tdr/reliableserver/publications/ijhit2008.pdf>.,
+20:u11:[nornet-website],
+10:u13:homing,
+27:u14:.,
+7:uI0:[-],
+13:uI1:,.,"--,--,
+15:uI2:",:://../,,,
+51:u01:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u02:[NorNet-Website],
+10:u04:Homing,
+27:u05:.,
+21:u06:[PAMS2013-NorNet],
+15:u08:Proceedings,
+13:u04:Testbed",,
+10:u08:NorNet,
+20:u10:[nornet-website],
+10:u12:homing,
+27:u13:.,
+21:u14:[pams2013-nornet],
+7:u22:Hom,
+8:u23:Homi,
+13:uI0:,.,"--,--,
+15:uI1:",:://../,,,
+11:uI2:://../.,
+51:u00:TDR/ReliableServer/Publications/IJHIT2008.pdf>.,
+20:u01:[NorNet-Website],
+10:u03:Homing,
+27:u04:.,
+21:u05:[PAMS2013-NorNet],
+13:u03:Testbed",,
+10:u07:NorNet,
+10:u11:homing,
+27:u12:.,
+21:u13:[pams2013-nornet],
+15:uI0:",:://../,,,
+11:uI1:://../.,
+20:u00:[NorNet-Website],
+10:u02:Homing,
+27:u03:.,
+21:u04:[PAMS2013-NorNet],
+15:u07:Proceedings,
+14:u08:1094-1100,,
+13:u02:Testbed",,
+10:u06:NorNet,
+16:u08:Applications,
+10:u10:homing,
+27:u11:.,
+21:u12:[pams2013-nornet],
+7:u22:[PA,
+8:u23:[PAM,
+11:uI0:://../.,
+10:u01:Homing,
+27:u02:.,
+21:u03:[PAMS2013-NorNet],
+15:u06:Proceedings,
+13:u01:Testbed",,
+10:u05:NorNet,
+16:u07:Applications,
+27:u10:.,
+21:u11:[pams2013-nornet],
+15:u14:proceedings,
+7:uI2:-",,
+10:u00:Homing,
+27:u01:.,
+21:u02:[PAMS2013-NorNet],
+15:u05:Proceedings,
+14:u07:1094-1100,,
+32:u08:.,
+21:u01:[PAMS2013-NorNet],
+15:u04:Proceedings,
+14:u06:1094-1100,,
+60:u08:threfereedinproceedingsreference2012-12-207643198512pdf/,
+10:u03:NorNet,
+16:u05:Applications,
+26:u07:10.1109/WAINA.2013.71,,
+15:u12:proceedings,
+14:u14:1094-1100,,
+8:u23:Proc,
+7:uI0:-",,
+7:uI2:-(),
+21:u00:[PAMS2013-NorNet],
+15:u03:Proceedings,
+14:u05:1094-1100,,
+32:u07:.,
+10:u02:NorNet,
+16:u04:Applications,
+26:u06:10.1109/WAINA.2013.71,,
+15:u11:proceedings,
+14:u13:1094-1100,,
+7:uI1:-(),
+11:uI2:-,----,,
+15:u02:Proceedings,
+14:u04:1094-1100,,
+32:u06:.,
+10:u00:NorNet,
+16:u02:Applications,
+26:u04:10.1109/WAINA.2013.71,,
+14:u11:1094-1100,,
+32:u13:.,
+22:u07:[RSerPool-Website],
+11:u08:Online:,
+16:u01:Applications,
+26:u03:10.1109/WAINA.2013.71,,
+14:u10:1094-1100,,
+32:u12:.,
+10:uI0:./..,,,
+11:uI1:://..//,
+7:uI2:--/,
+14:u01:1094-1100,,
+32:u03:.,
+22:u06:[RSerPool-Website],
+47:u08:.,
+16:u00:Applications,
+26:u02:10.1109/WAINA.2013.71,,
+45:u08:https://www.uni-due.de/~be0001/rserpool/,,
+32:u11:.,
+22:u14:[rserpool-website],
+7:u22:thr,
+8:u23:thre,
+11:uI0:://..//,
+7:uI1:--/,
+14:u00:1094-1100,,
+32:u02:.,
+22:u05:[RSerPool-Website],
+11:u07:Online:,
+26:u01:10.1109/WAINA.2013.71,,
+45:u07:https://www.uni-due.de/~be0001/rserpool/,,
+32:u10:.,
+22:u13:[rserpool-website],
+7:u22:dow,
+8:u23:down,
+7:uI0:--/,
+32:u01:.,
+22:u04:[RSerPool-Website],
+11:u06:Online:,
+47:u07:.,
+10:u08:Thomas,
+26:u00:10.1109/WAINA.2013.71,,
+45:u06:https://www.uni-due.de/~be0001/rserpool/,,
+60:u10:threfereedinproceedingsreference2012-12-207643198512pdf/,
+14:u11:download>.,
+22:u12:[rserpool-website],
+11:u14:online:,
+11:uI2:,.,"'",,
+32:u00:.,
+22:u03:[RSerPool-Website],
+11:u05:Online:,
+47:u06:.,
+10:u08:Simula,
+45:u05:https://www.uni-due.de/~be0001/rserpool/,,
+14:u10:download>.,
+22:u11:[rserpool-website],
+11:u13:online:,
+47:u14:.,
+11:uI1:,.,"'",,
+16:uI2::://.-.///,,,
+60:u00:threfereedinproceedingsreference2012-12-207643198512pdf/,
+14:u01:download>.,
+22:u02:[RSerPool-Website],
+11:u04:Online:,
+47:u05:.,
+10:u07:Thomas,
+15:u08:Pilestredet,
+45:u04:https://www.uni-due.de/~be0001/rserpool/,,
+16:u08:Metropolitan,
+22:u10:[rserpool-website],
+11:u12:online:,
+47:u13:.,
+7:u22:Onl,
+8:u23:Onli,
+11:uI0:,.,"'",,
+16:uI1::://.-.///,,,
+14:uI2:://.-.///.,
+14:u00:download>.,
+22:u01:[RSerPool-Website],
+11:u03:Online:,
+47:u04:.,
+10:u06:Thomas,
+10:u07:Simula,
+8:u08:0167,
+45:u03:https://www.uni-due.de/~be0001/rserpool/,,
+16:u07:Metropolitan,
+6:u08:52,
+11:u11:online:,
+47:u12:.,
+10:u14:thomas,
+16:uI0::://.-.///,,,
+14:uI1:://.-.///.,
+22:u00:[RSerPool-Website],
+11:u02:Online:,
+47:u03:.,
+10:u05:Thomas,
+10:u06:Simula,
+15:u07:Pilestredet,
+45:u02:https://www.uni-due.de/~be0001/rserpool/,,
+16:u06:Metropolitan,
+6:u07:52,
+9:u08:Oslo,,
+11:u10:online:,
+47:u11:.,
+10:u13:thomas,
+10:u14:simula,
+14:uI0:://.-.///.,
+11:u01:Online:,
+47:u02:.,
+10:u04:Thomas,
+10:u05:Simula,
+15:u06:Pilestredet,
+8:u07:0167,
+10:u08:Phone:,
+45:u01:https://www.uni-due.de/~be0001/rserpool/,,
+16:u05:Metropolitan,
+6:u06:52,
+9:u07:Oslo,,
+47:u10:.,
+10:u12:thomas,
+10:u13:simula,
+15:u14:pilestredet,
+7:u22:Tho,
+8:u23:Thom,
+11:u00:Online:,
+47:u01:.,
+10:u03:Thomas,
+10:u04:Simula,
+15:u05:Pilestredet,
+8:u06:0167,
+8:u08:Fax:,
+45:u00:https://www.uni-due.de/~be0001/rserpool/,,
+16:u04:Metropolitan,
+6:u05:52,
+9:u06:Oslo,,
+17:u08:+47-6782-8200,
+10:u11:thomas,
+10:u12:simula,
+15:u13:pilestredet,
+8:u14:0167,
+47:u00:.,
+10:u02:Thomas,
+10:u03:Simula,
+15:u04:Pilestredet,
+8:u05:0167,
+10:u07:Phone:,
+17:u08:+47-6782-8201,
+16:u03:Metropolitan,
+6:u04:52,
+9:u05:Oslo,,
+17:u07:+47-6782-8200,
+10:u10:thomas,
+10:u11:simula,
+15:u12:pilestredet,
+8:u13:0167,
+6:u21:Pi,
+7:u22:Pil,
+8:u23:Pile,
+10:u01:Thomas,
+10:u02:Simula,
+15:u03:Pilestredet,
+8:u04:0167,
+10:u06:Phone:,
+8:u07:Fax:,
+16:u02:Metropolitan,
+6:u03:52,
+9:u04:Oslo,,
+17:u06:+47-6782-8200,
+10:u10:simula,
+15:u11:pilestredet,
+8:u12:0167,
+10:u14:phone:,
+6:u21:01,
+7:u22:016,
+8:u23:0167,
+10:u00:Thomas,
+10:u01:Simula,
+15:u02:Pilestredet,
+8:u03:0167,
+10:u05:Phone:,
+8:u06:Fax:,
+17:u07:+47-6782-8201,
+8:u08:URI:,
+16:u01:Metropolitan,
+6:u02:52,
+9:u03:Oslo,,
+17:u05:+47-6782-8200,
+20:u08:dreibh@simula.no,
+15:u10:pilestredet,
+8:u11:0167,
+10:u13:phone:,
+8:u14:fax:,
+10:u00:Simula,
+15:u01:Pilestredet,
+8:u02:0167,
+10:u04:Phone:,
+8:u05:Fax:,
+17:u06:+47-6782-8201,
+39:u08:https://www.simula.no/people/dreibh,
+16:u00:Metropolitan,
+6:u01:52,
+9:u02:Oslo,,
+17:u04:+47-6782-8200,
+20:u07:dreibh@simula.no,
+8:u10:0167,
+10:u12:phone:,
+8:u13:fax:,
+17:u14:+47-6782-8201,
+7:u22:Pho,
+8:u23:Phon,
+15:u00:Pilestredet,
+8:u01:0167,
+10:u03:Phone:,
+8:u04:Fax:,
+17:u05:+47-6782-8201,
+8:u07:URI:,
+6:u00:52,
+9:u01:Oslo,,
+17:u03:+47-6782-8200,
+20:u06:dreibh@simula.no,
+10:u11:phone:,
+8:u12:fax:,
+17:u13:+47-6782-8201,
+6:u21:Fa,
+7:u22:Fax,
+8:u23:Fax:,
+8:u00:0167,
+10:u02:Phone:,
+8:u03:Fax:,
+17:u04:+47-6782-8201,
+8:u06:URI:,
+39:u07:https://www.simula.no/people/dreibh,
+9:u00:Oslo,,
+17:u02:+47-6782-8200,
+20:u05:dreibh@simula.no,
+10:u10:phone:,
+8:u11:fax:,
+17:u12:+47-6782-8201,
+8:u14:uri:,
+6:u21:+4,
+7:u22:+47,
+8:u23:+47-,
+10:u01:Phone:,
+8:u02:Fax:,
+17:u03:+47-6782-8201,
+8:u05:URI:,
+39:u06:https://www.simula.no/people/dreibh,
+17:u01:+47-6782-8200,
+20:u04:dreibh@simula.no,
+8:u10:fax:,
+17:u11:+47-6782-8201,
+8:u13:uri:,
+39:u14:https://www.simula.no/people/dreibh,
+10:u00:Phone:,
+8:u01:Fax:,
+17:u02:+47-6782-8201,
+8:u04:URI:,
+39:u05:https://www.simula.no/people/dreibh,
+17:u00:+47-6782-8200,
+20:u03:dreibh@simula.no,
+17:u10:+47-6782-8201,
+8:u12:uri:,
+39:u13:https://www.simula.no/people/dreibh,
+6:u21:UR,
+7:u22:URI,
+8:u23:URI:,
+8:u00:Fax:,
+17:u01:+47-6782-8201,
+8:u03:URI:,
+39:u04:https://www.simula.no/people/dreibh,
+20:u02:dreibh@simula.no,
+8:u11:uri:,
+39:u12:https://www.simula.no/people/dreibh,
+17:u00:+47-6782-8201,
+8:u02:URI:,
+39:u03:https://www.simula.no/people/dreibh,
+20:u01:dreibh@simula.no,
+8:u10:uri:,
+39:u11:https://www.simula.no/people/dreibh,
+8:u01:URI:,
+39:u02:https://www.simula.no/people/dreibh,
+8:u08:Xing,
+20:u00:dreibh@simula.no,
+39:u10:https://www.simula.no/people/dreibh,
+8:u00:URI:,
+39:u01:https://www.simula.no/people/dreibh,
+39:u00:https://www.simula.no/people/dreibh,
+8:u07:Xing,
+10:u08:Renmin,
+15:u08:University,,
+8:u06:Xing,
+10:u08:570228,
+15:u07:University,,
+10:u08:Avenue,
+8:u14:xing,
+8:u05:Xing,
+10:u07:Renmin,
+15:u06:University,,
+10:u07:Avenue,
+11:u08:Haikou,,
+8:u13:xing,
+8:u04:Xing,
+10:u06:Renmin,
+10:u07:570228,
+15:u05:University,,
+10:u06:Avenue,
+11:u07:Haikou,,
+8:u12:xing,
+10:u14:renmin,
+6:u21:Xi,
+7:u22:Xin,
+8:u23:Xing,
+8:u03:Xing,
+10:u05:Renmin,
+10:u06:570228,
+15:u04:University,,
+10:u05:Avenue,
+11:u06:Haikou,,
+20:u08:+86-898-66279141,
+8:u11:xing,
+10:u13:renmin,
+10:u14:570228,
+8:u02:Xing,
+10:u04:Renmin,
+10:u05:570228,
+15:u03:University,,
+10:u04:Avenue,
+11:u05:Haikou,,
+20:u07:+86-898-66279141,
+25:u08:zhouxing@hainu.edu.cn,
+8:u10:xing,
+10:u12:renmin,
+10:u13:570228,
+9:u14:china,
+7:u22:Ren,
+8:u23:Renm,
+8:u01:Xing,
+10:u03:Renmin,
+10:u04:570228,
+60:u08:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+15:u02:University,,
+10:u03:Avenue,
+11:u04:Haikou,,
+20:u06:+86-898-66279141,
+25:u07:zhouxing@hainu.edu.cn,
+10:u11:renmin,
+10:u12:570228,
+9:u13:china,
+6:u21:57,
+7:u22:570,
+8:u23:5702,
+8:u00:Xing,
+10:u02:Renmin,
+10:u03:570228,
+15:u01:University,,
+10:u02:Avenue,
+11:u03:Haikou,,
+20:u05:+86-898-66279141,
+25:u06:zhouxing@hainu.edu.cn,
+10:u10:renmin,
+10:u11:570228,
+9:u12:china,
+7:u22:Chi,
+8:u23:Chin,
+10:u01:Renmin,
+10:u02:570228,
+60:u07:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+15:u00:University,,
+10:u01:Avenue,
+11:u02:Haikou,,
+20:u04:+86-898-66279141,
+25:u05:zhouxing@hainu.edu.cn,
+10:u10:570228,
+9:u11:china,
+10:u00:Renmin,
+10:u01:570228,
+60:u06:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+10:u00:Avenue,
+11:u01:Haikou,,
+20:u03:+86-898-66279141,
+25:u04:zhouxing@hainu.edu.cn,
+9:u10:china,
+60:u14:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+10:u00:570228,
+60:u05:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+11:u00:Haikou,,
+20:u02:+86-898-66279141,
+25:u03:zhouxing@hainu.edu.cn,
+60:u13:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+15:uI2:://...////.,
+60:u04:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+20:u01:+86-898-66279141,
+25:u02:zhouxing@hainu.edu.cn,
+60:u12:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+15:uI1:://...////.,
+60:u03:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+20:u00:+86-898-66279141,
+25:u01:zhouxing@hainu.edu.cn,
+60:u11:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+15:uI0:://...////.,
+60:u02:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+25:u00:zhouxing@hainu.edu.cn,
+60:u10:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+60:u01:http://www.hainu.edu.cn/stm/xinxi/2011330/10409758.shtml,
+8:u04:MPLS,
+6:u05:K.,
+11:u07:Juniper,
+6:u08:L.,
+6:u04:WG,
+12:u05:Kompella,
+13:u07:Networks,,
+8:u12:mpls,
+6:u13:k.,
+6:u21:MP,
+7:u22:MPL,
+8:u23:MPLS,
+8:u03:MPLS,
+6:u04:K.,
+11:u06:Juniper,
+6:u03:WG,
+12:u04:Kompella,
+13:u06:Networks,,
+13:u08:Contreras,
+8:u11:mpls,
+6:u12:k.,
+11:u14:juniper,
+6:u21:K.,
+6:u22:K.,
+6:u23:K.,
+8:u02:MPLS,
+6:u03:K.,
+11:u05:Juniper,
+6:u07:L.,
+14:u08:Telefonica,
+6:u02:WG,
+12:u03:Kompella,
+13:u05:Networks,,
+13:u07:Contreras,
+9:u08:April,
+8:u10:mpls,
+6:u11:k.,
+11:u13:juniper,
+8:u01:MPLS,
+6:u02:K.,
+11:u04:Juniper,
+6:u06:L.,
+11:u08:October,
+6:u01:WG,
+12:u02:Kompella,
+13:u04:Networks,,
+13:u06:Contreras,
+9:u07:April,
+6:u10:k.,
+11:u12:juniper,
+6:u14:l.,
+7:u22:Jun,
+8:u23:Juni,
+8:u00:MPLS,
+6:u01:K.,
+11:u03:Juniper,
+6:u05:L.,
+14:u07:Telefonica,
+13:u08:Resilient,
+6:u00:WG,
+12:u01:Kompella,
+13:u03:Networks,,
+13:u05:Contreras,
+9:u06:April,
+7:u08:23,,
+11:u11:juniper,
+6:u13:l.,
+6:u00:K.,
+11:u02:Juniper,
+6:u04:L.,
+14:u06:Telefonica,
+11:u07:October,
+26:u08:draft-ietf-mpls-rmr-12,
+12:u00:Kompella,
+13:u02:Networks,,
+13:u04:Contreras,
+9:u05:April,
+7:u07:23,,
+8:u08:MPLS,
+11:u10:juniper,
+6:u12:l.,
+14:u14:telefonica,
+6:u21:L.,
+6:u22:L.,
+6:u23:L.,
+11:u01:Juniper,
+6:u03:L.,
+14:u05:Telefonica,
+11:u06:October,
+13:u07:Resilient,
+13:u01:Networks,,
+13:u03:Contreras,
+9:u04:April,
+7:u06:23,,
+8:u07:MPLS,
+6:u11:l.,
+14:u13:telefonica,
+11:u14:october,
+11:u00:Juniper,
+6:u02:L.,
+14:u04:Telefonica,
+11:u05:October,
+13:u06:Resilient,
+26:u07:draft-ietf-mpls-rmr-12,
+13:u00:Networks,,
+13:u02:Contreras,
+9:u03:April,
+7:u05:23,,
+8:u06:MPLS,
+6:u10:l.,
+14:u12:telefonica,
+11:u13:october,
+13:u14:resilient,
+7:u22:Tel,
+8:u23:Tele,
+6:u01:L.,
+14:u03:Telefonica,
+11:u04:October,
+13:u05:Resilient,
+26:u06:draft-ietf-mpls-rmr-12,
+13:u01:Contreras,
+9:u02:April,
+7:u04:23,,
+8:u05:MPLS,
+14:u11:telefonica,
+11:u12:october,
+13:u13:resilient,
+26:u14:draft-ietf-mpls-rmr-12,
+6:u21:Oc,
+7:u22:Oct,
+8:u23:Octo,
+6:u00:L.,
+14:u02:Telefonica,
+11:u03:October,
+13:u04:Resilient,
+26:u05:draft-ietf-mpls-rmr-12,
+12:u08:proceeds,
+13:u00:Contreras,
+9:u01:April,
+7:u03:23,,
+8:u08:ring,
+14:u10:telefonica,
+11:u11:october,
+13:u12:resilient,
+26:u13:draft-ietf-mpls-rmr-12,
+8:u23:Resi,
+14:u01:Telefonica,
+11:u02:October,
+13:u03:Resilient,
+26:u04:draft-ietf-mpls-rmr-12,
+9:u00:April,
+7:u02:23,,
+8:u07:ring,
+11:u10:october,
+13:u11:resilient,
+26:u12:draft-ietf-mpls-rmr-12,
+14:u00:Telefonica,
+11:u01:October,
+13:u02:Resilient,
+26:u03:draft-ietf-mpls-rmr-12,
+12:u07:proceeds,
+13:u08:signaled,,
+7:u01:23,,
+8:u06:ring,
+13:u08:describes,
+13:u10:resilient,
+26:u11:draft-ietf-mpls-rmr-12,
+11:u00:October,
+13:u01:Resilient,
+26:u02:draft-ietf-mpls-rmr-12,
+12:u06:proceeds,
+12:u08:describe,
+7:u00:23,,
+8:u05:ring,
+13:u07:describes,
+26:u10:draft-ietf-mpls-rmr-12,
+12:u14:proceeds,
+13:u00:Resilient,
+26:u01:draft-ietf-mpls-rmr-12,
+12:u05:proceeds,
+13:u07:signaled,,
+14:u08:protocols.,
+8:u04:ring,
+13:u06:describes,
+12:u13:proceeds,
+26:u00:draft-ietf-mpls-rmr-12,
+12:u04:proceeds,
+13:u06:signaled,,
+12:u07:describe,
+16:u08:Requirements,
+8:u03:ring,
+13:u05:describes,
+12:u12:proceeds,
+13:u14:signaled,,
+12:u03:proceeds,
+13:u05:signaled,,
+12:u06:describe,
+14:u07:protocols.,
+8:u02:ring,
+13:u04:describes,
+12:u11:proceeds,
+13:u13:signaled,,
+12:u14:describe,
+6:u21:It,
+6:u22:It,
+6:u23:It,
+12:u02:proceeds,
+13:u04:signaled,,
+12:u05:describe,
+14:u06:protocols.,
+16:u07:Requirements,
+8:u01:ring,
+13:u03:describes,
+12:u10:proceeds,
+13:u12:signaled,,
+12:u13:describe,
+14:u14:protocols.,
+12:u01:proceeds,
+13:u03:signaled,,
+12:u04:describe,
+14:u05:protocols.,
+16:u06:Requirements,
+8:u00:ring,
+13:u02:describes,
+13:u11:signaled,,
+12:u12:describe,
+14:u13:protocols.,
+12:u00:proceeds,
+13:u02:signaled,,
+12:u03:describe,
+14:u04:protocols.,
+16:u05:Requirements,
+13:u01:describes,
+13:u10:signaled,,
+12:u11:describe,
+14:u12:protocols.,
+8:u23:prot,
+13:u01:signaled,,
+12:u02:describe,
+14:u03:protocols.,
+16:u04:Requirements,
+13:u00:describes,
+12:u10:describe,
+14:u11:protocols.,
+13:u00:signaled,,
+12:u01:describe,
+14:u02:protocols.,
+16:u03:Requirements,
+14:u10:protocols.,
+18:uI2:"","","","","",
+12:u00:describe,
+14:u01:protocols.,
+16:u02:Requirements,
+18:uI1:"","","","","",
+14:u00:protocols.,
+16:u01:Requirements,
+18:uI0:"","","","","",
+16:u00:Requirements,
+12:u08:Kompella,
+12:u07:Kompella,
+12:u06:Kompella,
+12:u14:kompella,
+12:u13:kompella,
+12:u12:kompella,
+6:u21:Ko,
+7:u22:Kom,
+8:u23:Komp,
+12:u11:kompella,
+12:u10:kompella,
+15:u08:Definitions,
+15:u07:Definitions,
+15:u06:Definitions,
+14:u08:Motivation,
+15:u05:Definitions,
+14:u07:Motivation,
+15:u04:Definitions,
+14:u06:Motivation,
+10:u08:Theory,
+15:u03:Definitions,
+14:u05:Motivation,
+10:u07:Theory,
+15:u02:Definitions,
+14:u04:Motivation,
+10:u06:Theory,
+16:u08:Provisioning,
+15:u01:Definitions,
+14:u03:Motivation,
+10:u05:Theory,
+16:u07:Provisioning,
+15:u00:Definitions,
+14:u02:Motivation,
+10:u04:Theory,
+16:u06:Provisioning,
+8:u08:Ring,
+14:u01:Motivation,
+10:u03:Theory,
+16:u05:Provisioning,
+8:u07:Ring,
+14:u00:Motivation,
+10:u02:Theory,
+16:u04:Provisioning,
+8:u06:Ring,
+10:u08:3.3.1.,
+10:u01:Theory,
+16:u03:Provisioning,
+8:u05:Ring,
+10:u00:Theory,
+16:u02:Provisioning,
+8:u04:Ring,
+11:u08:Express,
+10:u07:3.3.1.,
+8:u08:3.4.,
+16:u01:Provisioning,
+8:u03:Ring,
+11:u07:Express,
+10:u06:3.3.1.,
+16:u00:Provisioning,
+8:u02:Ring,
+11:u06:Express,
+10:u14:3.3.1.,
+10:u05:3.3.1.,
+8:u07:3.4.,
+8:u08:3.5.,
+8:u01:Ring,
+11:u05:Express,
+10:u13:3.3.1.,
+10:u04:3.3.1.,
+8:u06:3.4.,
+8:u00:Ring,
+11:u04:Express,
+14:u08:Installing,
+10:u12:3.3.1.,
+8:u14:3.4.,
+10:u03:3.3.1.,
+8:u05:3.4.,
+8:u07:3.5.,
+8:u08:3.6.,
+11:u03:Express,
+14:u07:Installing,
+10:u11:3.3.1.,
+8:u13:3.4.,
+10:u02:3.3.1.,
+8:u04:3.4.,
+8:u06:3.5.,
+11:u02:Express,
+14:u06:Installing,
+14:u08:Protection,
+10:u10:3.3.1.,
+8:u12:3.4.,
+8:u14:3.5.,
+7:u22:3.4,
+8:u23:3.4.,
+10:u01:3.3.1.,
+8:u03:3.4.,
+8:u05:3.5.,
+8:u07:3.6.,
+8:u08:3.7.,
+11:u01:Express,
+14:u05:Installing,
+14:u07:Protection,
+8:u11:3.4.,
+8:u13:3.5.,
+10:u00:3.3.1.,
+8:u02:3.4.,
+8:u04:3.5.,
+8:u06:3.6.,
+11:u00:Express,
+14:u04:Installing,
+14:u06:Protection,
+8:u10:3.4.,
+8:u12:3.5.,
+8:u14:3.6.,
+7:u22:3.5,
+8:u23:3.5.,
+8:u01:3.4.,
+8:u03:3.5.,
+8:u05:3.6.,
+8:u07:3.7.,
+14:u03:Installing,
+14:u05:Protection,
+8:u11:3.5.,
+8:u13:3.6.,
+8:u00:3.4.,
+8:u02:3.5.,
+8:u04:3.6.,
+8:u06:3.7.,
+14:u02:Installing,
+14:u04:Protection,
+17:u08:Autodiscovery,
+8:u10:3.5.,
+8:u12:3.6.,
+8:u14:3.7.,
+7:u22:3.6,
+8:u23:3.6.,
+8:u01:3.5.,
+8:u03:3.6.,
+8:u05:3.7.,
+14:u01:Installing,
+14:u03:Protection,
+17:u07:Autodiscovery,
+8:u11:3.6.,
+8:u13:3.7.,
+8:u00:3.5.,
+8:u02:3.6.,
+8:u04:3.7.,
+14:u00:Installing,
+14:u02:Protection,
+17:u06:Autodiscovery,
+8:u10:3.6.,
+8:u12:3.7.,
+7:u22:3.7,
+8:u23:3.7.,
+8:u01:3.6.,
+8:u03:3.7.,
+14:u01:Protection,
+17:u05:Autodiscovery,
+8:u11:3.7.,
+8:u00:3.6.,
+8:u02:3.7.,
+14:u00:Protection,
+17:u04:Autodiscovery,
+8:u10:3.7.,
+8:u01:3.7.,
+8:u08:4.4.,
+17:u03:Autodiscovery,
+14:u08:Mastership,
+8:u00:3.7.,
+8:u08:4.5.,
+17:u02:Autodiscovery,
+14:u07:Mastership,
+8:u07:4.4.,
+17:u01:Autodiscovery,
+14:u06:Mastership,
+8:u06:4.4.,
+8:u07:4.5.,
+17:u00:Autodiscovery,
+14:u05:Mastership,
+8:u14:4.4.,
+8:u05:4.4.,
+8:u06:4.5.,
+8:u08:6.1.,
+14:u04:Mastership,
+12:u08:Advanced,
+8:u13:4.4.,
+8:u14:4.5.,
+8:u04:4.4.,
+8:u05:4.5.,
+8:u08:6.2.,
+14:u03:Mastership,
+12:u07:Advanced,
+14:u08:Half-rings,
+8:u12:4.4.,
+8:u13:4.5.,
+7:u22:4.4,
+8:u23:4.4.,
+8:u03:4.4.,
+8:u04:4.5.,
+8:u07:6.1.,
+14:u02:Mastership,
+12:u06:Advanced,
+14:u07:Half-rings,
+7:u08:Hub,
+8:u11:4.4.,
+8:u12:4.5.,
+7:u22:4.5,
+8:u23:4.5.,
+8:u02:4.4.,
+8:u03:4.5.,
+8:u06:6.1.,
+8:u07:6.2.,
+14:u01:Mastership,
+12:u05:Advanced,
+14:u06:Half-rings,
+7:u07:Hub,
+8:u10:4.4.,
+8:u11:4.5.,
+8:u14:6.1.,
+8:u01:4.4.,
+8:u02:4.5.,
+8:u05:6.1.,
+8:u06:6.2.,
+14:u00:Mastership,
+12:u04:Advanced,
+14:u05:Half-rings,
+7:u06:Hub,
+19:u08:Acknowledgments,
+8:u10:4.5.,
+8:u13:6.1.,
+8:u14:6.2.,
+30:uI2:..-.......................,
+8:u00:4.4.,
+8:u01:4.5.,
+8:u04:6.1.,
+8:u05:6.2.,
+12:u03:Advanced,
+14:u04:Half-rings,
+7:u05:Hub,
+19:u07:Acknowledgments,
+8:u12:6.1.,
+8:u13:6.2.,
+7:u22:6.1,
+8:u23:6.1.,
+30:uI1:..-.......................,
+8:u00:4.5.,
+8:u03:6.1.,
+8:u04:6.2.,
+12:u02:Advanced,
+14:u03:Half-rings,
+7:u04:Hub,
+19:u06:Acknowledgments,
+8:u11:6.1.,
+8:u12:6.2.,
+7:u22:6.2,
+8:u23:6.2.,
+30:uI0:..-.......................,
+8:u02:6.1.,
+8:u03:6.2.,
+12:u01:Advanced,
+14:u02:Half-rings,
+7:u03:Hub,
+19:u05:Acknowledgments,
+8:u10:6.1.,
+8:u11:6.2.,
+8:u01:6.1.,
+8:u02:6.2.,
+12:u00:Advanced,
+14:u01:Half-rings,
+7:u02:Hub,
+19:u04:Acknowledgments,
+8:u10:6.2.,
+8:u00:6.1.,
+8:u01:6.2.,
+14:u00:Half-rings,
+7:u01:Hub,
+19:u03:Acknowledgments,
+8:u00:6.2.,
+9:u08:Rings,
+7:u00:Hub,
+19:u02:Acknowledgments,
+19:u01:Acknowledgments,
+9:u07:Rings,
+10:u08:nearly,
+19:u00:Acknowledgments,
+12:u08:simplest,
+9:u06:Rings,
+13:u08:increases,
+12:u07:simplest,
+14:u08:ubiquitous,
+9:u14:rings,
+9:u05:Rings,
+10:u07:nearly,
+12:u06:simplest,
+14:u07:ubiquitous,
+7:u08:its,
+9:u13:rings,
+9:u04:Rings,
+10:u06:nearly,
+13:u07:increases,
+12:u05:simplest,
+14:u06:ubiquitous,
+7:u07:its,
+9:u12:rings,
+10:u14:nearly,
+6:u21:Ri,
+7:u22:Rin,
+8:u23:Ring,
+9:u03:Rings,
+10:u05:nearly,
+13:u06:increases,
+12:u04:simplest,
+14:u05:ubiquitous,
+7:u06:its,
+9:u11:rings,
+10:u13:nearly,
+13:u14:increases,
+9:u02:Rings,
+10:u04:nearly,
+13:u05:increases,
+12:u03:simplest,
+14:u04:ubiquitous,
+7:u05:its,
+9:u10:rings,
+10:u12:nearly,
+13:u13:increases,
+7:u22:nea,
+8:u23:near,
+9:u01:Rings,
+10:u03:nearly,
+13:u04:increases,
+12:u02:simplest,
+14:u03:ubiquitous,
+7:u04:its,
+10:u11:nearly,
+13:u12:increases,
+8:u23:incr,
+9:u00:Rings,
+10:u02:nearly,
+13:u03:increases,
+12:u01:simplest,
+14:u02:ubiquitous,
+7:u03:its,
+10:u10:nearly,
+13:u11:increases,
+10:u01:nearly,
+13:u02:increases,
+12:u00:simplest,
+14:u01:ubiquitous,
+7:u02:its,
+13:u10:increases,
+10:u00:nearly,
+13:u01:increases,
+14:u00:ubiquitous,
+7:u01:its,
+13:u00:increases,
+7:u00:its,
+11:u08:several,
+6:uI2:,;,
+9:u08:IS-IS,
+9:u08:ways,,
+6:uI1:,;,
+11:u07:several,
+7:u08:RMR,
+9:u07:ways,,
+14:u08:[RFC5305],,
+6:uI0:,;,
+11:u06:several,
+9:u07:IS-IS,
+9:u06:ways,,
+14:u07:[RFC5305],,
+8:u08:LSPs,
+11:u14:several,
+11:u05:several,
+9:u06:IS-IS,
+7:u07:RMR,
+9:u05:ways,,
+14:u06:[RFC5305],,
+8:u07:LSPs,
+11:u13:several,
+9:u14:is-is,
+11:u04:several,
+9:u05:IS-IS,
+7:u06:RMR,
+15:u08:naturally".,
+9:u04:ways,,
+14:u05:[RFC5305],,
+8:u06:LSPs,
+10:u08:intent,
+11:u12:several,
+9:u13:is-is,
+7:u14:rmr,
+7:u22:sev,
+8:u23:seve,
+17:uI2:-[],[],-[][].,
+11:u03:several,
+9:u04:IS-IS,
+7:u05:RMR,
+9:u03:ways,,
+14:u04:[RFC5305],,
+8:u05:LSPs,
+10:u07:intent,
+8:u08:Many,
+11:u11:several,
+9:u12:is-is,
+7:u13:rmr,
+7:u22:IS-,
+8:u23:IS-I,
+17:uI1:-[],[],-[][].,
+7:uI2:[];,
+11:u02:several,
+9:u03:IS-IS,
+7:u04:RMR,
+15:u07:naturally".,
+15:u08:topologies,,
+9:u02:ways,,
+14:u03:[RFC5305],,
+8:u04:LSPs,
+10:u06:intent,
+8:u07:Many,
+9:u08:start,
+11:u10:several,
+9:u11:is-is,
+7:u12:rmr,
+6:u21:RM,
+7:u22:RMR,
+7:u23:RMR,
+17:uI0:-[],[],-[][].,
+7:uI1:[];,
+11:u01:several,
+9:u02:IS-IS,
+7:u03:RMR,
+15:u06:naturally".,
+10:u08:adding,
+9:u01:ways,,
+14:u02:[RFC5305],,
+8:u03:LSPs,
+10:u05:intent,
+8:u06:Many,
+9:u07:start,
+9:u10:is-is,
+7:u11:rmr,
+15:u14:naturally".,
+7:uI0:[];,
+11:u00:several,
+9:u01:IS-IS,
+7:u02:RMR,
+15:u05:naturally".,
+15:u07:topologies,,
+9:u08:(with,
+9:u00:ways,,
+14:u01:[RFC5305],,
+8:u02:LSPs,
+10:u04:intent,
+8:u05:Many,
+9:u06:start,
+13:u08:"express",
+7:u10:rmr,
+15:u13:naturally".,
+9:u14:their,
+6:uI2:".,
+9:u00:IS-IS,
+7:u01:RMR,
+15:u04:naturally".,
+15:u06:topologies,,
+10:u07:adding,
+14:u00:[RFC5305],,
+8:u01:LSPs,
+10:u03:intent,
+8:u04:Many,
+9:u05:start,
+13:u07:"express",
+15:u12:naturally".,
+9:u13:their,
+15:u14:topologies,,
+6:u21:na,
+7:u22:nat,
+8:u23:natu,
+6:uI1:".,
+7:u00:RMR,
+15:u03:naturally".,
+15:u05:topologies,,
+10:u06:adding,
+9:u07:(with,
+15:u08:protection.,
+8:u00:LSPs,
+10:u02:intent,
+8:u03:Many,
+9:u04:start,
+13:u06:"express",
+15:u11:naturally".,
+9:u12:their,
+15:u13:topologies,,
+10:u14:adding,
+8:u23:thei,
+6:uI0:".,
+7:uI2:,,,,
+15:u02:naturally".,
+15:u04:topologies,,
+10:u05:adding,
+9:u06:(with,
+10:u01:intent,
+8:u02:Many,
+9:u03:start,
+13:u05:"express",
+15:u10:naturally".,
+9:u11:their,
+15:u12:topologies,,
+10:u13:adding,
+9:u14:(with,
+7:u22:top,
+8:u23:topo,
+7:uI1:,,,,
+15:u01:naturally".,
+15:u03:topologies,,
+10:u04:adding,
+9:u05:(with,
+15:u07:protection.,
+10:u00:intent,
+8:u01:Many,
+9:u02:start,
+13:u04:"express",
+9:u10:their,
+15:u11:topologies,,
+10:u12:adding,
+9:u13:(with,
+8:u23:addi,
+7:uI0:,,,,
+15:u00:naturally".,
+15:u02:topologies,,
+10:u03:adding,
+9:u04:(with,
+15:u06:protection.,
+10:u08:nodes),
+8:u00:Many,
+9:u01:start,
+13:u03:"express",
+14:u08:(directed),
+15:u10:topologies,,
+10:u11:adding,
+9:u12:(with,
+15:u14:protection.,
+7:u22:(wi,
+8:u23:(wit,
+15:u01:topologies,,
+10:u02:adding,
+9:u03:(with,
+15:u05:protection.,
+9:u00:start,
+13:u02:"express",
+14:u07:(directed),
+5:u08:V,
+10:u10:adding,
+9:u11:(with,
+15:u13:protection.,
+15:u00:topologies,,
+10:u01:adding,
+9:u02:(with,
+15:u04:protection.,
+10:u07:nodes),
+13:u01:"express",
+14:u06:(directed),
+5:u07:V,
+9:u08:nodes,
+9:u10:(with,
+15:u12:protection.,
+10:u00:adding,
+9:u01:(with,
+15:u03:protection.,
+10:u06:nodes),
+13:u00:"express",
+14:u05:(directed),
+5:u06:V,
+9:u07:nodes,
+8:u08:node,
+15:u11:protection.,
+10:u14:nodes),
+10:uI2:()(,)(,
+9:u00:(with,
+15:u02:protection.,
+10:u05:nodes),
+9:u08:{R_i,,
+14:u04:(directed),
+5:u05:V,
+9:u06:nodes,
+8:u07:node,
+15:u10:protection.,
+10:u13:nodes),
+10:uI1:()(,)(,
+8:uI2:)().,
+15:u01:protection.,
+10:u04:nodes),
+9:u08:R_i),,
+14:u03:(directed),
+5:u04:V,
+9:u05:nodes,
+8:u06:node,
+10:u12:nodes),
+9:u14:terms,
+10:uI0:()(,)(,
+8:uI1:)().,
+11:uI2:(,),.(,,
+15:u00:protection.,
+10:u03:nodes),
+9:u07:{R_i,,
+14:u02:(directed),
+5:u03:V,
+9:u04:nodes,
+8:u05:node,
+10:u11:nodes),
+9:u13:terms,
+8:uI0:)().,
+11:uI1:(,),.(,,
+6:uI2:.),
+10:u02:nodes),
+9:u06:{R_i,,
+9:u07:R_i),,
+15:u08:"clockwise",
+14:u01:(directed),
+5:u02:V,
+9:u03:nodes,
+8:u04:node,
+8:u08:done,
+10:u10:nodes),
+9:u12:terms,
+9:u14:{r_i,,
+6:u21:te,
+7:u22:ter,
+8:u23:term,
+11:uI0:(,),.(,,
+6:uI1:.),
+10:u01:nodes),
+9:u05:{R_i,,
+9:u06:R_i),,
+14:u00:(directed),
+5:u01:V,
+9:u02:nodes,
+8:u03:node,
+8:u07:done,
+8:u08:(CW),
+9:u11:terms,
+9:u13:{r_i,,
+9:u14:r_i),,
+6:uI0:.),
+11:uI2:,.(,)(,,
+10:u00:nodes),
+9:u04:{R_i,,
+9:u05:R_i),,
+15:u07:"clockwise",
+12:u08:distinct,
+5:u00:V,
+9:u01:nodes,
+8:u02:node,
+8:u06:done,
+8:u07:(CW),
+9:u10:terms,
+9:u12:{r_i,,
+9:u13:r_i),,
+5:u20:{,
+6:u21:{R,
+7:u22:{R_,
+8:u23:{R_i,
+11:uI1:,.(,)(,,
+8:uI2:),-(,
+9:u03:{R_i,,
+9:u04:R_i),,
+15:u06:"clockwise",
+6:u08:R0,
+9:u00:nodes,
+8:u01:node,
+8:u05:done,
+8:u06:(CW),
+9:u11:{r_i,,
+9:u12:r_i),,
+15:u14:"clockwise",
+6:u21:R_,
+7:u22:R_i,
+8:u23:R_i),
+11:uI0:,.(,)(,,
+8:uI1:),-(,
+9:u02:{R_i,,
+9:u03:R_i),,
+15:u05:"clockwise",
+12:u07:distinct,
+8:u00:node,
+8:u04:done,
+8:u05:(CW),
+9:u10:{r_i,,
+9:u11:r_i),,
+15:u13:"clockwise",
+8:uI0:),-(,
+13:uI2:""()""().,
+9:u01:{R_i,,
+9:u02:R_i),,
+15:u04:"clockwise",
+12:u06:distinct,
+6:u07:R0,
+8:u03:done,
+8:u04:(CW),
+9:u10:r_i),,
+15:u12:"clockwise",
+12:u14:distinct,
+7:u22:"cl,
+8:u23:"clo,
+13:uI1:""()""().,
+9:u00:{R_i,,
+9:u01:R_i),,
+15:u03:"clockwise",
+12:u05:distinct,
+6:u06:R0,
+6:u08:R7,
+8:u02:done,
+8:u03:(CW),
+15:u11:"clockwise",
+12:u13:distinct,
+6:u14:r0,
+13:uI0:""()""().,
+9:u00:R_i),,
+15:u02:"clockwise",
+12:u04:distinct,
+6:u05:R0,
+6:u08:R2,
+8:u01:done,
+8:u02:(CW),
+15:u10:"clockwise",
+12:u12:distinct,
+6:u13:r0,
+6:u21:di,
+7:u22:dis,
+8:u23:dist,
+15:u01:"clockwise",
+12:u03:distinct,
+6:u04:R0,
+6:u07:R7,
+9:u08:Anti-,
+8:u00:done,
+8:u01:(CW),
+12:u11:distinct,
+6:u12:r0,
+6:u21:R0,
+6:u22:R0,
+6:u23:R0,
+15:u00:"clockwise",
+12:u02:distinct,
+6:u03:R0,
+6:u06:R7,
+6:u07:R2,
+8:u00:(CW),
+12:u10:distinct,
+6:u11:r0,
+6:u14:r7,
+12:u01:distinct,
+6:u02:R0,
+6:u05:R7,
+6:u06:R2,
+9:u07:Anti-,
+6:u10:r0,
+6:u13:r7,
+6:u14:r2,
+12:u00:distinct,
+6:u01:R0,
+6:u04:R7,
+6:u05:R2,
+9:u06:Anti-,
+6:u12:r7,
+6:u13:r2,
+9:u14:anti-,
+6:u21:R7,
+6:u22:R7,
+6:u23:R7,
+6:u00:R0,
+6:u03:R7,
+6:u04:R2,
+9:u05:Anti-,
+13:u08:Clockwise,
+6:u11:r7,
+6:u12:r2,
+9:u13:anti-,
+6:u21:R2,
+6:u22:R2,
+6:u23:R2,
+6:u02:R7,
+6:u03:R2,
+9:u04:Anti-,
+6:u10:r7,
+6:u11:r2,
+9:u12:anti-,
+8:u14:ring,
+7:u22:Ant,
+8:u23:Anti,
+6:u01:R7,
+6:u02:R2,
+9:u03:Anti-,
+13:u07:Clockwise,
+6:u10:r2,
+9:u11:anti-,
+8:u13:ring,
+6:u00:R7,
+6:u01:R2,
+9:u02:Anti-,
+13:u06:Clockwise,
+7:u08:RID,
+9:u10:anti-,
+8:u12:ring,
+13:u14:clockwise,
+6:u00:R2,
+9:u01:Anti-,
+13:u05:Clockwise,
+8:u11:ring,
+13:u13:clockwise,
+9:u00:Anti-,
+13:u04:Clockwise,
+7:u07:RID,
+6:u08:R6,
+8:u10:ring,
+13:u12:clockwise,
+7:u22:Clo,
+8:u23:Cloc,
+13:u03:Clockwise,
+7:u06:RID,
+6:u08:R3,
+13:u11:clockwise,
+7:u14:rid,
+13:u02:Clockwise,
+7:u05:RID,
+6:u07:R6,
+13:u10:clockwise,
+7:u13:rid,
+13:u01:Clockwise,
+7:u04:RID,
+6:u06:R6,
+6:u07:R3,
+7:u12:rid,
+6:u14:r6,
+6:u21:RI,
+7:u22:RID,
+7:u23:RID,
+13:u00:Clockwise,
+7:u03:RID,
+6:u05:R6,
+6:u06:R3,
+6:u08:R5,
+7:u11:rid,
+6:u13:r6,
+6:u14:r3,
+7:u02:RID,
+6:u04:R6,
+6:u05:R3,
+10:u08:Figure,
+7:u10:rid,
+6:u12:r6,
+6:u13:r3,
+6:u21:R6,
+6:u22:R6,
+6:u23:R6,
+7:u01:RID,
+6:u03:R6,
+6:u04:R3,
+6:u07:R5,
+6:u11:r6,
+6:u12:r3,
+6:u21:R3,
+6:u22:R3,
+6:u23:R3,
+7:u00:RID,
+6:u02:R6,
+6:u03:R3,
+6:u06:R5,
+10:u07:Figure,
+6:u10:r6,
+6:u11:r3,
+6:u14:r5,
+6:u01:R6,
+6:u02:R3,
+6:u05:R5,
+10:u06:Figure,
+6:u10:r3,
+6:u13:r5,
+10:u14:figure,
+6:u00:R6,
+6:u01:R3,
+6:u04:R5,
+10:u05:Figure,
+6:u12:r5,
+10:u13:figure,
+6:u21:R5,
+6:u22:R5,
+6:u23:R5,
+6:u00:R3,
+6:u03:R5,
+10:u04:Figure,
+6:u11:r5,
+10:u12:figure,
+7:u22:Fig,
+8:u23:Figu,
+6:u02:R5,
+10:u03:Figure,
+6:u10:r5,
+10:u11:figure,
+6:u01:R5,
+10:u02:Figure,
+10:u10:figure,
+6:u00:R5,
+10:u01:Figure,
+10:u00:Figure,
+9:u08:ring,,
+14:u08:Provider's,
+9:u07:ring,,
+12:u08:network.,
+9:u06:ring,,
+14:u07:Provider's,
+12:u07:network.,
+9:u14:ring,,
+9:uI2:():-.,
+9:u05:ring,,
+14:u06:Provider's,
+12:u06:network.,
+9:u08:3.2).,
+9:u13:ring,,
+14:u14:provider's,
+9:uI1:():-.,
+9:u04:ring,,
+14:u05:Provider's,
+12:u05:network.,
+9:u07:3.2).,
+9:u08:node:,
+9:u12:ring,,
+14:u13:provider's,
+6:u21:ri,
+7:u22:rin,
+8:u23:ring,
+9:uI0:():-.,
+8:uI2:'.,,,
+9:u03:ring,,
+14:u04:Provider's,
+8:u08:Node,
+12:u04:network.,
+9:u06:3.2).,
+9:u07:node:,
+10:u08:rings.,
+9:u11:ring,,
+14:u12:provider's,
+8:uI1:'.,,,
+7:uI2:""(,
+9:u02:ring,,
+14:u03:Provider's,
+12:u03:network.,
+9:u05:3.2).,
+9:u06:node:,
+10:u07:rings.,
+10:u08:index:,
+9:u10:ring,,
+14:u11:provider's,
+8:uI0:'.,,,
+7:uI1:""(,
+8:uI2:.)..,
+9:u01:ring,,
+14:u02:Provider's,
+8:u07:Node,
+12:u02:network.,
+9:u04:3.2).,
+9:u05:node:,
+10:u06:rings.,
+10:u07:index:,
+8:u08:less,
+14:u10:provider's,
+7:uI0:""(,
+8:uI1:.)..,
+9:u00:ring,,
+14:u01:Provider's,
+8:u06:Node,
+12:u01:network.,
+9:u03:3.2).,
+9:u04:node:,
+10:u05:rings.,
+10:u06:index:,
+8:u07:less,
+8:u14:node,
+8:uI0:.)..,
+14:u00:Provider's,
+8:u05:Node,
+12:u08:process.,
+12:u00:network.,
+9:u02:3.2).,
+9:u03:node:,
+10:u04:rings.,
+10:u05:index:,
+8:u06:less,
+11:u08:master:,
+8:u13:node,
+8:u04:Node,
+9:u01:3.2).,
+9:u02:node:,
+10:u03:rings.,
+10:u04:index:,
+8:u05:less,
+11:u07:master:,
+8:u12:node,
+13:u14:document.,
+7:u22:Nod,
+8:u23:Node,
+8:u03:Node,
+12:u07:process.,
+10:u08:size).,
+9:u00:3.2).,
+9:u01:node:,
+10:u02:rings.,
+10:u03:index:,
+8:u04:less,
+11:u06:master:,
+14:u08:neighbors:,
+8:u11:node,
+13:u13:document.,
+8:u02:Node,
+12:u06:process.,
+9:u00:node:,
+10:u01:rings.,
+10:u02:index:,
+8:u03:less,
+11:u05:master:,
+14:u07:neighbors:,
+8:u10:node,
+13:u12:document.,
+12:u14:process.,
+8:u01:Node,
+12:u05:process.,
+10:u07:size).,
+10:u00:rings.,
+10:u01:index:,
+8:u02:less,
+11:u04:master:,
+14:u06:neighbors:,
+10:u08:links:,
+13:u11:document.,
+12:u13:process.,
+7:uI2:.-.,
+8:u00:Node,
+12:u04:process.,
+10:u06:size).,
+10:u00:index:,
+8:u01:less,
+11:u03:master:,
+14:u05:neighbors:,
+10:u07:links:,
+13:u10:document.,
+12:u12:process.,
+10:u14:size).,
+7:uI1:.-.,
+6:uI2::(,
+12:u03:process.,
+10:u05:size).,
+8:u00:less,
+11:u02:master:,
+14:u04:neighbors:,
+10:u06:links:,
+14:u08:direction:,
+12:u11:process.,
+10:u13:size).,
+7:uI0:.-.,
+6:uI1::(,
+12:u02:process.,
+10:u04:size).,
+7:u08:UN:,
+11:u01:master:,
+14:u03:neighbors:,
+10:u05:links:,
+14:u07:direction:,
+12:u10:process.,
+10:u12:size).,
+11:u14:express,
+7:u22:siz,
+8:u23:size,
+6:uI0::(,
+12:u01:process.,
+10:u03:size).,
+7:u08:CW:,
+11:u00:master:,
+14:u02:neighbors:,
+10:u04:links:,
+14:u06:direction:,
+6:u08:00,
+10:u11:size).,
+11:u13:express,
+7:uI2::-.,
+12:u00:process.,
+10:u02:size).,
+7:u07:UN:,
+7:u08:AC:,
+14:u01:neighbors:,
+10:u03:links:,
+14:u05:direction:,
+6:u07:00,
+6:u08:01,
+10:u10:size).,
+11:u12:express,
+8:u23:Expr,
+7:uI1::-.,
+10:u01:size).,
+7:u06:UN:,
+7:u07:CW:,
+7:u08:EX:,
+14:u00:neighbors:,
+10:u02:links:,
+14:u04:direction:,
+6:u06:00,
+6:u07:01,
+11:u11:express,
+7:u14:un:,
+7:uI0::-.,
+10:u00:size).,
+7:u05:UN:,
+7:u06:CW:,
+7:u07:AC:,
+10:u01:links:,
+14:u03:direction:,
+6:u05:00,
+6:u06:01,
+11:u10:express,
+7:u13:un:,
+7:u14:cw:,
+7:u04:UN:,
+7:u05:CW:,
+7:u06:AC:,
+7:u07:EX:,
+10:u08:links,,
+10:u00:links:,
+14:u02:direction:,
+6:u04:00,
+6:u05:01,
+19:u08:Identification:,
+7:u12:un:,
+7:u13:cw:,
+7:u14:ac:,
+6:u21:UN,
+7:u22:UN:,
+7:u23:UN:,
+7:u03:UN:,
+7:u04:CW:,
+7:u05:AC:,
+7:u06:EX:,
+14:u01:direction:,
+6:u03:00,
+6:u04:01,
+19:u07:Identification:,
+7:u11:un:,
+7:u12:cw:,
+7:u13:ac:,
+7:u14:ex:,
+6:u21:CW,
+7:u22:CW:,
+7:u23:CW:,
+7:u02:UN:,
+7:u03:CW:,
+7:u04:AC:,
+7:u05:EX:,
+10:u07:links,,
+8:u08:R_k:,
+14:u00:direction:,
+6:u02:00,
+6:u03:01,
+19:u06:Identification:,
+7:u10:un:,
+7:u11:cw:,
+7:u12:ac:,
+7:u13:ex:,
+6:u21:AC,
+7:u22:AC:,
+7:u23:AC:,
+7:u01:UN:,
+7:u02:CW:,
+7:u03:AC:,
+7:u04:EX:,
+10:u06:links,,
+12:u08:neighbor,
+6:u01:00,
+6:u02:01,
+19:u05:Identification:,
+7:u10:cw:,
+7:u11:ac:,
+7:u12:ex:,
+10:u14:links,,
+6:u21:EX,
+7:u22:EX:,
+7:u23:EX:,
+7:u00:UN:,
+7:u01:CW:,
+7:u02:AC:,
+7:u03:EX:,
+10:u05:links,,
+8:u07:R_k:,
+9:u08:RL_k:,
+6:u00:00,
+6:u01:01,
+19:u04:Identification:,
+12:u08:R_(k+1).,
+7:u10:ac:,
+7:u11:ex:,
+10:u13:links,,
+7:u00:CW:,
+7:u01:AC:,
+7:u02:EX:,
+10:u04:links,,
+8:u06:R_k:,
+12:u07:neighbor,
+10:u08:CL_jk:,
+6:u00:01,
+19:u03:Identification:,
+12:u07:R_(k+1).,
+7:u10:ex:,
+10:u12:links,,
+8:u14:r_k:,
+7:u00:AC:,
+7:u01:EX:,
+10:u03:links,,
+8:u05:R_k:,
+12:u06:neighbor,
+9:u07:RL_k:,
+10:u08:AL_jk:,
+19:u02:Identification:,
+12:u06:R_(k+1).,
+10:u11:links,,
+8:u13:r_k:,
+12:u14:neighbor,
+9:uI2::.(-),
+7:u00:EX:,
+10:u02:links,,
+8:u04:R_k:,
+12:u05:neighbor,
+9:u06:RL_k:,
+10:u07:CL_jk:,
+19:u01:Identification:,
+12:u05:R_(k+1).,
+10:u10:links,,
+8:u12:r_k:,
+12:u13:neighbor,
+9:u14:rl_k:,
+7:u22:R_k,
+8:u23:R_k:,
+9:uI1::.(-),
+10:u01:links,,
+8:u03:R_k:,
+12:u04:neighbor,
+9:u05:RL_k:,
+10:u06:CL_jk:,
+10:u07:AL_jk:,
+19:u00:Identification:,
+12:u04:R_(k+1).,
+8:u11:r_k:,
+12:u12:neighbor,
+9:u13:rl_k:,
+10:u14:cl_jk:,
+7:u22:nei,
+8:u23:neig,
+9:uI0::.(-),
+8:uI2::().,
+10:u00:links,,
+8:u02:R_k:,
+12:u03:neighbor,
+9:u04:RL_k:,
+10:u05:CL_jk:,
+10:u06:AL_jk:,
+12:u03:R_(k+1).,
+8:u10:r_k:,
+12:u11:neighbor,
+9:u12:rl_k:,
+10:u13:cl_jk:,
+10:u14:al_jk:,
+6:u21:RL,
+7:u22:RL_,
+8:u23:RL_k,
+8:uI1::().,
+8:u01:R_k:,
+12:u02:neighbor,
+9:u03:RL_k:,
+10:u04:CL_jk:,
+10:u05:AL_jk:,
+12:u02:R_(k+1).,
+12:u10:neighbor,
+9:u11:rl_k:,
+10:u12:cl_jk:,
+10:u13:al_jk:,
+6:u21:CL,
+7:u22:CL_,
+8:u23:CL_j,
+8:uI0::().,
+8:u00:R_k:,
+12:u01:neighbor,
+9:u02:RL_k:,
+10:u03:CL_jk:,
+10:u04:AL_jk:,
+12:u01:R_(k+1).,
+9:u10:rl_k:,
+10:u11:cl_jk:,
+10:u12:al_jk:,
+6:u21:AL,
+7:u22:AL_,
+8:u23:AL_j,
+12:u00:neighbor,
+9:u01:RL_k:,
+10:u02:CL_jk:,
+10:u03:AL_jk:,
+12:u00:R_(k+1).,
+10:u10:cl_jk:,
+10:u11:al_jk:,
+9:u00:RL_k:,
+10:u01:CL_jk:,
+10:u02:AL_jk:,
+10:u10:al_jk:,
+10:u00:CL_jk:,
+10:u01:AL_jk:,
+10:u00:AL_jk:,
+11:u08:perhaps,
+14:u08:mechanisms,
+11:u07:perhaps,
+11:u06:perhaps,
+14:u07:mechanisms,
+11:u14:perhaps,
+11:u05:perhaps,
+14:u06:mechanisms,
+10:u08:simple,
+11:u13:perhaps,
+14:u14:mechanisms,
+11:u04:perhaps,
+14:u05:mechanisms,
+10:u07:simple,
+8:u08:very,
+11:u12:perhaps,
+14:u13:mechanisms,
+8:u23:perh,
+11:u03:perhaps,
+14:u04:mechanisms,
+14:u08:MPLS-based,
+10:u06:simple,
+8:u07:very,
+9:u08:goals,
+11:u11:perhaps,
+14:u12:mechanisms,
+11:u02:perhaps,
+14:u03:mechanisms,
+15:u08:reminiscent,
+10:u05:simple,
+8:u06:very,
+9:u07:goals,
+14:u08:resilience,
+11:u10:perhaps,
+14:u11:mechanisms,
+11:u01:perhaps,
+14:u02:mechanisms,
+14:u07:MPLS-based,
+12:u08:bring-up,
+10:u04:simple,
+8:u05:very,
+9:u06:goals,
+14:u07:resilience,
+14:u10:mechanisms,
+11:u00:perhaps,
+14:u01:mechanisms,
+14:u06:MPLS-based,
+15:u07:reminiscent,
+9:u08:These,
+10:u03:simple,
+8:u04:very,
+9:u05:goals,
+14:u06:resilience,
+14:u14:mpls-based,
+14:u00:mechanisms,
+14:u05:MPLS-based,
+15:u06:reminiscent,
+12:u07:bring-up,
+13:u08:signaling,
+10:u02:simple,
+8:u03:very,
+9:u04:goals,
+14:u05:resilience,
+14:u13:mpls-based,
+15:u14:reminiscent,
+14:u04:MPLS-based,
+15:u05:reminiscent,
+12:u06:bring-up,
+9:u07:These,
+10:u01:simple,
+8:u02:very,
+9:u03:goals,
+14:u04:resilience,
+14:u08:protocols,,
+14:u12:mpls-based,
+15:u13:reminiscent,
+12:u14:bring-up,
+14:u03:MPLS-based,
+15:u04:reminiscent,
+12:u05:bring-up,
+9:u06:These,
+13:u07:signaling,
+7:u08:Say,
+10:u00:simple,
+8:u01:very,
+9:u02:goals,
+14:u03:resilience,
+14:u07:protocols,,
+14:u11:mpls-based,
+15:u12:reminiscent,
+12:u13:bring-up,
+9:u14:these,
+7:u22:rem,
+8:u23:remi,
+8:uI2:-,-.,
+14:u02:MPLS-based,
+15:u03:reminiscent,
+12:u04:bring-up,
+9:u05:These,
+13:u06:signaling,
+8:u00:very,
+9:u01:goals,
+14:u02:resilience,
+14:u06:protocols,,
+14:u10:mpls-based,
+15:u11:reminiscent,
+12:u12:bring-up,
+9:u13:these,
+13:u14:signaling,
+6:u21:br,
+7:u22:bri,
+8:u23:brin,
+8:uI1:-,-.,
+14:u01:MPLS-based,
+15:u02:reminiscent,
+12:u03:bring-up,
+9:u04:These,
+13:u05:signaling,
+7:u07:Say,
+9:u00:goals,
+14:u01:resilience,
+14:u05:protocols,,
+8:u08:more,
+15:u10:reminiscent,
+12:u11:bring-up,
+9:u12:these,
+13:u13:signaling,
+8:u23:Thes,
+8:uI0:-,-.,
+14:u00:MPLS-based,
+15:u01:reminiscent,
+12:u02:bring-up,
+9:u03:These,
+13:u04:signaling,
+7:u06:Say,
+14:u00:resilience,
+14:u04:protocols,,
+8:u07:more,
+12:u10:bring-up,
+9:u11:these,
+13:u12:signaling,
+7:u14:say,
+15:u00:reminiscent,
+12:u01:bring-up,
+9:u02:These,
+13:u03:signaling,
+7:u05:Say,
+9:u08:knows,
+14:u03:protocols,,
+8:u06:more,
+18:u08:"promiscuous".,
+9:u10:these,
+13:u11:signaling,
+7:u13:say,
+12:u00:bring-up,
+9:u01:These,
+13:u02:signaling,
+7:u04:Say,
+11:u08:express,
+14:u02:protocols,,
+8:u05:more,
+18:u07:"promiscuous".,
+13:u10:signaling,
+7:u12:say,
+9:u14:nodes,
+6:u21:Sa,
+7:u22:Say,
+7:u23:Say,
+9:u00:These,
+13:u01:signaling,
+7:u03:Say,
+9:u07:knows,
+14:u01:protocols,,
+8:u04:more,
+18:u06:"promiscuous".,
+9:u08:links,
+7:u11:say,
+9:u13:nodes,
+13:u00:signaling,
+7:u02:Say,
+9:u06:knows,
+11:u07:express,
+14:u00:protocols,,
+8:u03:more,
+18:u05:"promiscuous".,
+9:u07:links,
+7:u10:say,
+9:u12:nodes,
+9:u14:knows,
+8:uI2:""..,
+7:u01:Say,
+9:u05:knows,
+11:u06:express,
+12:u08:rotating,
+8:u02:more,
+18:u04:"promiscuous".,
+9:u06:links,
+9:u11:nodes,
+9:u13:knows,
+8:uI1:""..,
+7:u00:Say,
+9:u04:knows,
+11:u05:express,
+17:u08:"multipoint":,
+8:u01:more,
+18:u03:"promiscuous".,
+9:u05:links,
+11:u08:unicast,
+9:u10:nodes,
+9:u12:knows,
+5:u20:k,
+6:u21:kn,
+7:u22:kno,
+8:u23:know,
+8:uI0:""..,
+9:u03:knows,
+11:u04:express,
+12:u07:rotating,
+8:u00:more,
+18:u02:"promiscuous".,
+9:u04:links,
+11:u07:unicast,
+7:u08:any,
+9:u11:knows,
+8:u23:expr,
+9:u02:knows,
+11:u03:express,
+12:u06:rotating,
+17:u07:"multipoint":,
+14:u08:balanced).,
+18:u01:"promiscuous".,
+9:u03:links,
+11:u06:unicast,
+7:u07:any,
+9:u10:knows,
+12:u14:rotating,
+8:uI2:.,,-,
+9:u01:knows,
+11:u02:express,
+12:u05:rotating,
+17:u06:"multipoint":,
+10:u08:choice,
+18:u00:"promiscuous".,
+9:u02:links,
+11:u05:unicast,
+7:u06:any,
+8:u08:Both,
+12:u13:rotating,
+17:u14:"multipoint":,
+8:uI1:.,,-,
+9:u00:knows,
+11:u01:express,
+12:u04:rotating,
+17:u05:"multipoint":,
+14:u07:balanced).,
+9:u01:links,
+11:u04:unicast,
+7:u05:any,
+8:u07:Both,
+12:u12:rotating,
+17:u13:"multipoint":,
+7:u14:can,
+7:u22:rot,
+8:u23:rota,
+8:uI0:.,,-,
+8:uI2:"":;,
+11:u00:express,
+12:u03:rotating,
+17:u04:"multipoint":,
+14:u06:balanced).,
+10:u07:choice,
+9:u00:links,
+11:u03:unicast,
+7:u04:any,
+8:u06:Both,
+12:u11:rotating,
+17:u12:"multipoint":,
+7:u13:can,
+14:u14:balanced).,
+6:u21:"m,
+7:u22:"mu,
+8:u23:"mul,
+8:uI1:"":;,
+9:uI2:,(..,,
+12:u02:rotating,
+17:u03:"multipoint":,
+14:u05:balanced).,
+10:u06:choice,
+16:u08:connectivity,
+11:u02:unicast,
+7:u03:any,
+8:u05:Both,
+12:u10:rotating,
+17:u11:"multipoint":,
+7:u12:can,
+14:u13:balanced).,
+10:u14:choice,
+7:u23:can,
+8:uI0:"":;,
+9:uI1:,(..,,
+10:uI2:).-"";,
+12:u01:rotating,
+17:u02:"multipoint":,
+14:u04:balanced).,
+10:u05:choice,
+11:u01:unicast,
+7:u02:any,
+8:u04:Both,
+11:u08:between,
+17:u10:"multipoint":,
+7:u11:can,
+14:u12:balanced).,
+10:u13:choice,
+9:uI0:,(..,,
+10:uI1:).-"";,
+12:u00:rotating,
+17:u01:"multipoint":,
+14:u03:balanced).,
+10:u04:choice,
+16:u07:connectivity,
+9:u08:reach,
+11:u00:unicast,
+7:u01:any,
+8:u03:Both,
+11:u07:between,
+7:u10:can,
+14:u11:balanced).,
+10:u12:choice,
+7:u22:cho,
+8:u23:choi,
+10:uI0:).-"";,
+17:u00:"multipoint":,
+14:u02:balanced).,
+10:u03:choice,
+16:u06:connectivity,
+7:u00:any,
+8:u02:Both,
+11:u06:between,
+8:u08:R_i.,
+14:u10:balanced).,
+10:u11:choice,
+14:u01:balanced).,
+10:u02:choice,
+16:u05:connectivity,
+9:u07:reach,
+8:u01:Both,
+11:u05:between,
+8:u07:R_i.,
+10:u10:choice,
+13:u14:different,
+14:u00:balanced).,
+10:u01:choice,
+16:u04:connectivity,
+9:u06:reach,
+18:u08:configuration.,
+8:u00:Both,
+11:u04:between,
+8:u06:R_i.,
+8:u08:goal,
+13:u13:different,
+9:u14:reach,
+10:u00:choice,
+16:u03:connectivity,
+9:u05:reach,
+13:u08:discovery,
+11:u03:between,
+8:u05:R_i.,
+8:u07:goal,
+13:u12:different,
+9:u13:reach,
+7:u22:dif,
+8:u23:diff,
+16:u02:connectivity,
+9:u04:reach,
+18:u07:configuration.,
+11:u02:between,
+8:u04:R_i.,
+8:u06:goal,
+7:u08:via,
+13:u11:different,
+9:u12:reach,
+8:u23:reac,
+16:u01:connectivity,
+9:u03:reach,
+18:u06:configuration.,
+13:u07:discovery,
+11:u01:between,
+8:u03:R_i.,
+8:u05:goal,
+7:u07:via,
+13:u10:different,
+9:u11:reach,
+18:u14:configuration.,
+16:u00:connectivity,
+9:u02:reach,
+18:u05:configuration.,
+13:u06:discovery,
+9:u08:might,
+11:u00:between,
+8:u02:R_i.,
+8:u04:goal,
+7:u06:via,
+9:u10:reach,
+18:u13:configuration.,
+13:u14:discovery,
+9:u01:reach,
+18:u04:configuration.,
+13:u05:discovery,
+8:u01:R_i.,
+8:u03:goal,
+7:u05:via,
+18:u12:configuration.,
+13:u13:discovery,
+10:uI2:-().,-,
+9:u00:reach,
+18:u03:configuration.,
+13:u04:discovery,
+9:u07:might,
+8:u00:R_i.,
+8:u02:goal,
+7:u04:via,
+18:u11:configuration.,
+13:u12:discovery,
+8:u23:disc,
+10:uI1:-().,-,
+18:u02:configuration.,
+13:u03:discovery,
+9:u06:might,
+8:u01:goal,
+7:u03:via,
+18:u10:configuration.,
+13:u11:discovery,
+9:u14:might,
+10:uI0:-().,-,
+18:u01:configuration.,
+13:u02:discovery,
+9:u05:might,
+8:u00:goal,
+7:u02:via,
+13:u10:discovery,
+9:u13:might,
+18:u00:configuration.,
+13:u01:discovery,
+9:u04:might,
+7:u01:via,
+9:u12:might,
+6:u21:mi,
+7:u22:mig,
+8:u23:migh,
+13:u00:discovery,
+9:u03:might,
+7:u00:via,
+9:u11:might,
+9:u02:might,
+9:u10:might,
+9:u01:might,
+9:u00:might,
+8:u08:RID,,
+8:u07:RID,,
+10:u08:rings,,
+8:u14:mpls,
+8:u06:RID,,
+17:u08:"promiscuous",
+10:u07:rings,,
+12:u08:simplify,
+8:u13:mpls,
+8:u14:rid,,
+8:u05:RID,,
+11:u08:listens,
+10:u06:rings,,
+12:u07:simplify,
+8:u13:rid,,
+8:u04:RID,,
+17:u07:"promiscuous",
+10:u05:rings,,
+12:u06:simplify,
+8:u12:rid,,
+8:u23:RID,,
+8:u03:RID,,
+17:u06:"promiscuous",
+11:u07:listens,
+10:u04:rings,,
+12:u05:simplify,
+8:u11:rid,,
+17:u14:"promiscuous",
+8:u02:RID,,
+17:u05:"promiscuous",
+11:u06:listens,
+8:u08:mode,
+10:u03:rings,,
+12:u04:simplify,
+8:u10:rid,,
+17:u13:"promiscuous",
+11:u14:listens,
+6:u22:To,
+6:u23:To,
+8:u01:RID,,
+17:u04:"promiscuous",
+11:u05:listens,
+16:u08:provisioned;,
+10:u02:rings,,
+12:u03:simplify,
+9:u08:means,
+17:u12:"promiscuous",
+11:u13:listens,
+12:u14:non-zero,
+6:u21:"p,
+7:u22:"pr,
+8:u23:"pro,
+8:u00:RID,,
+17:u03:"promiscuous",
+11:u04:listens,
+8:u07:mode,
+10:u01:rings,,
+12:u02:simplify,
+9:u07:means,
+14:u08:everything,
+17:u11:"promiscuous",
+11:u12:listens,
+12:u13:non-zero,
+6:u14:by,
+17:u02:"promiscuous",
+11:u03:listens,
+8:u06:mode,
+16:u07:provisioned;,
+13:u08:protocols,
+10:u00:rings,,
+12:u01:simplify,
+9:u06:means,
+14:u07:everything,
+17:u10:"promiscuous",
+11:u11:listens,
+12:u12:non-zero,
+6:u13:by,
+8:u14:mode,
+7:u22:non,
+8:u23:non-,
+17:u01:"promiscuous",
+11:u02:listens,
+8:u05:mode,
+16:u06:provisioned;,
+12:u00:simplify,
+9:u05:means,
+14:u06:everything,
+11:u10:listens,
+12:u11:non-zero,
+6:u12:by,
+8:u13:mode,
+16:u14:provisioned;,
+6:u21:by,
+6:u22:by,
+6:u23:by,
+17:u00:"promiscuous",
+11:u01:listens,
+8:u04:mode,
+16:u05:provisioned;,
+13:u07:protocols,
+9:u04:means,
+14:u05:everything,
+12:u10:non-zero,
+6:u11:by,
+8:u12:mode,
+16:u13:provisioned;,
+7:u22:mod,
+8:u23:mode,
+7:uI2:;-.,
+11:u00:listens,
+8:u03:mode,
+16:u04:provisioned;,
+13:u06:protocols,
+9:u03:means,
+14:u04:everything,
+6:u10:by,
+8:u11:mode,
+16:u12:provisioned;,
+13:u14:protocols,
+7:uI1:;-.,
+8:u02:mode,
+16:u03:provisioned;,
+13:u05:protocols,
+18:u08:point-to-point,
+9:u02:means,
+14:u03:everything,
+8:u10:mode,
+16:u11:provisioned;,
+13:u13:protocols,
+8:u14:each,
+7:uI0:;-.,
+9:uI2:./-.,,
+8:u01:mode,
+16:u02:provisioned;,
+13:u04:protocols,
+18:u08:"auto-bundled",
+9:u01:means,
+14:u02:everything,
+9:u08:(from,
+16:u10:provisioned;,
+13:u12:protocols,
+8:u13:each,
+9:uI1:./-.,,
+8:u00:mode,
+16:u01:provisioned;,
+13:u03:protocols,
+18:u07:point-to-point,
+13:u08:neighbors,
+9:u00:means,
+14:u01:everything,
+9:u07:(from,
+13:u11:protocols,
+8:u12:each,
+6:u21:ea,
+7:u22:eac,
+8:u23:each,
+9:uI0:./-.,,
+16:u00:provisioned;,
+13:u02:protocols,
+18:u06:point-to-point,
+18:u07:"auto-bundled",
+12:u08:explicit,
+14:u00:everything,
+9:u06:(from,
+13:u10:protocols,
+8:u11:each,
+18:u14:point-to-point,
+7:uI2:-.,,
+13:u01:protocols,
+18:u05:point-to-point,
+18:u06:"auto-bundled",
+13:u07:neighbors,
+11:u08:Group).,
+9:u05:(from,
+17:u08:configuration,
+8:u10:each,
+18:u13:point-to-point,
+18:u14:"auto-bundled",
+7:uI1:-.,,
+12:uI2:--()"-".,
+13:u00:protocols,
+18:u04:point-to-point,
+18:u05:"auto-bundled",
+13:u06:neighbors,
+12:u07:explicit,
+8:u08:IGP;,
+9:u04:(from,
+17:u07:configuration,
+18:u12:point-to-point,
+18:u13:"auto-bundled",
+13:u14:neighbors,
+7:uI0:-.,,
+12:uI1:--()"-".,
+18:u03:point-to-point,
+18:u04:"auto-bundled",
+13:u05:neighbors,
+12:u06:explicit,
+11:u07:Group).,
+9:u03:(from,
+17:u06:configuration,
+12:u08:however,,
+18:u11:point-to-point,
+18:u12:"auto-bundled",
+13:u13:neighbors,
+12:u14:explicit,
+6:u21:"a,
+7:u22:"au,
+8:u23:"aut,
+12:uI0:--()"-".,
+18:u02:point-to-point,
+18:u03:"auto-bundled",
+13:u04:neighbors,
+12:u05:explicit,
+11:u06:Group).,
+8:u07:IGP;,
+9:u02:(from,
+17:u05:configuration,
+12:u07:however,,
+18:u10:point-to-point,
+18:u11:"auto-bundled",
+13:u12:neighbors,
+12:u13:explicit,
+11:u14:group).,
+18:u01:point-to-point,
+18:u02:"auto-bundled",
+13:u03:neighbors,
+12:u04:explicit,
+11:u05:Group).,
+8:u06:IGP;,
+9:u08:those,
+9:u01:(from,
+17:u04:configuration,
+12:u06:however,,
+9:u08:often,
+18:u10:"auto-bundled",
+13:u11:neighbors,
+12:u12:explicit,
+11:u13:group).,
+8:u14:igp;,
+18:u00:point-to-point,
+18:u01:"auto-bundled",
+13:u02:neighbors,
+12:u03:explicit,
+11:u04:Group).,
+8:u05:IGP;,
+10:u08:layer;,
+9:u00:(from,
+17:u03:configuration,
+12:u05:however,,
+9:u07:often,
+10:u08:nodes.,
+13:u10:neighbors,
+12:u11:explicit,
+11:u12:group).,
+8:u13:igp;,
+6:u21:Gr,
+7:u22:Gro,
+8:u23:Grou,
+6:uI2:;,,
+18:u00:"auto-bundled",
+13:u01:neighbors,
+12:u02:explicit,
+11:u03:Group).,
+8:u04:IGP;,
+9:u07:those,
+17:u02:configuration,
+12:u04:however,,
+9:u06:often,
+10:u07:nodes.,
+12:u10:explicit,
+11:u11:group).,
+8:u12:igp;,
+6:u21:IG,
+7:u22:IGP,
+8:u23:IGP;,
+6:uI1:;,,
+13:u00:neighbors,
+12:u01:explicit,
+11:u02:Group).,
+8:u03:IGP;,
+9:u06:those,
+10:u07:layer;,
+17:u01:configuration,
+12:u03:however,,
+9:u05:often,
+10:u06:nodes.,
+11:u10:group).,
+8:u11:igp;,
+9:u14:those,
+6:uI0:;,,
+12:u00:explicit,
+11:u01:Group).,
+8:u02:IGP;,
+9:u05:those,
+10:u06:layer;,
+14:u08:discovered,
+17:u00:configuration,
+12:u02:however,,
+9:u04:often,
+10:u05:nodes.,
+8:u10:igp;,
+9:u13:those,
+10:u14:layer;,
+11:u00:Group).,
+8:u01:IGP;,
+9:u04:those,
+10:u05:layer;,
+8:u08:RID.,
+12:u01:however,,
+9:u03:often,
+10:u04:nodes.,
+9:u12:those,
+10:u13:layer;,
+10:u14:result,
+7:u22:tho,
+8:u23:thos,
+8:u00:IGP;,
+9:u03:those,
+10:u04:layer;,
+14:u07:discovered,
+12:u00:however,,
+9:u02:often,
+10:u03:nodes.,
+9:u11:those,
+10:u12:layer;,
+10:u13:result,
+7:u22:lay,
+8:u23:laye,
+9:u02:those,
+10:u03:layer;,
+14:u06:discovered,
+8:u07:RID.,
+9:u01:often,
+10:u02:nodes.,
+9:u10:those,
+10:u11:layer;,
+10:u12:result,
+14:u14:discovered,
+8:u23:resu,
+9:u01:those,
+10:u02:layer;,
+14:u05:discovered,
+8:u06:RID.,
+9:u00:often,
+10:u01:nodes.,
+14:u08:attributes,
+10:u10:layer;,
+10:u11:result,
+14:u13:discovered,
+8:u14:rid.,
+9:u00:those,
+10:u01:layer;,
+14:u04:discovered,
+8:u05:RID.,
+9:u08:ring.,
+10:u00:nodes.,
+14:u07:attributes,
+6:u08:up,
+10:u10:result,
+14:u12:discovered,
+8:u13:rid.,
+9:uI2:.'();,
+10:u00:layer;,
+14:u03:discovered,
+8:u04:RID.,
+14:u06:attributes,
+6:u07:up,
+14:u11:discovered,
+8:u12:rid.,
+7:u14:two,
+8:u23:RID.,
+9:uI1:.'();,
+6:uI2:'.,
+14:u02:discovered,
+8:u03:RID.,
+9:u07:ring.,
+14:u05:attributes,
+6:u06:up,
+14:u10:discovered,
+8:u11:rid.,
+7:u13:two,
+8:u14:then,
+9:uI0:.'();,
+6:uI1:'.,
+14:u01:discovered,
+8:u02:RID.,
+9:u06:ring.,
+14:u08:directions,
+14:u04:attributes,
+6:u05:up,
+8:u10:rid.,
+7:u12:two,
+8:u13:then,
+9:u14:ring.,
+6:u21:tw,
+7:u22:two,
+7:u23:two,
+6:uI0:'.,
+14:u00:discovered,
+8:u01:RID.,
+9:u05:ring.,
+14:u03:attributes,
+6:u04:up,
+8:u08:have,
+7:u11:two,
+8:u12:then,
+9:u13:ring.,
+8:u23:then,
+8:u00:RID.,
+9:u04:ring.,
+14:u07:directions,
+14:u02:attributes,
+6:u03:up,
+8:u07:have,
+7:u10:two,
+8:u11:then,
+9:u12:ring.,
+9:u03:ring.,
+14:u06:directions,
+14:u01:attributes,
+6:u02:up,
+8:u06:have,
+8:u10:then,
+9:u11:ring.,
+14:u14:directions,
+9:u02:ring.,
+14:u05:directions,
+14:u00:attributes,
+6:u01:up,
+8:u05:have,
+9:u10:ring.,
+14:u13:directions,
+9:u01:ring.,
+14:u04:directions,
+6:u00:up,
+8:u04:have,
+14:u12:directions,
+7:u22:dir,
+8:u23:dire,
+7:uI2:-;,,
+9:u00:ring.,
+14:u03:directions,
+8:u03:have,
+14:u11:directions,
+7:uI1:-;,,
+14:u02:directions,
+8:u02:have,
+14:u10:directions,
+7:uI0:-;,,
+14:u01:directions,
+8:u01:have,
+14:u00:directions,
+8:u00:have,
+18:u08:automatically.,
+9:u08:RL_k.,
+7:u08:R_i,
+18:u07:automatically.,
+14:u08:propagates,
+7:u07:R_i,
+7:u14:its,
+18:u06:automatically.,
+9:u07:RL_k.,
+12:u08:receives,
+7:u06:R_i,
+10:u08:around,
+7:u13:its,
+18:u14:automatically.,
+18:u05:automatically.,
+9:u06:RL_k.,
+14:u07:propagates,
+7:u05:R_i,
+10:u07:around,
+6:u08:CW,
+7:u12:its,
+18:u13:automatically.,
+9:u14:rl_k.,
+7:u22:its,
+7:u23:its,
+18:u04:automatically.,
+9:u05:RL_k.,
+14:u06:propagates,
+12:u07:receives,
+7:u04:R_i,
+10:u06:around,
+6:u07:CW,
+8:u08:fast,
+7:u11:its,
+18:u12:automatically.,
+9:u13:rl_k.,
+14:u14:propagates,
+8:u23:auto,
+18:u03:automatically.,
+9:u04:RL_k.,
+14:u05:propagates,
+12:u06:receives,
+7:u03:R_i,
+10:u05:around,
+6:u06:CW,
+8:u07:fast,
+11:u08:RSVP-TE,
+7:u10:its,
+18:u11:automatically.,
+9:u12:rl_k.,
+14:u13:propagates,
+12:u14:receives,
+18:u02:automatically.,
+9:u03:RL_k.,
+14:u04:propagates,
+12:u05:receives,
+8:u08:call,
+7:u02:R_i,
+10:u04:around,
+6:u05:CW,
+8:u06:fast,
+11:u07:RSVP-TE,
+9:u08:these,
+18:u10:automatically.,
+9:u11:rl_k.,
+14:u12:propagates,
+12:u13:receives,
+8:u23:prop,
+18:u01:automatically.,
+9:u02:RL_k.,
+14:u03:propagates,
+12:u04:receives,
+7:u01:R_i,
+10:u03:around,
+6:u04:CW,
+8:u05:fast,
+11:u06:RSVP-TE,
+9:u07:these,
+13:u08:admission,
+9:u10:rl_k.,
+14:u11:propagates,
+12:u12:receives,
+18:u00:automatically.,
+9:u01:RL_k.,
+14:u02:propagates,
+12:u03:receives,
+8:u07:call,
+13:u08:bandwidth,
+7:u00:R_i,
+10:u02:around,
+6:u03:CW,
+8:u04:fast,
+11:u05:RSVP-TE,
+9:u06:these,
+13:u07:admission,
+14:u10:propagates,
+12:u11:receives,
+9:u00:RL_k.,
+14:u01:propagates,
+12:u02:receives,
+8:u06:call,
+12:u08:admitted,
+10:u01:around,
+6:u02:CW,
+8:u03:fast,
+11:u04:RSVP-TE,
+9:u05:these,
+13:u06:admission,
+12:u10:receives,
+8:u14:call,
+8:uI2:,;,",
+14:u00:propagates,
+12:u01:receives,
+8:u05:call,
+13:u07:bandwidth,
+10:u00:around,
+6:u01:CW,
+8:u02:fast,
+11:u03:RSVP-TE,
+9:u04:these,
+13:u05:admission,
+8:u13:call,
+8:uI1:,;,",
+7:uI2:".,,
+12:u00:receives,
+8:u04:call,
+13:u06:bandwidth,
+12:u07:admitted,
+6:u00:CW,
+8:u01:fast,
+11:u02:RSVP-TE,
+9:u03:these,
+13:u04:admission,
+8:u12:call,
+13:u14:bandwidth,
+8:u23:call,
+8:uI0:,;,",
+7:uI1:".,,
+8:u03:call,
+13:u05:bandwidth,
+12:u06:admitted,
+8:u00:fast,
+11:u01:RSVP-TE,
+9:u02:these,
+13:u03:admission,
+11:u08:setting,
+8:u11:call,
+13:u13:bandwidth,
+12:u14:admitted,
+7:uI0:".,,
+8:u02:call,
+13:u04:bandwidth,
+12:u05:admitted,
+10:u08:R_j+1,,
+11:u00:RSVP-TE,
+9:u01:these,
+13:u02:admission,
+11:u07:setting,
+9:u08:AL_jk,
+8:u10:call,
+13:u12:bandwidth,
+12:u13:admitted,
+7:u22:ban,
+8:u23:band,
+8:u01:call,
+13:u03:bandwidth,
+12:u04:admitted,
+11:u08:entries,
+9:u00:these,
+13:u01:admission,
+11:u06:setting,
+9:u07:AL_jk,
+13:u11:bandwidth,
+12:u12:admitted,
+7:u22:adm,
+8:u23:admi,
+8:u00:call,
+13:u02:bandwidth,
+12:u03:admitted,
+10:u07:R_j+1,,
+9:u08:CL_jk,
+13:u00:admission,
+11:u05:setting,
+9:u06:AL_jk,
+13:u10:bandwidth,
+12:u11:admitted,
+7:uI2:,:-,
+13:u01:bandwidth,
+12:u02:admitted,
+10:u06:R_j+1,,
+11:u07:entries,
+7:u08:LSR,
+11:u04:setting,
+9:u05:AL_jk,
+12:u10:admitted,
+10:u14:r_j+1,,
+7:uI1:,:-,
+7:uI2:.:,,
+13:u00:bandwidth,
+12:u01:admitted,
+10:u05:R_j+1,,
+11:u06:entries,
+9:u07:CL_jk,
+8:u08:next,
+11:u03:setting,
+9:u04:AL_jk,
+10:u13:r_j+1,,
+11:u14:entries,
+7:uI0:,:-,
+7:uI1:.:,,
+9:uI2:,-,-.,
+12:u00:admitted,
+10:u04:R_j+1,,
+11:u05:entries,
+9:u06:CL_jk,
+7:u07:LSR,
+14:u08:direction,,
+11:u02:setting,
+9:u03:AL_jk,
+7:u08:hop,
+10:u12:r_j+1,,
+11:u13:entries,
+9:u14:cl_jk,
+7:u22:R_j,
+8:u23:R_j+,
+7:uI0:.:,,
+9:uI1:,-,-.,
+10:u03:R_j+1,,
+11:u04:entries,
+9:u05:CL_jk,
+7:u06:LSR,
+8:u07:next,
+9:u08:R_j-1,
+11:u01:setting,
+9:u02:AL_jk,
+7:u07:hop,
+7:u08:R_j,
+10:u11:r_j+1,,
+11:u12:entries,
+9:u13:cl_jk,
+7:u14:lsr,
+7:u22:ent,
+8:u23:entr,
+9:uI0:,-,-.,
+10:u02:R_j+1,,
+11:u03:entries,
+9:u04:CL_jk,
+7:u05:LSR,
+8:u06:next,
+14:u07:direction,,
+13:u08:ingress).,
+11:u00:setting,
+9:u01:AL_jk,
+7:u06:hop,
+7:u07:R_j,
+7:u08:(as,
+10:u10:r_j+1,,
+11:u11:entries,
+9:u12:cl_jk,
+7:u13:lsr,
+8:u14:next,
+10:u01:R_j+1,,
+11:u02:entries,
+9:u03:CL_jk,
+7:u04:LSR,
+8:u05:next,
+14:u06:direction,,
+9:u07:R_j-1,
+12:u08:Clearly,,
+9:u00:AL_jk,
+7:u05:hop,
+7:u06:R_j,
+7:u07:(as,
+11:u10:entries,
+9:u11:cl_jk,
+7:u12:lsr,
+8:u13:next,
+14:u14:direction,,
+7:u22:LSR,
+7:u23:LSR,
+10:u00:R_j+1,,
+11:u01:entries,
+9:u02:CL_jk,
+7:u03:LSR,
+8:u04:next,
+14:u05:direction,,
+9:u06:R_j-1,
+13:u07:ingress).,
+7:u04:hop,
+7:u05:R_j,
+7:u06:(as,
+7:u08:R_k,
+9:u10:cl_jk,
+7:u11:lsr,
+8:u12:next,
+14:u13:direction,,
+9:u14:r_j-1,
+7:u22:nex,
+8:u23:next,
+7:uI2:,-,,
+11:u00:entries,
+9:u01:CL_jk,
+7:u02:LSR,
+8:u03:next,
+14:u04:direction,,
+9:u05:R_j-1,
+13:u06:ingress).,
+12:u07:Clearly,,
+33:u08:([I-D.ietf-mpls-rfc4379bis]),,
+7:u03:hop,
+7:u04:R_j,
+7:u05:(as,
+7:u07:R_k,
+7:u10:lsr,
+8:u11:next,
+14:u12:direction,,
+9:u13:r_j-1,
+13:u14:ingress).,
+7:uI1:,-,,
+12:uI2:-(),-,-(,
+9:u00:CL_jk,
+7:u01:LSR,
+8:u02:next,
+14:u03:direction,,
+9:u04:R_j-1,
+13:u05:ingress).,
+12:u06:Clearly,,
+8:u08:test,
+7:u02:hop,
+7:u03:R_j,
+7:u04:(as,
+7:u06:R_k,
+8:u10:next,
+14:u11:direction,,
+9:u12:r_j-1,
+13:u13:ingress).,
+12:u14:clearly,,
+8:u23:R_j-,
+7:uI0:,-,,
+12:uI1:-(),-,-(,
+7:u00:LSR,
+8:u01:next,
+14:u02:direction,,
+9:u03:R_j-1,
+13:u04:ingress).,
+12:u05:Clearly,,
+33:u07:([I-D.ietf-mpls-rfc4379bis]),,
+16:u08:Furthermore,,
+7:u01:hop,
+7:u02:R_j,
+7:u03:(as,
+7:u05:R_k,
+14:u10:direction,,
+9:u11:r_j-1,
+13:u12:ingress).,
+12:u13:clearly,,
+7:u22:ing,
+8:u23:ingr,
+12:uI0:-(),-,-(,
+8:u00:next,
+14:u01:direction,,
+9:u02:R_j-1,
+13:u03:ingress).,
+12:u04:Clearly,,
+33:u06:([I-D.ietf-mpls-rfc4379bis]),,
+8:u07:test,
+12:u08:installs,
+7:u00:hop,
+7:u01:R_j,
+7:u02:(as,
+7:u04:R_k,
+9:u10:r_j-1,
+13:u11:ingress).,
+12:u12:clearly,,
+33:u14:([i-d.ietf-mpls-rfc4379bis]),,
+7:u22:Cle,
+8:u23:Clea,
+14:u00:direction,,
+9:u01:R_j-1,
+13:u02:ingress).,
+12:u03:Clearly,,
+33:u05:([I-D.ietf-mpls-rfc4379bis]),,
+8:u06:test,
+16:u07:Furthermore,,
+7:u00:R_j,
+7:u01:(as,
+7:u03:R_k,
+8:u08:LFIB,
+13:u10:ingress).,
+12:u11:clearly,,
+33:u13:([i-d.ietf-mpls-rfc4379bis]),,
+8:u14:test,
+17:uI2:([-.--]),,-,,,
+9:u00:R_j-1,
+13:u01:ingress).,
+12:u02:Clearly,,
+33:u04:([I-D.ietf-mpls-rfc4379bis]),,
+8:u05:test,
+16:u06:Furthermore,,
+12:u07:installs,
+7:u00:(as,
+7:u02:R_k,
+8:u07:LFIB,
+12:u10:clearly,,
+33:u12:([i-d.ietf-mpls-rfc4379bis]),,
+8:u13:test,
+16:u14:furthermore,,
+6:u21:([,
+7:u22:([I,
+8:u23:([I-,
+17:uI1:([-.--]),,-,,,
+13:u00:ingress).,
+12:u01:Clearly,,
+33:u03:([I-D.ietf-mpls-rfc4379bis]),,
+8:u04:test,
+16:u05:Furthermore,,
+12:u06:installs,
+7:u01:R_k,
+8:u06:LFIB,
+33:u11:([i-d.ietf-mpls-rfc4379bis]),,
+8:u12:test,
+16:u13:furthermore,,
+12:u14:installs,
+7:u22:tes,
+8:u23:test,
+17:uI0:([-.--]),,-,,,
+12:u00:Clearly,,
+33:u02:([I-D.ietf-mpls-rfc4379bis]),,
+8:u03:test,
+16:u04:Furthermore,,
+12:u05:installs,
+7:u00:R_k,
+8:u05:LFIB,
+33:u10:([i-d.ietf-mpls-rfc4379bis]),,
+8:u11:test,
+16:u12:furthermore,,
+12:u13:installs,
+6:u21:Fu,
+7:u22:Fur,
+8:u23:Furt,
+33:u01:([I-D.ietf-mpls-rfc4379bis]),,
+8:u02:test,
+16:u03:Furthermore,,
+12:u04:installs,
+8:u04:LFIB,
+10:u08:bypass,
+8:u10:test,
+16:u11:furthermore,,
+12:u12:installs,
+7:u22:ins,
+8:u23:inst,
+33:u00:([I-D.ietf-mpls-rfc4379bis]),,
+8:u01:test,
+16:u02:Furthermore,,
+12:u03:installs,
+8:u03:LFIB,
+10:u07:bypass,
+16:u10:furthermore,,
+12:u11:installs,
+8:u00:test,
+16:u01:Furthermore,,
+12:u02:installs,
+9:u08:works,
+8:u02:LFIB,
+10:u06:bypass,
+12:u10:installs,
+16:u00:Furthermore,,
+12:u01:installs,
+8:u01:LFIB,
+10:u05:bypass,
+8:uI2:,,,-,
+12:u00:installs,
+9:u07:works,
+9:u08:R_j+1,
+8:u00:LFIB,
+10:u04:bypass,
+8:uI1:,,,-,
+8:uI2:."",,
+9:u06:works,
+10:u03:bypass,
+9:u08:fail,,
+9:u14:works,
+8:uI0:,,,-,
+8:uI1:."",,
+9:u05:works,
+9:u07:R_j+1,
+10:u02:bypass,
+9:u07:fail,,
+9:u13:works,
+8:uI0:."",,
+9:u04:works,
+9:u06:R_j+1,
+10:u01:bypass,
+9:u06:fail,,
+9:u12:works,
+9:u14:r_j+1,
+9:u03:works,
+9:u05:R_j+1,
+10:u00:bypass,
+9:u05:fail,,
+9:u11:works,
+9:u13:r_j+1,
+9:u02:works,
+9:u04:R_j+1,
+9:u04:fail,,
+9:u10:works,
+9:u12:r_j+1,
+9:u01:works,
+9:u03:R_j+1,
+9:u03:fail,,
+9:u11:r_j+1,
+9:u00:works,
+9:u02:R_j+1,
+9:u02:fail,,
+9:u10:r_j+1,
+9:u01:R_j+1,
+11:u08:failure,
+9:u01:fail,,
+9:u00:R_j+1,
+9:u00:fail,,
+11:u07:failure,
+11:u06:failure,
+14:u08:switchover,
+7:u08:FRR,
+11:u14:failure,
+11:u05:failure,
+7:u07:FRR,
+8:u08:lead,
+11:u13:failure,
+11:u04:failure,
+14:u07:switchover,
+12:u08:working,,
+7:u06:FRR,
+8:u07:lead,
+11:u12:failure,
+6:u21:fa,
+7:u22:fai,
+8:u23:fail,
+7:uI2:.,,,
+11:u03:failure,
+14:u06:switchover,
+14:u08:direction.,
+7:u05:FRR,
+8:u06:lead,
+11:u11:failure,
+14:u14:switchover,
+7:uI1:.,,,
+11:u02:failure,
+14:u05:switchover,
+12:u07:working,,
+11:u08:Notify;,
+7:u04:FRR,
+8:u05:lead,
+11:u10:failure,
+14:u13:switchover,
+7:u14:r_j,
+7:uI0:.,,,
+11:u01:failure,
+14:u04:switchover,
+12:u06:working,,
+14:u07:direction.,
+15:u08:indications,
+7:u03:FRR,
+8:u04:lead,
+14:u12:switchover,
+7:u13:r_j,
+12:u14:working,,
+11:u00:failure,
+14:u03:switchover,
+12:u05:working,,
+14:u06:direction.,
+11:u07:Notify;,
+7:u02:FRR,
+8:u03:lead,
+13:u08:propagate,
+14:u11:switchover,
+7:u12:r_j,
+12:u13:working,,
+14:u14:direction.,
+7:u23:R_j,
+14:u02:switchover,
+12:u04:working,,
+14:u05:direction.,
+11:u06:Notify;,
+15:u07:indications,
+7:u01:FRR,
+8:u02:lead,
+13:u07:propagate,
+14:u10:switchover,
+7:u11:r_j,
+12:u12:working,,
+14:u13:direction.,
+11:u14:notify;,
+7:uI2:.-,,
+14:u01:switchover,
+12:u03:working,,
+14:u04:direction.,
+11:u05:Notify;,
+15:u06:indications,
+7:u00:FRR,
+8:u01:lead,
+13:u06:propagate,
+7:u10:r_j,
+12:u11:working,,
+14:u12:direction.,
+11:u13:notify;,
+15:u14:indications,
+7:uI1:.-,,
+6:uI2:;.,
+14:u00:switchover,
+12:u02:working,,
+14:u03:direction.,
+11:u04:Notify;,
+15:u05:indications,
+8:u00:lead,
+13:u05:propagate,
+12:u10:working,,
+14:u11:direction.,
+11:u12:notify;,
+15:u13:indications,
+8:u23:Noti,
+7:uI0:.-,,
+6:uI1:;.,
+12:u01:working,,
+14:u02:direction.,
+11:u03:Notify;,
+15:u04:indications,
+15:u08:suboptimal.,
+13:u04:propagate,
+9:u08:until,
+14:u10:direction.,
+11:u11:notify;,
+15:u12:indications,
+6:uI0:;.,
+12:u00:working,,
+14:u01:direction.,
+11:u02:Notify;,
+15:u03:indications,
+13:u03:propagate,
+9:u07:until,
+11:u10:notify;,
+15:u11:indications,
+14:u00:direction.,
+11:u01:Notify;,
+15:u02:indications,
+15:u07:suboptimal.,
+13:u02:propagate,
+9:u06:until,
+15:u10:indications,
+11:u00:Notify;,
+15:u01:indications,
+15:u06:suboptimal.,
+8:u08:(and,
+13:u01:propagate,
+9:u05:until,
+15:u14:suboptimal.,
+15:u00:indications,
+15:u05:suboptimal.,
+13:u00:propagate,
+9:u04:until,
+10:u08:switch,
+15:u13:suboptimal.,
+15:u04:suboptimal.,
+8:u07:(and,
+11:u08:clearly,
+9:u03:until,
+10:u07:switch,
+15:u12:suboptimal.,
+7:u22:sub,
+8:u23:subo,
+15:u03:suboptimal.,
+8:u06:(and,
+9:u02:until,
+10:u06:switch,
+13:u08:unusable.,
+15:u11:suboptimal.,
+8:u14:(and,
+15:u02:suboptimal.,
+8:u05:(and,
+11:u07:clearly,
+9:u01:until,
+10:u05:switch,
+13:u07:unusable.,
+9:u08:loop:,
+15:u10:suboptimal.,
+8:u13:(and,
+15:u01:suboptimal.,
+8:u04:(and,
+11:u06:clearly,
+9:u00:until,
+10:u04:switch,
+13:u06:unusable.,
+9:u07:loop:,
+8:u12:(and,
+11:u14:clearly,
+6:u21:(a,
+7:u22:(an,
+8:u23:(and,
+15:u00:suboptimal.,
+8:u03:(and,
+11:u05:clearly,
+10:u03:switch,
+13:u05:unusable.,
+9:u06:loop:,
+8:u11:(and,
+11:u13:clearly,
+8:u02:(and,
+11:u04:clearly,
+8:u08:most,
+10:u02:switch,
+13:u04:unusable.,
+9:u05:loop:,
+8:u08:Each,
+8:u10:(and,
+11:u12:clearly,
+7:u22:cle,
+8:u23:clea,
+8:u01:(and,
+11:u03:clearly,
+10:u01:switch,
+13:u03:unusable.,
+9:u04:loop:,
+8:u07:Each,
+8:u08:2*n,,
+11:u11:clearly,
+8:u00:(and,
+11:u02:clearly,
+8:u07:most,
+10:u00:switch,
+13:u02:unusable.,
+9:u03:loop:,
+8:u06:Each,
+8:u07:2*n,,
+11:u10:clearly,
+8:uI2:-,.:,
+11:u01:clearly,
+8:u06:most,
+11:u08:egress.,
+13:u01:unusable.,
+9:u02:loop:,
+8:u05:Each,
+8:u06:2*n,,
+8:u14:most,
+8:uI1:-,.:,
+11:u00:clearly,
+8:u05:most,
+13:u00:unusable.,
+9:u01:loop:,
+8:u04:Each,
+8:u05:2*n,,
+8:u13:most,
+8:uI0:-,.:,
+7:uI2:*,.,
+8:u04:most,
+11:u07:egress.,
+9:u08:below,
+9:u00:loop:,
+8:u03:Each,
+8:u04:2*n,,
+8:u12:most,
+6:u14:cw,
+7:uI1:*,.,
+9:uI2:.(..,,
+8:u03:most,
+11:u06:egress.,
+12:u08:presence,
+8:u02:Each,
+8:u03:2*n,,
+8:u11:most,
+6:u13:cw,
+11:u14:egress.,
+7:uI0:*,.,
+9:uI1:.(..,,
+8:u02:most,
+11:u05:egress.,
+9:u07:below,
+11:u08:looping,
+8:u01:Each,
+8:u02:2*n,,
+8:u10:most,
+6:u12:cw,
+11:u13:egress.,
+6:u22:CW,
+6:u23:CW,
+9:uI0:.(..,,
+8:u01:most,
+11:u04:egress.,
+9:u06:below,
+12:u07:presence,
+8:u00:Each,
+8:u01:2*n,,
+6:u11:cw,
+11:u12:egress.,
+9:u14:below,
+6:u21:eg,
+7:u22:egr,
+8:u23:egre,
+8:u00:most,
+11:u03:egress.,
+9:u05:below,
+12:u06:presence,
+11:u07:looping,
+13:u08:optional.,
+8:u00:2*n,,
+6:u10:cw,
+11:u11:egress.,
+9:u13:below,
+12:u14:presence,
+11:u02:egress.,
+9:u04:below,
+12:u05:presence,
+11:u06:looping,
+11:u10:egress.,
+9:u12:below,
+12:u13:presence,
+11:u14:looping,
+7:u22:bel,
+8:u23:belo,
+11:u01:egress.,
+9:u03:below,
+12:u04:presence,
+11:u05:looping,
+13:u07:optional.,
+6:u08:At,
+9:u11:below,
+12:u12:presence,
+11:u13:looping,
+11:u00:egress.,
+9:u02:below,
+12:u03:presence,
+11:u04:looping,
+13:u06:optional.,
+9:u10:below,
+12:u11:presence,
+11:u12:looping,
+13:u14:optional.,
+7:u22:loo,
+8:u23:loop,
+9:u01:below,
+12:u02:presence,
+11:u03:looping,
+13:u05:optional.,
+6:u07:At,
+12:u10:presence,
+11:u11:looping,
+13:u13:optional.,
+9:u00:below,
+12:u01:presence,
+11:u02:looping,
+13:u04:optional.,
+6:u06:At,
+9:u08:label,
+11:u10:looping,
+13:u12:optional.,
+6:u14:at,
+7:u22:opt,
+8:u23:opti,
+12:u00:presence,
+11:u01:looping,
+13:u03:optional.,
+6:u05:At,
+13:u11:optional.,
+6:u13:at,
+11:u00:looping,
+13:u02:optional.,
+6:u04:At,
+9:u07:label,
+13:u10:optional.,
+6:u12:at,
+6:u22:At,
+6:u23:At,
+13:u01:optional.,
+6:u03:At,
+9:u06:label,
+6:u11:at,
+9:u14:label,
+13:u00:optional.,
+6:u02:At,
+9:u05:label,
+6:u10:at,
+9:u13:label,
+9:uI2:-,-.,,
+6:u01:At,
+9:u04:label,
+9:u12:label,
+7:u22:lab,
+8:u23:labe,
+9:uI1:-,-.,,
+6:u00:At,
+9:u03:label,
+9:u11:label,
+9:uI0:-,-.,,
+9:u02:label,
+9:u10:label,
+9:u01:label,
+12:u08:CL_j+1,k,
+8:u08:sets,
+9:u00:label,
+8:u07:sets,
+12:u07:CL_j+1,k,
+8:u06:sets,
+12:u06:CL_j+1,k,
+8:u05:sets,
+6:u08:R1,
+12:u14:cl_j+1,k,
+12:u05:CL_j+1,k,
+13:u08:clockwise,
+8:u04:sets,
+6:u07:R1,
+12:u13:cl_j+1,k,
+12:u04:CL_j+1,k,
+8:u03:sets,
+6:u06:R1,
+12:u12:cl_j+1,k,
+12:u03:CL_j+1,k,
+13:u07:clockwise,
+8:u02:sets,
+6:u05:R1,
+12:u11:cl_j+1,k,
+12:u02:CL_j+1,k,
+13:u06:clockwise,
+8:u01:sets,
+6:u04:R1,
+12:u10:cl_j+1,k,
+12:u01:CL_j+1,k,
+13:u05:clockwise,
+54:u08:+------+--------+-----------+--------+-----------+,
+8:u00:sets,
+6:u03:R1,
+12:u08:entries:,
+12:u00:CL_j+1,k,
+13:u04:clockwise,
+6:u02:R1,
+12:u07:entries:,
+7:u22:clo,
+8:u23:cloc,
+13:u03:clockwise,
+54:u07:+------+--------+-----------+--------+-----------+,
+6:u01:R1,
+12:u06:entries:,
+8:u08:Dest,
+8:u14:lfib,
+13:u02:clockwise,
+54:u06:+------+--------+-----------+--------+-----------+,
+6:u00:R1,
+12:u05:entries:,
+8:u07:Dest,
+8:u13:lfib,
+54:u14:+------+--------+-----------+--------+-----------+,
+13:u01:clockwise,
+54:u05:+------+--------+-----------+--------+-----------+,
+12:u04:entries:,
+8:u06:Dest,
+7:u08:...,
+8:u12:lfib,
+54:u13:+------+--------+-----------+--------+-----------+,
+6:u21:LF,
+7:u22:LFI,
+8:u23:LFIB,
+48:uI2:--------------------------------------------,
+6:uI2:44,
+13:u00:clockwise,
+54:u04:+------+--------+-----------+--------+-----------+,
+12:u03:entries:,
+8:u05:Dest,
+7:u07:...,
+8:u11:lfib,
+54:u12:+------+--------+-----------+--------+-----------+,
+48:uI1:--------------------------------------------,
+8:uI2:////,
+6:uI1:44,
+54:u03:+------+--------+-----------+--------+-----------+,
+12:u02:entries:,
+8:u04:Dest,
+7:u06:...,
+8:u10:lfib,
+54:u11:+------+--------+-----------+--------+-----------+,
+48:uI0:--------------------------------------------,
+8:uI1:////,
+6:uI0:44,
+54:u02:+------+--------+-----------+--------+-----------+,
+12:u01:entries:,
+8:u03:Dest,
+7:u05:...,
+54:u10:+------+--------+-----------+--------+-----------+,
+8:uI0:////,
+54:u01:+------+--------+-----------+--------+-----------+,
+12:u00:entries:,
+8:u02:Dest,
+7:u04:...,
+54:u00:+------+--------+-----------+--------+-----------+,
+8:u01:Dest,
+7:u03:...,
+6:u08:R4,
+10:u08:L40/R0,
+8:u00:Dest,
+7:u02:...,
+6:u07:R4,
+10:u08:L42/R2,
+7:u01:...,
+6:u06:R4,
+10:u07:L42/R2,
+10:u07:L40/R0,
+7:u00:...,
+6:u05:R4,
+10:u06:L42/R2,
+10:u06:L40/R0,
+6:u04:R4,
+10:u05:L42/R2,
+10:u14:l40/r0,
+10:u05:L40/R0,
+10:u08:L50/R0,
+6:u03:R4,
+10:u04:L42/R2,
+10:u08:L52/R2,
+10:u13:l40/r0,
+10:u14:l42/r2,
+6:uI2://,
+10:u04:L40/R0,
+6:u02:R4,
+10:u03:L42/R2,
+10:u07:L52/R2,
+10:u12:l40/r0,
+10:u13:l42/r2,
+6:u21:L4,
+7:u22:L40,
+8:u23:L40/,
+6:uI1://,
+10:u03:L40/R0,
+10:u07:L50/R0,
+6:u01:R4,
+10:u02:L42/R2,
+10:u06:L52/R2,
+10:u11:l40/r0,
+10:u12:l42/r2,
+7:u22:L42,
+8:u23:L42/,
+6:uI0://,
+10:u02:L40/R0,
+10:u06:L50/R0,
+6:u00:R4,
+10:u01:L42/R2,
+10:u05:L52/R2,
+10:u10:l40/r0,
+10:u11:l42/r2,
+10:u14:l50/r0,
+10:u01:L40/R0,
+10:u05:L50/R0,
+10:u00:L42/R2,
+10:u04:L52/R2,
+10:u10:l42/r2,
+10:u13:l50/r0,
+10:u14:l52/r2,
+10:u00:L40/R0,
+10:u04:L50/R0,
+10:u03:L52/R2,
+10:u12:l50/r0,
+10:u13:l52/r2,
+6:u21:L5,
+7:u22:L50,
+8:u23:L50/,
+10:u03:L50/R0,
+10:u02:L52/R2,
+10:u11:l50/r0,
+10:u12:l52/r2,
+7:u22:L52,
+8:u23:L52/,
+10:u02:L50/R0,
+10:u01:L52/R2,
+10:u10:l50/r0,
+10:u11:l52/r2,
+10:u01:L50/R0,
+8:u08:R1's,
+10:u00:L52/R2,
+10:u10:l52/r2,
+10:u00:L50/R0,
+8:u07:R1's,
+8:u06:R1's,
+18:u08:Auto-discovery,
+8:u14:r1's,
+8:u05:R1's,
+16:u08:announcement,
+8:u13:r1's,
+8:u04:R1's,
+18:u07:Auto-discovery,
+9:u08:third,
+10:u08:phase.,
+8:u12:r1's,
+6:u21:R1,
+7:u22:R1',
+8:u23:R1's,
+8:u03:R1's,
+18:u06:Auto-discovery,
+16:u07:announcement,
+6:u08:S1,
+10:u07:phase.,
+9:u08:phase,
+8:u11:r1's,
+18:u14:auto-discovery,
+8:u02:R1's,
+18:u05:Auto-discovery,
+16:u06:announcement,
+9:u07:third,
+10:u06:phase.,
+9:u07:phase,
+8:u10:r1's,
+18:u13:auto-discovery,
+16:u14:announcement,
+8:u01:R1's,
+18:u04:Auto-discovery,
+16:u05:announcement,
+9:u06:third,
+6:u07:S1,
+10:u05:phase.,
+9:u06:phase,
+18:u12:auto-discovery,
+16:u13:announcement,
+9:u14:third,
+8:u23:Auto,
+8:u00:R1's,
+18:u03:Auto-discovery,
+16:u04:announcement,
+9:u05:third,
+6:u06:S1,
+10:u04:phase.,
+9:u05:phase,
+18:u11:auto-discovery,
+16:u12:announcement,
+9:u13:third,
+6:u14:s1,
+7:u22:ann,
+8:u23:anno,
+18:u02:Auto-discovery,
+16:u03:announcement,
+9:u04:third,
+6:u05:S1,
+10:u03:phase.,
+9:u04:phase,
+18:u10:auto-discovery,
+16:u11:announcement,
+9:u12:third,
+6:u13:s1,
+8:u23:thir,
+18:u01:Auto-discovery,
+16:u02:announcement,
+9:u03:third,
+6:u04:S1,
+10:u02:phase.,
+9:u03:phase,
+16:u10:announcement,
+9:u11:third,
+6:u12:s1,
+6:u21:S1,
+6:u22:S1,
+6:u23:S1,
+18:u00:Auto-discovery,
+16:u01:announcement,
+9:u02:third,
+6:u03:S1,
+10:u01:phase.,
+9:u02:phase,
+9:u10:third,
+6:u11:s1,
+16:u00:announcement,
+9:u01:third,
+6:u02:S1,
+10:u00:phase.,
+9:u01:phase,
+6:u10:s1,
+9:u00:third,
+6:u01:S1,
+9:u00:phase,
+6:u00:S1,
+13:u08:\________,
+7:u08:All,
+6:u14:r1,
+13:u07:\________,
+6:u13:r1,
+13:u06:\________,
+7:u07:All,
+6:u12:r1,
+13:u14:\________,
+6:u22:R1,
+6:u23:R1,
+13:u05:\________,
+7:u06:All,
+6:u11:r1,
+13:u13:\________,
+13:u04:\________,
+7:u05:All,
+6:u10:r1,
+13:u12:\________,
+6:u21:\_,
+7:u22:\__,
+8:u23:\___,
+13:u03:\________,
+7:u04:All,
+13:u11:\________,
+7:u22:All,
+7:u23:All,
+13:u02:\________,
+7:u03:All,
+13:u10:\________,
+13:u01:\________,
+7:u02:All,
+13:u00:\________,
+7:u01:All,
+7:u00:All,
+12:u08:consists,
+9:u08:TLVs.,
+12:u07:consists,
+10:u08:node's,
+12:u06:consists,
+9:u07:TLVs.,
+11:u08:Details,
+14:u08:neighbors.,
+12:u14:consists,
+9:uI2:--().,
+12:u05:consists,
+9:u06:TLVs.,
+10:u07:node's,
+17:u08:corresponding,
+14:u07:neighbors.,
+12:u13:consists,
+9:u14:tlvs.,
+9:uI1:--().,
+12:u04:consists,
+9:u05:TLVs.,
+10:u06:node's,
+11:u07:Details,
+8:u08:[RMR,
+14:u06:neighbors.,
+7:u08:IGP,
+12:u12:consists,
+9:u13:tlvs.,
+10:u14:node's,
+9:uI0:--().,
+12:u03:consists,
+9:u04:TLVs.,
+10:u05:node's,
+11:u06:Details,
+17:u07:corresponding,
+14:u05:neighbors.,
+7:u07:IGP,
+12:u11:consists,
+9:u12:tlvs.,
+10:u13:node's,
+11:u14:details,
+7:u22:TLV,
+8:u23:TLVs,
+8:uI2:'.-.,
+12:u02:consists,
+9:u03:TLVs.,
+10:u04:node's,
+11:u05:Details,
+17:u06:corresponding,
+8:u07:[RMR,
+14:u04:neighbors.,
+7:u06:IGP,
+12:u10:consists,
+9:u11:tlvs.,
+10:u12:node's,
+11:u13:details,
+17:u14:corresponding,
+8:uI1:'.-.,
+12:u01:consists,
+9:u02:TLVs.,
+10:u03:node's,
+11:u04:Details,
+17:u05:corresponding,
+8:u06:[RMR,
+14:u03:neighbors.,
+7:u05:IGP,
+7:u08:Nbr,
+9:u10:tlvs.,
+10:u11:node's,
+11:u12:details,
+17:u13:corresponding,
+8:u14:[rmr,
+7:u22:Det,
+8:u23:Deta,
+8:uI0:'.-.,
+12:u00:consists,
+9:u01:TLVs.,
+10:u02:node's,
+11:u03:Details,
+17:u04:corresponding,
+8:u05:[RMR,
+14:u02:neighbors.,
+7:u04:IGP,
+7:u07:Nbr,
+12:u08:Neighbor,
+10:u10:node's,
+11:u11:details,
+17:u12:corresponding,
+8:u13:[rmr,
+7:u22:cor,
+8:u23:corr,
+15:uI2:[][][][][-],
+9:u00:TLVs.,
+10:u01:node's,
+11:u02:Details,
+17:u03:corresponding,
+8:u04:[RMR,
+14:u01:neighbors.,
+7:u03:IGP,
+7:u06:Nbr,
+12:u07:Neighbor,
+11:u10:details,
+17:u11:corresponding,
+8:u12:[rmr,
+7:u22:[RM,
+8:u23:[RMR,
+15:uI1:[][][][][-],
+10:u00:node's,
+11:u01:Details,
+17:u02:corresponding,
+8:u03:[RMR,
+14:u00:neighbors.,
+7:u02:IGP,
+7:u05:Nbr,
+12:u06:Neighbor,
+17:u10:corresponding,
+8:u11:[rmr,
+15:uI0:[][][][][-],
+12:uI2:[][][][],
+11:u00:Details,
+17:u01:corresponding,
+8:u02:[RMR,
+37:u08:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u01:IGP,
+7:u04:Nbr,
+12:u05:Neighbor,
+8:u10:[rmr,
+12:uI1:[][][][],
+17:u00:corresponding,
+8:u01:[RMR,
+7:u08:|MV,
+7:u00:IGP,
+7:u03:Nbr,
+12:u04:Neighbor,
+12:uI0:[][][][],
+8:u00:[RMR,
+37:u07:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u08:|SU,
+7:u02:Nbr,
+12:u03:Neighbor,
+37:u06:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u07:|MV,
+7:u01:Nbr,
+12:u02:Neighbor,
+7:u08:|M|,
+37:u14:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+37:u05:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u06:|MV,
+7:u07:|SU,
+7:u08:MV:,
+7:u00:Nbr,
+12:u01:Neighbor,
+7:u07:|M|,
+37:u13:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u14:|mv,
+20:uI2:----------------,
+37:u04:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u05:|MV,
+7:u06:|SU,
+7:u08:SS:,
+12:u00:Neighbor,
+7:u06:|M|,
+37:u12:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u13:|mv,
+7:u14:|su,
+20:uI1:----------------,
+37:u03:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u04:|MV,
+7:u05:|SU,
+7:u07:MV:,
+8:u08:(100,
+7:u05:|M|,
+13:u08:Supported,
+37:u11:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u12:|mv,
+7:u13:|su,
+6:u21:|M,
+7:u22:|MV,
+7:u23:|MV,
+20:uI0:----------------,
+37:u02:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u03:|MV,
+7:u04:|SU,
+7:u06:MV:,
+7:u07:SS:,
+8:u08:MBZ:,
+7:u04:|M|,
+13:u07:Supported,
+37:u10:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u11:|mv,
+7:u12:|su,
+7:u14:mv:,
+6:u21:|S,
+7:u22:|SU,
+7:u23:|SU,
+37:u01:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u02:|MV,
+7:u03:|SU,
+7:u05:MV:,
+7:u06:SS:,
+8:u07:(100,
+7:u08:SO:,
+7:u03:|M|,
+13:u06:Supported,
+8:u08:Must,
+7:u10:|mv,
+7:u11:|su,
+7:u13:mv:,
+7:u14:ss:,
+37:u00:+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+,
+7:u01:|MV,
+7:u02:|SU,
+7:u04:MV:,
+7:u05:SS:,
+8:u06:(100,
+8:u07:MBZ:,
+7:u08:SU:,
+7:u02:|M|,
+13:u05:Supported,
+8:u07:Must,
+7:u10:|su,
+7:u12:mv:,
+7:u13:ss:,
+8:u14:(100,
+6:u21:MV,
+7:u22:MV:,
+7:u23:MV:,
+7:u00:|MV,
+7:u01:|SU,
+7:u03:MV:,
+7:u04:SS:,
+8:u05:(100,
+8:u06:MBZ:,
+7:u07:SO:,
+7:u01:|M|,
+13:u04:Supported,
+8:u06:Must,
+13:u08:Signaling,
+7:u11:mv:,
+7:u12:ss:,
+8:u13:(100,
+8:u14:mbz:,
+6:u21:SS,
+7:u22:SS:,
+7:u23:SS:,
+9:uI2:(-;;),
+7:u00:|SU,
+7:u02:MV:,
+7:u03:SS:,
+8:u04:(100,
+8:u05:MBZ:,
+7:u06:SO:,
+7:u07:SU:,
+9:u08:Flags,
+7:u00:|M|,
+13:u03:Supported,
+8:u05:Must,
+13:u07:Signaling,
+7:u10:mv:,
+7:u11:ss:,
+8:u12:(100,
+8:u13:mbz:,
+7:u14:so:,
+6:u21:(1,
+7:u22:(10,
+8:u23:(100,
+9:uI1:(-;;),
+7:u01:MV:,
+7:u02:SS:,
+8:u03:(100,
+8:u04:MBZ:,
+7:u05:SO:,
+7:u06:SU:,
+13:u02:Supported,
+8:u04:Must,
+13:u06:Signaling,
+7:u10:ss:,
+8:u11:(100,
+8:u12:mbz:,
+7:u13:so:,
+7:u14:su:,
+6:u21:MB,
+7:u22:MBZ,
+8:u23:MBZ:,
+9:uI0:(-;;),
+9:uI2::(;;),
+7:u00:MV:,
+7:u01:SS:,
+8:u02:(100,
+8:u03:MBZ:,
+7:u04:SO:,
+7:u05:SU:,
+9:u07:Flags,
+13:u01:Supported,
+8:u03:Must,
+13:u05:Signaling,
+8:u10:(100,
+8:u11:mbz:,
+7:u12:so:,
+7:u13:su:,
+5:u14:m,
+6:u21:SO,
+7:u22:SO:,
+7:u23:SO:,
+9:uI1::(;;),
+10:uI2::(;;-),
+7:u00:SS:,
+8:u01:(100,
+8:u02:MBZ:,
+7:u03:SO:,
+7:u04:SU:,
+9:u06:Flags,
+13:u00:Supported,
+8:u02:Must,
+13:u04:Signaling,
+8:u10:mbz:,
+7:u11:so:,
+7:u12:su:,
+5:u13:m,
+9:u14:flags,
+6:u21:SU,
+7:u22:SU:,
+7:u23:SU:,
+9:uI0::(;;),
+10:uI1::(;;-),
+8:uI2::(,),
+8:u00:(100,
+8:u01:MBZ:,
+7:u02:SO:,
+7:u03:SU:,
+9:u05:Flags,
+8:u01:Must,
+13:u03:Signaling,
+7:u10:so:,
+7:u11:su:,
+5:u12:m,
+9:u13:flags,
+5:u21:M,
+5:u22:M,
+5:u23:M,
+10:uI0::(;;-),
+8:uI1::(,),
+8:u00:MBZ:,
+7:u01:SO:,
+7:u02:SU:,
+9:u04:Flags,
+7:u08:|RD,
+8:u00:Must,
+13:u02:Signaling,
+7:u10:su:,
+5:u11:m,
+9:u12:flags,
+6:u21:Fl,
+7:u22:Fla,
+8:u23:Flag,
+8:uI0::(,),
+7:u00:SO:,
+7:u01:SU:,
+9:u03:Flags,
+7:u08:MBZ,
+13:u01:Signaling,
+9:u08:|OAM|,
+5:u10:m,
+9:u11:flags,
+7:u00:SU:,
+9:u02:Flags,
+7:u07:|RD,
+13:u00:Signaling,
+9:u07:|OAM|,
+9:u10:flags,
+9:u01:Flags,
+7:u06:|RD,
+7:u07:MBZ,
+9:u06:|OAM|,
+7:u14:|rd,
+9:u00:Flags,
+7:u05:|RD,
+7:u06:MBZ,
+7:u08:RD:,
+9:u05:|OAM|,
+7:u13:|rd,
+7:u14:mbz,
+7:u04:|RD,
+7:u05:MBZ,
+8:u08:OAM:,
+9:u04:|OAM|,
+7:u12:|rd,
+7:u13:mbz,
+6:u21:|R,
+7:u22:|RD,
+7:u23:|RD,
+7:u03:|RD,
+7:u04:MBZ,
+7:u07:RD:,
+9:u03:|OAM|,
+7:u08:OAM,
+7:u11:|rd,
+7:u12:mbz,
+7:u23:MBZ,
+7:u02:|RD,
+7:u03:MBZ,
+7:u06:RD:,
+8:u07:OAM:,
+9:u02:|OAM|,
+7:u07:OAM,
+7:u10:|rd,
+7:u11:mbz,
+7:u14:rd:,
+7:u01:|RD,
+7:u02:MBZ,
+7:u05:RD:,
+8:u06:OAM:,
+9:u01:|OAM|,
+7:u06:OAM,
+7:u10:mbz,
+7:u13:rd:,
+8:u14:oam:,
+7:u00:|RD,
+7:u01:MBZ,
+7:u04:RD:,
+8:u05:OAM:,
+9:u00:|OAM|,
+7:u05:OAM,
+7:u12:rd:,
+8:u13:oam:,
+6:u21:RD,
+7:u22:RD:,
+7:u23:RD:,
+10:uI2::(;;;),
+7:u00:MBZ,
+7:u03:RD:,
+8:u04:OAM:,
+7:u04:OAM,
+7:u11:rd:,
+8:u12:oam:,
+6:u21:OA,
+7:u22:OAM,
+8:u23:OAM:,
+10:uI1::(;;;),
+7:u02:RD:,
+8:u03:OAM:,
+10:u08:value.,
+7:u03:OAM,
+7:u10:rd:,
+8:u11:oam:,
+10:uI0::(;;;),
+7:u01:RD:,
+8:u02:OAM:,
+17:u08:participating,
+7:u02:OAM,
+8:u10:oam:,
+7:u00:RD:,
+8:u01:OAM:,
+10:u07:value.,
+7:u01:OAM,
+7:u08:in,,
+12:u14:example,,
+8:u00:OAM:,
+10:u06:value.,
+17:u07:participating,
+7:u00:OAM,
+7:u07:in,,
+12:u13:example,,
+10:u14:value.,
+6:u21:Ea,
+7:u22:Eac,
+8:u23:Each,
+10:u05:value.,
+17:u06:participating,
+7:u06:in,,
+12:u12:example,,
+10:u13:value.,
+17:u14:participating,
+7:u22:exa,
+8:u23:exam,
+10:u04:value.,
+17:u05:participating,
+7:u05:in,,
+12:u11:example,,
+10:u12:value.,
+17:u13:participating,
+10:u03:value.,
+17:u04:participating,
+7:u04:in,,
+12:u10:example,,
+10:u11:value.,
+17:u12:participating,
+10:u02:value.,
+17:u03:participating,
+7:u03:in,,
+10:u10:value.,
+17:u11:participating,
+10:u01:value.,
+17:u02:participating,
+9:u08:timer,
+7:u02:in,,
+17:u10:participating,
+10:u00:value.,
+17:u01:participating,
+7:u01:in,,
+7:u08:T1;,
+17:u00:participating,
+9:u07:timer,
+7:u00:in,,
+7:u07:T1;,
+9:u06:timer,
+7:u06:T1;,
+9:u14:timer,
+9:u05:timer,
+7:u05:T1;,
+9:u13:timer,
+9:u04:timer,
+7:u04:T1;,
+9:u12:timer,
+9:u03:timer,
+7:u03:T1;,
+9:u11:timer,
+9:u02:timer,
+7:u02:T1;,
+9:u10:timer,
+9:u01:timer,
+7:u01:T1;,
+9:u00:timer,
+10:u08:phase,,
+7:u00:T1;,
+10:u07:phase,,
+10:u06:phase,,
+17:u08:readvertising,
+11:u08:highest,
+10:u14:phase,,
+10:u05:phase,,
+11:u07:highest,
+10:u13:phase,,
+10:u04:phase,,
+17:u07:readvertising,
+11:u06:highest,
+10:u12:phase,,
+6:u21:ph,
+7:u22:pha,
+8:u23:phas,
+10:u03:phase,,
+17:u06:readvertising,
+11:u08:exactly,
+11:u05:highest,
+10:u11:phase,,
+17:u14:readvertising,
+10:u02:phase,,
+17:u05:readvertising,
+11:u08:Barring,
+11:u04:highest,
+8:u08:one;,
+10:u10:phase,,
+17:u13:readvertising,
+10:u01:phase,,
+17:u04:readvertising,
+11:u07:exactly,
+11:u03:highest,
+8:u07:one;,
+12:u08:software,
+17:u12:readvertising,
+8:u23:read,
+10:u00:phase,,
+17:u03:readvertising,
+11:u06:exactly,
+11:u07:Barring,
+18:u08:announcements.,
+11:u02:highest,
+8:u06:one;,
+12:u07:software,
+17:u11:readvertising,
+11:u14:exactly,
+17:u02:readvertising,
+11:u05:exactly,
+11:u06:Barring,
+11:u08:values,,
+11:u01:highest,
+8:u05:one;,
+12:u06:software,
+17:u10:readvertising,
+11:u13:exactly,
+11:u14:barring,
+7:uI2:;,.,
+17:u01:readvertising,
+11:u04:exactly,
+11:u05:Barring,
+18:u07:announcements.,
+10:u08:second,
+11:u00:highest,
+8:u04:one;,
+12:u05:software,
+11:u12:exactly,
+11:u13:barring,
+8:u23:exac,
+7:uI1:;,.,
+17:u00:readvertising,
+11:u03:exactly,
+11:u04:Barring,
+18:u06:announcements.,
+11:u07:values,,
+8:u08:just,
+8:u03:one;,
+12:u04:software,
+10:u08:lowest,
+11:u11:exactly,
+11:u12:barring,
+18:u14:announcements.,
+7:u22:Bar,
+8:u23:Barr,
+7:uI0:;,.,
+11:u02:exactly,
+11:u03:Barring,
+18:u05:announcements.,
+11:u06:values,,
+10:u07:second,
+10:u08:master,
+8:u02:one;,
+12:u03:software,
+10:u07:lowest,
+11:u10:exactly,
+11:u11:barring,
+18:u13:announcements.,
+11:u14:values,,
+11:u01:exactly,
+11:u02:Barring,
+18:u04:announcements.,
+11:u05:values,,
+10:u06:second,
+8:u07:just,
+8:u01:one;,
+12:u02:software,
+10:u06:lowest,
+10:u08:(since,
+11:u10:barring,
+18:u12:announcements.,
+11:u13:values,,
+10:u14:second,
+11:u00:exactly,
+11:u01:Barring,
+18:u03:announcements.,
+11:u04:values,,
+10:u05:second,
+8:u06:just,
+10:u07:master,
+11:u08:master.,
+8:u00:one;,
+12:u01:software,
+10:u05:lowest,
+10:u07:(since,
+18:u11:announcements.,
+11:u12:values,,
+10:u13:second,
+8:u14:just,
+11:u00:Barring,
+18:u02:announcements.,
+11:u03:values,,
+10:u04:second,
+8:u05:just,
+10:u06:master,
+9:u08:times,
+12:u00:software,
+10:u04:lowest,
+10:u06:(since,
+18:u10:announcements.,
+11:u11:values,,
+10:u12:second,
+8:u13:just,
+10:u14:master,
+8:u23:seco,
+18:u01:announcements.,
+11:u02:values,,
+10:u03:second,
+8:u04:just,
+10:u05:master,
+11:u07:master.,
+10:u03:lowest,
+10:u05:(since,
+11:u10:values,,
+10:u11:second,
+8:u12:just,
+10:u13:master,
+5:u20:j,
+6:u21:ju,
+7:u22:jus,
+8:u23:just,
+8:uI2:(').,
+18:u00:announcements.,
+11:u01:values,,
+10:u02:second,
+8:u03:just,
+10:u04:master,
+11:u06:master.,
+9:u07:times,
+10:u02:lowest,
+10:u04:(since,
+10:u10:second,
+8:u11:just,
+10:u12:master,
+11:u14:master.,
+7:u22:mas,
+8:u23:mast,
+8:uI1:(').,
+11:u00:values,,
+10:u01:second,
+8:u02:just,
+10:u03:master,
+11:u05:master.,
+9:u06:times,
+13:u08:<------3.,
+10:u01:lowest,
+10:u03:(since,
+8:u10:just,
+10:u11:master,
+11:u13:master.,
+9:u14:times,
+8:uI0:(').,
+10:u00:second,
+8:u01:just,
+10:u02:master,
+11:u04:master.,
+9:u05:times,
+10:u00:lowest,
+10:u02:(since,
+18:u08:Anti-clockwise,
+10:u10:master,
+11:u12:master.,
+9:u13:times,
+8:u00:just,
+10:u01:master,
+11:u03:master.,
+9:u04:times,
+13:u07:<------3.,
+10:u01:(since,
+18:u07:Anti-clockwise,
+11:u11:master.,
+9:u12:times,
+10:u00:master,
+11:u02:master.,
+9:u03:times,
+13:u06:<------3.,
+10:u00:(since,
+18:u06:Anti-clockwise,
+11:u10:master.,
+9:u11:times,
+13:u14:<------3.,
+11:u01:master.,
+9:u02:times,
+13:u05:<------3.,
+18:u05:Anti-clockwise,
+9:u10:times,
+13:u13:<------3.,
+12:uI2:------.-,
+11:u00:master.,
+9:u01:times,
+13:u04:<------3.,
+18:u04:Anti-clockwise,
+10:u08:<---0.,
+13:u12:<------3.,
+6:u21:<-,
+7:u22:<--,
+8:u23:<---,
+12:uI1:------.-,
+9:u00:times,
+13:u03:<------3.,
+18:u03:Anti-clockwise,
+10:u07:<---0.,
+13:u11:<------3.,
+12:uI0:------.-,
+13:u02:<------3.,
+18:u02:Anti-clockwise,
+10:u06:<---0.,
+13:u10:<------3.,
+13:u01:<------3.,
+18:u01:Anti-clockwise,
+10:u05:<---0.,
+8:uI2:---.,
+13:u00:<------3.,
+18:u00:Anti-clockwise,
+10:u04:<---0.,
+8:uI1:---.,
+10:u03:<---0.,
+8:uI0:---.,
+10:u02:<---0.,
+11:u08:Maximal,
+10:u01:<---0.,
+11:u07:Maximal,
+10:u00:<---0.,
+11:u06:Maximal,
+11:u05:Maximal,
+11:u04:Maximal,
+11:u03:Maximal,
+11:u02:Maximal,
+10:u08:<---2.,
+11:u01:Maximal,
+10:u07:<---2.,
+11:u00:Maximal,
+10:u06:<---2.,
+13:u08:<------4.,
+10:u05:<---2.,
+10:u04:<---2.,
+13:u07:<------4.,
+10:u03:<---2.,
+13:u06:<------4.,
+10:u02:<---2.,
+13:u14:<------4.,
+13:u05:<------4.,
+10:u01:<---2.,
+13:u13:<------4.,
+11:uI2:------.,
+13:u04:<------4.,
+10:u00:<---2.,
+13:u12:<------4.,
+11:uI1:------.,
+13:u03:<------4.,
+13:u11:<------4.,
+11:uI0:------.,
+13:u02:<------4.,
+13:u10:<------4.,
+13:u01:<------4.,
+13:u00:<------4.,
+18:u08:Identification,
+10:u08:Phase.,
+18:u07:Identification,
+7:u08:M's,
+10:u07:Phase.,
+18:u06:Identification,
+10:u08:passes,
+10:u06:Phase.,
+18:u14:identification,
+8:uI2:(,),,
+18:u05:Identification,
+7:u07:M's,
+10:u05:Phase.,
+18:u13:identification,
+8:uI1:(,),,
+18:u04:Identification,
+7:u06:M's,
+10:u07:passes,
+10:u04:Phase.,
+18:u12:identification,
+7:u14:m's,
+6:u21:Id,
+7:u22:Ide,
+8:u23:Iden,
+8:uI0:(,),,
+18:u03:Identification,
+7:u05:M's,
+10:u06:passes,
+13:u08:neighbor.,
+10:u03:Phase.,
+18:u11:identification,
+7:u13:m's,
+10:u14:passes,
+18:u02:Identification,
+7:u04:M's,
+10:u05:passes,
+10:u02:Phase.,
+18:u10:identification,
+7:u12:m's,
+10:u13:passes,
+6:u21:M',
+7:u22:M's,
+7:u23:M's,
+18:u01:Identification,
+7:u03:M's,
+10:u04:passes,
+13:u07:neighbor.,
+12:u08:trivial.,
+10:u01:Phase.,
+7:u11:m's,
+10:u12:passes,
+7:u22:pas,
+8:u23:pass,
+18:u00:Identification,
+7:u02:M's,
+10:u03:passes,
+13:u06:neighbor.,
+13:u08:completed,
+10:u00:Phase.,
+7:u10:m's,
+10:u11:passes,
+13:u14:neighbor.,
+7:u01:M's,
+10:u02:passes,
+13:u05:neighbor.,
+12:u07:trivial.,
+9:u08:TLVs),
+10:u10:passes,
+13:u13:neighbor.,
+7:u00:M's,
+10:u01:passes,
+13:u04:neighbor.,
+12:u06:trivial.,
+13:u07:completed,
+13:u12:neighbor.,
+12:u14:trivial.,
+10:u00:passes,
+13:u03:neighbor.,
+12:u05:trivial.,
+13:u06:completed,
+9:u07:TLVs),
+8:u08:TLVs,
+13:u11:neighbor.,
+12:u13:trivial.,
+13:u14:completed,
+13:u02:neighbor.,
+12:u04:trivial.,
+13:u05:completed,
+9:u06:TLVs),
+11:u08:inserts,
+13:u10:neighbor.,
+12:u12:trivial.,
+13:u13:completed,
+9:u14:tlvs),
+7:u22:tri,
+8:u23:triv,
+13:u01:neighbor.,
+12:u03:trivial.,
+13:u04:completed,
+9:u05:TLVs),
+8:u07:TLVs,
+12:u11:trivial.,
+13:u12:completed,
+9:u13:tlvs),
+13:u00:neighbor.,
+12:u02:trivial.,
+13:u03:completed,
+9:u04:TLVs),
+8:u06:TLVs,
+11:u07:inserts,
+13:u08:connected,
+9:u08:Then,,
+12:u10:trivial.,
+13:u11:completed,
+9:u12:tlvs),
+8:u14:tlvs,
+12:u01:trivial.,
+13:u02:completed,
+9:u03:TLVs),
+8:u05:TLVs,
+11:u06:inserts,
+9:u07:Then,,
+13:u10:completed,
+9:u11:tlvs),
+8:u13:tlvs,
+11:u14:inserts,
+12:u00:trivial.,
+13:u01:completed,
+9:u02:TLVs),
+8:u04:TLVs,
+11:u05:inserts,
+13:u07:connected,
+12:u08:"express,
+9:u06:Then,,
+9:u10:tlvs),
+8:u12:tlvs,
+11:u13:inserts,
+13:u00:completed,
+9:u01:TLVs),
+8:u03:TLVs,
+11:u04:inserts,
+13:u06:connected,
+9:u08:Here,,
+9:u05:Then,,
+10:u08:link".,
+8:u11:tlvs,
+11:u12:inserts,
+13:u14:connected,
+8:u23:inse,
+7:uI2:.,.,
+9:u00:TLVs),
+8:u02:TLVs,
+11:u03:inserts,
+13:u05:connected,
+12:u07:"express,
+9:u04:Then,,
+10:u07:link".,
+8:u10:tlvs,
+11:u11:inserts,
+13:u13:connected,
+7:uI1:.,.,
+8:u01:TLVs,
+11:u02:inserts,
+13:u04:connected,
+12:u06:"express,
+9:u07:Here,,
+9:u03:Then,,
+10:u06:link".,
+11:u10:inserts,
+13:u12:connected,
+12:u14:"express,
+7:uI0:.,.,
+8:u00:TLVs,
+11:u01:inserts,
+13:u03:connected,
+12:u05:"express,
+9:u06:Here,,
+9:u08:(Step,
+9:u02:Then,,
+10:u05:link".,
+9:u08:picks,
+13:u11:connected,
+12:u13:"express,
+9:u14:here,,
+11:u00:inserts,
+13:u02:connected,
+12:u04:"express,
+9:u05:Here,,
+9:u01:Then,,
+10:u04:link".,
+9:u07:picks,
+7:u08:3).,
+13:u10:connected,
+12:u12:"express,
+9:u13:here,,
+8:u23:"exp,
+7:uI2:,;,,
+13:u01:connected,
+12:u03:"express,
+9:u04:Here,,
+9:u07:(Step,
+9:u00:Then,,
+10:u03:link".,
+9:u06:picks,
+7:u07:3).,
+12:u11:"express,
+9:u12:here,,
+6:u21:He,
+7:u22:Her,
+8:u23:Here,
+7:uI1:,;,,
+8:uI2:.().,
+13:u00:connected,
+12:u02:"express,
+9:u03:Here,,
+9:u06:(Step,
+10:u02:link".,
+9:u05:picks,
+7:u06:3).,
+8:u08:main,
+12:u10:"express,
+9:u11:here,,
+9:u14:(step,
+7:uI0:,;,,
+8:uI1:.().,
+12:u01:"express,
+9:u02:Here,,
+9:u05:(Step,
+10:u01:link".,
+9:u04:picks,
+7:u05:3).,
+8:u07:main,
+9:u10:here,,
+9:u13:(step,
+8:uI0:.().,
+9:uI2:().,.,
+12:u00:"express,
+9:u01:Here,,
+9:u04:(Step,
+10:u00:link".,
+9:u03:picks,
+7:u04:3).,
+8:u06:main,
+9:u12:(step,
+7:u22:(St,
+8:u23:(Ste,
+9:uI1:().,.,
+9:u00:Here,,
+9:u03:(Step,
+9:u02:picks,
+7:u03:3).,
+8:u05:main,
+9:u11:(step,
+9:uI0:().,.,
+9:u02:(Step,
+9:u01:picks,
+7:u02:3).,
+8:u04:main,
+9:u10:(step,
+9:u01:(Step,
+9:u00:picks,
+7:u01:3).,
+8:u03:main,
+9:u00:(Step,
+12:u08:changed,,
+7:u00:3).,
+8:u02:main,
+11:u08:perturb,
+11:u08:change.,
+8:u01:main,
+11:u07:perturb,
+12:u07:changed,,
+13:u08:advantage,
+8:u00:main,
+11:u06:perturb,
+8:u08:Link,
+12:u06:changed,,
+11:u07:change.,
+11:u05:perturb,
+8:u07:Link,
+12:u14:changed,,
+7:uI2:.,',
+12:u05:changed,,
+11:u06:change.,
+13:u07:advantage,
+10:u08:(until,
+11:u04:perturb,
+8:u06:Link,
+12:u13:changed,,
+11:u14:change.,
+7:uI1:.,',
+12:u04:changed,,
+11:u05:change.,
+13:u06:advantage,
+11:u03:perturb,
+8:u05:Link,
+12:u12:changed,,
+11:u13:change.,
+13:u14:advantage,
+7:uI0:.,',
+6:uI2:.;,
+12:u03:changed,,
+11:u04:change.,
+13:u05:advantage,
+10:u07:(until,
+11:u02:perturb,
+8:u04:Link,
+11:u08:removal,
+12:u11:changed,,
+11:u12:change.,
+13:u13:advantage,
+6:uI1:.;,
+12:u02:changed,,
+11:u03:change.,
+13:u04:advantage,
+10:u06:(until,
+11:u01:perturb,
+8:u03:Link,
+11:u07:removal,
+12:u10:changed,,
+11:u11:change.,
+13:u12:advantage,
+10:u14:(until,
+7:u22:adv,
+8:u23:adva,
+6:uI0:.;,
+12:u01:changed,,
+11:u02:change.,
+13:u03:advantage,
+10:u05:(until,
+11:u00:perturb,
+8:u02:Link,
+11:u06:removal,
+11:u10:change.,
+13:u11:advantage,
+10:u13:(until,
+12:u00:changed,,
+11:u01:change.,
+13:u02:advantage,
+10:u04:(until,
+8:u01:Link,
+11:u05:removal,
+13:u10:advantage,
+10:u12:(until,
+6:u21:(u,
+7:u22:(un,
+8:u23:(unt,
+11:u00:change.,
+13:u01:advantage,
+10:u03:(until,
+8:u00:Link,
+11:u04:removal,
+10:u11:(until,
+13:u00:advantage,
+10:u02:(until,
+11:u03:removal,
+10:u10:(until,
+10:u01:(until,
+11:u02:removal,
+10:u00:(until,
+11:u01:removal,
+11:u00:removal,
+10:u14:simple,
+10:u13:simple,
+10:u12:simple,
+7:u22:sim,
+8:u23:simp,
+10:u11:simple,
+9:u08:level,
+10:u10:simple,
+8:u08:both,
+9:u07:level,
+9:u06:level,
+8:u07:both,
+9:u14:level,
+9:u05:level,
+8:u06:both,
+7:u08:BFD,
+8:u08:LSP.,
+9:u13:level,
+8:u14:both,
+9:u04:level,
+8:u05:both,
+8:u07:LSP.,
+9:u12:level,
+8:u13:both,
+7:u22:lev,
+8:u23:leve,
+9:u03:level,
+8:u04:both,
+7:u07:BFD,
+8:u06:LSP.,
+9:u11:level,
+8:u12:both,
+6:u21:bo,
+7:u22:bot,
+8:u23:both,
+9:u02:level,
+8:u03:both,
+7:u06:BFD,
+8:u05:LSP.,
+9:u10:level,
+8:u11:both,
+7:u14:bfd,
+8:uI2:.-;,,
+9:u01:level,
+8:u02:both,
+7:u05:BFD,
+8:u04:LSP.,
+8:u10:both,
+7:u13:bfd,
+8:uI1:.-;,,
+9:u00:level,
+8:u01:both,
+7:u04:BFD,
+15:u08:permanently,
+8:u03:LSP.,
+7:u12:bfd,
+7:u22:BFD,
+7:u23:BFD,
+8:uI0:.-;,,
+8:u00:both,
+7:u03:BFD,
+8:u02:LSP.,
+11:u08:missing,
+7:u11:bfd,
+7:u02:BFD,
+15:u07:permanently,
+10:u08:Either,
+8:u01:LSP.,
+11:u07:missing,
+7:u10:bfd,
+7:u01:BFD,
+15:u06:permanently,
+8:u00:LSP.,
+11:u06:missing,
+8:u08:way,,
+15:u14:permanently,
+7:u00:BFD,
+15:u05:permanently,
+10:u07:Either,
+11:u05:missing,
+8:u07:way,,
+15:u13:permanently,
+11:u14:because,
+15:u04:permanently,
+10:u06:Either,
+11:u04:missing,
+8:u06:way,,
+15:u12:permanently,
+11:u13:because,
+10:u14:either,
+8:u23:perm,
+15:u03:permanently,
+10:u05:Either,
+11:u03:missing,
+8:u05:way,,
+9:u08:topic,
+15:u11:permanently,
+11:u12:because,
+10:u13:either,
+7:u22:bec,
+8:u23:beca,
+15:u02:permanently,
+10:u04:Either,
+11:u02:missing,
+8:u04:way,,
+9:u07:topic,
+15:u10:permanently,
+11:u11:because,
+10:u12:either,
+6:u21:Ei,
+7:u22:Eit,
+8:u23:Eith,
+9:uI2:"-".-,
+15:u01:permanently,
+10:u03:Either,
+9:u08:Let's,
+11:u01:missing,
+8:u03:way,,
+9:u06:topic,
+11:u10:because,
+10:u11:either,
+9:uI1:"-".-,
+15:u00:permanently,
+10:u02:Either,
+8:u08:"hub,
+11:u00:missing,
+8:u02:way,,
+9:u05:topic,
+10:u10:either,
+9:uI0:"-".-,
+10:u01:Either,
+9:u07:Let's,
+8:u01:way,,
+9:u04:topic,
+12:u08:node(s)",
+10:u00:Either,
+9:u06:Let's,
+8:u07:"hub,
+8:u00:way,,
+9:u03:topic,
+12:u07:node(s)",
+9:u14:let's,
+9:u05:Let's,
+8:u06:"hub,
+9:u02:topic,
+12:u06:node(s)",
+9:u13:let's,
+8:u14:"hub,
+7:uI2:'(),
+9:u04:Let's,
+8:u05:"hub,
+6:u08:H1,
+9:u01:topic,
+12:u05:node(s)",
+9:u12:let's,
+8:u13:"hub,
+6:u21:Le,
+7:u22:Let,
+8:u23:Let',
+7:uI1:'(),
+12:uI2:"()"(,.),
+9:u03:Let's,
+8:u04:"hub,
+9:u00:topic,
+12:u04:node(s)",
+9:u11:let's,
+8:u12:"hub,
+6:u21:"h,
+7:u22:"hu,
+8:u23:"hub,
+7:uI0:'(),
+12:uI1:"()"(,.),
+9:u02:Let's,
+8:u03:"hub,
+6:u07:H1,
+11:u08:prefers,
+12:u03:node(s)",
+9:u10:let's,
+8:u11:"hub,
+12:uI0:"()"(,.),
+9:u01:Let's,
+8:u02:"hub,
+6:u06:H1,
+8:u08:LSP,,
+12:u02:node(s)",
+7:u08:H1;,
+8:u10:"hub,
+6:u14:h1,
+9:uI2:,,(-),
+9:u00:Let's,
+8:u01:"hub,
+6:u05:H1,
+11:u07:prefers,
+12:u01:node(s)",
+7:u07:H1;,
+6:u13:h1,
+9:u14:would,
+9:uI1:,,(-),
+7:uI2:();,
+8:u00:"hub,
+6:u04:H1,
+11:u06:prefers,
+8:u07:LSP,,
+12:u00:node(s)",
+7:u06:H1;,
+6:u12:h1,
+9:u13:would,
+11:u14:prefers,
+6:u21:H1,
+6:u22:H1,
+6:u23:H1,
+9:uI0:,,(-),
+7:uI1:();,
+6:u03:H1,
+11:u05:prefers,
+8:u06:LSP,,
+11:u08:chosen.,
+7:u05:H1;,
+6:u11:h1,
+9:u12:would,
+11:u13:prefers,
+8:u14:lsp,,
+7:u22:wou,
+8:u23:woul,
+7:uI0:();,
+6:u02:H1,
+11:u04:prefers,
+8:u05:LSP,,
+7:u04:H1;,
+15:u08:Thereafter,,
+6:u10:h1,
+9:u11:would,
+11:u12:prefers,
+8:u13:lsp,,
+8:u23:pref,
+6:u01:H1,
+11:u03:prefers,
+8:u04:LSP,,
+11:u07:chosen.,
+7:u03:H1;,
+15:u07:Thereafter,,
+9:u10:would,
+11:u11:prefers,
+8:u12:lsp,,
+8:u23:LSP,,
+6:u00:H1,
+11:u02:prefers,
+8:u03:LSP,,
+11:u06:chosen.,
+7:u02:H1;,
+15:u06:Thereafter,,
+11:u10:prefers,
+8:u11:lsp,,
+11:u14:chosen.,
+7:uI2:,,',
+11:u01:prefers,
+8:u02:LSP,,
+11:u05:chosen.,
+7:u01:H1;,
+15:u05:Thereafter,,
+8:u10:lsp,,
+11:u13:chosen.,
+7:uI1:,,',
+11:u00:prefers,
+8:u01:LSP,,
+11:u04:chosen.,
+7:u00:H1;,
+15:u04:Thereafter,,
+11:u12:chosen.,
+8:u23:chos,
+7:uI0:,,',
+8:u00:LSP,,
+11:u03:chosen.,
+15:u03:Thereafter,,
+11:u11:chosen.,
+11:u02:chosen.,
+15:u02:Thereafter,,
+11:u10:chosen.,
+11:u01:chosen.,
+15:u01:Thereafter,,
+11:u00:chosen.,
+10:u08:useful,
+15:u00:Thereafter,,
+13:u08:addressed,
+11:u08:problem,
+10:u07:useful,
+11:u07:problem,
+10:u06:useful,
+13:u07:addressed,
+11:u06:problem,
+10:u14:useful,
+10:u05:useful,
+13:u06:addressed,
+11:u05:problem,
+10:u13:useful,
+13:u14:addressed,
+10:u04:useful,
+13:u05:addressed,
+11:u04:problem,
+10:u12:useful,
+13:u13:addressed,
+8:u23:usef,
+10:u03:useful,
+13:u04:addressed,
+11:u03:problem,
+10:u11:useful,
+13:u12:addressed,
+8:u23:addr,
+10:u02:useful,
+13:u03:addressed,
+11:u02:problem,
+9:u08:plane,
+10:u10:useful,
+13:u11:addressed,
+9:uI2:-,,-,,
+10:u01:useful,
+13:u02:addressed,
+13:u08:semantics,
+11:u01:problem,
+9:u07:plane,
+12:u08:messages,
+13:u10:addressed,
+9:uI1:-,,-,,
+10:u00:useful,
+13:u01:addressed,
+11:u00:problem,
+9:u06:plane,
+12:u07:messages,
+9:uI0:-,,-,,
+13:u00:addressed,
+13:u07:semantics,
+9:u05:plane,
+12:u06:messages,
+6:u22:do,
+6:u23:do,
+13:u06:semantics,
+12:u08:networks,
+9:u04:plane,
+12:u05:messages,
+10:u08:thanks,
+13:u14:semantics,
+13:u05:semantics,
+10:u08:notion,
+9:u03:plane,
+12:u04:messages,
+10:u07:thanks,
+13:u13:semantics,
+13:u04:semantics,
+12:u07:networks,
+9:u02:plane,
+12:u03:messages,
+10:u06:thanks,
+13:u12:semantics,
+8:u14:many,
+7:u22:sem,
+8:u23:sema,
+13:u03:semantics,
+12:u06:networks,
+10:u07:notion,
+9:u08:There,
+9:u01:plane,
+12:u02:messages,
+10:u05:thanks,
+13:u11:semantics,
+8:u13:many,
+12:u14:networks,
+13:u02:semantics,
+12:u05:networks,
+10:u06:notion,
+9:u00:plane,
+12:u01:messages,
+10:u04:thanks,
+13:u10:semantics,
+8:u12:many,
+12:u13:networks,
+10:u14:notion,
+7:u22:Man,
+8:u23:Many,
+13:u01:semantics,
+12:u04:networks,
+10:u05:notion,
+9:u07:There,
+12:u00:messages,
+10:u03:thanks,
+8:u11:many,
+12:u12:networks,
+10:u13:notion,
+7:u22:net,
+8:u23:netw,
+13:u00:semantics,
+12:u03:networks,
+10:u04:notion,
+9:u06:There,
+10:u02:thanks,
+8:u10:many,
+12:u11:networks,
+10:u12:notion,
+9:u14:there,
+8:u23:noti,
+12:u02:networks,
+10:u03:notion,
+9:u05:There,
+10:u01:thanks,
+12:u10:networks,
+10:u11:notion,
+9:u13:there,
+12:u01:networks,
+10:u02:notion,
+9:u04:There,
+10:u00:thanks,
+10:u10:notion,
+9:u12:there,
+8:u23:Ther,
+12:u00:networks,
+10:u01:notion,
+9:u03:There,
+9:u11:there,
+10:u00:notion,
+9:u02:There,
+9:u10:there,
+9:u01:There,
+30:u08:[I-D.ietf-mpls-rfc4379bis],
+9:u00:There,
+13:u08:Kompella,,
+30:u07:[I-D.ietf-mpls-rfc4379bis],
+11:u08:Aldrin,,
+7:u08:K.,,
+30:u06:[I-D.ietf-mpls-rfc4379bis],
+13:u07:Kompella,,
+12:u08:Switched,
+7:u07:K.,,
+30:u14:[i-d.ietf-mpls-rfc4379bis],
+30:u05:[I-D.ietf-mpls-rfc4379bis],
+13:u06:Kompella,,
+11:u07:Aldrin,,
+17:u08:rfc4379bis-09,
+7:u06:K.,,
+10:u08:(MPLS),
+30:u13:[i-d.ietf-mpls-rfc4379bis],
+13:u14:kompella,,
+30:u04:[I-D.ietf-mpls-rfc4379bis],
+13:u05:Kompella,,
+11:u06:Aldrin,,
+12:u07:Switched,
+13:u08:[RFC3209],
+7:u05:K.,,
+10:u07:(MPLS),
+30:u12:[i-d.ietf-mpls-rfc4379bis],
+13:u13:kompella,,
+11:u14:aldrin,,
+16:uI2:,.,,.,,.,,.,,
+30:u03:[I-D.ietf-mpls-rfc4379bis],
+13:u04:Kompella,,
+11:u05:Aldrin,,
+12:u06:Switched,
+17:u07:rfc4379bis-09,
+7:u04:K.,,
+10:u06:(MPLS),
+12:u08:Awduche,,
+30:u11:[i-d.ietf-mpls-rfc4379bis],
+13:u12:kompella,,
+11:u13:aldrin,,
+12:u14:switched,
+16:uI1:,.,,.,,.,,.,,
+11:uI2:,.,.,"-,
+30:u02:[I-D.ietf-mpls-rfc4379bis],
+13:u03:Kompella,,
+11:u04:Aldrin,,
+12:u05:Switched,
+17:u06:rfc4379bis-09,
+13:u07:[RFC3209],
+13:u08:Tunnels",,
+7:u03:K.,,
+10:u05:(MPLS),
+12:u07:Awduche,,
+6:u08:G.,
+30:u10:[i-d.ietf-mpls-rfc4379bis],
+13:u11:kompella,,
+11:u12:aldrin,,
+12:u13:switched,
+17:u14:rfc4379bis-09,
+7:u22:Ald,
+8:u23:Aldr,
+16:uI0:,.,,.,,.,,.,,
+11:uI1:,.,.,"-,
+11:uI2:()",---,
+30:u01:[I-D.ietf-mpls-rfc4379bis],
+13:u02:Kompella,,
+11:u03:Aldrin,,
+12:u04:Switched,
+17:u05:rfc4379bis-09,
+13:u06:[RFC3209],
+46:u08:.,
+7:u02:K.,,
+10:u04:(MPLS),
+12:u06:Awduche,,
+6:u07:G.,
+13:u10:kompella,,
+11:u11:aldrin,,
+12:u12:switched,
+17:u13:rfc4379bis-09,
+13:u14:[rfc3209],
+6:u21:Sw,
+7:u22:Swi,
+8:u23:Swit,
+11:uI0:,.,.,"-,
+11:uI1:()",---,
+30:u00:[I-D.ietf-mpls-rfc4379bis],
+13:u01:Kompella,,
+11:u02:Aldrin,,
+12:u03:Switched,
+17:u04:rfc4379bis-09,
+13:u05:[RFC3209],
+13:u07:Tunnels",,
+13:u08:[RFC3630],
+7:u01:K.,,
+10:u03:(MPLS),
+12:u05:Awduche,,
+6:u06:G.,
+11:u10:aldrin,,
+12:u11:switched,
+17:u12:rfc4379bis-09,
+13:u13:[rfc3209],
+6:u21:rf,
+7:u22:rfc,
+8:u23:rfc4,
+11:uI0:()",---,
+21:uI2:[],.,,.,,.,,.,,.,,
+13:u00:Kompella,,
+11:u01:Aldrin,,
+12:u02:Switched,
+17:u03:rfc4379bis-09,
+13:u04:[RFC3209],
+13:u06:Tunnels",,
+46:u07:.,
+8:u08:(TE),
+7:u00:K.,,
+10:u02:(MPLS),
+12:u04:Awduche,,
+9:u08:Katz,,
+12:u10:switched,
+17:u11:rfc4379bis-09,
+13:u12:[rfc3209],
+13:u14:tunnels",,
+21:uI1:[],.,,.,,.,,.,,.,,
+9:uI2:.,"-:,
+11:u00:Aldrin,,
+12:u01:Switched,
+17:u02:rfc4379bis-09,
+13:u03:[RFC3209],
+13:u05:Tunnels",,
+46:u06:.,
+13:u07:[RFC3630],
+10:u01:(MPLS),
+12:u03:Awduche,,
+9:u07:Katz,,
+14:u08:Extensions,
+17:u10:rfc4379bis-09,
+13:u11:[rfc3209],
+13:u13:tunnels",,
+46:u14:.,
+21:uI0:[],.,,.,,.,,.,,.,,
+9:uI1:.,"-:,
+12:u00:Switched,
+17:u01:rfc4379bis-09,
+13:u02:[RFC3209],
+13:u04:Tunnels",,
+46:u05:.,
+13:u06:[RFC3630],
+8:u07:(TE),
+46:u08: