Misc cleanup
diff --git a/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerIRI.java b/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerIRI.java
index c2c2618..2ff5ffc 100644
--- a/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerIRI.java
+++ b/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerIRI.java
@@ -45,7 +45,7 @@
         this.handler = handler ;
         this.iriFactory = iriFactory ;
     }
-    
+
     @Override
     public boolean check(Node node, long line, long col)
     { return node.isURI() && checkURI(node, line, col) ; }
@@ -77,23 +77,23 @@
      *  Assumes error handler throws exceptions on errors if needbe
      *  @param iri  IRI to check
      *  @param errorHandler The error handler to call on each warning or error.
-     *   
+     *
      */
     public static void iriViolations(IRI iri, ErrorHandler errorHandler) {
         iriViolations(iri, errorHandler, -1L, -1L) ;
     }
-    
+
     /** Process violations on an IRI
      *  Calls the errorhandler on all errors and warnings (as warning).
      *  Assumes error handler throws exceptions on errors if needbe
      *  @param iri  IRI to check
      *  @param errorHandler The error handler to call on each warning or error.
-     *   
+     *
      */
     public static void iriViolations(IRI iri, ErrorHandler errorHandler, long line, long col) {
         iriViolations(iri, errorHandler, false, true, line, col) ;
     }
-    
+
     /** Process violations on an IRI
      *  Calls the errorhandler on all errors and warnings (as warning).
      *  Assumes error handler throws exceptions on errors if needbe
@@ -118,10 +118,10 @@
 
     /** Process violations on an IRI
      *  Calls the errorhandler on all errors and warnings (as warning).
-     *  Assumes error handler throws exceptions on errors if needbe 
+     *  Assumes error handler throws exceptions on errors if needbe
      */
-    public static void iriViolations(IRI iri, ErrorHandler errorHandler, 
-                                     boolean allowRelativeIRIs, 
+    public static void iriViolations(IRI iri, ErrorHandler errorHandler,
+                                     boolean allowRelativeIRIs,
                                      boolean includeIRIwarnings,
                                      long line, long col) {
         if ( !allowRelativeIRIs && iri.isRelative() )
@@ -156,8 +156,8 @@
                 if ( isError ) {
                     errorSeen = true ;
                     if ( vError == null )
-                                         // Remember first error
-                                         vError = v ;
+                        // Remember first error
+                        vError = v ;
                 } else {
                     warningSeen = true ;
                     if ( vWarning == null )
@@ -170,24 +170,24 @@
                 // Ideally, we might want to output all messages relating to this IRI
                 // then cause the error or continue.
                 // But that's tricky given the current errorhandler architecture.
-                
+
 //                // Put out warnings for all IRI issues - later, exception for errors.
 //                if (v.getViolationCode() == ViolationCodes.REQUIRED_COMPONENT_MISSING &&
 //                    v.getComponent() == IRIComponents.SCHEME)
 //                {
 //                    if (! allowRelativeIRIs )
 //                        handler.error("Relative URIs are not permitted in RDF: <"+iriStr+">", line, col);
-//                } 
+//                }
 //                else
                 {
                     if ( isError )
-                        // IRI errors are warning at the level of parsing - they got through syntax checks.  
+                        // IRI errors are warning at the level of parsing - they got through syntax checks.
                         errorHandler.warning("Bad IRI: "+msg, line, col);
                     else
                         errorHandler.warning("Not advised IRI: "+msg, line, col);
                 }
             }
-            
+
 //            // and report our choosen error.
 //            if ( errorSeen || (warningsAreErrors && warningSeen) )
 //            {
diff --git a/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerLiterals.java b/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerLiterals.java
index 8fc59b6..821689d 100644
--- a/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerLiterals.java
+++ b/jena-arq/src/main/java/org/apache/jena/riot/checker/CheckerLiterals.java
@@ -32,7 +32,7 @@
     // A flag to enable the test suite to read bad data.
     public static boolean WarnOnBadLiterals = true ;
 
-    private ErrorHandler  handler ;
+    private ErrorHandler handler ;
 
     public CheckerLiterals(ErrorHandler handler) {
         this.handler = handler ;
@@ -69,8 +69,7 @@
 
         boolean hasLang = lang != null && !lang.equals("") ;
         if ( !hasLang ) {
-            // Datatype check (and RDF 1.0 simpl literals are always well
-            // formed)
+            // Datatype check (and RDF 1.0 simple literals are always well formed)
             if ( datatype != null )
                 return validateByDatatype(lexicalForm, datatype, handler, line, col) ;
             return true ;
@@ -96,10 +95,10 @@
         }
         return true ;
     }
-    
+
     // Whitespace.
     // XSD allows whitespace before and after the lexical forms of a literal but not insiode.
-    // Jena handles this correctly. 
+    // Jena handles this correctly.
 
     protected static boolean validateByDatatype(String lexicalForm, RDFDatatype datatype, ErrorHandler handler, long line, long col) {
 //        if ( SysRIOT.StrictXSDLexicialForms )
@@ -129,7 +128,7 @@
         }
         return true ;
     }
-    
+
     private static String xsdDatatypeName(RDFDatatype datatype) {
         return "XSD "+SplitIRI.localname(datatype.getURI());
     }
diff --git a/jena-arq/src/main/java/org/apache/jena/riot/system/IRIResolver.java b/jena-arq/src/main/java/org/apache/jena/riot/system/IRIResolver.java
index 3ab2625..c46a3e8 100644
--- a/jena-arq/src/main/java/org/apache/jena/riot/system/IRIResolver.java
+++ b/jena-arq/src/main/java/org/apache/jena/riot/system/IRIResolver.java
@@ -37,7 +37,7 @@
 public abstract class IRIResolver
 {
     private static boolean         showExceptions    = true;
-    
+
     private static final boolean   ShowResolverSetup = false;
 
     private static final IRIFactory iriFactoryInst = new IRIFactory();
@@ -56,12 +56,12 @@
             System.out.println("---- Default settings ----");
             printSetting(iriFactoryInst);
         }
-        
+
         // Accept any scheme.
         setErrorWarning(iriFactoryInst, ViolationCodes.UNREGISTERED_IANA_SCHEME, false, false);
-        
+
         // These are a warning from jena-iri motivated by problems in RDF/XML and also internal processing by IRI
-        // (IRI.relativize).  
+        // (IRI.relativize).
         // The IRI is valid and does correct resolve when relative.
         setErrorWarning(iriFactoryInst, ViolationCodes.NON_INITIAL_DOT_SEGMENT, false, false);
 
@@ -69,10 +69,10 @@
         // setErrorWarning(iriFactory, ViolationCodes.LOWERCASE_PREFERRED, false, false);
         // setErrorWarning(iriFactory, ViolationCodes.PERCENT_ENCODING_SHOULD_BE_UPPERCASE, false, false);
         // setErrorWarning(iriFactory, ViolationCodes.SCHEME_PATTERN_MATCH_FAILED, false, false);
-        
+
         // NFC tests are not well understood by general developers and these cause confusion.
         // See JENA-864
-        
+
         // NFC is in RDF 1.1 so do test for that.
         // https://www.w3.org/TR/rdf11-concepts/#section-IRIs
         // Leave switched on as a warning.
@@ -80,29 +80,22 @@
 
         // NFKC is not mentioned in RDF 1.1. Switch off.
         setErrorWarning(iriFactoryInst, ViolationCodes.NOT_NFKC, false, false);
-        
-        // ** Applies to various unicode blocks.
-        // Don't apply these tests.
-        setErrorWarning(iriFactoryInst, ViolationCodes.COMPATIBILITY_CHARACTER, false, false);
 
-        // This causes test failures.
-        // The tests catch warnings and a warning is expected.
-        // testing/RIOT/Lang/TurtleStd/turtle-eval-bad-02.ttl and 03 and TriG
-        //   > as \u003C  and < \u003E 
-        // Default is error=true, warning=false.
-        // Test pass with error=false, warning=true.
-        // setErrorWarning(iriFactory, ViolationCodes.UNWISE_CHARACTER, false, false);
+        // ** Applies to various unicode blocks.
+        setErrorWarning(iriFactoryInst, ViolationCodes.COMPATIBILITY_CHARACTER, false, false);
         setErrorWarning(iriFactoryInst, ViolationCodes.UNDEFINED_UNICODE_CHARACTER, false, false);
+        // The set of legal characters depends on the Java version.
+        // If not set, this causes test failures in Turtle and Trig eval tests.
+        setErrorWarning(iriFactoryInst, ViolationCodes.UNASSIGNED_UNICODE_CHARACTER, false, false);
 
         if ( ShowResolverSetup ) {
             System.out.println("---- After initialization ----");
             printSetting(iriFactoryInst);
         }
-
     }
-    
+
     // ---- Initialization support
-    
+
     /** Set the error/warning state of a violation code.
      * @param factory   IRIFactory
      * @param code      ViolationCodes constant
@@ -113,7 +106,7 @@
         factory.setIsWarning(code, isWarning);
         factory.setIsError(code, isError);
     }
-    
+
     private static void printSetting(IRIFactory factory) {
         PrintStream ps = System.out;
         printErrorWarning(ps, factory, ViolationCodes.UNREGISTERED_IANA_SCHEME);
@@ -122,24 +115,25 @@
         printErrorWarning(ps, factory, ViolationCodes.NOT_NFKC);
         printErrorWarning(ps, factory, ViolationCodes.UNWISE_CHARACTER);
         printErrorWarning(ps, factory, ViolationCodes.UNDEFINED_UNICODE_CHARACTER);
+        printErrorWarning(ps, factory, ViolationCodes.UNASSIGNED_UNICODE_CHARACTER);
         printErrorWarning(ps, factory, ViolationCodes.COMPATIBILITY_CHARACTER);
         printErrorWarning(ps, factory, ViolationCodes.LOWERCASE_PREFERRED);
         printErrorWarning(ps, factory, ViolationCodes.PERCENT_ENCODING_SHOULD_BE_UPPERCASE);
         printErrorWarning(ps, factory, ViolationCodes.SCHEME_PATTERN_MATCH_FAILED);
         ps.println();
     }
-    
+
     private static void printErrorWarning(PrintStream ps, IRIFactory factory, int code) {
         String x = PatternCompiler.errorCodeName(code);
         ps.printf("%-40s : E:%-5s W:%-5s\n", x, factory.isError(code), factory.isWarning(code));
     }
 
     // ---- System-wide IRI Factory.
-    
+
     /** The IRI checker setup, focused on parsing and languages.
-     *  This is a clean version of jena-iri {@link IRIFactory#iriImplementation()} 
+     *  This is a clean version of jena-iri {@link IRIFactory#iriImplementation()}
      *  modified to allow unregistered schemes and allow {@code <file:relative>} IRIs.
-     *  
+     *
      *  @see IRIFactory
      */
     public static IRIFactory iriFactory() {
@@ -147,7 +141,7 @@
     }
 
     // ---- System-wide operations.
-    
+
     /** Check an IRI string (does not resolve it) */
     public static boolean checkIRI(String iriStr) {
         IRI iri = parseIRI(iriStr);
@@ -176,7 +170,7 @@
 
     // The global resolver may be accessed by multiple threads
     // Other resolvers are not thread safe.
-    
+
     private static IRIResolver globalResolver;
 
     /**
@@ -197,7 +191,7 @@
     /**
      * Turn a filename into a well-formed file: URL relative to the working
      * directory.
-     * 
+     *
      * @param filename
      * @return String The filename as an absolute URL
      */
@@ -213,7 +207,7 @@
     /**
      * Resolve a URI against a base. If baseStr is a relative file IRI
      * then it is first resolved against the current working directory.
-     * 
+     *
      * @param relStr
      * @param baseStr
      *            Can be null if relStr is absolute
@@ -227,7 +221,7 @@
 
     /**
      * Resolve a URI against a base.
-     * 
+     *
      * @param relStr
      * @param baseStr
      *            Can be null if relStr is absolute
@@ -243,7 +237,7 @@
      * Resolve a URI against the base for this process. If baseStr is a
      * relative file IRI then it is first resolved against the current
      * working directory. If it is an absolute URI, it is normalized.
-     * 
+     *
      * @param uriStr
      * @return String An absolute URI
      * @throws RiotException
@@ -257,7 +251,7 @@
      * Resolve a URI against a base. If baseStr is a relative file IRI
      * then it is first resolved against the current working directory.
      * If it is an absolute URI, it is normalized.
-     * 
+     *
      * @param uriStr
      * @return String An absolute URI
      */
@@ -316,7 +310,7 @@
 
     /**
      * Choose a base URI based on the current directory
-     * 
+     *
      * @return String Absolute URI
      */
     static public IRI chooseBaseURI() {
@@ -332,7 +326,7 @@
 
     /**
      * The base of this IRIResolver.
-     * 
+     *
      * @return String
      */
     protected abstract IRI getBaseIRI();
@@ -340,7 +334,7 @@
     /**
      * Resolve a relative URI against the base of this IRIResolver
      * or normalize an absolute URI.
-     * 
+     *
      * @param uriStr
      * @return the resolved IRI
      * @throws RiotException
@@ -351,10 +345,10 @@
     }
 
     /**
-     * Create a URI, resolving relative IRIs, 
-     * normalize an absolute URI, 
+     * Create a URI, resolving relative IRIs,
+     * normalize an absolute URI,
      * but do not throw exception on a bad IRI.
-     * 
+     *
      * @param uriStr
      * @return the resolved IRI
      * @throws RiotException
@@ -380,7 +374,7 @@
 
     /**
      * Throw any exceptions resulting from IRI.
-     * 
+     *
      * @param iri
      * @return iri
      */
@@ -396,7 +390,7 @@
     private static final int CacheSize = 1000;
 
     /**
-     * A resolver that does not resolve IRIs against base. 
+     * A resolver that does not resolve IRIs against base.
      * This can generate relative IRIs.
      **/
     static class IRIResolverNoOp extends IRIResolver
@@ -413,7 +407,7 @@
 
         @Override
         public IRI resolveSilent(final String uriStr) {
-            if ( resolvedIRIs == null ) 
+            if ( resolvedIRIs == null )
                 return iriFactory().create(uriStr);
             Callable<IRI> filler = () -> iriFactory().create(uriStr);
             IRI iri = resolvedIRIs.getOrFill(uriStr, filler);
@@ -445,7 +439,7 @@
          * Construct an IRIResolver with base determined by the argument URI. If
          * this is relative, it is relative against the current working
          * directory.
-         * 
+         *
          * @param baseStr
          * @throws RiotException
          *             If resulting base unparsable.
@@ -475,7 +469,7 @@
             else
                 return resolveSilentCache(uriStr);
         }
-        
+
         private IRI resolveSilentNoCache(String uriStr) {
             IRI x = IRIResolver.iriFactory().create(uriStr);
             if ( SysRIOT.AbsURINoNormalization ) {
@@ -492,7 +486,7 @@
             return resolvedIRIs.getOrFill(uriStr, filler);
         }
     }
-    
+
     /** Thread safe wrapper for an IRIResolver */
     static class IRIResolverSync extends IRIResolver
     {
diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/resultset/RDFInput.java b/jena-arq/src/main/java/org/apache/jena/sparql/resultset/RDFInput.java
index 4af7708..8c0fb05 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/resultset/RDFInput.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/resultset/RDFInput.java
@@ -21,6 +21,7 @@
 import java.util.ArrayList;
 
 import org.apache.jena.atlas.logging.Log;
+import org.apache.jena.datatypes.xsd.XSDDatatype;
 import org.apache.jena.query.ResultSet;
 import org.apache.jena.rdf.model.*;
 import org.apache.jena.shared.JenaException;
@@ -98,7 +99,7 @@
         Model m = root.getModel();
         // Assume one result set per file.
         for ( int index = 1 ;; index++ ) {
-            Literal ind = m.createTypedLiteral(index);
+            Literal ind = m.createTypedLiteral(index, XSDDatatype.XSDinteger);
             StmtIterator sIter = m.listStatements(null, ResultSetGraphVocab.index, ind);
             if ( !sIter.hasNext() )
                 break;
@@ -171,7 +172,7 @@
      * Turns an RDF model, with properties and classes from the result set
      * vocabulary, into a SPARQL result set. The result set formed is a copy in
      * memory.
-     * 
+     *
      * @param model
      * @return ResultSet
      */
diff --git a/jena-arq/src/test/java/org/apache/jena/riot/ErrorHandlerTestLib.java b/jena-arq/src/test/java/org/apache/jena/riot/ErrorHandlerTestLib.java
index feca07f..992a0a8 100644
--- a/jena-arq/src/test/java/org/apache/jena/riot/ErrorHandlerTestLib.java
+++ b/jena-arq/src/test/java/org/apache/jena/riot/ErrorHandlerTestLib.java
@@ -23,7 +23,7 @@
 
 import org.apache.jena.riot.system.ErrorHandler ;
 
-/** Error handled to convert anything to an exception */ 
+/** Error handled to convert anything to an exception */
 public class ErrorHandlerTestLib
 {
     public static class ExFatal extends RuntimeException { ExFatal(String msg) { super(msg) ; } }
@@ -35,15 +35,15 @@
     public static class ErrorHandlerEx implements ErrorHandler
     {
         public ErrorHandlerEx() {}
-        
+
         @Override
         public void warning(String message, long line, long col)
         { throw new ExWarning(message) ; }
-    
+
         @Override
         public void error(String message, long line, long col)
         { throw new ExError(message) ; }
-    
+
         @Override
         public void fatal(String message, long line, long col)
         { throw new ExFatal(message) ; }
@@ -53,15 +53,15 @@
     public static class ErrorHandlerMsg implements ErrorHandler
     {
         public List<String> msgs = new ArrayList<>() ;
-    
+
         @Override
         public void warning(String message, long line, long col)
         { msgs.add(message) ; }
-    
+
         @Override
         public void error(String message, long line, long col)
         { msgs.add(message) ; }
-    
+
         @Override
         public void fatal(String message, long line, long col)
         { msgs.add(message) ; throw new ExFatal(message) ; }
diff --git a/jena-arq/src/test/java/org/apache/jena/riot/langsuite/FactoryTestRiot.java b/jena-arq/src/test/java/org/apache/jena/riot/langsuite/FactoryTestRiot.java
index 6ecba4f..0d44933 100644
--- a/jena-arq/src/test/java/org/apache/jena/riot/langsuite/FactoryTestRiot.java
+++ b/jena-arq/src/test/java/org/apache/jena/riot/langsuite/FactoryTestRiot.java
@@ -33,13 +33,13 @@
     public static String assumedRootURIex = "http://example/base/" ;
     public static String assumedRootURITurtle = "http://www.w3.org/2013/TurtleTests/" ;
     public static String assumedRootURITriG = "http://www.w3.org/2013/TriGTests/" ;
-    
+
     public static EarlReport report = null ;
-    
+
     public static TestSuite make(String manifest) {
         return make(manifest, null, null);
     }
-    
+
     public static TestSuite make(String manifest, Resource dftTestType, String labelPrefix) {
         return new FactoryTestRiot(dftTestType, labelPrefix).process(manifest);
     }
@@ -52,7 +52,7 @@
         this.dftTestType = dftTestType ;
         this.labelPrefix = labelPrefix ;
     }
-    
+
     @Override
     public Test makeTest(Resource manifest, Resource item, String testName, Resource action, Resource result)
     {
@@ -63,49 +63,49 @@
                 r = dftTestType ;
             if ( r == null )
                 throw new RiotException("Can't determine the test type") ;
-            
+
             if ( labelPrefix != null )
                 testName = labelPrefix+testName ;
-            
+
             // In Turtle tests, the action directly names the file to process.
             Resource input = action ;
-            Resource output = result ; 
-            
+            Resource output = result ;
+
             if ( r.equals(VocabLangRDF.TestPositiveSyntaxTTL) )
                 return new UnitTestSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.TURTLE, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeSyntaxTTL) )
                 return new UnitTestBadSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.TURTLE, report) ;
 
             if ( r.equals(VocabLangRDF.TestPositiveSyntaxTriG) )
                 return new UnitTestSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.TRIG, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeSyntaxTriG) )
                 return new UnitTestBadSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.TRIG, report) ;
 
             if ( r.equals(VocabLangRDF.TestPositiveSyntaxNT) )
                 return new UnitTestSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.NTRIPLES, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeSyntaxNT) )
                 return new UnitTestBadSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.NTRIPLES, report) ;
 
             if ( r.equals(VocabLangRDF.TestPositiveSyntaxNQ) )
                 return new UnitTestSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.NQUADS, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeSyntaxNQ) )
                 return new UnitTestBadSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.NQUADS, report) ;
 
             if ( r.equals(VocabLangRDF.TestPositiveSyntaxRJ) )
                 return new UnitTestSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.RDFJSON, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeSyntaxRJ) )
                 return new UnitTestBadSyntax(testName, item.getURI(), input.getURI(), RDFLanguages.RDFJSON, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestSurpressed ))
                 return new UnitTestSurpressed(testName, item.getURI(), report) ;
 
             // Eval.
-            
+
             if ( r.equals(VocabLangRDF.TestEvalTTL) ) {
                 String base = rebase(input, assumedRootURITurtle) ;
                 return new UnitTestEval(testName, item.getURI(), input.getURI(), result.getURI(), base, RDFLanguages.TURTLE, report) ;
@@ -118,7 +118,7 @@
 
             if ( r.equals(VocabLangRDF.TestNegativeEvalTTL) )
                 return new UnitTestBadEval(testName, item.getURI(), input.getURI(), RDFLanguages.TURTLE, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestNegativeEvalTriG) )
                 return new UnitTestBadEval(testName, item.getURI(), input.getURI(), RDFLanguages.TRIG, report) ;
 
@@ -127,7 +127,7 @@
 
             if ( r.equals(VocabLangRDF.TestNegativeEvalNT) )
                 return new UnitTestBadEval(testName, item.getURI(), input.getURI(), RDFLanguages.NTRIPLES, report) ;
-            
+
             if ( r.equals(VocabLangRDF.TestEvalRJ) ) {
                 String base = rebase(input, assumedRootURIex) ;
                 return new UnitTestEval(testName, item.getURI(), input.getURI(), result.getURI(), base, RDFLanguages.RDFJSON, report) ;
diff --git a/jena-arq/src/test/java/org/apache/jena/riot/langsuite/UnitTestBadSyntax.java b/jena-arq/src/test/java/org/apache/jena/riot/langsuite/UnitTestBadSyntax.java
index 8f5203a..c77919d 100644
--- a/jena-arq/src/test/java/org/apache/jena/riot/langsuite/UnitTestBadSyntax.java
+++ b/jena-arq/src/test/java/org/apache/jena/riot/langsuite/UnitTestBadSyntax.java
@@ -43,21 +43,21 @@
         this.uri = uri ;
         this.lang = lang ;
     }
-    
-    /** An error handler that throw exceptions on warnings and errors */ 
+
+    /** An error handler that throw exceptions on warnings and errors */
     private static ErrorHandler errorHandlerTestStrict = new ErrorHandler()
     {
         /** report a warning  - do not carry on */
         @Override
         public void warning(String message, long line, long col)
-        { 
+        {
             throw new RiotException(fmtMessage(message, line, col)) ;
         }
-        
+
         /** report an error - do not carry on */
         @Override
         public void error(String message, long line, long col)
-        { 
+        {
             throw new RiotException(fmtMessage(message, line, col)) ;
         }
 
@@ -82,12 +82,12 @@
         else
             run4() ;
     }
-    
+
     private void run3() {
-        Graph graph = GraphFactory.createDefaultGraph(); 
+        Graph graph = GraphFactory.createDefaultGraph();
         try {
             Parse.parse(graph, uri, lang);
-        } 
+        }
         catch (RiotException ex) { return ; }
         catch (RuntimeException ex) {
             ex.printStackTrace(System.err) ;
@@ -95,7 +95,7 @@
         }
         fail("Bad syntax test succeed in parsing the file") ;
     }
-    
+
     private void run4() {
         DatasetGraph dsg = DatasetGraphFactory.createGeneral() ;
         try {
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/junit/TestItem.java b/jena-arq/src/test/java/org/apache/jena/sparql/junit/TestItem.java
index 3593e3d..9c3b43e 100644
--- a/jena-arq/src/test/java/org/apache/jena/sparql/junit/TestItem.java
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/junit/TestItem.java
@@ -152,13 +152,13 @@
             Model m = RDFDataMgr.loadModel(resultFile) ;
             return new SPARQLResult(m) ;
         }
-        
+
         if ( ResultsFormat.isDatasetSyntax(format) ) {
             Dataset d = RDFDataMgr.loadDataset(resultFile) ;
             return new SPARQLResult(d) ;
         }
 
-        // Attempt to handle as a resulset or boolean result.s
+        // Attempt to handle as a resultset or boolean result.s
         SPARQLResult x = ResultSetFactory.result(resultFile) ;
         return x ;
     }
@@ -195,12 +195,12 @@
             return Syntax.syntaxSPARQL_11;
         if ( filename.endsWith(".ru") )
             return Syntax.syntaxSPARQL_11;
-        
+
         return Syntax.guessFileSyntax(filename);
     }
 
     private String _getName() {
-        
+
         Statement s = testResource.getProperty(TestManifest.name) ;
         String ln = s.getSubject().getLocalName();
         if ( s == null )
@@ -235,7 +235,7 @@
     /**
      * Get the data file (default graph): maybe unknown if part for the query
      * (FROM)
-     * 
+     *
      * @return List
      */
 
@@ -258,7 +258,7 @@
 
     /**
      * Get the named graphs : maybe unknown if part for the query (FROM NAMED)
-     * 
+     *
      * @return List
      */
 
@@ -282,7 +282,7 @@
     /**
      * Get the query file: either it is the action (data in query) or it is
      * specified within the bNode as a query/data pair.
-     * 
+     *
      * @return
      */
 
diff --git a/jena-arq/testing/RIOT/Lang/manifest-all.ttl b/jena-arq/testing/RIOT/Lang/manifest-all.ttl
index db32dab..1d09cf8 100644
--- a/jena-arq/testing/RIOT/Lang/manifest-all.ttl
+++ b/jena-arq/testing/RIOT/Lang/manifest-all.ttl
@@ -17,5 +17,5 @@
         <NTriplesStd/manifest.ttl>
         <NQuadsStd/manifest.ttl>
         <TurtleStd/manifest.ttl>    # W3C test suite
-        <TrigStd/manifest.ttl>   # W3C Test Suite
+        <TrigStd/manifest.ttl>      # W3C Test Suite
 	).
diff --git a/jena-base/src/main/java/org/apache/jena/atlas/logging/LogCtl.java b/jena-base/src/main/java/org/apache/jena/atlas/logging/LogCtl.java
index 460b7bf..4134065 100644
--- a/jena-base/src/main/java/org/apache/jena/atlas/logging/LogCtl.java
+++ b/jena-base/src/main/java/org/apache/jena/atlas/logging/LogCtl.java
@@ -18,8 +18,12 @@
 
 package org.apache.jena.atlas.logging;
 
+import java.io.BufferedInputStream;
 import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStream;
 
+import org.apache.jena.atlas.AtlasException;
 import org.slf4j.Logger;
 
 /**
@@ -35,7 +39,7 @@
     private static final boolean hasLog4j2 = hasClass("org.apache.logging.slf4j.Log4jLoggerFactory");
     private static final boolean hasLog4j1 = hasClass("org.slf4j.impl.Log4jLoggerFactory");
     private static final boolean hasJUL    = hasClass("org.slf4j.impl.JDK14LoggerFactory");
-    // JUL always present but needs slf4j adpater.
+    // JUL always present but needs slf4j adapter.
 
     private static boolean hasClass(String className) {
         try {
@@ -250,7 +254,7 @@
      * when no configuration is setup; output is to stdout.
      * <p>
      * Ideally, initialize the logging provider using the mechanism specific to that provider.
-     * For example, see the <a href="https://logging.apache.org/log4j/2.x/manual/configuration.html">log4j2 configuration documentation</a>.  
+     * For example, see the <a href="https://logging.apache.org/log4j/2.x/manual/configuration.html">log4j2 configuration documentation</a>.
      * <p>
      * To set application logging, choose one of:
      * <ul>
@@ -296,7 +300,7 @@
 
     // ---- log4j2.
 
-    /** The log4j2 configuration file - must be a file or URL, not a classpath java resource */ 
+    /** The log4j2 configuration file - must be a file or URL, not a classpath java resource */
     public static final String log4j2ConfigProperty = "log4j.configurationFile";
 
     private static final String[] log4j2files = {"log4j2.properties", "log4j2.xml"};
@@ -309,18 +313,18 @@
     public static void setLog4j2() {
         if ( ! isSetLog4j2property() ) {
             setLog4j2property();
-            if ( isSetLog4j2property() ) 
+            if ( isSetLog4j2property() )
                 return;
             // Nothing found - built-in default.
             LogCmd.resetLogging(LogCmd.log4j2setup);
         }
     }
 
-    /*package*/ static boolean isSetLog4j2property() {
-        return System.getProperty(log4j2ConfigProperty) != null ;
+    /* package */ static boolean isSetLog4j2property() {
+        return System.getProperty(log4j2ConfigProperty) != null;
     }
-    
-    /** Set log4j, looking for files */ 
+
+    /** Set log4j, looking for files */
     /*package*/ static void setLog4j2property() {
         if ( isSetLog4j2property() )
             return;
@@ -332,10 +336,10 @@
             }
         }
     }
-    
+
     // ---- java.util.logging - because that's always present.
     // Need: org.slf4j:slf4j-jdk14
-    
+
     private static String JUL_PROPERTY      = "java.util.logging.configuration";
     /**
      * Setup java.util.logging if it has not been set before; otherwise do nothing.
@@ -345,4 +349,18 @@
             return;
         LogJUL.resetJavaLogging();
     }
+
+    /**
+     * Setup java.util.logging with the configuration from a file.
+     * @param filename
+     */
+    public static void setJavaLogging(String filename) {
+        try {
+            InputStream details = new FileInputStream(filename);
+            details = new BufferedInputStream(details);
+            LogJUL.readJavaLoggingConfiguration(details);
+        } catch (Exception ex) {
+            throw new AtlasException(ex);
+        }
+    }
 }
diff --git a/jena-cmds/src/main/java/arq/cmdline/ModLangParse.java b/jena-cmds/src/main/java/arq/cmdline/ModLangParse.java
index bf69534..0b9ee11 100644
--- a/jena-cmds/src/main/java/arq/cmdline/ModLangParse.java
+++ b/jena-cmds/src/main/java/arq/cmdline/ModLangParse.java
@@ -36,16 +36,16 @@
 
     private ArgDecl argStrict   = new ArgDecl(ArgDecl.NoValue, "strict") ;
     private ArgDecl argValidate = new ArgDecl(ArgDecl.NoValue, "validate") ;
-    
+
     private ArgDecl argSkip     = new ArgDecl(ArgDecl.NoValue, "skip") ;
     private ArgDecl argNoSkip   = new ArgDecl(ArgDecl.NoValue, "noSkip") ;
     private ArgDecl argStop     = new ArgDecl(ArgDecl.NoValue, "stopOnError", "stoponerror", "stop") ;
     private ArgDecl argStopWarn = new ArgDecl(ArgDecl.NoValue, "stopOnWarning", "stoponwarning", "stop-warnings") ;
-    
+
     private ArgDecl argBase     = new ArgDecl(ArgDecl.HasValue, "base") ;
-    
+
     private ArgDecl argRDFS     = new ArgDecl(ArgDecl.HasValue, "rdfs") ;
-    
+
     private ArgDecl argSyntax     = new ArgDecl(ArgDecl.HasValue, "syntax") ;
 
     private  String rdfsVocabFilename   = null ;
@@ -56,12 +56,12 @@
     private boolean skipOnBadTerm       = false ;
     private boolean stopOnBadTerm       = false ;
     private boolean stopOnWarnings      = false ;
-    private boolean bitbucket           = false ; 
+    private boolean bitbucket           = false ;
     private boolean strict              = false ;
     private boolean validate            = false ;
     private boolean outputCount         = false ;
     private Lang lang                   = null ;
-    
+
     @Override
     public void registerWith(CmdGeneral cmdLine) {
         cmdLine.getUsage().startCategory("Parser control") ;
@@ -73,7 +73,7 @@
         cmdLine.add(argValidate,"--validate",       "Same as --sink --check --strict") ;
         cmdLine.add(argCount,   "--count",          "Count triples/quads parsed, not output them") ;
         cmdLine.add(argRDFS,    "--rdfs=file",      "Apply some RDFS inference using the vocabulary in the file") ;
-        
+
         cmdLine.add(argNoCheck, "--nocheck",        "Turn off checking of RDF terms") ;
 //        cmdLine.add(argSkip,    "--noSkip",         "Skip (do not output) triples failing the RDF term tests") ;
 //        cmdLine.add(argNoSkip,  "--skip",           "Include triples failing the RDF term tests (not recommended)") ;
@@ -123,13 +123,13 @@
 
         if ( cmdLine.contains(argStop) )
             stopOnBadTerm = true ;
-        
+
         if ( cmdLine.contains(argStopWarn) )
             stopOnWarnings = true;
 
         if ( cmdLine.contains(argSink) )
             bitbucket = true ;
-        
+
         if ( cmdLine.contains(argCount) ) {
             bitbucket = true ;
             outputCount = true ;
@@ -174,7 +174,7 @@
     public boolean stopOnBadTerm() {
         return stopOnBadTerm ;
     }
-    
+
     public boolean stopOnWarnings() {
         return stopOnWarnings ;
     }
diff --git a/jena-cmds/src/test/java/arq/qtest.java b/jena-cmds/src/test/java/arq/qtest.java
index 571c539..bc81d7a 100644
--- a/jena-cmds/src/test/java/arq/qtest.java
+++ b/jena-cmds/src/test/java/arq/qtest.java
@@ -48,9 +48,9 @@
 import org.apache.jena.vocabulary.XSD ;
 
 /** A program to execute query test suites
- * 
+ *
  * <pre>
- * Usage: 
+ * Usage:
  *   [--all]
  *   [--dawg]
  *   <i>testManifest</i>
@@ -66,15 +66,15 @@
     protected ArgDecl dataDecl =   new ArgDecl(ArgDecl.HasValue, "data") ;
     protected ArgDecl resultDecl = new ArgDecl(ArgDecl.HasValue, "result") ;
     protected ArgDecl earlDecl =   new ArgDecl(ArgDecl.NoValue, "earl") ;
-    
+
     protected ModEngine modEngine = null ;
-    
+
     protected TestSuite suite = null;
     protected boolean execAllTests = false;
     protected boolean execDAWGTests = false;
     protected String testfile = null;
     protected boolean createEarlReport = false;
-    
+
     public static void main (String... argv)
     {
         try {
@@ -82,53 +82,53 @@
         }
         catch (TerminationException ex) { System.exit(ex.getCode()) ; }
     }
-    
+
     public qtest(String[] argv)
     {
         super(argv) ;
-        
+
         modEngine = setModEngine() ;
         addModule(modEngine) ;
-        
+
         getUsage().startCategory("Tests (single query)") ;
         add(queryDecl, "--query", "run the given query") ;
         add(dataDecl, "--data", "data file to be queried") ;
         add(resultDecl, "--result", "file that specifies the expected result") ;
-        
+
         getUsage().startCategory("Tests (built-in tests)") ;
         add(allDecl, "--all", "run all built-in tests") ;
         add(wgDecl, "--dawg", "run working group tests") ;
-        
+
         getUsage().startCategory("Tests (execute test manifest)") ;
         getUsage().addUsage("<manifest>", "run the tests specified in the given manifest") ;
         add(earlDecl, "--earl", "create EARL report") ;
     }
-    
+
     protected ModEngine setModEngine()
     {
         return new ModEngine() ;
     }
-    
+
     @Override
     protected String getCommandName() { return Lib.className(this) ; }
-    
+
     @Override
     protected String getSummary() { return getCommandName()+" [ --data=<file> --query=<query> --result=<results> ] | --all | --dawg | <manifest>" ; }
-    
+
     @Override
     protected void processModulesAndArgs()
     {
         super.processModulesAndArgs() ;
-        
+
         if ( contains(queryDecl) || contains(dataDecl) || contains(resultDecl) )
         {
             if ( ! ( contains(queryDecl) && contains(dataDecl) && contains(resultDecl) ) )
                 throw new CmdException("Must give query, data and result to run a single test") ;
-            
+
             String query = getValue(queryDecl) ;
             String data = getValue(dataDecl) ;
             String result = getValue(resultDecl) ;
-            
+
             suite = ScriptTestSuiteFactory.make(query, data, result) ;
         }
         else if ( contains(allDecl) )
@@ -142,7 +142,7 @@
         else
         {
             // OK - running a manifest
-            
+
             if ( ! hasPositional() )
                 throw new CmdException("No manifest file") ;
 
@@ -150,13 +150,13 @@
             createEarlReport = contains(earlDecl) ;
         }
     }
-    
+
     @Override
     protected void exec()
     {
         if ( cmdStrictMode )
             ARQ.setStrictMode() ;
-        
+
         if ( suite != null )
             SimpleTestRunner.runAndReport(suite) ;
         else if ( execAllTests )
@@ -166,17 +166,17 @@
         else
         {
             // running a manifest
-            
+
             NodeValue.VerboseWarnings = false ;
             E_Function.WarnOnUnknownFunction = false ;
-            
+
             if ( createEarlReport )
                 oneManifestEarl(testfile) ;
             else
                 oneManifest(testfile) ;
         }
     }
-    
+
     static void oneManifest(String testManifest)
     {
         TestSuite suite = ScriptTestSuiteFactory.make(testManifest) ;
@@ -184,73 +184,73 @@
         //junit.textui.TestRunner.run(suite) ;
         SimpleTestRunner.runAndReport(suite) ;
     }
-    
+
     static void oneManifestEarl(String testManifest)
     {
         String name =  "ARQ" ;
         String releaseName =  "ARQ" ;
-        String version = "2.9.1" ;
+        String version = "3.16.0" ;
         String homepage = "http://jena.apache.org/" ;
         String systemURI = "http://jena.apache.org/#arq" ;  // Null for bNode.
-        
+
         // Include information later.
         EarlReport report = new EarlReport(systemURI, name, version, homepage) ;
         ScriptTestSuiteFactory.results = report ;
-        
+
         Model model = report.getModel() ;
         model.setNsPrefix("dawg", TestManifest.getURI()) ;
-        
-        // Update the EARL report. 
+
+        // Update the EARL report.
         Resource jena = model.createResource()
                     .addProperty(FOAF.homepage, model.createResource("http://jena.apache.org/")) ;
-        
+
         // ARQ is part fo Jena.
         Resource arq = report.getSystem()
                         .addProperty(DCTerms.isPartOf, jena) ;
-        
-        // Andy wrote the test software (updates the thing being tested as well as they are the same). 
+
+        // Andy wrote the test software (updates the thing being tested as well as they are the same).
         Resource who = model.createResource(FOAF.Person)
                                 .addProperty(FOAF.name, "Andy Seaborne")
-                                .addProperty(FOAF.homepage, 
+                                .addProperty(FOAF.homepage,
                                              model.createResource("http://people.apache.org/~andy")) ;
-        
+
         Resource reporter = report.getReporter() ;
         reporter.addProperty(DC.creator, who) ;
 
-        model.setNsPrefix("doap", DOAP.getURI()) ; 
+        model.setNsPrefix("doap", DOAP.getURI()) ;
         model.setNsPrefix("xsd", XSD.getURI()) ;
-        
+
         // DAWG specific stuff.
         Resource system = report.getSystem() ;
         system.addProperty(RDF.type, DOAP.Project) ;
         system.addProperty(DOAP.name, name) ;
         system.addProperty(DOAP.homepage, homepage) ;
         system.addProperty(DOAP.maintainer, who) ;
-        
+
         Resource release = model.createResource(DOAP.Version) ;
         system.addProperty(DOAP.release, release) ;
-        
+
         Node today_node = NodeFactoryExtra.todayAsDate() ;
         Literal today = model.createTypedLiteral(today_node.getLiteralLexicalForm(), today_node.getLiteralDatatype()) ;
         release.addProperty(DOAP.created, today) ;
         release.addProperty(DOAP.name, releaseName) ;      // Again
-        
+
         TestSuite suite = ScriptTestSuiteFactory.make(testManifest) ;
         SimpleTestRunner.runSilent(suite) ;
-        
+
         ScriptTestSuiteFactory.results.getModel().write(System.out, "TTL") ;
-        
+
     }
-    
+
     static void allTests()
     {
         // This should load all the built in tests.
         // Check to see if expected directories are present or not.
-        
+
         ensureDirExists("testing") ;
         ensureDirExists("testing/ARQ") ;
         ensureDirExists("testing/DAWG") ;
-        
+
         TestSuite ts = ARQTestSuite.suite() ;
         junit.textui.TestRunner.run(ts) ;
         //SimpleTestRunner.runAndReport(ts) ;
@@ -260,7 +260,7 @@
     {
         System.err.println("DAWG tests not packaged up yet") ;
     }
-    
+
     static void ensureDirExists(String dirname)
     {
         File f = new File(dirname) ;
diff --git a/jena-iri/src/main/java/org/apache/jena/iri/ViolationCodes.java b/jena-iri/src/main/java/org/apache/jena/iri/ViolationCodes.java
index d4e63bf..d0f3000 100644
--- a/jena-iri/src/main/java/org/apache/jena/iri/ViolationCodes.java
+++ b/jena-iri/src/main/java/org/apache/jena/iri/ViolationCodes.java
@@ -1,7 +1,7 @@
 
-    
-    
-    
+
+
+
  /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -36,120 +36,120 @@
 import org.apache.jena.iri.impl.Specification;
 import org.apache.jena.iri.impl.SchemeSpecification;
 import org.apache.jena.iri.impl.Force;
- 
+
 /**
  * Detailed description of problems detected.
- * This interface lists the codes returned by 
+ * This interface lists the codes returned by
  * {@link Violation#getViolationCode()}.
  * Note: not all are errors, some merely reflect internal workings.
- 
+
  <p>The violations are evaluated against the following standards:
  </p>
  <dl>
-  
+
       <dt><a name="ref-RDF">[RDF]</a>
-      
+
       </dt>
       <dd><a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref">
-      
+
 Resource Description Framework (RDF):
 Concepts and Abstract Syntax
 
         (section RDF URI References)
       </a>
       </dd>
-      
+
       <dd>
       The SCHEME component is required.<br />
-    
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>#frag</code>&gt;</li>
-    
+
      <li>&lt;<code>//example.org/foo/bar#frag</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-URI">[URI]</a>
-      
+
       RFC 3986
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3986.html">
       Uniform Resource Identifier (URI): Generic Syntax</a>
       </dd>
-      
+
       <dt><a name="ref-Unicode">[Unicode]</a>
-      
+
       </dt>
       <dd><a href="http://www.unicode.org/">
       Unicode</a>
       </dd>
-      
+
       <dt><a name="ref-IRI">[IRI]</a>
-      
+
       RFC 3987
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3987.html">
       Internationalized Resource Identifiers (IRIs)</a>
       </dd>
-      
+
       <dt><a name="ref-XML">[XML]</a>
-      
+
       </dt>
       <dd><a href="http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid">
       Extensible Markup Language (XML) 1.0 (Third Edition)
         (section system identifier)
       </a>
       </dd>
-      
+
       <dd>
       The FRAGMENT component must be omitted.<br />
-    
+
       </dd>
-      
+
       <dt><a name="ref-XLink">[XLink]</a>
-      
+
       </dt>
       <dd><a href="http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators">
       XML Linking Language (XLink) Version 1.0
         (section Locator Attribute (href))
       </a>
       </dd>
-      
+
       <dt><a name="ref-Schema">[Schema]</a>
-      
+
       </dt>
       <dd><a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI">
       XML Schema Part 2: Datatypes Second Edition
         (section anyURI)
       </a>
       </dd>
-       
+
  </dl>
- 
+
  <p>Scheme specific checks are enabled. The syntax of the following schemes is fully supported:
  </p>
  <dl>
-  
+
       <dt><a name="ref-http">[http]</a>
-      
+
       RFC 2616
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2616.html">
       Hypertext Transfer Protocol -- HTTP/1.1</a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2616.html#sec-3.2.2">section 3.2.2<a>
@@ -159,70 +159,70 @@
      <pre>
 http_URL = "http:" "//" host [ ":" port ] [ abs_path [ "?" query ]]
 </pre>
-    
-           
+
+
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
      <br/>
      This scheme requires the use of hostnames conforming to DNS syntax.
      The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled.
      To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme
      and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}.
-    
+
       The default port is 80.<br />
-    
+
       The USER component must be omitted.<br />
-    
+
       The HOST component is required.<br />
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>http://www.example.org/foo/bar</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>http://www.example.org:80/foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>http:foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://user@www.example.org/foo/bar</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-https">[https]</a>
-      
+
       RFC 2818
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2818.html">
       Hypertext Transfer Protocol Secure</a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2818.html#sec-2.4">section 2.4<a>
       </dt>
       <dd>
-HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier. 
-    
+HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier.
+
       </dd>
-    
+
       <dt>
        See <a href="#ref-http">
      [http]</a>, specifically,
@@ -233,50 +233,50 @@
      <pre>
 http_URL = "http:" "//" host [ ":" port ] [ abs_path [ "?" query ]]
 </pre>
-    
-           
+
+
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
      <br/>
      This scheme requires the use of hostnames conforming to DNS syntax.
      The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled.
      To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme
      and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}.
-    
+
       The default port is 443.<br />
-    
+
       The USER component must be omitted.<br />
-    
+
       The HOST component is required.<br />
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>https://www.example.org/foo/bar</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>https://www.example.org:443/foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>https:foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>https://user@www.example.org/foo/bar</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-ftp">[ftp]</a>
-      
+
       RFC 1738
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.2">
@@ -284,12 +284,12 @@
         (section 3.2)
       </a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5<a>
@@ -302,12 +302,12 @@
 fsegment = *[ uchar | "?" | ":" | "@" | "&amp;" | "=" ]
 ftptype = "A" | "I" | "D" | "a" | "i" | "d"
 </pre>
-    
+
 
      <pre>
 login = [ user [ ":" password ] "@" ] hostport
 </pre>
-    
+
 
      <pre>
 safe = "$" | "-" | "_" | "." | "+"
@@ -316,24 +316,24 @@
 unreserved = alpha | digit | safe | extra
 uchar = unreserved | escape
 </pre>
-    
+
 
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
      <br/>
      This scheme requires the use of hostnames conforming to DNS syntax.
      The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled.
      To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme
      and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}.
-    
+
       The default port is 21.<br />
-    
+
       The HOST component is required.<br />
-    
+
       The PATHQUERY component:
       <ul>
       <li>
@@ -345,31 +345,31 @@
       the scheme specific syntax.
       </li>
       </ul>
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>ftp://user@example.org/foo/bar;type=d</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>ftp:///foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://user@example.org/foo/bar;type=z</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://user@example.org/foo/b;ar;type=d</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-news">[news]</a>
-      
+
       RFC 1738
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.6">
@@ -377,12 +377,12 @@
         (section 3.6)
       </a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5<a>
@@ -395,7 +395,7 @@
 group = alpha *[ alpha | digit | "-" | "." | "+" | "_" ]
 article = 1*[ uchar | ";" | "/" | "?" | ":" | "&amp;" | "=" ] "@" host
 </pre>
-    
+
 
      <pre>
 safe = "$" | "-" | "_" | "." | "+"
@@ -404,18 +404,18 @@
 unreserved = alpha | digit | safe | extra
 uchar = unreserved | escape
 </pre>
-    
+
 
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
       The AUTHORITY component must be omitted.<br />
-    
+
       The PATH component is required.<br />
-    
+
       The PATHQUERY component:
       <ul>
       <li>
@@ -427,39 +427,39 @@
       the scheme specific syntax.
       </li>
       </ul>
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>news:*</code>&gt;</li>
-    
+
      <li>&lt;<code>news:group.it</code>&gt;</li>
-    
+
      <li>&lt;<code>news:arb?itrary@news.example.org</code>&gt;</li>
-    
+
      <li>&lt;<code>news:arbitrary@news.example.org</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>news:arbitrary@news.exampl\u00E7.org</code>&gt;</li>
-    
+
      <li>&lt;<code>news:arbitr?ary@news.exampl\u00E7.org</code>&gt;</li>
-    
+
      <li>&lt;<code>news:///foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>news://user@example.org/foo</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-nntp">[nntp]</a>
-      
+
       RFC 1738
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7">
@@ -467,12 +467,12 @@
         (section 3.7)
       </a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5<a>
@@ -482,71 +482,71 @@
      <pre>
 nntpurl = "nntp://" hostport "/" group [ "/" digits ]
 </pre>
-    
+
 
      <pre>
 group = alpha *[ alpha | digit | "-" | "." | "+" | "_" ]
 </pre>
-    
+
 
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
      <br/>
      This scheme requires the use of hostnames conforming to DNS syntax.
      The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled.
      To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme
      and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}.
-    
+
       The default port is 119.<br />
-    
+
       The QUERY component must be omitted.<br />
-    
+
       The USER component must be omitted.<br />
-    
+
       The HOST component is required.<br />
-    
+
       The PATH component
       is required to match the regular expression: /[a-zA-Z][-a-zA-Z0-9.+_]*(/[0-9]+)?
       <br/>
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>nntp://example.org/foo4</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp://example.org/foo/4</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>nntp://user@example.org/foo</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp:/foo</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp:///foo</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp://example.org/foo/4/3</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp://example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp://example.org/foo/</code>&gt;</li>
-    
+
      <li>&lt;<code>nntp://example.org/*</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-      
+
       <dt><a name="ref-file">[file]</a>
-      
+
       RFC 1738
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.10">
@@ -554,12 +554,12 @@
         (section 3.10)
       </a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc1738.html#sec-5">section 5<a>
@@ -569,13 +569,13 @@
      <pre>
 fileurl = "file://" [ host | "localhost" ] "/" fpath
 </pre>
-    
+
 
      <pre>
 fpath = fsegment *[ "/" fsegment ]
 fsegment = *[ uchar | "?" | ":" | "@" | "&amp;" | "=" ]
 </pre>
-    
+
 
      <pre>
 safe = "$" | "-" | "_" | "." | "+"
@@ -584,28 +584,28 @@
 unreserved = alpha | digit | safe | extra
 uchar = unreserved | escape
 </pre>
-    
+
 
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
      <br/>
      This scheme requires the use of hostnames conforming to DNS syntax.
      The IDNA compatibile processing of IRIs for this scheme is enabled if this scheme is enabled.
      To disable this behaviour, this scheme has to be disabled using // TODO how to disable scheme
      and DNS compatibile rules have to be disabled using {@link IRIFactory#dnsViolation}.
-    
+
       The USER component must be omitted.<br />
-    
+
       The PORT component must be omitted.<br />
-    
+
       The PATH component is required.<br />
-    
+
       The AUTHORITY component is required.<br />
-    
+
       The PATHQUERY component:
       <ul>
       <li>
@@ -617,70 +617,70 @@
       the scheme specific syntax.
       </li>
       </ul>
-    
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>file:///foo/b</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///foo/b?ar/yuk</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>file://user@example.org/foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>file://eg:4029/foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>file:/foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>file://example.org</code>&gt;</li>
-    
+
      <li>&lt;<code>file://foo/bar;t</code>&gt;</li>
-    
+
      <li>&lt;<code>file://foo/~jjc</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-       
+
  </dl>
- 
- 
+
+
  <p>The syntax of the following schemes is partially supported:
  </p>
  <dl>
-  
+
       <dt><a name="ref-mailto">[mailto]</a>
-      
+
       RFC 2368
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2368.html">
       Electronic mail address</a>
       </dd>
-      
+
       <dd>
       The AUTHORITY component must be omitted.<br />
-    
+
       </dd>
-      
+
       <dt><a name="ref-urn">[urn]</a>
-      
+
       RFC 2141
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2141.html">
       Uniform Resource Names</a>
       </dd>
-      
+
       <dd>
       Pertinent text from the specification includes:
       <br />
       <dl>
-      
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2">section 2<a>
@@ -691,10 +691,10 @@
      <pre>
 &lt;URN&gt; ::= "urn:" &lt;NID&gt; ":" &lt;NSS&gt;
 </pre>
-    
+
 
       </dd>
-    
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1">section 2.1<a>
@@ -708,10 +708,10 @@
 
 &lt;let-num&gt;     ::= &lt;upper&gt; | &lt;lower&gt; | &lt;number&gt;
 </pre>
-    
+
 
       </dd>
-    
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.2">section 2.2<a>
@@ -729,33 +729,33 @@
                   ":" | "=" | "@" | ";" | "$" |
                   "_" | "!" | "*" | "'"
 </pre>
-    
+
 
       </dd>
-    
+
       <dt>
        See
       <a href="http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2">section 2.3.2<a>
       </dt>
       <dd>
-RFC 1630 [2] reserves the characters "/", "?", and "#" for particular purposes. 
-The URN-WG has not yet debated the applicability and precise semantics of those 
-purposes as applied to URNs. Therefore, these characters are RESERVED for future 
-developments. Namespace developers SHOULD NOT use these characters in unencoded form, 
+RFC 1630 [2] reserves the characters "/", "?", and "#" for particular purposes.
+The URN-WG has not yet debated the applicability and precise semantics of those
+purposes as applied to URNs. Therefore, these characters are RESERVED for future
+developments. Namespace developers SHOULD NOT use these characters in unencoded form,
 but rather use the appropriate %-encoding for each character.
 
       </dd>
-    
+
       </dl>
       </dd>
-      
+
       <dd>
       The AUTHORITY component must be omitted.<br />
-    
+
       The QUERY component must be omitted.<br />
-    
+
       The PATH component is required.<br />
-    
+
       The PATH component:
       <ul>
       <li>
@@ -767,448 +767,448 @@
       the scheme specific syntax.
       </li>
       </ul>
-    <br/>TODO: case of NIS<br/>TODO: 
+    <br/>TODO: case of NIS<br/>TODO:
            registry of URNs, implement something of the NSS with Namespace specific rules.
-           <br/>TODO: 
+           <br/>TODO:
  To avoid confusion with the "urn:" identifier, the NID "urn" is reserved and MUST NOT be used.
- <br/>TODO: e-mail about frags in URNs<br/>TODO: 
-In addition, octet 0 (0 hex) should NEVER be used, in either unencoded or %-encoded form.           
-           
+ <br/>TODO: e-mail about frags in URNs<br/>TODO:
+In addition, octet 0 (0 hex) should NEVER be used, in either unencoded or %-encoded form.
+
              <br/>
              The following are examples of well-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>urn:x-hp:foo\u00E9</code>&gt;</li>
-    
+
      <li>&lt;<code>urn:urn-1:foo</code>&gt;</li>
-    
+
              </ul>
-             
+
              <br/>
              The following are examples of ill-formed IRIs using this scheme:
              <ul>
-             
+
      <li>&lt;<code>urn:x-hp:foo/bar</code>&gt;</li>
-    
+
      <li>&lt;<code>urn:urn:foo</code>&gt;</li>
-    
+
      <li>&lt;<code>urn://foo</code>&gt;</li>
-    
+
      <li>&lt;<code>urn:foo:bar?query</code>&gt;</li>
-    
+
      <li>&lt;<code>urn:foo:ff~</code>&gt;</li>
-    
+
              </ul>
-             
+
       </dd>
-       
+
  </dl>
- 
- 
+
+
  <p>The names of the following registered schemes are known, but they are otherwise unsupported:
  </p>
  <dl>
-  
+
       <dt><a name="ref-telnet">[telnet]</a>
-      
+
       RFC 4248
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4248.txt">
       Reference to interactive sessions</a>
       </dd>
-      
+
       <dt><a name="ref-wais">[wais]</a>
-      
+
       RFC 4156
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4156.txt">
       Wide Area Information Servers</a>
       </dd>
-      
+
       <dt><a name="ref-prospero">[prospero]</a>
-      
+
       RFC 4157
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4157.txt">
       Prospero Directory Service</a>
       </dd>
-      
+
       <dt><a name="ref-gopher">[gopher]</a>
-      
+
       RFC 4266
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4266.txt">
       The gopher URI scheme</a>
       </dd>
-      
+
       <dt><a name="ref-z39.50s">[z39.50s]</a>
-      
+
       RFC 2056
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2056.html">
       Z39.50 Session</a>
       </dd>
-      
+
       <dt><a name="ref-z39.50r">[z39.50r]</a>
-      
+
       RFC 2056
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2056.html">
       Z39.50 Retrieval</a>
       </dd>
-      
+
       <dt><a name="ref-cid">[cid]</a>
-      
+
       RFC 2392
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2392.html">
       content identifier</a>
       </dd>
-      
+
       <dt><a name="ref-mid">[mid]</a>
-      
+
       RFC 2392
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2392.html">
       message identifier</a>
       </dd>
-      
+
       <dt><a name="ref-vemmi">[vemmi]</a>
-      
+
       RFC 2122
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2122.html">
       versatile multimedia interface</a>
       </dd>
-      
+
       <dt><a name="ref-service">[service]</a>
-      
+
       RFC 2609
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2609.html">
       service location</a>
       </dd>
-      
+
       <dt><a name="ref-imap">[imap]</a>
-      
+
       RFC 2192
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2192.html">
       internet message access protocol</a>
       </dd>
-      
+
       <dt><a name="ref-nfs">[nfs]</a>
-      
+
       RFC 2224
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2224.html">
       network file system protocol</a>
       </dd>
-      
+
       <dt><a name="ref-acap">[acap]</a>
-      
+
       RFC 2244
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2244.html">
       application configuration access protocol</a>
       </dd>
-      
+
       <dt><a name="ref-rtsp">[rtsp]</a>
-      
+
       RFC 2326
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2326.html">
       real time streaming protocol</a>
       </dd>
-      
+
       <dt><a name="ref-tip">[tip]</a>
-      
+
       RFC 2371
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2371.html">
       Transaction Internet Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-pop">[pop]</a>
-      
+
       RFC 2384
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2384.html">
       Post Office Protocol v3</a>
       </dd>
-      
+
       <dt><a name="ref-data">[data]</a>
-      
+
       RFC 2397
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2397.html">
       data</a>
       </dd>
-      
+
       <dt><a name="ref-dav">[dav]</a>
-      
+
       RFC 2518
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2518.html">
       dav</a>
       </dd>
-      
+
       <dt><a name="ref-opaquelocktoken">[opaquelocktoken]</a>
-      
+
       RFC 2518
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2518.html">
       opaquelocktoken</a>
       </dd>
-      
+
       <dt><a name="ref-sip">[sip]</a>
-      
+
       RFC 3261
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3261.html">
       session initiation protocol</a>
       </dd>
-      
+
       <dt><a name="ref-sips">[sips]</a>
-      
+
       RFC 3261
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3261.html">
       secure session intitiaion protocol</a>
       </dd>
-      
+
       <dt><a name="ref-tel">[tel]</a>
-      
+
       RFC 2806
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html">
       telephone</a>
       </dd>
-      
+
       <dt><a name="ref-fax">[fax]</a>
-      
+
       RFC 2806
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html">
       fax</a>
       </dd>
-      
+
       <dt><a name="ref-modem">[modem]</a>
-      
+
       RFC 2806
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2806.html">
       modem</a>
       </dd>
-      
+
       <dt><a name="ref-soap.beep">[soap.beep]</a>
-      
+
       RFC 3288
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3288.html">
       soap.beep</a>
       </dd>
-      
+
       <dt><a name="ref-soap.beeps">[soap.beeps]</a>
-      
+
       RFC 3288
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3288.html">
       soap.beeps</a>
       </dd>
-      
+
       <dt><a name="ref-xmlrpc.beep">[xmlrpc.beep]</a>
-      
+
       RFC 3529
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3529.html">
       xmlrpc.beep</a>
       </dd>
-      
+
       <dt><a name="ref-xmlrpc.beeps">[xmlrpc.beeps]</a>
-      
+
       RFC 3529
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3529.html">
       xmlrpc.beeps</a>
       </dd>
-      
+
       <dt><a name="ref-go">[go]</a>
-      
+
       RFC 3368
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3368.html">
       go</a>
       </dd>
-      
+
       <dt><a name="ref-h323">[h323]</a>
-      
+
       RFC 3508
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3508.html">
       H.323</a>
       </dd>
-      
+
       <dt><a name="ref-ipp">[ipp]</a>
-      
+
       RFC 3510
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3510.html">
       Internet Printing Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-tftp">[tftp]</a>
-      
+
       RFC 3617
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3617.html">
       Trivial File Transfer Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-mupdate">[mupdate]</a>
-      
+
       RFC 3656
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3656.html">
       Mailbox Update (MUPDATE) Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-pres">[pres]</a>
-      
+
       RFC 3859
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3859.html">
       Presence</a>
       </dd>
-      
+
       <dt><a name="ref-im">[im]</a>
-      
+
       RFC 3860
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3860.html">
       Instant Messaging</a>
       </dd>
-      
+
       <dt><a name="ref-mtqp">[mtqp]</a>
-      
+
       RFC 3887
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3887.html">
       Message Tracking Query Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-iris.beep">[iris.beep]</a>
-      
+
       RFC 3983
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc3983.html">
       iris.beep</a>
       </dd>
-      
+
       <dt><a name="ref-dict">[dict]</a>
-      
+
       RFC 2229
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2229.html">
       dictionary service protocol</a>
       </dd>
-      
+
       <dt><a name="ref-snmp">[snmp]</a>
-      
+
       RFC 4088
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4088.txt">
       Simple Network Management Protocol</a>
       </dd>
-      
+
       <dt><a name="ref-crid">[crid]</a>
-      
+
       RFC 4078
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4078.txt">
       TV-Anytime Content Reference Identifier</a>
       </dd>
-      
+
       <dt><a name="ref-tag">[tag]</a>
-      
+
       RFC 4151
       </dt>
       <dd><a href="http://www.ietf.org/rfc/rfc4151.txt">
       tag</a>
       </dd>
-      
+
       <dt><a name="ref-afs">[afs]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Andrew File System global file names</a>
       </dd>
-      
+
       <dt><a name="ref-tn3270">[tn3270]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Interactive 3270 emulation sessions</a>
       </dd>
-      
+
       <dt><a name="ref-mailserver">[mailserver]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Access to data available from mail servers</a>
       </dd>
-      
+
       <dt><a name="ref-dns">[dns]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Domain Name System</a>
       </dd>
-      
+
       <dt><a name="ref-info">[info]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Information Assets with Identifiers in Public Namespaces</a>
       </dd>
-      
+
       <dt><a name="ref-ldap">[ldap]</a>
-      
+
       </dt>
       <dd><a href="http://www.iana.org/assignments/uri-schemes">
       Lightweight Directory Access Protocol</a>
       </dd>
-       
+
  </dl>
- 
+
  <p>Other relevant standards include:
  </p>
  <dl>
-  
+
       <dt><a name="ref-URL_Registratrion">[URL_Registratrion]</a>
-      
+
       RFC 2717
       </dt>
       <dd><a href="http://www.apps.ietf.org/rfc/rfc2717.html">
-      
+
         Registration Procedures for URL
               Scheme Names</a>
       </dd>
-       
+
  </dl>
- 
+
  */
 public interface ViolationCodes {
-   
+
 /**
 This class is not part of the API.
 */
    class Initialize implements IRIComponents, Force {
    static {
-   
+
    Specification spec;
-   
-   
+
+
      spec =
        new Specification(
                 "RDF",
@@ -1217,26 +1217,26 @@
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref",
                 "Resource Description Framework (RDF): Concepts and Abstract Syntax",
                 "RDF URI References",
-                  
+
                 new String[]{
-                  
+
       "foo/bar",
-    
+
       "#frag",
-    
+
       "//example.org/foo/bar#frag",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
         spec.require(
               IRIComponents.SCHEME
         );
-    
+
      spec =
        new Specification(
                 "URI",
@@ -1245,16 +1245,16 @@
                 "http://www.apps.ietf.org/rfc/rfc3986.html",
                 "Uniform Resource Identifier (URI): Generic Syntax",
                 "",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new Specification(
                 "Unicode",
@@ -1263,16 +1263,16 @@
                 "http://www.unicode.org/",
                 "Unicode",
                 "",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new Specification(
                 "IRI",
@@ -1281,16 +1281,16 @@
                 "http://www.apps.ietf.org/rfc/rfc3987.html",
                 "Internationalized Resource Identifiers (IRIs)",
                 "",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new Specification(
                 "XML",
@@ -1299,20 +1299,20 @@
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid",
                 "Extensible Markup Language (XML) 1.0 (Third Edition)",
                 "system identifier",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
         spec.prohibit(
               IRIComponents.FRAGMENT
         );
-    
+
      spec =
        new Specification(
                 "XLink",
@@ -1321,16 +1321,16 @@
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators",
                 "XML Linking Language (XLink) Version 1.0",
                 "Locator Attribute (href)",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new Specification(
                 "Schema",
@@ -1339,16 +1339,16 @@
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI",
                 "XML Schema Part 2: Datatypes Second Edition",
                 "anyURI",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new Specification(
                 "URL_Registratrion",
@@ -1357,16 +1357,16 @@
                 "http://www.apps.ietf.org/rfc/rfc2717.html",
                 "Registration Procedures for URL Scheme Names",
                 "",
-                  
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
+
      spec =
        new SchemeSpecification(
                 "http",
@@ -1374,51 +1374,51 @@
                 "http://www.apps.ietf.org/rfc/rfc2616.html",
                 "Hypertext Transfer Protocol -- HTTP/1.1",
                 "",
-                
+
                 new String[]{
-                  
+
       "http://www.example.org:80/foo/bar",
-    
+
       "http:foo/bar",
-    
+
       "http://user@www.example.org/foo/bar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "http://www.example.org/foo/bar",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2616.html#sec-3.2.2",    
+                "http://www.apps.ietf.org/rfc/rfc2616.html#sec-3.2.2",
                 ""+
   "\n"+
     "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+
     "</pre>"+
      "<p>"
         );
-    
+
         spec.setDNS(true);
-    
+
         spec.port(80);
-    
+
         spec.prohibit(
               IRIComponents.USER
         );
-    
+
         spec.require(
               IRIComponents.HOST
         );
-    
+
      spec =
        new SchemeSpecification(
                 "https",
@@ -1426,58 +1426,58 @@
                 "http://www.apps.ietf.org/rfc/rfc2818.html",
                 "Hypertext Transfer Protocol Secure",
                 "",
-                
+
                 new String[]{
-                  
+
       "https://www.example.org:443/foo/bar",
-    
+
       "https:foo/bar",
-    
+
       "https://user@www.example.org/foo/bar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "https://www.example.org/foo/bar",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2818.html#sec-2.4",    
-                "HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier.",    
+                "http://www.apps.ietf.org/rfc/rfc2818.html#sec-2.4",
+                "HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier.",
                 "HTTP/TLS is differentiated from HTTP URIs by using the 'https' protocol identifier in place of the 'http' protocol identifier."
         );
-    
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2818.html#sec-3.2.2",    
+                "http://www.apps.ietf.org/rfc/rfc2818.html#sec-3.2.2",
                 ""+
   "\n"+
     "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "http_URL = \"http:\" \"//\" host [ \":\" port ] [ abs_path [ \"?\" query ]]\n"+
     "</pre>"+
      "<p>"
         );
-    
+
         spec.setDNS(true);
-    
+
         spec.port(443);
-    
+
         spec.prohibit(
               IRIComponents.USER
         );
-    
+
         spec.require(
               IRIComponents.HOST
         );
-    
+
      spec =
        new SchemeSpecification(
                 "ftp",
@@ -1485,28 +1485,28 @@
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.2",
                 "File Transfer Protocol",
                 "3.2",
-                
+
                 new String[]{
-                  
+
       "ftp:///foo/bar",
-    
+
       "ftp://user@example.org/foo/bar;type=z",
-    
+
       "ftp://user@example.org/foo/b;ar;type=d",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "ftp://user@example.org/foo/bar;type=d",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",    
+                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
   "\n"+
     "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+
@@ -1523,7 +1523,7 @@
     "escape = \"%\" hex hex\n"+
     "unreserved = alpha | digit | safe | extra\n"+
     "uchar = unreserved | escape\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "ftpurl = \"ftp://\" login [ \"/\" fpath [ \";type=\" ftptype ]]\n"+
@@ -1545,20 +1545,20 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec.setDNS(true);
-    
+
         spec.port(21);
-    
+
         spec.require(
               IRIComponents.HOST
         );
-    
+
         spec.setPattern(PATHQUERY,
                 "[^;~]*(;@{mustLowerCase(type)}=@{shouldLowerCase([aid])}|)" );
-      
+
         spec.setReserved(PATHQUERY,"~;");
-      
+
      spec =
        new SchemeSpecification(
                 "mailto",
@@ -1566,21 +1566,21 @@
                 "http://www.apps.ietf.org/rfc/rfc2368.html",
                 "Electronic mail address",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
         spec.prohibit(
               IRIComponents.AUTHORITY
         );
-    
+
      spec =
        new SchemeSpecification(
                 "news",
@@ -1588,36 +1588,36 @@
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.6",
                 "USENET news",
                 "3.6",
-                
+
                 new String[]{
-                  
+
       "news:arbitrary@news.exampl\u00E7.org",
-    
+
       "news:arbitr?ary@news.exampl\u00E7.org",
-    
+
       "news:///foo/bar",
-    
+
       "news://user@example.org/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "news:*",
-    
+
       "news:group.it",
-    
+
       "news:arb?itrary@news.example.org",
-    
+
       "news:arbitrary@news.example.org",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",    
+                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
   "\n"+
     "newsurl = \"news:\" grouppart\n"+
@@ -1631,7 +1631,7 @@
     "escape = \"%\" hex hex\n"+
     "unreserved = alpha | digit | safe | extra\n"+
     "uchar = unreserved | escape\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "newsurl = \"news:\" grouppart\n"+
@@ -1649,20 +1649,20 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec.prohibit(
               IRIComponents.AUTHORITY
         );
-    
+
         spec.require(
               IRIComponents.PATH
         );
-    
+
         spec.setPattern(PATHQUERY,
                 "[^@]+@@{host}|[*]|[a-zA-Z][-a-zA-Z0-9.+_]*" );
-      
+
         spec.setReserved(PATHQUERY,"~@");
-      
+
      spec =
        new SchemeSpecification(
                 "nntp",
@@ -1670,45 +1670,45 @@
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7",
                 "USENET news using NNTP access",
                 "3.7",
-                
+
                 new String[]{
-                  
+
       "nntp://user@example.org/foo",
-    
+
       "nntp:/foo",
-    
+
       "nntp:///foo",
-    
+
       "nntp://example.org/foo/4/3",
-    
+
       "nntp://example.org/",
-    
+
       "nntp://example.org/foo/",
-    
+
       "nntp://example.org/*",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "nntp://example.org/foo4",
-    
+
       "nntp://example.org/foo/4",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",    
+                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
   "\n"+
     "nntpurl = \"nntp://\" hostport \"/\" group [ \"/\" digits ]\n"+
     ""+
   "\n"+
     "group = alpha *[ alpha | digit | \"-\" | \".\" | \"+\" | \"_\" ]\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "nntpurl = \"nntp://\" hostport \"/\" group [ \"/\" digits ]\n"+
@@ -1719,26 +1719,26 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec.setDNS(true);
-    
+
         spec.port(119);
-    
+
         spec.prohibit(
               IRIComponents.QUERY
         );
-    
+
         spec.prohibit(
               IRIComponents.USER
         );
-    
+
         spec.require(
               IRIComponents.HOST
         );
-    
+
         spec.setPattern(PATH,
                 "/[a-zA-Z][-a-zA-Z0-9.+_]*(/[0-9]+)?" );
-      
+
      spec =
        new SchemeSpecification(
                 "telnet",
@@ -1746,17 +1746,17 @@
                 "http://www.ietf.org/rfc/rfc4248.txt",
                 "Reference to interactive sessions",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "wais",
@@ -1764,17 +1764,17 @@
                 "http://www.ietf.org/rfc/rfc4156.txt",
                 "Wide Area Information Servers",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "file",
@@ -1782,36 +1782,36 @@
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.10",
                 "Host-specific file names",
                 "3.10",
-                
+
                 new String[]{
-                  
+
       "file://user@example.org/foo/bar",
-    
+
       "file://eg:4029/foo/bar",
-    
+
       "file:/foo/bar",
-    
+
       "file://example.org",
-    
+
       "file://foo/bar;t",
-    
+
       "file://foo/~jjc",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "file:///foo/b",
-    
+
       "file:///foo/b?ar/yuk",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",    
+                "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
   "\n"+
     "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+
@@ -1826,7 +1826,7 @@
     "escape = \"%\" hex hex\n"+
     "unreserved = alpha | digit | safe | extra\n"+
     "uchar = unreserved | escape\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "fileurl = \"file://\" [ host | \"localhost\" ] \"/\" fpath\n"+
@@ -1846,30 +1846,30 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec.setDNS(true);
-    
+
         spec.prohibit(
               IRIComponents.USER
         );
-    
+
         spec.prohibit(
               IRIComponents.PORT
         );
-    
+
         spec.require(
               IRIComponents.PATH
         );
-    
+
         spec.require(
               IRIComponents.AUTHORITY
         );
-    
+
         spec.setPattern(PATHQUERY,
                 "[^;~]*" );
-      
+
         spec.setReserved(PATHQUERY,"~;");
-      
+
      spec =
        new SchemeSpecification(
                 "prospero",
@@ -1877,17 +1877,17 @@
                 "http://www.ietf.org/rfc/rfc4157.txt",
                 "Prospero Directory Service",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "gopher",
@@ -1895,17 +1895,17 @@
                 "http://www.ietf.org/rfc/rfc4266.txt",
                 "The gopher URI scheme",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "z39.50s",
@@ -1913,17 +1913,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2056.html",
                 "Z39.50 Session",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "z39.50r",
@@ -1931,17 +1931,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2056.html",
                 "Z39.50 Retrieval",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "cid",
@@ -1949,17 +1949,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2392.html",
                 "content identifier",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "mid",
@@ -1967,17 +1967,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2392.html",
                 "message identifier",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "vemmi",
@@ -1985,17 +1985,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2122.html",
                 "versatile multimedia interface",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "service",
@@ -2003,17 +2003,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2609.html",
                 "service location",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "imap",
@@ -2021,17 +2021,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2192.html",
                 "internet message access protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "nfs",
@@ -2039,17 +2039,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2224.html",
                 "network file system protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "acap",
@@ -2057,17 +2057,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2244.html",
                 "application configuration access protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "rtsp",
@@ -2075,17 +2075,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2326.html",
                 "real time streaming protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "tip",
@@ -2093,17 +2093,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2371.html",
                 "Transaction Internet Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "pop",
@@ -2111,17 +2111,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2384.html",
                 "Post Office Protocol v3",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "data",
@@ -2129,17 +2129,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2397.html",
                 "data",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "dav",
@@ -2147,17 +2147,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2518.html",
                 "dav",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "opaquelocktoken",
@@ -2165,17 +2165,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2518.html",
                 "opaquelocktoken",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "sip",
@@ -2183,17 +2183,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3261.html",
                 "session initiation protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "sips",
@@ -2201,17 +2201,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3261.html",
                 "secure session intitiaion protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "tel",
@@ -2219,17 +2219,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2806.html",
                 "telephone",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "fax",
@@ -2237,17 +2237,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2806.html",
                 "fax",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "modem",
@@ -2255,17 +2255,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2806.html",
                 "modem",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "soap.beep",
@@ -2273,17 +2273,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3288.html",
                 "soap.beep",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "soap.beeps",
@@ -2291,17 +2291,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3288.html",
                 "soap.beeps",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "xmlrpc.beep",
@@ -2309,17 +2309,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3529.html",
                 "xmlrpc.beep",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "xmlrpc.beeps",
@@ -2327,17 +2327,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3529.html",
                 "xmlrpc.beeps",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "urn",
@@ -2345,48 +2345,48 @@
                 "http://www.apps.ietf.org/rfc/rfc2141.html",
                 "Uniform Resource Names",
                 "",
-                
+
                 new String[]{
-                  
+
       "urn:x-hp:foo/bar",
-    
+
       "urn:urn:foo",
-    
+
       "urn://foo",
-    
+
       "urn:foo:bar?query",
-    
+
       "urn:foo:ff~",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
       "urn:x-hp:foo\u00E9",
-    
+
       "urn:urn-1:foo",
-    
+
                 }
             );
-            
-            
+
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2",    
+                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2",
                 "All URNs have the following syntax (phrases enclosed in quotes are REQUIRED):"+
   "\n"+
     "<URN&gt; ::= \"urn:\" <NID&gt; \":\" <NSS&gt;\n"+
-    "",    
+    "",
                 "All URNs have the following syntax (phrases enclosed in quotes are REQUIRED):"+
      "</p><pre>\n"+
     "&lt;URN&gt; ::= \"urn:\" &lt;NID&gt; \":\" &lt;NSS&gt;\n"+
     "</pre>"+
      "<p>"
         );
-    
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1",    
+                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1",
                 ""+
   "\n"+
     "<NID&gt;         ::= <let-num&gt; [ 1,31<let-num-hyp&gt; ]\n"+
@@ -2394,7 +2394,7 @@
     "<let-num-hyp&gt; ::= <upper&gt; | <lower&gt; | <number&gt; | \"-\"\n"+
     "\n"+
     "<let-num&gt;     ::= <upper&gt; | <lower&gt; | <number&gt;\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "&lt;NID&gt;         ::= &lt;let-num&gt; [ 1,31&lt;let-num-hyp&gt; ]\n"+
@@ -2405,10 +2405,10 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.2",    
+                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.2",
                 ""+
   "\n"+
     "<NSS&gt;         ::= 1*<URN chars&gt;\n"+
@@ -2420,7 +2420,7 @@
     "<other&gt;       ::= \"(\" | \")\" | \"+\" | \",\" | \"-\" | \".\" |\n"+
     "                  \":\" | \"=\" | \"@\" | \";\" | \"$\" |\n"+
     "                  \"_\" | \"!\" | \"*\" | \"'\"\n"+
-    "",    
+    "",
                 ""+
      "</p><pre>\n"+
     "&lt;NSS&gt;         ::= 1*&lt;URN chars&gt;\n"+
@@ -2435,14 +2435,14 @@
     "</pre>"+
      "<p>"
         );
-    
+
         spec
         .addDefinition(
-                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2",    
-                "RFC 1630 [2] reserves the characters \"/\", \"?\", and \"#\" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character.",    
+                "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2",
+                "RFC 1630 [2] reserves the characters \"/\", \"?\", and \"#\" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character.",
                 "RFC 1630 [2] reserves the characters \"/\", \"?\", and \"#\" for particular purposes. The URN-WG has not yet debated the applicability and precise semantics of those purposes as applied to URNs. Therefore, these characters are RESERVED for future developments. Namespace developers SHOULD NOT use these characters in unencoded form, but rather use the appropriate %-encoding for each character."
         );
-    
+
         spec.prohibit(
               IRIComponents.AUTHORITY
         );
@@ -2452,22 +2452,22 @@
 //        spec.prohibit(
 //              IRIComponents.QUERY
 //        );
-    
+
         spec.require(
               IRIComponents.PATH
         );
-    
+
         spec.setPattern(QUERY, "[+=].*");
-        
+
         spec.setPattern(PATH,
-                // RFC 2141 - 
+                // RFC 2141 -
                 //"(?![uU][rR][nN]:)[a-zA-Z0-9][-a-zA-Z0-9]{1,31}:[^/~]+"
                 // RFC 8141 revision of 2141 - JENA-1647
                 "(?![uU][rR][nN]:)[a-zA-Z0-9][-a-zA-Z0-9]{1,31}:.*"
                 );
-      
+
         spec.setReserved(PATH,"/~");
-      
+
      spec =
        new SchemeSpecification(
                 "go",
@@ -2475,17 +2475,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3368.html",
                 "go",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "h323",
@@ -2493,17 +2493,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3508.html",
                 "H.323",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "ipp",
@@ -2511,17 +2511,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3510.html",
                 "Internet Printing Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "tftp",
@@ -2529,17 +2529,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3617.html",
                 "Trivial File Transfer Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "mupdate",
@@ -2547,17 +2547,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3656.html",
                 "Mailbox Update (MUPDATE) Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "pres",
@@ -2565,17 +2565,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3859.html",
                 "Presence",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "im",
@@ -2583,17 +2583,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3860.html",
                 "Instant Messaging",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "mtqp",
@@ -2601,17 +2601,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3887.html",
                 "Message Tracking Query Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "iris.beep",
@@ -2619,17 +2619,17 @@
                 "http://www.apps.ietf.org/rfc/rfc3983.html",
                 "iris.beep",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "dict",
@@ -2637,17 +2637,17 @@
                 "http://www.apps.ietf.org/rfc/rfc2229.html",
                 "dictionary service protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "snmp",
@@ -2655,17 +2655,17 @@
                 "http://www.ietf.org/rfc/rfc4088.txt",
                 "Simple Network Management Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "crid",
@@ -2673,17 +2673,17 @@
                 "http://www.ietf.org/rfc/rfc4078.txt",
                 "TV-Anytime Content Reference Identifier",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "tag",
@@ -2691,17 +2691,17 @@
                 "http://www.ietf.org/rfc/rfc4151.txt",
                 "tag",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "afs",
@@ -2709,17 +2709,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Andrew File System global file names",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "tn3270",
@@ -2727,17 +2727,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Interactive 3270 emulation sessions",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "mailserver",
@@ -2745,17 +2745,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Access to data available from mail servers",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "dns",
@@ -2763,17 +2763,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Domain Name System",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "info",
@@ -2781,17 +2781,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Information Assets with Identifiers in Public Namespaces",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
      spec =
        new SchemeSpecification(
                 "ldap",
@@ -2799,17 +2799,17 @@
                 "http://www.iana.org/assignments/uri-schemes",
                 "Lightweight Directory Access Protocol",
                 "",
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 }
             );
-            
-            
+
+
             new ViolationCodeInfo(
                 ILLEGAL_CHARACTER,
                 "ILLEGAL_CHARACTER",
@@ -2817,51 +2817,51 @@
                 "<p>The character violates the grammar rules for URIs/IRIs.</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html#page-49"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-2.2"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ht$tp://example.org/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PERCENT_ENCODING_SHOULD_BE_UPPERCASE,
                 "PERCENT_ENCODING_SHOULD_BE_UPPERCASE",
@@ -2869,9 +2869,9 @@
                 "<p>Percent-escape sequences should use uppercase.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1",
                 "URI producers and normalizers should use *uppercase* hexadecimal digits for all percent-encodings.",
@@ -2879,46 +2879,46 @@
      " <em>uppercase</em> "+
      "hexadecimal digits for all percent-encodings.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/foo%c3%80",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING,
                 "SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING",
@@ -2926,29 +2926,29 @@
                 "<p>Percent-escape sequences should not be used unnecessarily.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.2",
                 "URI-to-IRI conversion removes percent-encodings",
                 "<p>URI-to-IRI conversion removes percent-encodings</p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/foo%C3%A9r",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SUPERFLUOUS_ASCII_PERCENT_ENCODING,
                 "SUPERFLUOUS_ASCII_PERCENT_ENCODING",
@@ -2956,54 +2956,54 @@
                 "<p>Percent-escape sequences should not be used unnecessarily.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.3",
                 "For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be created by URI producers",
                 "<p>For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore (%5F), or tilde (%7E) should not be created by URI producers</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/foo%5Fb%61r",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNWISE_CHARACTER,
                 "UNWISE_CHARACTER",
@@ -3011,42 +3011,42 @@
                 "<p>The character matches no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#page-13",
                 "Systems accepting IRIs MAY also deal with the printable characters in US-ASCII that are not allowed in URIs, namely \"<\", \"&gt;\", '\"', space, \"{\", \"}\", \"|\", \"\\\", \"^\", and \"`\", in step 2 above. If these characters are found but are not converted, then the conversion SHOULD fail.",
                 "<p>Systems accepting IRIs MAY also deal with the printable characters in US-ASCII that are not allowed in URIs, namely \"&lt;\", \"&gt;\", '\"', space, \"{\", \"}\", \"|\", \"\\\", \"^\", and \"`\", in step 2 above. If these characters are found but are not converted, then the conversion SHOULD fail.</p>"
             ),
-    
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html#page-49"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/fo|o",
-    
+
       "http://example.org/fo<o",
-    
+
       "http://example.org/fo&gt;o",
-    
+
       "http://example.org/fo\"o",
-    
+
       "http://example.org/fo`o",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 CONTROL_CHARACTER,
                 "CONTROL_CHARACTER",
@@ -3054,9 +3054,9 @@
                 "<p>Control characters are not allowed in URIs or RDF URI References.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "RDF", 
+                "RDF",
                 -1,
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref",
                 "A URI reference within an RDF graph (an RDF URI reference) is a Unicode string [UNICODE] that: (0)does not contain any control characters ( #x00 - #x1F, #x7F-#x9F) ",
@@ -3066,9 +3066,9 @@
      "</ul>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html",
                 ""+
@@ -3091,32 +3091,32 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/fo\u007Fo",
-    
+
       "http://example.org/fo\u0085o",
-    
+
       "http://example.org/fo\u0009o",
-    
+
       "http://example.org/fo\u0001o",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NON_XML_CHARACTER,
                 "NON_XML_CHARACTER",
@@ -3124,39 +3124,39 @@
                 "<p>The character is not legal in XML.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "XML", 
+                "XML",
                 -1,
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#NT-Char",
                 "Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]",
                 "<p>Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]</p>"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/foo\u0001",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DISCOURAGED_XML_CHARACTER,
                 "DISCOURAGED_XML_CHARACTER",
@@ -3164,39 +3164,39 @@
                 "<p>The character is discouraged in XML documents.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "XML", 
+                "XML",
                 -1,
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#char32",
                 "Document authors are encouraged to avoid \"compatibility characters\", as defined in section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters defined in the following ranges are also discouraged. They are either control characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF],",
                 "<p>Document authors are encouraged to avoid \"compatibility characters\", as defined in section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters defined in the following ranges are also discouraged. They are either control characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], [#xFDD0-#xFDDF],</p>"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/foo\u0080",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NON_INITIAL_DOT_SEGMENT,
                 "NON_INITIAL_DOT_SEGMENT",
@@ -3204,9 +3204,9 @@
                 "<p>The path contains a segment /../ not at the beginning of a relative reference, or it contains a /./ These should be removed.</p>",
                 0|Force.minting|Force.security,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-6.2.2.3",
                 "The complete path segments \".\" and \"..\" are intended *only* for use within relative references",
@@ -3214,56 +3214,56 @@
      " <em>only</em> "+
      "for use within relative references</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/../foo",
-    
+
       "http://example.org/foo/../foo",
-    
+
       "http://example.org/foo/..",
-    
+
       "http://example.org/foo/./foo",
-    
+
       "http://example.org/./foo",
-    
+
       "http://example.org/foo/.",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 EMPTY_SCHEME,
                 "EMPTY_SCHEME",
@@ -3271,9 +3271,9 @@
                 "<p>The scheme component is empty.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1",
                 "Scheme names consist of a sequence of characters *beginning with a letter* and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").",
@@ -3281,46 +3281,46 @@
      " <em>beginning with a letter</em> "+
      "and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "://example.org/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SCHEME_MUST_START_WITH_LETTER,
                 "SCHEME_MUST_START_WITH_LETTER",
@@ -3328,9 +3328,9 @@
                 "<p>The scheme component must start with a letter.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1",
                 "Scheme names consist of a sequence of characters *beginning with a letter* and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").",
@@ -3338,46 +3338,46 @@
      " <em>beginning with a letter</em> "+
      "and followed by any combination of letters, digits, plus (\"+\"), period (\".\"), or hyphen (\"-\").</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "007://example.org/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 LOWERCASE_PREFERRED,
                 "LOWERCASE_PREFERRED",
@@ -3385,17 +3385,17 @@
                 "<p>lowercase is preferred in this component</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 SCHEME,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1",
                 "An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow \"HTTP\" as well as \"http\") for the sake of robustness but should only produce lowercase scheme names for consistency.",
                 "<p>An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow \"HTTP\" as well as \"http\") for the sake of robustness but should only produce lowercase scheme names for consistency.</p>"
             ),
-    
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 HOST,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "Although host is case-insensitive, producers and normalizers should use *lowercase for registered names* and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings.",
@@ -3403,48 +3403,48 @@
      " <em>lowercase for registered names</em> "+
      "and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "HTTP://example.org/foo",
-    
+
       "http://eXamPle.org/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PORT_SHOULD_NOT_BE_EMPTY,
                 "PORT_SHOULD_NOT_BE_EMPTY",
@@ -3452,9 +3452,9 @@
                 "<p>The colon introducing an empty port component should be omitted entirely, or a port number should be specified.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "URI producers and normalizers should omit the port component *and its \":\" delimiter* if port is empty",
@@ -3462,46 +3462,46 @@
      " <em>and its \":\" delimiter</em> "+
      "if port is empty</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org:/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DEFAULT_PORT_SHOULD_BE_OMITTED,
                 "DEFAULT_PORT_SHOULD_BE_OMITTED",
@@ -3509,9 +3509,9 @@
                 "<p>If the port is the default one for the scheme it should be omitted.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "URI producers and normalizers should omit the port component and its \":\" delimiter if port is empty or if its value would be the *same as that of the scheme's default.* ",
@@ -3519,46 +3519,46 @@
      " <em>same as that of the scheme's default.</em> "+
      "</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org:80/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PORT_SHOULD_NOT_BE_WELL_KNOWN,
                 "PORT_SHOULD_NOT_BE_WELL_KNOWN",
@@ -3566,9 +3566,9 @@
                 "<p>Ports under 1024 should be accessed using the appropriate scheme name.</p>",
                 0|Force.security,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-7.2",
                 "Applications should prevent dereference of a URI that specifies a TCP port number within the \"well-known port\" range *(0 - 1023)* unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port.",
@@ -3576,46 +3576,46 @@
      " <em>(0 - 1023)</em> "+
      "unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org:180/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PORT_SHOULD_NOT_START_IN_ZERO,
                 "PORT_SHOULD_NOT_START_IN_ZERO",
@@ -3623,51 +3623,51 @@
                 "<p>Leading zeros in the port number should be omitted. This is an added feature of this implementation, not mandated by any standard.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org:08080/foo",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 BIDI_FORMATTING_CHARACTER,
                 "BIDI_FORMATTING_CHARACTER",
@@ -3675,41 +3675,41 @@
                 "<p>A prohibited bi-directional control character was found.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.1",
                 "IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF).",
                 "<p>IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF).</p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/Andr\u202Abar",
-    
+
       "http://example.org/Andr\u202Bbar",
-    
+
       "http://example.org/Andr\u202Cbar",
-    
+
       "http://example.org/Andr\u202Dbar",
-    
+
       "http://example.org/Andr\u202Ebar",
-    
+
       "http://example.org/Andr\u200Ebar",
-    
+
       "http://example.org/Andr\u200Fbar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 WHITESPACE,
                 "WHITESPACE",
@@ -3717,33 +3717,33 @@
                 "<p>A single whitespace character. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, and XML Schema anyURIs.</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/ foo",
-    
+
       "file:///Program Files",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DOUBLE_WHITESPACE,
                 "DOUBLE_WHITESPACE",
@@ -3751,42 +3751,42 @@
                 "<p>Either two or more consecutive whitespace characters, or leading or trailing whitespace. These match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, XML system identifiers, but not XML Schema anyURIs.</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/  foo",
-    
+
       "file:///Program  Files",
-    
+
       "file:///TabBar ",
-    
+
       " rel-with-initial-space",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_XML_SCHEMA_WHITESPACE,
                 "NOT_XML_SCHEMA_WHITESPACE",
@@ -3794,19 +3794,19 @@
                 "<p>Whitespace characters match no grammar rules of URIs/IRIs. These characters are permitted in RDF URI References, and XML system identifiers. However, tab and new line characters, and consecutive space characters cannot occur in XML Schema anyURIs.</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
        new FromSpec_iri(
-                "Schema", 
+                "Schema",
                 -1,
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#schema",
                 ""+
@@ -3831,106 +3831,106 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "file:///Tab\u0009Bar",
-    
+
       "file:///Tab\nBar",
-    
+
       "file:///Tab\rBar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DOUBLE_DASH_IN_REG_NAME,
                 "DOUBLE_DASH_IN_REG_NAME",
                 new String[]{
-                  
+
       "http://foo--bar//",
-    
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SCHEME_INCLUDES_DASH,
                 "SCHEME_INCLUDES_DASH",
                 new String[]{
-                  
+
       "ht-tp://foo.bar//",
-    
+
       "-http://foo.bar//",
-    
+
       "http-://foo.bar//",
-    
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NON_URI_CHARACTER,
                 "NON_URI_CHARACTER",
                 new String[]{
-                  
+
       "http://foo-bar//̳a",
-    
+
       "http://foo-b̳ar//",
-    
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PERCENT_20,
                 "PERCENT_20",
                 new String[]{
-                  
+
       "http://foo-bar//%20a",
-    
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PERCENT,
                 "PERCENT",
                 new String[]{
-                  
+
       "http://foo-bar//%AAa",
-    
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 IP_V6_OR_FUTURE_ADDRESS_SYNTAX,
                 "IP_V6_OR_FUTURE_ADDRESS_SYNTAX",
@@ -3938,9 +3938,9 @@
                 "<p>A syntax violation was detected in an IP V6 (or future) address.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 ""+
@@ -3983,50 +3983,50 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://[/",
-    
+
       "ldap://[20015:db8::7]/c=GB?objectClass?one",
-    
+
       "ldap://[2001:db8:::7]/c=GB?objectClass?one",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 IPv6ADDRESS_SHOULD_BE_LOWERCASE,
                 "IPv6ADDRESS_SHOULD_BE_LOWERCASE",
@@ -4034,9 +4034,9 @@
                 "<p>IP version 6 addresses should use lowercase hexadecimal</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "Although host is case-insensitive, producers and normalizers *should use lowercase* for registered names and *hexadecimal addresses* for the sake of uniformity",
@@ -4046,48 +4046,48 @@
      " <em>hexadecimal addresses</em> "+
      "for the sake of uniformity</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ldap://[2001:Db8::7]/c=GB?objectClass?one",
-    
+
       "ldap://[2001:dB8::7]/c=GB?objectClass?one",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 IP_V4_OCTET_RANGE,
                 "IP_V4_OCTET_RANGE",
@@ -4095,9 +4095,9 @@
                 "<p>A host entry consists of four numbers, but they are not in the range 0-255, or have leading zeros.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of *four decimal numbers* in the range *0 to 255* , separated by \".\"),",
@@ -4107,9 +4107,9 @@
      " <em>0 to 255</em> "+
      ", separated by \".\"),</p>"
             ),
-    
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 ""+
@@ -4130,52 +4130,52 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ldap://155.00.55.102/c=GB?objectClass?one",
-    
+
       "ldap://20.256.20.20/c=GB?objectClass?one",
-    
+
       "ldap://20.1000.20.20/c=GB?objectClass?one",
-    
+
       "ldap://20.010.20.20/c=GB?objectClass?one",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_DNS_NAME,
                 "NOT_DNS_NAME",
@@ -4183,9 +4183,9 @@
                 "<p>The host component did not meet the restrictions on DNS names.</p>",
                 0|Force.dns,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "URI producers should use names that *conform to the DNS syntax* , even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.",
@@ -4193,48 +4193,48 @@
      " <em>conform to the DNS syntax</em> "+
      ", even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ldap://foo$/c=GB?objectClass?one",
-    
+
       "http://foo.example.$org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 USE_PUNYCODE_NOT_PERCENTS,
                 "USE_PUNYCODE_NOT_PERCENTS",
@@ -4242,54 +4242,54 @@
                 "<p>The host component used percent encoding, where punycode is preferred.</p>",
                 0|Force.minting|Force.dns,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.",
                 "<p>URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ftp://andr%C3%A9.example.org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 ILLEGAL_PERCENT_ENCODING,
                 "ILLEGAL_PERCENT_ENCODING",
@@ -4297,77 +4297,77 @@
                 "<p>The host component a percent occurred without two following hexadecimal digits.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1",
                 "A percent-encoded octet is encoded as a character triplet, consisting of the percent character \"%\" followed by the two hexadecimal digits representing that octet's numeric value.",
                 "<p>A percent-encoded octet is encoded as a character triplet, consisting of the percent character \"%\" followed by the two hexadecimal digits representing that octet's numeric value.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ftp://andr%%A9.example.org/",
-    
+
       "ftp://andr%.example.org/",
-    
+
       "ftp://andre.example.org/%",
-    
+
       "ftp://andre.example.org/%A",
-    
+
       "ftp://andre.example.org/%A?",
-    
+
       "ftp://andre.example.org/%A#",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 ACE_PREFIX,
                 "ACE_PREFIX",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 LONE_SURROGATE,
                 "LONE_SURROGATE",
@@ -4375,21 +4375,21 @@
                 "<p>A unicode surrogate character that is not of a surrogate pair.</p>",
                 0,
                 new InSpec[]{
-                  
+
                 },
                 new String[]{
-                  
+
       "http:/foo/p\uD800",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DNS_LABEL_DASH_START_OR_END,
                 "DNS_LABEL_DASH_START_OR_END",
@@ -4397,62 +4397,62 @@
                 "<p>A DNS name had a - at the beginning or end.</p>",
                 0|Force.dns,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "Such a name consists of a sequence of domain labels separated by \".\", each domain label starting and ending with an alphanumeric character and possibly also containing \"-\" characters.",
                 "<p>Such a name consists of a sequence of domain labels separated by \".\", each domain label starting and ending with an alphanumeric character and possibly also containing \"-\" characters.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "ldap://-foo/c=GB?objectClass?one",
-    
+
       "http://foo.example.org-/",
-    
+
       "http://foo.example.org--/",
-    
+
       "http://--foo.example.org/",
-    
+
       "http://-fo-o.example.org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 BAD_IDN_UNASSIGNED_CHARS,
                 "BAD_IDN_UNASSIGNED_CHARS",
@@ -4460,57 +4460,57 @@
                 "<p>Characters used in the IRI were unassigned in the version of Unicode known by this system. They may have been assigned since.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.",
                 "<p>When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>"
             ),
-    
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1",
                 "Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.",
                 "<p>Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.</p>"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://foo.example\u0221.org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 BAD_IDN,
                 "BAD_IDN",
@@ -4518,61 +4518,61 @@
                 "<p>The Internationalized Domain Name check failed.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2",
                 "When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.",
                 "<p>When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup. URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.</p>"
             ),
-    
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1",
                 "Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.",
                 "<p>Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.</p>"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://--foo.example.org/",
-    
+
       "http://xn--andr--ep-.example.org/",
-    
+
       "http://xn.example.\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 HAS_PASSWORD,
                 "HAS_PASSWORD",
@@ -4580,62 +4580,62 @@
                 "<p>Including passwords in URIs is deprecated.</p>",
                 0|Force.must|Force.security,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1",
                 "Use of the format \"user:password\" in the userinfo field is deprecated.",
                 "<p>Use of the format \"user:password\" in the userinfo field is deprecated.</p>"
             ),
-    
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1",
                 "Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used.",
                 "<p>Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://user:pass@example.org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DISCOURAGED_IRI_CHARACTER,
                 "DISCOURAGED_IRI_CHARACTER",
@@ -4643,35 +4643,35 @@
                 "<p>Certain characters are discouraged in IRIs.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-6.1",
                 "The UCS contains many areas of characters for which there are strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of \"space\", \"delims\", and \"unwise\", characters excluded in [RFC3491].",
                 "<p>The UCS contains many areas of characters for which there are strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of \"space\", \"delims\", and \"unwise\", characters excluded in [RFC3491].</p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/\u2000en-quad",
-    
+
       "http://example.org/\u205Fmedium-mathematical-space",
-    
+
       "http://example\uFF95.org/",
-    
+
       "http://example\uFF47.org/",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 BAD_BIDI_SUBCOMPONENT,
                 "BAD_BIDI_SUBCOMPONENT",
@@ -4679,9 +4679,9 @@
                 "<p>There are restrictions on bidi characters in subcomponents of IRIs</p>",
                 0|Force.should,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.2",
                 " (0)A component SHOULD NOT use both right-to-left and left-to-right characters. (1)A component using right-to-left characters SHOULD start and end with right-to-left characters. ",
@@ -4693,84 +4693,84 @@
      "</ol>"+
      "<p></p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DNS_LENGTH_LIMIT,
                 "DNS_LENGTH_LIMIT",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DNS_LABEL_LENGTH_LIMIT,
                 "DNS_LABEL_LENGTH_LIMIT",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_UTF8_ESCAPE,
                 "NOT_UTF8_ESCAPE",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_UTF8_ESCAPE_IN_HOST,
                 "NOT_UTF8_ESCAPE_IN_HOST",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 BAD_DOT_IN_IDN,
                 "BAD_DOT_IN_IDN",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNREGISTERED_IANA_SCHEME,
                 "UNREGISTERED_IANA_SCHEME",
@@ -4778,25 +4778,25 @@
                 "<p>The scheme name does not have a \"-\" in it, but is not in the IANA registry. (Last updated from the registry January 2006)</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_other(
-                "URL_Registratrion", 
+                "URL_Registratrion",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc2717.html#sec-",
                 "",
                 "<p></p>"
             ),
-    
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2",
                 "The NAMES of schemes registered in the IETF tree MUST NOT contain the dash (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. Use of this character can cause confusion with schemes registered in alternative trees (see section 3.3).",
                 "<p>The NAMES of schemes registered in the IETF tree MUST NOT contain the dash (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. Use of this character can cause confusion with schemes registered in alternative trees (see section 3.3).</p>"
             ),
-    
+
        new FromSpec_iri(
-                "URI", 
+                "URI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.3",
                 "The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+
@@ -4809,46 +4809,46 @@
     "</pre>"+
      "<p>For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.</p>"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "foo://example.org/bar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNREGISTERED_NONIETF_SCHEME_TREE,
                 "UNREGISTERED_NONIETF_SCHEME_TREE",
@@ -4856,9 +4856,9 @@
                 "<p>The scheme name has a \"-\" in it, but it does not start in \"x-\" and the prefix is not known as the prefix of an alternative tree for URI schemes.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_other(
-                "URL_Registratrion", 
+                "URL_Registratrion",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc2717.html#sec-3.3",
                 "The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:"+
@@ -4871,51 +4871,51 @@
     "</pre>"+
      "<p>For instance, the \"foo\" tree would allow creation of scheme names of the form: \"foo-blahblah:\" and \"foo-bar:\", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.</p>"
             ),
-    
+
             new FromAlso(
                 "URI",
                 "http://www.apps.ietf.org/rfc/rfc3986.html"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
             new FromAlso(
                 "XLink",
                 "http://www.w3.org/TR/2001/REC-xlink-20010627/#link-locators"
             ),
-    
+
             new FromAlso(
                 "XML",
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid"
             ),
-    
+
             new FromAlso(
                 "RDF",
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref"
             ),
-    
+
             new FromAlso(
                 "Schema",
                 "http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#anyURI"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "foo-bar://example.org/bar",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_NFC,
                 "NOT_NFC",
@@ -4923,29 +4923,29 @@
                 "<p>The IRI is not in Unicode Normal Form C.</p>",
                 0|Force.should,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-5.3.2.2",
                 "To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC.",
                 "<p>To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC.</p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/#Andre\u0301",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 NOT_NFKC,
                 "NOT_NFKC",
@@ -4953,29 +4953,29 @@
                 "<p>The IRI is not in Unicode Normal Form KC.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "IRI", 
+                "IRI",
                 -1,
                 "http://www.apps.ietf.org/rfc/rfc3987.html#sec-7.5",
                 "Although there may be exceptions, newly created resource names should generally be in NFKC",
                 "<p>Although there may be exceptions, newly created resource names should generally be in NFKC</p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
       "http://example.org/#Andre\u0301",
-    
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 DEPRECATED_UNICODE_CHARACTER,
                 "DEPRECATED_UNICODE_CHARACTER",
@@ -4983,29 +4983,29 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNDEFINED_UNICODE_CHARACTER,
                 "UNDEFINED_UNICODE_CHARACTER",
@@ -5013,29 +5013,29 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PRIVATE_USE_CHARACTER,
                 "PRIVATE_USE_CHARACTER",
@@ -5043,29 +5043,29 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNICODE_CONTROL_CHARACTER,
                 "UNICODE_CONTROL_CHARACTER",
@@ -5073,85 +5073,85 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNASSIGNED_UNICODE_CHARACTER,
                 "UNASSIGNED_UNICODE_CHARACTER",
-                "The character code is not assigned in the version of Unicode implemented here. Check validity of code, consider updating your copy of icu4j.jar.",
-                "<p>The character code is not assigned in the version of Unicode implemented here. Check validity of code, consider updating your copy of icu4j.jar.</p>",
+                "The character code is not assigned in the version of Unicode implemented here.",
+                "<p>The character code is not assigned in the version of Unicode implemented here.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 MAYBE_NOT_NFC,
                 "MAYBE_NOT_NFC",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 MAYBE_NOT_NFKC,
                 "MAYBE_NOT_NFKC",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
                 true||
                 false
             );
-    
+
             new ViolationCodeInfo(
                 UNICODE_WHITESPACE,
                 "UNICODE_WHITESPACE",
@@ -5159,29 +5159,29 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 COMPATIBILITY_CHARACTER,
                 "COMPATIBILITY_CHARACTER",
@@ -5189,29 +5189,29 @@
                 "<p>TODO</p>",
                 0,
                 new InSpec[]{
-                  
+
             new FromAlso(
                 "Unicode",
                 "http://www.unicode.org/"
             ),
-    
+
             new FromAlso(
                 "IRI",
                 "http://www.apps.ietf.org/rfc/rfc3987.html"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 REQUIRED_COMPONENT_MISSING,
                 "REQUIRED_COMPONENT_MISSING",
@@ -5219,9 +5219,9 @@
                 "<p>A component that is required by the scheme is missing.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "RDF", 
+                "RDF",
                 SCHEME,
                 "http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref",
                 "representing an *absolute URI* with optional fragment identifier",
@@ -5229,21 +5229,21 @@
      " <em>absolute URI</em> "+
      "with optional fragment identifier</p>"
             ),
-    
+
        new FromSpec_scheme(
-                "http", 
+                "http",
                 HOST,
                 "http://www.apps.ietf.org/rfc/rfc2616.html"
             ),
-    
+
        new FromSpec_scheme(
-                "https", 
+                "https",
                 HOST,
                 "http://www.apps.ietf.org/rfc/rfc2818.html"
             ),
-    
+
        new FromSpec_scheme(
-                "ftp", 
+                "ftp",
                 HOST,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5260,9 +5260,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "news", 
+                "news",
                 PATH,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5281,15 +5281,15 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "nntp", 
+                "nntp",
                 HOST,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7"
             ),
-    
+
        new FromSpec_scheme(
-                "file", 
+                "file",
                 PATH,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5302,9 +5302,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "file", 
+                "file",
                 AUTHORITY,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5317,9 +5317,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "urn", 
+                "urn",
                 PATH,
                 "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2",
                 ""+
@@ -5332,19 +5332,19 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 PROHIBITED_COMPONENT_PRESENT,
                 "PROHIBITED_COMPONENT_PRESENT",
@@ -5352,29 +5352,29 @@
                 "<p>A component that is prohibited by the scheme is present.</p>",
                 0,
                 new InSpec[]{
-                  
+
        new FromSpec_iri(
-                "XML", 
+                "XML",
                 FRAGMENT,
                 "http://www.w3.org/TR/2004/REC-xml-20040204/#dt-sysid",
                 "TODO",
                 "<p>TODO</p>"
             ),
-    
+
        new FromSpec_scheme(
-                "http", 
+                "http",
                 USER,
                 "http://www.apps.ietf.org/rfc/rfc2616.html"
             ),
-    
+
        new FromSpec_scheme(
-                "https", 
+                "https",
                 USER,
                 "http://www.apps.ietf.org/rfc/rfc2818.html"
             ),
-    
+
        new FromSpec_scheme(
-                "mailto", 
+                "mailto",
                 AUTHORITY,
                 "http://www.apps.ietf.org/rfc/rfc2368.html",
                 ""+
@@ -5397,9 +5397,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "news", 
+                "news",
                 AUTHORITY,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5418,21 +5418,21 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "nntp", 
+                "nntp",
                 QUERY,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7"
             ),
-    
+
        new FromSpec_scheme(
-                "nntp", 
+                "nntp",
                 USER,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-3.7"
             ),
-    
+
        new FromSpec_scheme(
-                "file", 
+                "file",
                 USER,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5445,9 +5445,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "file", 
+                "file",
                 PORT,
                 "http://www.apps.ietf.org/rfc/rfc1738.html#sec-5",
                 ""+
@@ -5460,9 +5460,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "urn", 
+                "urn",
                 AUTHORITY,
                 "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2",
                 ""+
@@ -5475,9 +5475,9 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "urn", 
+                "urn",
                 AUTHORITY,
                 "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.1",
                 ""+
@@ -5490,25 +5490,25 @@
     "</pre>"+
      "<p></p>"
             ),
-    
+
        new FromSpec_scheme(
-                "urn", 
+                "urn",
                 QUERY,
                 "http://www.apps.ietf.org/rfc/rfc2141.html#sec-2.3.2"
             ),
-    
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SCHEME_REQUIRES_LOWERCASE,
                 "SCHEME_REQUIRES_LOWERCASE",
@@ -5516,19 +5516,19 @@
                 "<p>Some part of the scheme specific syntax requires lowercase.</p>",
                 0,
                 new InSpec[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SCHEME_PREFERS_LOWERCASE,
                 "SCHEME_PREFERS_LOWERCASE",
@@ -5536,19 +5536,19 @@
                 "<p>Some part of the scheme specific syntax prefers lowercase.</p>",
                 0|Force.minting,
                 new InSpec[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 SCHEME_PATTERN_MATCH_FAILED,
                 "SCHEME_PATTERN_MATCH_FAILED",
@@ -5556,275 +5556,275 @@
                 "<p>The scheme specific syntax rules are violated.</p>",
                 0,
                 new InSpec[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
             new ViolationCodeInfo(
                 QUERY_IN_LEGACY_SCHEME,
                 "QUERY_IN_LEGACY_SCHEME",
                 new String[]{
-                  
+
                 },
                 new String[]{
-                  
+
                 },
-                
+
                 false
             );
-    
+
      }
    }
-   
-   
+
+
 /**
 		    The character violates the grammar rules for URIs/IRIs.
-	    
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#page-49">here<a>), <a href="#ref-IRI">[IRI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-2.2">section 2.2<a>), <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ht$tp://example.org/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int ILLEGAL_CHARACTER = 0;
-        
-    
+
+
 /**
 		   Percent-escape sequences should use uppercase.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1">section 2.1<a>
      </dt>
      <dd>
-     
-             URI producers and normalizers should use 
+
+             URI producers and normalizers should use
      <em>uppercase</em>
-    
+
 	     hexadecimal digits for all percent-encodings.
-            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/foo%c3%80</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int PERCENT_ENCODING_SHOULD_BE_UPPERCASE = 1;
-        
-    
+
+
 /**
 		   Percent-escape sequences should not be used unnecessarily.
-	    
+
      <p>
      The IRI specification only weakly suggests that
 		    Unicode characters should be used in preference
 		    to percent encodings.
      </p>
-    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.2">section 3.2<a>
      </dt>
      <dd>
-     
+
 			   URI-to-IRI conversion removes percent-encodings
-                  
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/foo%C3%A9r</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int SUPERFLUOUS_NON_ASCII_PERCENT_ENCODING = 2;
-        
-    
+
+
 /**
 		   Percent-escape sequences should not be used unnecessarily.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.3">section 2.3<a>
      </dt>
      <dd>
-     
+
 			  For consistency, percent-encoded octets in the
-			  ranges of ALPHA 
+			  ranges of ALPHA
 			  (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen
 			  (%2D), period (%2E), underscore (%5F), or tilde
 			  (%7E) should not be created by URI producers
-                  
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/foo%5Fb%61r</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int SUPERFLUOUS_ASCII_PERCENT_ENCODING = 3;
-        
-    
+
+
 /**
 		    The character matches no grammar rules of URIs/IRIs.
 		    These characters are permitted in RDF URI References,
 		    XML system identifiers, and XML Schema anyURIs.
-	    
+
      <p>
      Whitespace is dealt with separately.
      </p>
-    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#page-13">here<a>
      </dt>
      <dd>
-     
-              Systems accepting IRIs MAY also deal with the printable characters in US-ASCII 
-              that are not allowed in URIs, namely "&lt;", "&gt;", '"', space, "{", "}", "|", "\", 
-              "^", and "`", in step 2 above. If these characters are found but are not converted, 
-              then the conversion SHOULD fail. 
-             
+
+              Systems accepting IRIs MAY also deal with the printable characters in US-ASCII
+              that are not allowed in URIs, namely "&lt;", "&gt;", '"', space, "{", "}", "|", "\",
+              "^", and "`", in step 2 above. If these characters are found but are not converted,
+              then the conversion SHOULD fail.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-IRI">[IRI]</a>, <a href="#ref-URI">[URI]</a> (see <a href="http://www.apps.ietf.org/rfc/rfc3986.html#page-49">here<a>).
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/fo|o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo&lt;o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo&gt;o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo"o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo`o</code>&gt;</li>
-    
+
         </ul>
-       
+
      @see IRIFactory#allowUnwiseCharacters
      @see #WHITESPACE
      @see #DOUBLE_WHITESPACE
 */
         int UNWISE_CHARACTER = 4;
-        
-    
+
+
 /**
 		    Control characters are not allowed in URIs or RDF URI References.
-	    
+
      <p>This is specified in <a href="#ref-RDF">
      [RDF]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Graph-URIref">here<a>
      </dt>
      <dd>
-     
+
                A URI reference within an RDF graph (an RDF URI reference) is a Unicode string [UNICODE] that:
 
      <ul>
@@ -5832,26 +5832,26 @@
      <li>
      does not contain any control characters ( #x00 - #x1F, #x7F-#x9F)
 </li>
-    
+
 </ul>
-    
-               
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html">here<a>
      </dt>
      <dd>
-     
+
 
      <pre>
 ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF
@@ -5861,605 +5861,605 @@
         / %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD
         / %xD0000-DFFFD / %xE1000-EFFFD
 </pre>
-    
-             
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-RDF">[RDF]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-URI">[URI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/fo\u007Fo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo\u0085o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo\u0009o</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/fo\u0001o</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int CONTROL_CHARACTER = 5;
-        
-    
+
+
 /**
 		    The character is not legal in XML.
-	    
+
      <p>This is specified in <a href="#ref-XML">
      [XML]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.w3.org/TR/2004/REC-xml-20040204/#NT-Char">here<a>
      </dt>
      <dd>
-      
+
 Char ::=   #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]
-	            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/foo\u0001</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int NON_XML_CHARACTER = 6;
-        
-    
+
+
 /**
 		    The character is discouraged in XML documents.
-	    
+
      <p>This is specified in <a href="#ref-XML">
      [XML]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.w3.org/TR/2004/REC-xml-20040204/#char32">here<a>
      </dt>
      <dd>
-      
-Document authors are encouraged to avoid "compatibility characters", as defined in 
-section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters 
-defined in the following ranges are also discouraged. They are either control 
-characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F], 
+
+Document authors are encouraged to avoid "compatibility characters", as defined in
+section 6.8 of [Unicode] (see also D21 in section 3.6 of [Unicode3]). The characters
+defined in the following ranges are also discouraged. They are either control
+characters or permanently undefined Unicode characters: [#x7F-#x84], [#x86-#x9F],
 [#xFDD0-#xFDDF],
-	            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/foo\u0080</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int DISCOURAGED_XML_CHARACTER = 7;
-        
-    
+
+
 /**
 		    The path contains a segment /../ not at the beginning
-		    of a relative reference, or it contains a /./ 
+		    of a relative reference, or it contains a /./
 		    These should be removed.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-6.2.2.3">section 6.2.2.3<a>
      </dt>
      <dd>
-     
-		    The complete path segments "." and ".." are intended 
+
+		    The complete path segments "." and ".." are intended
      <em>only</em>
-     for use within relative references 
-            
+     for use within relative references
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
      <p>This violation may indicate security issues, and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#securityViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/../foo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/foo/../foo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/foo/..</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/foo/./foo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/./foo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/foo/.</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int NON_INITIAL_DOT_SEGMENT = 8;
-        
-    
+
+
 /**
 		    The scheme component is empty.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1<a>
      </dt>
      <dd>
-      Scheme names consist of a sequence of characters 
-     <em>beginning 
+      Scheme names consist of a sequence of characters
+     <em>beginning
 				    with a letter</em>
-     and followed by any combination of letters, 
-			    digits, plus ("+"), period ("."), or hyphen ("-"). 
+     and followed by any combination of letters,
+			    digits, plus ("+"), period ("."), or hyphen ("-").
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>://example.org/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int EMPTY_SCHEME = 9;
-        
-    
+
+
 /**
 		    The scheme component must start with a letter.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1<a>
      </dt>
      <dd>
-      Scheme names consist of a sequence of characters 
-     <em>beginning 
+      Scheme names consist of a sequence of characters
+     <em>beginning
 			    with a letter</em>
-     and followed by any combination of letters, 
-			    digits, plus ("+"), period ("."), or hyphen ("-"). 
+     and followed by any combination of letters,
+			    digits, plus ("+"), period ("."), or hyphen ("-").
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>007://example.org/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int SCHEME_MUST_START_WITH_LETTER = 10;
-        
-    
+
+
 /**lowercase is preferred in this component
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        For the SCHEME component:
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.1">section 3.1<a>
      </dt>
      <dd>
-     An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow "HTTP" as well as "http") for the sake of robustness but should only produce lowercase scheme names for consistency. 
+     An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow "HTTP" as well as "http") for the sake of robustness but should only produce lowercase scheme names for consistency.
      </dd>
-    
+
      <dt>
-     
+
        For the HOST component:
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    Although host is case-insensitive, producers and normalizers should use 
+
+			    Although host is case-insensitive, producers and normalizers should use
      <em>lowercase for registered names</em>
      and hexadecimal addresses for the sake of uniformity, while only using uppercase letters for percent-encodings.
-	            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>HTTP://example.org/foo</code>&gt;</li>
-    
+
      <li>&lt;<code>http://eXamPle.org/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int LOWERCASE_PREFERRED = 11;
-        
-    
+
+
 /**The colon introducing an empty port component should be omitted entirely,
 	    or a port number should be specified.
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    URI producers and normalizers should omit the port component 
+
+			    URI producers and normalizers should omit the port component
      <em>and its ":" delimiter</em>
-     if port is empty 
-	            
+     if port is empty
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org:/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int PORT_SHOULD_NOT_BE_EMPTY = 12;
-        
-    
+
+
 /**If the port is the default one for the scheme it should be omitted.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    URI producers and normalizers should omit the port component and its ":" delimiter if port is empty  or if its value would be the 
+
+			    URI producers and normalizers should omit the port component and its ":" delimiter if port is empty  or if its value would be the
      <em>same as that of the scheme's default.</em>
-     
-	            
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org:80/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int DEFAULT_PORT_SHOULD_BE_OMITTED = 13;
-        
-    
+
+
 /**
 		    Ports under 1024 should be accessed
 		    using the appropriate scheme name.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-7.2">section 7.2<a>
      </dt>
      <dd>
-     
-			    Applications should prevent dereference of a URI that specifies a TCP port number within the "well-known port" range 
+
+			    Applications should prevent dereference of a URI that specifies a TCP port number within the "well-known port" range
      <em>(0 - 1023)</em>
      unless the protocol being used to dereference that URI is compatible with the protocol expected on that well-known port.
-	            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation may indicate security issues, and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#securityViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org:180/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int PORT_SHOULD_NOT_BE_WELL_KNOWN = 14;
-        
-    
+
+
 /**Leading zeros in the port number should be omitted.
 		    This is an added feature of this implementation,
 			    not mandated by any standard.
-	    
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org:08080/foo</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int PORT_SHOULD_NOT_START_IN_ZERO = 15;
-        
-    
+
+
 /**A prohibited bi-directional control character was found.
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.1">section 4.1<a>
      </dt>
      <dd>
-     
-			     IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF). 
-	     
+
+			     IRIs MUST NOT contain bidirectional formatting characters (LRM, RLM, LRE, RLE, LRO, RLO, and PDF).
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/Andr\u202Abar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u202Bbar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u202Cbar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u202Dbar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u202Ebar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u200Ebar</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/Andr\u200Fbar</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int BIDI_FORMATTING_CHARACTER = 16;
-        
-    
+
+
 /**
 A single whitespace character.
 These match no grammar rules of URIs/IRIs.
 		    These characters are permitted in RDF URI References,
 		    XML system identifiers, and XML Schema anyURIs.
-	    
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/ foo</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///Program Files</code>&gt;</li>
-    
+
         </ul>
-       
+
      @see IRIFactory#allowUnwiseCharacters
      @see #NOT_XML_SCHEMA_WHITESPACE
      @see #UNWISE_CHARACTER
      @see #DOUBLE_WHITESPACE
 */
         int WHITESPACE = 17;
-        
-    
+
+
 /**
 Either two or more consecutive whitespace characters, or leading or trailing whitespace.
 
 These match no grammar rules of URIs/IRIs.
 These characters are permitted in RDF URI References,
 XML system identifiers, but not XML Schema anyURIs.
-	    
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/  foo</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///Program  Files</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///TabBar </code>&gt;</li>
-    
+
      <li>&lt;<code> rel-with-initial-space</code>&gt;</li>
-    
+
         </ul>
-       
+
      @see IRIFactory#allowUnwiseCharacters
      @see #NOT_XML_SCHEMA_WHITESPACE
      @see #UNWISE_CHARACTER
      @see #WHITESPACE
 */
         int DOUBLE_WHITESPACE = 18;
-        
-    
+
+
 /**
-Whitespace characters 
+Whitespace characters
 		    match no grammar rules of URIs/IRIs.
 		    These characters are permitted in RDF URI References,
 	and	    XML system identifiers.
 	However, tab and new line characters, and consecutive space characters
 	cannot occur in XML Schema anyURIs.
-	    
+
      <p>This is specified in <a href="#ref-Schema">
      [Schema]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#schema">here<a>
      </dt>
      <dd>
-     
+
 
      <pre>
 &lt;xs:simpleType name="anyURI" id="anyURI"&gt;
@@ -6470,92 +6470,92 @@
     &lt;/xs:restriction&gt;
 &lt;/xs:simpleType&gt;
 </pre>
-    
-  
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>file:///Tab\u0009Bar</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///Tab\u000ABar</code>&gt;</li>
-    
+
      <li>&lt;<code>file:///Tab\u000DBar</code>&gt;</li>
-    
+
         </ul>
-       
+
      @see IRIFactory#allowUnwiseCharacters
      @see #DOUBLE_WHITESPACE
      @see #WHITESPACE
 */
         int NOT_XML_SCHEMA_WHITESPACE = 19;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int DOUBLE_DASH_IN_REG_NAME = 20;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int SCHEME_INCLUDES_DASH = 21;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int NON_URI_CHARACTER = 22;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int PERCENT_20 = 23;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int PERCENT = 24;
-        
-    
+
+
 /**
 		    A syntax violation was detected in an IP V6 (or future) address.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    
+
+
      <pre>
 IP-literal  = "[" ( IPv6address / IPvFuture  ) "]"
 IPvFuture   = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" )
@@ -6571,117 +6571,117 @@
 
 ls32        = ( h16 ":" h16 ) / IPv4address
                   ; least-significant 32 bits of address
-h16         = 1*4HEXDIG 
+h16         = 1*4HEXDIG
 		  ; 16 bits of address represented in hexadecimal
 </pre>
-    
-	            
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://[/</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://[20015:db8::7]/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://[2001:db8:::7]/c=GB?objectClass?one</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int IP_V6_OR_FUTURE_ADDRESS_SYNTAX = 25;
-        
-    
+
+
 /**
 	IP version 6 addresses should use lowercase hexadecimal
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    Although host is case-insensitive, producers and normalizers 
-			    
+
+			    Although host is case-insensitive, producers and normalizers
+
      <em>should use lowercase</em>
-     for registered names and 
+     for registered names and
      <em>hexadecimal addresses</em>
      for the sake of uniformity
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ldap://[2001:Db8::7]/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://[2001:dB8::7]/c=GB?objectClass?one</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int IPv6ADDRESS_SHOULD_BE_LOWERCASE = 26;
-        
-    
+
+
 /**
 		    A host entry consists of four numbers,
 		    but they are not in the range 0-255, or have leading zeros.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of 
+
+			    A host identified by an IPv4 literal address is represented in dotted-decimal notation (a sequence of
      <em>four decimal numbers</em>
-     in the range 
+     in the range
      <em>0 to 255</em>
     , separated by "."),
-		    
+
      </dd>
-    
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    
+
+
      <pre>
 dec-octet   = DIGIT                 ; 0-9
             / %x31-39 DIGIT         ; 10-99
@@ -6689,939 +6689,938 @@
             / "2" %x30-34 DIGIT     ; 200-249
             / "25" %x30-35          ; 250-255
 </pre>
-    
-		    
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ldap://155.00.55.102/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://20.256.20.20/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://20.1000.20.20/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>ldap://20.010.20.20/c=GB?objectClass?one</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int IP_V4_OCTET_RANGE = 27;
-        
-    
+
+
 /**
 		    The host component did not meet the restrictions on DNS names.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			    URI producers should use names that 
+
+			    URI producers should use names that
      <em>conform to the DNS syntax</em>
     , even when use of DNS is not immediately apparent, and should limit these names to no more than 255 characters in length.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation is relevant for IRIs using DNS as the registry of hostnames.
      The behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#dnsViolation}.
      </p>
-    
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ldap://foo$/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>http://foo.example.$org/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int NOT_DNS_NAME = 28;
-        
-    
+
+
 /**
 		    The host component used percent encoding, where punycode is preferred.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
+
 URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
      <p>This violation is relevant for IRIs using DNS as the registry of hostnames.
      The behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#dnsViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ftp://andr%C3%A9.example.org/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int USE_PUNYCODE_NOT_PERCENTS = 29;
-        
-    
+
+
 /**
 		    The host component a percent occurred without two following hexadecimal digits.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-2.1">section 2.1<a>
      </dt>
      <dd>
-     
-			     A percent-encoded octet is encoded as a character triplet, consisting of the percent character "%" followed by the two hexadecimal digits representing that octet's numeric value. 
-		    
+
+			     A percent-encoded octet is encoded as a character triplet, consisting of the percent character "%" followed by the two hexadecimal digits representing that octet's numeric value.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ftp://andr%%A9.example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://andr%.example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://andre.example.org/%</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://andre.example.org/%A</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://andre.example.org/%A?</code>&gt;</li>
-    
+
      <li>&lt;<code>ftp://andre.example.org/%A#</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int ILLEGAL_PERCENT_ENCODING = 30;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int ACE_PREFIX = 31;
-        
-    
+
+
 /**
 		    A unicode surrogate character that is not of a surrogate pair.
-	    
+
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http:/foo/p\uD800</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int LONE_SURROGATE = 32;
-        
-    
+
+
 /**
 		    A DNS name had a - at the beginning or end.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
-			     Such a name consists of a sequence of domain labels separated by ".", each domain label starting and ending with an alphanumeric character and possibly also containing "-" characters. 
-		    
+
+			     Such a name consists of a sequence of domain labels separated by ".", each domain label starting and ending with an alphanumeric character and possibly also containing "-" characters.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation is relevant for IRIs using DNS as the registry of hostnames.
      The behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#dnsViolation}.
      </p>
-    
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>ldap://-foo/c=GB?objectClass?one</code>&gt;</li>
-    
+
      <li>&lt;<code>http://foo.example.org-/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://foo.example.org--/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://--foo.example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://-fo-o.example.org/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int DNS_LABEL_DASH_START_OR_END = 33;
-        
-    
+
+
 /**
 		    Characters used in the IRI were unassigned in the version of Unicode known
                     by this system. They may have been assigned since.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
+
 			    When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup.  URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1">section 3.1<a>
      </dt>
      <dd>
-     
+
 			    Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://foo.example\u0221.org/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int BAD_IDN_UNASSIGNED_CHARS = 34;
-        
-    
+
+
 /**
 		    The Internationalized Domain Name check failed.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.2">section 3.2.2<a>
      </dt>
      <dd>
-     
+
 			    When a non-ASCII registered name represents an internationalized domain name intended for resolution via the DNS, the name must be transformed to the IDNA encoding [RFC3490] prior to name lookup.  URI producers should provide these registered names in the IDNA encoding, rather than a percent-encoding, if they wish to maximize interoperability with legacy URI resolvers.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-3.1">section 3.1<a>
      </dt>
      <dd>
-     
+
 			    Replace the ireg-name part of the IRI by the part converted using the ToASCII operation specified in section 4.1 of [RFC3490] on each dot-separated label, and by using U+002E (FULL STOP) as a label separator, with the flag UseSTD3ASCIIRules set to TRUE, and with the flag AllowUnassigned set to FALSE for creating IRIs and set to TRUE otherwise.
-		    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://--foo.example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://xn--andr--ep-.example.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://xn.example.\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333\u3333/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int BAD_IDN = 35;
-        
-    
+
+
 /**
 	Including passwords in URIs is deprecated.
-	    
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1">section 3.2.1<a>
      </dt>
      <dd>
-     
-Use of the format "user:password" in the userinfo field is deprecated.		    
-	    
+
+Use of the format "user:password" in the userinfo field is deprecated.
+
      </dd>
-    
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2.1">section 3.2.1<a>
      </dt>
      <dd>
-     
+
 Applications may choose to ignore or reject such data when it is received as part of a reference and should reject the storage of such data in unencrypted form. The passing of authentication information in clear text has proven to be a security risk in almost every case where it has been used.
-            
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
      <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-    
+
      <p>This violation may indicate security issues, and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#securityViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://user:pass@example.org/</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int HAS_PASSWORD = 36;
-        
-    
+
+
 /**
 	Certain characters are discouraged in IRIs.
-	    
+
      <p>
      Implementation is very partial. The amount of guidance
 		    as to which characters to discourage is insufficient.
      </p>
-    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-6.1">section 6.1<a>
      </dt>
      <dd>
-     
+
 The UCS contains many areas of characters for which there are
 strong visual look-alikes. Because of the likelihood of transcription errors, these also should be avoided. This includes the full-width equivalents of Latin characters, half-width Katakana characters for Japanese, and many others. It also includes many look-alikes of "space", "delims", and "unwise", characters excluded in [RFC3491].
-	    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/\u2000en-quad</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example.org/\u205Fmedium-mathematical-space</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example\uFF95.org/</code>&gt;</li>
-    
+
      <li>&lt;<code>http://example\uFF47.org/</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int DISCOURAGED_IRI_CHARACTER = 37;
-        
-    
+
+
 /**
 	There are restrictions on bidi characters in subcomponents of IRIs
-	    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-4.2">section 4.2<a>
      </dt>
      <dd>
-     
+
 
      <ol>
-	
+
      <li>
 A component SHOULD NOT use both right-to-left and left-to-right
     characters.
     </li>
-    
-    
+
+
      <li>
 A component using right-to-left characters SHOULD start and end
     with right-to-left characters.
     </li>
     </ol>
-    	    
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
      <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">SHOULD</a> force.
      By default, this is treated as an error (for the relevant specs), but that behaviour can be modified by
      {@link IRIFactory#shouldViolation}.
      </p>
-    
+
          <p>Unimplemented.</p>
-       
+
 */
         int BAD_BIDI_SUBCOMPONENT = 38;
-        
-    
+
+
 /**
        // TODO complete entry for DNS_LENGTH_LIMIT
 */
         int DNS_LENGTH_LIMIT = 39;
-        
-    
+
+
 /**
        // TODO complete entry for DNS_LABEL_LENGTH_LIMIT
 */
         int DNS_LABEL_LENGTH_LIMIT = 40;
-        
-    
+
+
 /**
        // TODO complete entry for NOT_UTF8_ESCAPE
 */
         int NOT_UTF8_ESCAPE = 41;
-        
-    
+
+
 /**
        // TODO complete entry for NOT_UTF8_ESCAPE_IN_HOST
 */
         int NOT_UTF8_ESCAPE_IN_HOST = 42;
-        
-    
+
+
 /**
        // TODO complete entry for BAD_DOT_IN_IDN
 */
         int BAD_DOT_IN_IDN = 43;
-        
-    
+
+
 /**
       The scheme name does not have a "-" in it, but is not in the IANA registry.
       (Last updated from the registry January 2006)
-      
+
      <p>This is specified in <a href="#ref-URL_Registratrion">
      [URL_Registratrion]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc2717.html#sec-">section <a>
      </dt>
      <dd>
-     
-        
+
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
      <p>This is specified in <a href="#ref-URI">
      [URI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.2">section 3.2<a>
      </dt>
      <dd>
-     
-         The NAMES of schemes registered in the IETF tree MUST NOT contain the dash 
-         (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh. 
-         Use of this character can cause confusion with schemes registered in 
+
+         The NAMES of schemes registered in the IETF tree MUST NOT contain the dash
+         (also known as the hyphen and minus sign) character ('-') USASCII value 2Dh.
+         Use of this character can cause confusion with schemes registered in
          alternative trees (see section 3.3).
-        
+
      </dd>
-    
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3986.html#sec-3.3">section 3.3<a>
      </dt>
      <dd>
-     
+
         The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:
 
      <pre>
       &lt;prefix&gt;'-'&lt;tree-specific identifier&gt;
 </pre>
-    
-For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix. 
- 
+
+For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>foo://example.org/bar</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int UNREGISTERED_IANA_SCHEME = 44;
-        
-    
+
+
 /**
       The scheme name has a "-" in it, but it does not start in "x-"
       and the prefix is not known as the prefix of an alternative tree for
       URI schemes.
-      
+
      <p>
-     
+
       There is no standard provision for "x-" as a prefix for private use schemes.
       This is a feature of this implementation.
       As far as I am aware, no alternative trees have been registered.
-      
+
      </p>
-    
+
      <p>This is specified in <a href="#ref-URL_Registratrion">
      [URL_Registratrion]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc2717.html#sec-3.3">section 3.3<a>
      </dt>
      <dd>
-     
+
         The syntax for alternative trees shall be as follows: each tree will be identified by a unique prefix, which must be established in the same fashion as a URL scheme name in the IETF tree, except that the prefix must be defined by a Standards Track document. Scheme names in the new tree are then constructed by prepending the prefix to an identifier unique to each scheme in that tree, as prescribed by that tree's identifying document:
 
      <pre>
       &lt;prefix&gt;'-'&lt;tree-specific identifier&gt;
 </pre>
-    
-For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix. 
- 
+
+For instance, the "foo" tree would allow creation of scheme names of the form: "foo-blahblah:" and "foo-bar:", where the tree prescribes an arbitrary USASCII string following the tree's unique prefix.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the following specifications:
           <a href="#ref-URI">[URI]</a>, <a href="#ref-IRI">[IRI]</a>, <a href="#ref-XLink">[XLink]</a>, <a href="#ref-XML">[XML]</a>, <a href="#ref-RDF">[RDF]</a>, <a href="#ref-Schema">[Schema]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>foo-bar://example.org/bar</code>&gt;</li>
-    
+
         </ul>
-       
+
 */
         int UNREGISTERED_NONIETF_SCHEME_TREE = 45;
-        
-    
+
+
 /**
       The IRI is not in Unicode Normal Form C.
-    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-5.3.2.2">section 5.3.2.2<a>
      </dt>
      <dd>
-     
-        To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC. 
-        
+
+        To avoid false negatives and problems with transcoding, IRIs SHOULD be created by using NFC.
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
      <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">SHOULD</a> force.
      By default, this is treated as an error (for the relevant specs), but that behaviour can be modified by
      {@link IRIFactory#shouldViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/#Andre\u0301</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int NOT_NFC = 46;
-        
-    
+
+
 /**
       The IRI is not in Unicode Normal Form KC.
-    
+
      <p>This is specified in <a href="#ref-IRI">
      [IRI]</a>.</p>
      <dl>
-     
+
      <dt>
-     
+
        see
      <a href="http://www.apps.ietf.org/rfc/rfc3987.html#sec-7.5">section 7.5<a>
      </dt>
      <dd>
-     
+
         Although there may be exceptions, newly created resource names should generally be in NFKC
-        
+
      </dd>
-    
+
      </dl>
-     
-    
+
+
           <p>This violates the <a href=
           "#ref-IRI">[IRI]</a>
           specification.</p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
         <p>The following are examples of IRIs that have this violation:</p>
         <ul>
-       
+
      <li>&lt;<code>http://example.org/#Andre\u0301</code>&gt;</li>
-    
+
         </ul>
-       
+
          <p>Unimplemented.</p>
-       
+
 */
         int NOT_NFKC = 47;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int DEPRECATED_UNICODE_CHARACTER = 48;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int UNDEFINED_UNICODE_CHARACTER = 49;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int PRIVATE_USE_CHARACTER = 50;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int UNICODE_CONTROL_CHARACTER = 51;
-        
-    
+
+
 /**The character code is not assigned in the version of Unicode implemented here.
       Check validity of code, consider updating your copy of icu4j.jar.
-      
+
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
 */
         int UNASSIGNED_UNICODE_CHARACTER = 52;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int MAYBE_NOT_NFC = 53;
-        
-    
+
+
 /**
-    Internal code. This is not an error or warning condition, 
+    Internal code. This is not an error or warning condition,
     but is used to trigger more expensive processing.
-    
+
 */
         int MAYBE_NOT_NFKC = 54;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int UNICODE_WHITESPACE = 55;
-        
-    
+
+
 /**TODO
           <p>This violates the following specifications:
           <a href="#ref-Unicode">[Unicode]</a>, <a href="#ref-IRI">[IRI]</a>.
           </p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int COMPATIBILITY_CHARACTER = 56;
-        
-    
+
+
 /**A component that is required by the scheme is missing.
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int REQUIRED_COMPONENT_MISSING = 57;
-        
-    
+
+
 /**A component that is prohibited by the scheme is present.
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int PROHIBITED_COMPONENT_PRESENT = 58;
-        
-    
+
+
 /**Some part of the scheme specific syntax requires lowercase.
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int SCHEME_REQUIRES_LOWERCASE = 59;
-        
-    
+
+
 /**Some part of the scheme specific syntax prefers lowercase.
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
      <p>This violation relates to creating your own IRIs, rather than
      accepting and processing other peoples', and the behaviour of a factory
      implementing the relevant specs can be modified by
      {@link IRIFactory#mintingViolation}.
      </p>
-    
+
 */
         int SCHEME_PREFERS_LOWERCASE = 60;
-        
-    
+
+
 /**The scheme specific syntax rules are violated.
          <p>This does not violate any of the supported IRI, URI or scheme specifications.</p>
-       
+
          <p>This violation has <a href="http://www.apps.ietf.org/rfc/rfc2119.html#sec-1">MUST</a> force.</p>
-       
+
 */
         int SCHEME_PATTERN_MATCH_FAILED = 61;
-        
-    
+
+
 /**
        // TODO complete entry for QUERY_IN_LEGACY_SCHEME
 */
         int QUERY_IN_LEGACY_SCHEME = 62;
-        
-    
+
+
 
 }
-    
\ No newline at end of file
diff --git a/jena-tdb/src/test/java/org/apache/jena/tdb/TestScriptsTDB1.java b/jena-tdb/src/test/java/org/apache/jena/tdb/TestScriptsTDB1.java
index f678d84..a49fa9d 100644
--- a/jena-tdb/src/test/java/org/apache/jena/tdb/TestScriptsTDB1.java
+++ b/jena-tdb/src/test/java/org/apache/jena/tdb/TestScriptsTDB1.java
@@ -31,13 +31,13 @@
     static final String ARQ_DIR = "../jena-arq/testing/ARQ";
 
     static public TestSuite suite() { return new TestScriptsTDB1() ; }
-    
+
     private TestScriptsTDB1()
     {
         super("TDB-Scripts") ;
-//        String manifestMain1 = ConfigTest.getTestingDataRoot()+"/manifest.ttl" ;
-//        TestFactoryTDB.make(this, manifestMain1, "TDB-") ;
-        
+        String manifestMain1 = ConfigTest.getTestingDataRoot()+"/manifest.ttl" ;
+        TestFactoryTDB.make(this, manifestMain1, "TDB-") ;
+
         // From ARQ
         String manifestMain2 = ARQ_DIR + "/RDF-Star/SPARQL-Star/manifest.ttl";
         TestFactoryTDB.make(this, manifestMain2, "TDB-");