From bd3c2cf87448dc5770b8b372b22bffbfc928d7a0 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 18 Mar 2024 12:18:36 -0400 Subject: [PATCH] Add importance qualifier to each testcase (#236) * models: add initial Importance model Signed-off-by: William Woodruff * limbo: add importance Signed-off-by: William Woodruff * limbo: regenerate Signed-off-by: William Woodruff * render importance Signed-off-by: William Woodruff * schema.go: rebuild Signed-off-by: William Woodruff --------- Signed-off-by: William Woodruff --- harness/gocryptox509/schema.go | 660 +- limbo-schema.json | 21 + limbo.json | 10721 ++++++++++++++++++++++++-- limbo/_assets/templates/testcase.md | 6 +- limbo/models.py | 37 + site/render-testcases.py | 1 + 6 files changed, 10639 insertions(+), 807 deletions(-) diff --git a/harness/gocryptox509/schema.go b/harness/gocryptox509/schema.go index dcdb8579..9e7833c7 100644 --- a/harness/gocryptox509/schema.go +++ b/harness/gocryptox509/schema.go @@ -6,150 +6,112 @@ import "encoding/json" import "fmt" import "reflect" -// UnmarshalJSON implements json.Unmarshaler. -func (j *SignatureAlgorithm) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_SignatureAlgorithm { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_SignatureAlgorithm, v) - } - *j = SignatureAlgorithm(v) - return nil -} - -const KeyUsageDecipherOnly KeyUsage = "decipherOnly" - -// UnmarshalJSON implements json.Unmarshaler. -func (j *ExpectedResult) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_ExpectedResult { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_ExpectedResult, v) - } - *j = ExpectedResult(v) - return nil -} +type ExpectedResult string -const ExpectedResultSUCCESS ExpectedResult = "SUCCESS" const ExpectedResultFAILURE ExpectedResult = "FAILURE" +const ExpectedResultSUCCESS ExpectedResult = "SUCCESS" type Feature string -// UnmarshalJSON implements json.Unmarshaler. -func (j *ValidationKind) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_ValidationKind { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_ValidationKind, v) - } - *j = ValidationKind(v) - return nil -} - -// UnmarshalJSON implements json.Unmarshaler. -func (j *Feature) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_Feature { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_Feature, v) - } - *j = Feature(v) - return nil -} - -const FeatureHasPolicyConstraints Feature = "has-policy-constraints" +const FeatureDenialOfService Feature = "denial-of-service" const FeatureHasCertPolicies Feature = "has-cert-policies" +const FeatureHasPolicyConstraints Feature = "has-policy-constraints" +const FeatureMaxChainDepth Feature = "max-chain-depth" +const FeatureNameConstraintDn Feature = "name-constraint-dn" const FeatureNoCertPolicies Feature = "no-cert-policies" const FeaturePedanticPublicSuffixWildcard Feature = "pedantic-public-suffix-wildcard" -const FeatureNameConstraintDn Feature = "name-constraint-dn" -const FeaturePedanticWebpkiSubscriberKey Feature = "pedantic-webpki-subscriber-key" +const FeaturePedanticRfc5280 Feature = "pedantic-rfc5280" +const FeaturePedanticSerialNumber Feature = "pedantic-serial-number" const FeaturePedanticWebpkiEku Feature = "pedantic-webpki-eku" +const FeaturePedanticWebpkiSubscriberKey Feature = "pedantic-webpki-subscriber-key" +const FeatureRfc5280IncompatibleWithWebpki Feature = "rfc5280-incompatible-with-webpki" -type ExpectedResult string +type Importance string -const FeatureMaxChainDepth Feature = "max-chain-depth" -const FeaturePedanticRfc5280 Feature = "pedantic-rfc5280" -const FeatureRfc5280IncompatibleWithWebpki Feature = "rfc5280-incompatible-with-webpki" -const FeatureDenialOfService Feature = "denial-of-service" +const ImportanceCritical Importance = "critical" +const ImportanceHigh Importance = "high" +const ImportanceLow Importance = "low" +const ImportanceMedium Importance = "medium" +const ImportanceUndetermined Importance = "undetermined" type KeyUsage string -// UnmarshalJSON implements json.Unmarshaler. -func (j *PeerKind) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_PeerKind { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_PeerKind, v) - } - *j = PeerKind(v) - return nil +const KeyUsageCRLSign KeyUsage = "cRLSign" +const KeyUsageContentCommitment KeyUsage = "contentCommitment" +const KeyUsageDataEncipherment KeyUsage = "dataEncipherment" +const KeyUsageDecipherOnly KeyUsage = "decipherOnly" +const KeyUsageDigitalSignature KeyUsage = "digitalSignature" +const KeyUsageEncipherOnly KeyUsage = "encipherOnly" +const KeyUsageKeyAgreement KeyUsage = "keyAgreement" +const KeyUsageKeyCertSign KeyUsage = "keyCertSign" +const KeyUsageKeyEncipherment KeyUsage = "keyEncipherment" + +type KnownEKUs string + +const KnownEKUsAnyExtendedKeyUsage KnownEKUs = "anyExtendedKeyUsage" +const KnownEKUsClientAuth KnownEKUs = "clientAuth" +const KnownEKUsCodeSigning KnownEKUs = "codeSigning" +const KnownEKUsEmailProtection KnownEKUs = "emailProtection" +const KnownEKUsOCSPSigning KnownEKUs = "OCSPSigning" +const KnownEKUsServerAuth KnownEKUs = "serverAuth" +const KnownEKUsTimeStamping KnownEKUs = "timeStamping" + +// The top-level testcase container. +type Limbo struct { + // One or more testcases in this testsuite + Testcases []Testcase `json:"testcases" yaml:"testcases" mapstructure:"testcases"` + + // The limbo schema version; this must currently always be 1 + Version interface{} `json:"version" yaml:"version" mapstructure:"version"` } -// UnmarshalJSON implements json.Unmarshaler. -func (j *KeyUsage) UnmarshalJSON(b []byte) error { - var v string - if err := json.Unmarshal(b, &v); err != nil { - return err - } - var ok bool - for _, expected := range enumValues_KeyUsage { - if reflect.DeepEqual(v, expected) { - ok = true - break - } - } - if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_KeyUsage, v) - } - *j = KeyUsage(v) - return nil +type PeerKind string + +const PeerKindDNS PeerKind = "DNS" +const PeerKindIP PeerKind = "IP" +const PeerKindRFC822 PeerKind = "RFC822" + +// Represents a peer (i.e., end entity) certificate's name (Subject or SAN). +type PeerName struct { + // The kind of peer name + Kind interface{} `json:"kind" yaml:"kind" mapstructure:"kind"` + + // The peer's name + Value string `json:"value" yaml:"value" mapstructure:"value"` } +type SignatureAlgorithm string + +const SignatureAlgorithmDSAWITHSHA1 SignatureAlgorithm = "DSA_WITH_SHA1" +const SignatureAlgorithmDSAWITHSHA224 SignatureAlgorithm = "DSA_WITH_SHA224" +const SignatureAlgorithmDSAWITHSHA256 SignatureAlgorithm = "DSA_WITH_SHA256" +const SignatureAlgorithmDSAWITHSHA384 SignatureAlgorithm = "DSA_WITH_SHA384" +const SignatureAlgorithmDSAWITHSHA512 SignatureAlgorithm = "DSA_WITH_SHA512" +const SignatureAlgorithmECDSAWITHSHA1 SignatureAlgorithm = "ECDSA_WITH_SHA1" +const SignatureAlgorithmECDSAWITHSHA224 SignatureAlgorithm = "ECDSA_WITH_SHA224" +const SignatureAlgorithmECDSAWITHSHA256 SignatureAlgorithm = "ECDSA_WITH_SHA256" +const SignatureAlgorithmECDSAWITHSHA3224 SignatureAlgorithm = "ECDSA_WITH_SHA3_224" +const SignatureAlgorithmECDSAWITHSHA3256 SignatureAlgorithm = "ECDSA_WITH_SHA3_256" +const SignatureAlgorithmECDSAWITHSHA3384 SignatureAlgorithm = "ECDSA_WITH_SHA3_384" +const SignatureAlgorithmECDSAWITHSHA3512 SignatureAlgorithm = "ECDSA_WITH_SHA3_512" +const SignatureAlgorithmECDSAWITHSHA384 SignatureAlgorithm = "ECDSA_WITH_SHA384" +const SignatureAlgorithmECDSAWITHSHA512 SignatureAlgorithm = "ECDSA_WITH_SHA512" +const SignatureAlgorithmED25519 SignatureAlgorithm = "ED25519" +const SignatureAlgorithmED448 SignatureAlgorithm = "ED448" +const SignatureAlgorithmGOSTR34102012WITH34112012256 SignatureAlgorithm = "GOSTR3410_2012_WITH_3411_2012_256" +const SignatureAlgorithmGOSTR34102012WITH34112012512 SignatureAlgorithm = "GOSTR3410_2012_WITH_3411_2012_512" +const SignatureAlgorithmGOSTR341194WITH34102001 SignatureAlgorithm = "GOSTR3411_94_WITH_3410_2001" +const SignatureAlgorithmRSASSAPSS SignatureAlgorithm = "RSASSA_PSS" +const SignatureAlgorithmRSAWITHMD5 SignatureAlgorithm = "RSA_WITH_MD5" +const SignatureAlgorithmRSAWITHSHA1 SignatureAlgorithm = "RSA_WITH_SHA1" +const SignatureAlgorithmRSAWITHSHA224 SignatureAlgorithm = "RSA_WITH_SHA224" +const SignatureAlgorithmRSAWITHSHA256 SignatureAlgorithm = "RSA_WITH_SHA256" +const SignatureAlgorithmRSAWITHSHA3224 SignatureAlgorithm = "RSA_WITH_SHA3_224" +const SignatureAlgorithmRSAWITHSHA3256 SignatureAlgorithm = "RSA_WITH_SHA3_256" +const SignatureAlgorithmRSAWITHSHA3384 SignatureAlgorithm = "RSA_WITH_SHA3_384" +const SignatureAlgorithmRSAWITHSHA3512 SignatureAlgorithm = "RSA_WITH_SHA3_512" +const SignatureAlgorithmRSAWITHSHA384 SignatureAlgorithm = "RSA_WITH_SHA384" + // UnmarshalJSON implements json.Unmarshaler. func (j *Limbo) UnmarshalJSON(b []byte) error { var raw map[string]interface{} @@ -171,64 +133,78 @@ func (j *Limbo) UnmarshalJSON(b []byte) error { return nil } -const KeyUsageContentCommitment KeyUsage = "contentCommitment" - // UnmarshalJSON implements json.Unmarshaler. -func (j *Testcase) UnmarshalJSON(b []byte) error { - var raw map[string]interface{} - if err := json.Unmarshal(b, &raw); err != nil { +func (j *KnownEKUs) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { return err } - if v, ok := raw["description"]; !ok || v == nil { - return fmt.Errorf("field description in Testcase: required") - } - if v, ok := raw["expected_peer_names"]; !ok || v == nil { - return fmt.Errorf("field expected_peer_names in Testcase: required") - } - if v, ok := raw["expected_result"]; !ok || v == nil { - return fmt.Errorf("field expected_result in Testcase: required") - } - if v, ok := raw["extended_key_usage"]; !ok || v == nil { - return fmt.Errorf("field extended_key_usage in Testcase: required") - } - if v, ok := raw["id"]; !ok || v == nil { - return fmt.Errorf("field id in Testcase: required") - } - if v, ok := raw["key_usage"]; !ok || v == nil { - return fmt.Errorf("field key_usage in Testcase: required") - } - if v, ok := raw["peer_certificate"]; !ok || v == nil { - return fmt.Errorf("field peer_certificate in Testcase: required") - } - if v, ok := raw["signature_algorithms"]; !ok || v == nil { - return fmt.Errorf("field signature_algorithms in Testcase: required") - } - if v, ok := raw["trusted_certs"]; !ok || v == nil { - return fmt.Errorf("field trusted_certs in Testcase: required") - } - if v, ok := raw["untrusted_intermediates"]; !ok || v == nil { - return fmt.Errorf("field untrusted_intermediates in Testcase: required") + var ok bool + for _, expected := range enumValues_KnownEKUs { + if reflect.DeepEqual(v, expected) { + ok = true + break + } } - if v, ok := raw["validation_kind"]; !ok || v == nil { - return fmt.Errorf("field validation_kind in Testcase: required") + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_KnownEKUs, v) } - type Plain Testcase - var plain Plain - if err := json.Unmarshal(b, &plain); err != nil { + *j = KnownEKUs(v) + return nil +} + +// UnmarshalJSON implements json.Unmarshaler. +func (j *SignatureAlgorithm) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { return err } - if v, ok := raw["conflicts_with"]; !ok || v == nil { - plain.ConflictsWith = []string{} + var ok bool + for _, expected := range enumValues_SignatureAlgorithm { + if reflect.DeepEqual(v, expected) { + ok = true + break + } } - if v, ok := raw["features"]; !ok || v == nil { - plain.Features = []Feature{} + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_SignatureAlgorithm, v) } - *j = Testcase(plain) + *j = SignatureAlgorithm(v) return nil } -const KeyUsageDataEncipherment KeyUsage = "dataEncipherment" -const FeaturePedanticSerialNumber Feature = "pedantic-serial-number" +var enumValues_SignatureAlgorithm = []interface{}{ + "RSA_WITH_MD5", + "RSA_WITH_SHA1", + "RSA_WITH_SHA224", + "RSA_WITH_SHA256", + "RSA_WITH_SHA384", + "RSA_WITH_SHA512", + "RSA_WITH_SHA3_224", + "RSA_WITH_SHA3_256", + "RSA_WITH_SHA3_384", + "RSA_WITH_SHA3_512", + "RSASSA_PSS", + "ECDSA_WITH_SHA1", + "ECDSA_WITH_SHA224", + "ECDSA_WITH_SHA256", + "ECDSA_WITH_SHA384", + "ECDSA_WITH_SHA512", + "ECDSA_WITH_SHA3_224", + "ECDSA_WITH_SHA3_256", + "ECDSA_WITH_SHA3_384", + "ECDSA_WITH_SHA3_512", + "DSA_WITH_SHA1", + "DSA_WITH_SHA224", + "DSA_WITH_SHA256", + "DSA_WITH_SHA384", + "DSA_WITH_SHA512", + "ED25519", + "ED448", + "GOSTR3411_94_WITH_3410_2001", + "GOSTR3410_2012_WITH_3411_2012_256", + "GOSTR3410_2012_WITH_3411_2012_512", +} // UnmarshalJSON implements json.Unmarshaler. func (j *PeerName) UnmarshalJSON(b []byte) error { @@ -251,102 +227,67 @@ func (j *PeerName) UnmarshalJSON(b []byte) error { return nil } -const KeyUsageCRLSign KeyUsage = "cRLSign" - // UnmarshalJSON implements json.Unmarshaler. -func (j *KnownEKUs) UnmarshalJSON(b []byte) error { +func (j *Importance) UnmarshalJSON(b []byte) error { var v string if err := json.Unmarshal(b, &v); err != nil { return err } var ok bool - for _, expected := range enumValues_KnownEKUs { + for _, expected := range enumValues_Importance { if reflect.DeepEqual(v, expected) { ok = true break } } if !ok { - return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_KnownEKUs, v) + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_Importance, v) } - *j = KnownEKUs(v) + *j = Importance(v) return nil } -const SignatureAlgorithmGOSTR34102012WITH34112012512 SignatureAlgorithm = "GOSTR3410_2012_WITH_3411_2012_512" -const SignatureAlgorithmECDSAWITHSHA256 SignatureAlgorithm = "ECDSA_WITH_SHA256" -const SignatureAlgorithmECDSAWITHSHA384 SignatureAlgorithm = "ECDSA_WITH_SHA384" -const SignatureAlgorithmECDSAWITHSHA512 SignatureAlgorithm = "ECDSA_WITH_SHA512" -const KnownEKUsAnyExtendedKeyUsage KnownEKUs = "anyExtendedKeyUsage" -const KnownEKUsServerAuth KnownEKUs = "serverAuth" -const KnownEKUsClientAuth KnownEKUs = "clientAuth" -const KnownEKUsCodeSigning KnownEKUs = "codeSigning" -const KnownEKUsEmailProtection KnownEKUs = "emailProtection" -const KnownEKUsTimeStamping KnownEKUs = "timeStamping" -const KnownEKUsOCSPSigning KnownEKUs = "OCSPSigning" - -// Represents a peer (i.e., end entity) certificate's name (Subject or SAN). -type PeerName struct { - // The kind of peer name - Kind interface{} `json:"kind" yaml:"kind" mapstructure:"kind"` - - // The peer's name - Value string `json:"value" yaml:"value" mapstructure:"value"` +var enumValues_KeyUsage = []interface{}{ + "digitalSignature", + "contentCommitment", + "keyEncipherment", + "dataEncipherment", + "keyAgreement", + "keyCertSign", + "cRLSign", + "encipherOnly", + "decipherOnly", } -const KeyUsageKeyCertSign KeyUsage = "keyCertSign" -const PeerKindIP PeerKind = "IP" -const PeerKindDNS PeerKind = "DNS" -const KeyUsageKeyAgreement KeyUsage = "keyAgreement" -const PeerKindRFC822 PeerKind = "RFC822" - -type PeerKind string - -const KeyUsageDigitalSignature KeyUsage = "digitalSignature" - -// The top-level testcase container. -type Limbo struct { - // One or more testcases in this testsuite - Testcases []Testcase `json:"testcases" yaml:"testcases" mapstructure:"testcases"` - - // The limbo schema version; this must currently always be 1 - Version interface{} `json:"version" yaml:"version" mapstructure:"version"` +// UnmarshalJSON implements json.Unmarshaler. +func (j *KeyUsage) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { + return err + } + var ok bool + for _, expected := range enumValues_KeyUsage { + if reflect.DeepEqual(v, expected) { + ok = true + break + } + } + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_KeyUsage, v) + } + *j = KeyUsage(v) + return nil } -const KeyUsageKeyEncipherment KeyUsage = "keyEncipherment" - -type SignatureAlgorithm string - -const SignatureAlgorithmGOSTR34102012WITH34112012256 SignatureAlgorithm = "GOSTR3410_2012_WITH_3411_2012_256" -const SignatureAlgorithmED448 SignatureAlgorithm = "ED448" -const SignatureAlgorithmED25519 SignatureAlgorithm = "ED25519" -const SignatureAlgorithmDSAWITHSHA512 SignatureAlgorithm = "DSA_WITH_SHA512" -const SignatureAlgorithmDSAWITHSHA384 SignatureAlgorithm = "DSA_WITH_SHA384" -const SignatureAlgorithmECDSAWITHSHA1 SignatureAlgorithm = "ECDSA_WITH_SHA1" -const SignatureAlgorithmECDSAWITHSHA224 SignatureAlgorithm = "ECDSA_WITH_SHA224" - -type KnownEKUs string - -const SignatureAlgorithmDSAWITHSHA256 SignatureAlgorithm = "DSA_WITH_SHA256" -const KeyUsageEncipherOnly KeyUsage = "encipherOnly" -const SignatureAlgorithmECDSAWITHSHA3224 SignatureAlgorithm = "ECDSA_WITH_SHA3_224" -const SignatureAlgorithmECDSAWITHSHA3256 SignatureAlgorithm = "ECDSA_WITH_SHA3_256" -const SignatureAlgorithmECDSAWITHSHA3384 SignatureAlgorithm = "ECDSA_WITH_SHA3_384" -const SignatureAlgorithmECDSAWITHSHA3512 SignatureAlgorithm = "ECDSA_WITH_SHA3_512" -const SignatureAlgorithmDSAWITHSHA1 SignatureAlgorithm = "DSA_WITH_SHA1" -const SignatureAlgorithmDSAWITHSHA224 SignatureAlgorithm = "DSA_WITH_SHA224" -const SignatureAlgorithmGOSTR341194WITH34102001 SignatureAlgorithm = "GOSTR3411_94_WITH_3410_2001" -const SignatureAlgorithmRSASSAPSS SignatureAlgorithm = "RSASSA_PSS" -const SignatureAlgorithmRSAWITHMD5 SignatureAlgorithm = "RSA_WITH_MD5" -const SignatureAlgorithmRSAWITHSHA1 SignatureAlgorithm = "RSA_WITH_SHA1" -const SignatureAlgorithmRSAWITHSHA224 SignatureAlgorithm = "RSA_WITH_SHA224" -const SignatureAlgorithmRSAWITHSHA256 SignatureAlgorithm = "RSA_WITH_SHA256" -const SignatureAlgorithmRSAWITHSHA3224 SignatureAlgorithm = "RSA_WITH_SHA3_224" -const SignatureAlgorithmRSAWITHSHA3256 SignatureAlgorithm = "RSA_WITH_SHA3_256" -const SignatureAlgorithmRSAWITHSHA3384 SignatureAlgorithm = "RSA_WITH_SHA3_384" -const SignatureAlgorithmRSAWITHSHA3512 SignatureAlgorithm = "RSA_WITH_SHA3_512" -const SignatureAlgorithmRSAWITHSHA384 SignatureAlgorithm = "RSA_WITH_SHA384" -const SignatureAlgorithmRSAWITHSHA512 SignatureAlgorithm = "RSA_WITH_SHA512" +var enumValues_KnownEKUs = []interface{}{ + "anyExtendedKeyUsage", + "serverAuth", + "clientAuth", + "codeSigning", + "emailProtection", + "timeStamping", + "OCSPSigning", +} // Represents an individual Limbo testcase. type Testcase struct { @@ -379,6 +320,9 @@ type Testcase struct { // A short, unique identifier for this testcase Id string `json:"id" yaml:"id" mapstructure:"id"` + // The testcase's importance + Importance interface{} `json:"importance,omitempty" yaml:"importance,omitempty" mapstructure:"importance,omitempty"` + // A constraining list of key usages KeyUsage []KeyUsage `json:"key_usage" yaml:"key_usage" mapstructure:"key_usage"` @@ -407,15 +351,119 @@ type Testcase struct { ValidationTime interface{} `json:"validation_time,omitempty" yaml:"validation_time,omitempty" mapstructure:"validation_time,omitempty"` } -type ValidationKind string +// UnmarshalJSON implements json.Unmarshaler. +func (j *Testcase) UnmarshalJSON(b []byte) error { + var raw map[string]interface{} + if err := json.Unmarshal(b, &raw); err != nil { + return err + } + if v, ok := raw["description"]; !ok || v == nil { + return fmt.Errorf("field description in Testcase: required") + } + if v, ok := raw["expected_peer_names"]; !ok || v == nil { + return fmt.Errorf("field expected_peer_names in Testcase: required") + } + if v, ok := raw["expected_result"]; !ok || v == nil { + return fmt.Errorf("field expected_result in Testcase: required") + } + if v, ok := raw["extended_key_usage"]; !ok || v == nil { + return fmt.Errorf("field extended_key_usage in Testcase: required") + } + if v, ok := raw["id"]; !ok || v == nil { + return fmt.Errorf("field id in Testcase: required") + } + if v, ok := raw["key_usage"]; !ok || v == nil { + return fmt.Errorf("field key_usage in Testcase: required") + } + if v, ok := raw["peer_certificate"]; !ok || v == nil { + return fmt.Errorf("field peer_certificate in Testcase: required") + } + if v, ok := raw["signature_algorithms"]; !ok || v == nil { + return fmt.Errorf("field signature_algorithms in Testcase: required") + } + if v, ok := raw["trusted_certs"]; !ok || v == nil { + return fmt.Errorf("field trusted_certs in Testcase: required") + } + if v, ok := raw["untrusted_intermediates"]; !ok || v == nil { + return fmt.Errorf("field untrusted_intermediates in Testcase: required") + } + if v, ok := raw["validation_kind"]; !ok || v == nil { + return fmt.Errorf("field validation_kind in Testcase: required") + } + type Plain Testcase + var plain Plain + if err := json.Unmarshal(b, &plain); err != nil { + return err + } + if v, ok := raw["conflicts_with"]; !ok || v == nil { + plain.ConflictsWith = []string{} + } + if v, ok := raw["features"]; !ok || v == nil { + plain.Features = []Feature{} + } + if v, ok := raw["importance"]; !ok || v == nil { + plain.Importance = "undetermined" + } + *j = Testcase(plain) + return nil +} -const ValidationKindCLIENT ValidationKind = "CLIENT" -const ValidationKindSERVER ValidationKind = "SERVER" +var enumValues_Importance = []interface{}{ + "undetermined", + "low", + "medium", + "high", + "critical", +} -var enumValues_ExpectedResult = []interface{}{ - "SUCCESS", - "FAILURE", +const SignatureAlgorithmRSAWITHSHA512 SignatureAlgorithm = "RSA_WITH_SHA512" + +// UnmarshalJSON implements json.Unmarshaler. +func (j *Feature) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { + return err + } + var ok bool + for _, expected := range enumValues_Feature { + if reflect.DeepEqual(v, expected) { + ok = true + break + } + } + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_Feature, v) + } + *j = Feature(v) + return nil +} + +var enumValues_PeerKind = []interface{}{ + "RFC822", + "DNS", + "IP", +} + +// UnmarshalJSON implements json.Unmarshaler. +func (j *PeerKind) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { + return err + } + var ok bool + for _, expected := range enumValues_PeerKind { + if reflect.DeepEqual(v, expected) { + ok = true + break + } + } + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_PeerKind, v) + } + *j = PeerKind(v) + return nil } + var enumValues_Feature = []interface{}{ "has-policy-constraints", "has-cert-policies", @@ -430,64 +478,58 @@ var enumValues_Feature = []interface{}{ "rfc5280-incompatible-with-webpki", "denial-of-service", } -var enumValues_KeyUsage = []interface{}{ - "digitalSignature", - "contentCommitment", - "keyEncipherment", - "dataEncipherment", - "keyAgreement", - "keyCertSign", - "cRLSign", - "encipherOnly", - "decipherOnly", -} -var enumValues_KnownEKUs = []interface{}{ - "anyExtendedKeyUsage", - "serverAuth", - "clientAuth", - "codeSigning", - "emailProtection", - "timeStamping", - "OCSPSigning", -} -var enumValues_PeerKind = []interface{}{ - "RFC822", - "DNS", - "IP", + +// UnmarshalJSON implements json.Unmarshaler. +func (j *ExpectedResult) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { + return err + } + var ok bool + for _, expected := range enumValues_ExpectedResult { + if reflect.DeepEqual(v, expected) { + ok = true + break + } + } + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_ExpectedResult, v) + } + *j = ExpectedResult(v) + return nil } -var enumValues_SignatureAlgorithm = []interface{}{ - "RSA_WITH_MD5", - "RSA_WITH_SHA1", - "RSA_WITH_SHA224", - "RSA_WITH_SHA256", - "RSA_WITH_SHA384", - "RSA_WITH_SHA512", - "RSA_WITH_SHA3_224", - "RSA_WITH_SHA3_256", - "RSA_WITH_SHA3_384", - "RSA_WITH_SHA3_512", - "RSASSA_PSS", - "ECDSA_WITH_SHA1", - "ECDSA_WITH_SHA224", - "ECDSA_WITH_SHA256", - "ECDSA_WITH_SHA384", - "ECDSA_WITH_SHA512", - "ECDSA_WITH_SHA3_224", - "ECDSA_WITH_SHA3_256", - "ECDSA_WITH_SHA3_384", - "ECDSA_WITH_SHA3_512", - "DSA_WITH_SHA1", - "DSA_WITH_SHA224", - "DSA_WITH_SHA256", - "DSA_WITH_SHA384", - "DSA_WITH_SHA512", - "ED25519", - "ED448", - "GOSTR3411_94_WITH_3410_2001", - "GOSTR3410_2012_WITH_3411_2012_256", - "GOSTR3410_2012_WITH_3411_2012_512", + +var enumValues_ExpectedResult = []interface{}{ + "SUCCESS", + "FAILURE", } + +type ValidationKind string + var enumValues_ValidationKind = []interface{}{ "CLIENT", "SERVER", } + +// UnmarshalJSON implements json.Unmarshaler. +func (j *ValidationKind) UnmarshalJSON(b []byte) error { + var v string + if err := json.Unmarshal(b, &v); err != nil { + return err + } + var ok bool + for _, expected := range enumValues_ValidationKind { + if reflect.DeepEqual(v, expected) { + ok = true + break + } + } + if !ok { + return fmt.Errorf("invalid value (expected one of %#v): %#v", enumValues_ValidationKind, v) + } + *j = ValidationKind(v) + return nil +} + +const ValidationKindCLIENT ValidationKind = "CLIENT" +const ValidationKindSERVER ValidationKind = "SERVER" diff --git a/limbo-schema.json b/limbo-schema.json index a7aef17f..4495af68 100644 --- a/limbo-schema.json +++ b/limbo-schema.json @@ -28,6 +28,18 @@ "title": "Feature", "type": "string" }, + "Importance": { + "description": "A subjective ranking of a testcase's importance.", + "enum": [ + "undetermined", + "low", + "medium", + "high", + "critical" + ], + "title": "Importance", + "type": "string" + }, "KeyUsage": { "description": "X.509 key usages.\n\nSee: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.3", "enum": [ @@ -181,6 +193,15 @@ "title": "Features", "type": "array" }, + "importance": { + "allOf": [ + { + "$ref": "#/$defs/Importance" + } + ], + "default": "undetermined", + "description": "The testcase's importance" + }, "description": { "description": "A short, Markdown-formatted description", "title": "Description", diff --git a/limbo.json b/limbo.json index 2c11ff77..58dc28c7 100644 --- a/limbo.json +++ b/limbo.json @@ -5,24 +5,25 @@ "id": "cve::cve-2024-0567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Tests CVE-2024-0567.\n\nProduces the following **valid** trust graph:\n\n```\nleaf -> A1 -> (A <-> B <-> C) -> Root A\n```\n\nIn other words: `leaf` is signed by intermediate `A1`, which in turn is signed\nby `A`, which is mutually cross-signed by CAs `B` and `C`. This naively results\nin a cycle, which can be resolved because `A` is also present as a self-signed\nroot in the trusted set.\n\n`B` and `C` also have subordinate CAs (`B1` and `C1`), but these do not factor\ninto the constructed chain.\n\nAffects GnuTLS prior to 3.8.3.\n\n* Announcement: \n* Patch: \n\nThis testcase is an independent recreation of the testcase in the patch, for CABF\nconformance.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIUJ046W6H2HUseHVMvIELv85h7+wIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARLQDZlkDzTptzxZPxqnAdf3Dr27aNdWbREyHg4iR3E29/nn6Lj\nJIPHypLRKdvT4eQd/FhUxEnrzY35gfaNamJGo1cwVTAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNVHQ4EFgQU\nSDYSVIispsdJpNqdOr6xA4o21S4wCgYIKoZIzj0EAwIDSQAwRgIhAL5EtANzSMG3\nUk+upfXwVkm7nSZlMmtOLSZGu8HQLArgAiEA7BzYdor02hncczecqQSLl9NrNXag\nKh+QklkMj5kHux0=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIUPvr8JEZZwok/26fZsGFRBaMIDY0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQCMLC1rMc2JVRQhxsfHr7hA3SnmzudjVPo2DOSxRA2ZpgvvrR0\ntd9OAOIEsqgCWVvu9i/Z52yPkn+eF3oUOun8o1cwVTAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNVHQ4EFgQU\nnmNa9HB0mOtXyLqscYRUUqurCXAwCgYIKoZIzj0EAwIDSQAwRgIhAM9M1Gn+DpQO\nyMt5WjIl9amIScJ/Ld5+sEwoU7B4682hAiEA+V0cgRsgz7eIRYAAI3+E5pD3X/GE\nXli82Dx/MfO9YuE=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUWz+wJhf/R/1SiyeZg3Ofzddp8xMwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQTEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAASIdU2yX+PwemJHNek9TZgRegkhZqRlnY/iOvja3f1ndC1ZRfY5\nHCgXttR3mrLrdlS33wI6B6RTYIvYzNXnKwQLo2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBRINhJUiKymx0mk2p06vrEDijbVLjAd\nBgNVHQ4EFgQUY3AQ+7h/Z3+LTd9dDtzNGggBB3swCgYIKoZIzj0EAwIDSAAwRQIg\nBrydiD+Vmv+Yd5IlaTWhYPGVt50e2SD0piBS3OhcnIcCIQDCftRFLX+2NPwsJYZo\ntFOZA5YxTKvixjAylQbhqGFtIA==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhTCCASygAwIBAgIUFNNGSHZLVSY6LxDaJzef53JrqYYwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARLQDZlkDzTptzxZPxqnAdf3Dr27aNdWbREyHg4iR3E29/nn6LjJIPHypLRKdvT\n4eQd/FhUxEnrzY35gfaNamJGo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBRvTvdXfinOHqRBz8/YbW2RF5+bUTAdBgNVHQ4EFgQU\nSDYSVIispsdJpNqdOr6xA4o21S4wCgYIKoZIzj0EAwIDRwAwRAIgHNLvQE9oIqo+\nYlTkuHIyMlItL4mb8NV0IlfoXSDHU8ICICHscujo3q99UadvJ7VkMktyPI5RlTxi\nq66z0D+SQUtg\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhjCCASygAwIBAgIULZ+1x5TWb8p9pZUmkIQ2WmjK1BgwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARLQDZlkDzTptzxZPxqnAdf3Dr27aNdWbREyHg4iR3E29/nn6LjJIPHypLRKdvT\n4eQd/FhUxEnrzY35gfaNamJGo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSJuaC8Xf7D3QTchO89ksPX/RM0dDAdBgNVHQ4EFgQU\nSDYSVIispsdJpNqdOr6xA4o21S4wCgYIKoZIzj0EAwIDSAAwRQIhAIVLEhjlg7yv\nhrmMxQUWfzlegbCEXCjLzngGgdzHrnEjAiBFa5r5MKUtdU3DVAatXy1AHE7e4zMP\nljK/KxJhXVRumg==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUObG40FG6tPLtPQ5QBdzadkAW6cowCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQjEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATf8a2rO5Rf8ec3ham52bayfoIsBZ3LwIGRbg1dfn+OIxkNSou0\ntG36ZTqkBEGei65r7u+LRj6Z9KqROzbn8buko2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBRvTvdXfinOHqRBz8/YbW2RF5+bUTAd\nBgNVHQ4EFgQUdgZcRgi1cIqbuzoWMClfZ/ehpIMwCgYIKoZIzj0EAwIDSQAwRgIh\nAJ6lQsQq44C3fa8dSnH8nvXflpzJIE0b+Nu6HHd6xe/IAiEA6CVmF6VGQW8//Vro\ny567Y0UnHAyiDSA1fKYtSA2BCGs=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhjCCASygAwIBAgIUGxNDR8Dd4UNwR/QGBh+mnQt5q6UwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEIwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARGYlh/2II3S09kLQ094qiEQ75Ai3RxyrcfoV7cLcwFkVk/zD0L7Owxl/dpetZO\nYEDa7jZ+2k8//QMcyq5G3YvAo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBRINhJUiKymx0mk2p06vrEDijbVLjAdBgNVHQ4EFgQU\nb073V34pzh6kQc/P2G1tkRefm1EwCgYIKoZIzj0EAwIDSAAwRQIhALfZd8CPBW/m\nrwOc9ToxhNuysQGcCbfJoqcvAPomzi/9AiA0x0yNvDMYYWhKe5KtVkozj+52B7ND\nBBmQzs8576V+UQ==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhTCCASygAwIBAgIUQwOIIxWjv7gb2nQePjtBIeU+1SYwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEIwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARGYlh/2II3S09kLQ094qiEQ75Ai3RxyrcfoV7cLcwFkVk/zD0L7Owxl/dpetZO\nYEDa7jZ+2k8//QMcyq5G3YvAo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSJuaC8Xf7D3QTchO89ksPX/RM0dDAdBgNVHQ4EFgQU\nb073V34pzh6kQc/P2G1tkRefm1EwCgYIKoZIzj0EAwIDRwAwRAIge40c8ay2k0Yf\nlhfpnLZhW20dVrPJd9xiDWN0tkNI9nACIDZGPLyH/ln8BUpv5I+eyI1Jfqoyoo4A\nMnyj/Xb16HF3\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUDxBkyLwOP6PoLDrcOeMbGzyacuAwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQzEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAS+pNX/DanHElVqU6vmvltbYIhxFJxWl2gXuuQEieiH404LNMjM\n/mpSf4aA9Dk7Z4Hzu8dOs0UexcFOefb6i7z3o2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBSJuaC8Xf7D3QTchO89ksPX/RM0dDAd\nBgNVHQ4EFgQUoU3LvmnjCtJWbHpVAnIYnq0dsPQwCgYIKoZIzj0EAwIDRwAwRAIg\nMR8i7t21ZDqm+uUPxGTLNgU/1tea2zqG9Y3n59NCFcoCICwGyJC5r7EHJFDhItwl\nT2rZMvfnkjkBl8KPCtETd9ZV\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIURrwLwpMn0BtMuBNq8Tdzh589MmAwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAS3+rEDgM9WUBQryiMqB7VH8PEdIUJ6nkcdLX4Bg9RQXEGhFNqNxn/P00OUYATs\ni3+jIfqJC2cHWe/PtIqFq3Wao2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBRINhJUiKymx0mk2p06vrEDijbVLjAdBgNVHQ4EFgQU\nibmgvF3+w90E3ITvPZLD1/0TNHQwCgYIKoZIzj0EAwIDSQAwRgIhAO50xymw/NLA\n/PReodCbUVLja1ukQqNLDI5mKluC0llcAiEAhi76wY4XXNsKEYPeNDNg73RFO31U\nY+KRjNbNqS8dG1I=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBhjCCASygAwIBAgIUOdCh27G+OsBHUb2ft4xKXQvnaX0wCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAS3+rEDgM9WUBQryiMqB7VH8PEdIUJ6nkcdLX4Bg9RQXEGhFNqNxn/P00OUYATs\ni3+jIfqJC2cHWe/PtIqFq3Wao2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBRvTvdXfinOHqRBz8/YbW2RF5+bUTAdBgNVHQ4EFgQU\nibmgvF3+w90E3ITvPZLD1/0TNHQwCgYIKoZIzj0EAwIDSAAwRQIhAKch8BUmt+/5\nn3ifah+UV2aPBGHrtSB/Z26UtTLLbgUfAiAEIjt5ixIRqp16SJK7kWapPdpKljhO\nS7awEAIdgpQEfQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUZds6oaEQ9dxs6KRhm1aNdxRrKBgwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQTEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAATTfYqbRh2UdYlwpvmnzyILiMDlWfy+RB6j0wI3GoQ/woWRGjRC\nMOEGPwYHTJkmwrA7ReTHKQl600pgNzciytKbo2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBSeY1r0cHSY61fIuqxxhFRSq6sJcDAd\nBgNVHQ4EFgQUao5dGXRDTPQmlfW+qR6uKe8xg7cwCgYIKoZIzj0EAwIDSQAwRgIh\nAMj4E1HUvTLBL1semiisFPfofFRGLAzgu6ZaPlFMmeIrAiEA50bH3sUjsLc6huNf\nIy5X5SmikVkG9aMlezQmNGFtrVQ=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIUBsIW7ZI84p5ORwbW2VrP0qtKX6UwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAQCMLC1rMc2JVRQhxsfHr7hA3SnmzudjVPo2DOSxRA2ZpgvvrR0td9OAOIEsqgC\nWVvu9i/Z52yPkn+eF3oUOun8o2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSgl61cwgIBAcFl4K8ODZxtKj6i2zAdBgNVHQ4EFgQU\nnmNa9HB0mOtXyLqscYRUUqurCXAwCgYIKoZIzj0EAwIDSQAwRgIhANTtc3tBKIed\na/hQl0Z1BRnixYbSsaqPxLrQ+Af69fE+AiEA6pprl857IJvDpyr19Vye9Axyt4Nb\nqFC5ij3qtLWOKGM=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhjCCASygAwIBAgIUa+nv5GB1mLhG8JsTacaV3p7NFA8wCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEEwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAQCMLC1rMc2JVRQhxsfHr7hA3SnmzudjVPo2DOSxRA2ZpgvvrR0td9OAOIEsqgC\nWVvu9i/Z52yPkn+eF3oUOun8o2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBQgmTF6cM0J1PE9NebIAZjJOaPoQTAdBgNVHQ4EFgQU\nnmNa9HB0mOtXyLqscYRUUqurCXAwCgYIKoZIzj0EAwIDSAAwRQIhAIYef+98P2KX\nRAqHZsqN9kfw6cS0gkei+0nVU0ek1ZxVAiAjbscsQwwU7tmN9yy8Qd4C484FAe7m\nVwi2IPw4Yc3aiw==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUCCQo0gKSOIIGog65Ju4IurXD6OwwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQjEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQEruiW3NInjwuXo6dwSvasPsH28GfpvEgSdEX5rysVVhq6AyOJ\nvJCzLnHAgA5QPEq2E+dCoeeqxd/1OwgVXqiVo2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBSgl61cwgIBAcFl4K8ODZxtKj6i2zAd\nBgNVHQ4EFgQUykmGWXglxhCUbFT/Jg6AYA24zn0wCgYIKoZIzj0EAwIDRwAwRAIg\nD3KmfrbrxxaWCjC4ESAXQqKCqzyTt+4eZ61SWGhjGngCIHyYNYwpnIkfAKSdDCpX\nPePdisf4nMf80yAtsd4HgQXw\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIUMWKS+Cb8bWKvxj4lVIozmzGKJFkwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEIwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAATfaHzba6Ud8YNWRG7RlKSiDFrQ1tZDjAObG75FpMMnPqgGIJhav8P1rBx7VV97\nLZalWjQi6MjCDsqA9NRdutQQo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSeY1r0cHSY61fIuqxxhFRSq6sJcDAdBgNVHQ4EFgQU\noJetXMICAQHBZeCvDg2cbSo+otswCgYIKoZIzj0EAwIDSQAwRgIhAJoQD3VPMlFS\nvMs8RP++Q3I7IlrXZZAghMUlYQ86+xhJAiEA5HKcoQ5Txmoit6fwUoNBgtGrhk81\n7Erl4Q43DMZyh1Y=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhjCCASygAwIBAgIUDB9t51huD6iOlyucFz41fzxp1SowCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEIwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAATfaHzba6Ud8YNWRG7RlKSiDFrQ1tZDjAObG75FpMMnPqgGIJhav8P1rBx7VV97\nLZalWjQi6MjCDsqA9NRdutQQo2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBQgmTF6cM0J1PE9NebIAZjJOaPoQTAdBgNVHQ4EFgQU\noJetXMICAQHBZeCvDg2cbSo+otswCgYIKoZIzj0EAwIDSAAwRQIhAL+Z/bsBsFar\nY19jFlBqwmvqOJqfBe1kkSdGl7QZmYiMAiB7W0RLxTs5U+G2NyvbDeBDZD72Razh\nnCv4/P17qgNkUw==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUD9kkNk91PrfVs4BaKLWBSNXIt7AwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBDMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjAaMRgwFgYDVQQDDA9JbnRlcm1lZGlhdGUgQzEwWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARKSIIWDz2Kj+VMPpwKKpx5vhDv2feMKjXaUKJUU83l1z2978jC\nQnaqUggnRXc0ctJym0n3aBkzXG+p+tSvPpjMo2AwXjAPBgNVHRMBAf8EBTADAQH/\nMAsGA1UdDwQEAwICBDAfBgNVHSMEGDAWgBQgmTF6cM0J1PE9NebIAZjJOaPoQTAd\nBgNVHQ4EFgQUrEd/RYUhIvdfBbYMrTtXt7d9togwCgYIKoZIzj0EAwIDSQAwRgIh\nAP2le9uAx7xsSballA3pmcb47120Jv5E14Cd92oX6RykAiEAlFsUrB7u2PyzeRVm\nB8GPNiI/kbYgVOjEAwKzHLc2xSU=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhTCCASygAwIBAgIUWRkuU059jQ9iW1xxSXIHqIPBNBwwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBBMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAQCnmHzTuJydRN1AcN/nAyqSTNnD9tE3V5waTqquZs2993umZKSXAiHs/k3j3Zk\n+DtULY3LfDubpYG5AE9ri8P/o2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSeY1r0cHSY61fIuqxxhFRSq6sJcDAdBgNVHQ4EFgQU\nIJkxenDNCdTxPTXmyAGYyTmj6EEwCgYIKoZIzj0EAwIDRwAwRAIgO+pWSAJCX79i\nXS5na650NY+q8/bcS/nCGlH0p/lhDqcCIC9ktvVhBGZ+2sz0lOQ8hJNsJ9baD3Rr\nWwmxyqwtRphN\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBhzCCASygAwIBAgIUQZEcPfB6e8E2ADniembDSsa588AwCgYIKoZIzj0EAwIw\nETEPMA0GA1UEAwwGUm9vdCBCMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAw\nMDAxWjARMQ8wDQYDVQQDDAZSb290IEMwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAQCnmHzTuJydRN1AcN/nAyqSTNnD9tE3V5waTqquZs2993umZKSXAiHs/k3j3Zk\n+DtULY3LfDubpYG5AE9ri8P/o2AwXjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAfBgNVHSMEGDAWgBSgl61cwgIBAcFl4K8ODZxtKj6i2zAdBgNVHQ4EFgQU\nIJkxenDNCdTxPTXmyAGYyTmj6EEwCgYIKoZIzj0EAwIDSQAwRgIhAJ9Kza2oqnUw\nDzVKdyb4elVmvpVkpZacVV/SwWInIVVeAiEArKOmpi0X4kStdwqBmvT87qsRYqec\nCZppJKHhBxE3sCQ=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVOgAwIBAgIUD+dlfamTJFm+6CMaqBrmDE7zPYAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPSW50ZXJtZWRpYXRlIEExMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfqFUcwUd\noWuTYNoaj87KqYFGfDD3aUm51GmGat1WqUPJzJfEwY7y09N1JCSukd4eCBdTWYH2\nRs2NgJ/7xdpe3KOBjjCBizAdBgNVHQ4EFgQUVSIE4fWiuDQlr8/hdnFkDnYaoEAw\nHwYDVR0jBBgwFoAUY3AQ+7h/Z3+LTd9dDtzNGggBB3swCwYDVR0PBAQDAgeAMBMG\nA1UdJQQMMAoGCCsGAQUFBwMBMCcGA1UdEQEB/wQdMBuCGWN2ZS0yMDI0LTA1Njcu\nZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgPQ/gXW4CfKrcT7nXWhb0qpql\n2AJttLSD5QMU8o01RKYCIQDfTIiLdBlWZNAs/3uY9aXzfjjuqJ24pcYsVhWNQTzQ\nYA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKC0gUIaRF5E7ZO7N4BbA9yjRoXYgvzR2IDDDdK4NxBeoAoGCCqGSM49\nAwEHoUQDQgAEfqFUcwUdoWuTYNoaj87KqYFGfDD3aUm51GmGat1WqUPJzJfEwY7y\n09N1JCSukd4eCBdTWYH2Rs2NgJ/7xdpe3A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrDCCAVOgAwIBAgIUFWVoG4yKqw3v5OrExrmpIH5ujbowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPSW50ZXJtZWRpYXRlIEExMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEz9l+TEba\nqQVxOtIqduGUIG2n0WCi2bxL2mZkOM3DnofsFgXWJtfxmmvexqHCgWN2Pc1+mX/3\nsEUZkrPmp4ZSpaOBjjCBizAdBgNVHQ4EFgQUN1qRp8ZrcqNz0mpiTTPIYDTbLzEw\nHwYDVR0jBBgwFoAUao5dGXRDTPQmlfW+qR6uKe8xg7cwCwYDVR0PBAQDAgeAMBMG\nA1UdJQQMMAoGCCsGAQUFBwMBMCcGA1UdEQEB/wQdMBuCGWN2ZS0yMDI0LTA1Njcu\nZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgE5580e619vMF9siMy9ZNcaK6\nugOupTSpvc30H5fzAXYCIGYTZIqTa1Z6iskO+jX7dKYPC8uDTbYKqT318Xgdvama\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILVmX7hEFXdflDacyF/maQoTm9UAEZ//HdNQiRAlikwNoAoGCCqGSM49\nAwEHoUQDQgAEz9l+TEbaqQVxOtIqduGUIG2n0WCi2bxL2mZkOM3DnofsFgXWJtfx\nmmvexqHCgWN2Pc1+mX/3sEUZkrPmp4ZSpQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -39,16 +40,17 @@ "id": "pathlen::ee-with-intermediate-pathlen-0", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate (pathlen:0) -> EE\n```\n\nThis is a \"trivial\" verification: the intermediate has a `pathlen:0`\nconstraint, but the leaf is an end entity and is therefore allowed.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUaiMQagPow29SMED11zYPo6gdBegwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQSk/Gk6KU+5fx6UUxyA2B1ZHqikzfUOFpBOeJn\nO+//FxeMNKCPcknpOHECK7sY3VbBpuaL9BFrOpHwiQI4rzE2o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUUeHkkBG3R1/FujThkp7xybbufX0wCgYIKoZIzj0EAwIDSAAwRQIh\nAM1kJDq9LEmderwSz8AAB6q0GvUFQE+sjzPADe+Pl2BNAiB2VwmhRbQSwOM36z1r\nO3HSsfQetkXkHUH1BvZ8eImqJg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUX0DDQa56istuwbPkGjzCKvKSQ4YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQXdN+L3tGLCVh+9QtdSSfpUSNH6tq2Fdj8s438\nkNS+Ty73ZmOH9GsPBDxjmquA3rJMSNc/RY2pP28Wh38WB8lwo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUbM33YTkdxEUgyrXlZhNliWA0g2UwCgYIKoZIzj0EAwIDRwAwRAIg\ndPZDYRVic7VuDIWHchXdERWHyhq4tK6Lj71bl5ha+kgCIFzUx7E0PE1P54TmRCSf\n38RGoYp/KeHOwuM3QU/idDL2\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIURh+VP01JysltrwRoCbOrwp0f1I0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA2MDU5MzQ5Nzc2NjA5Nzc2MjM5MTAy\nNjAxNTkwODQ5NDAyOTY4MTAwNDA5ODUwNjQxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBMGW/Yru6dYJnBJmxyWD1G0zGwRQqM/9JwCRSPcU4SLclz85tgTdOOB3nbbjdz0v\nFZEHf91b0AgmgbaoN+AZaq6jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFFHh5JAR\nt0dfxbo04ZKe8cm27n19MB0GA1UdDgQWBBRAccWhwkU8QjwiPAv2kwRK+cLN1zAK\nBggqhkjOPQQDAgNHADBEAiBllD/E/Z1C9uYLlhEfJvg8Xtdir8Q2wv1Vqk7Eax/z\nrQIgDZLdutF5iwbmz9Yiow6IDcmh3JazUe3ujkJW1azt8/k=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUYl63V6rpfSoEKo5OOeuGIDzSsC4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA1NDM3OTgzODAxNjcwMDMyMDQzNjU3\nMzk1OTk1OTcwMTQ1NzIwNDI5MzgzNjg5MDIxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBHt0VbbAyhPxQqa3fpGNdWIHSKKGXDAINNBGjljpbUAbpTgH+53YhG3f+Szy3sst\nAVdMkPd6mWgMIWkpFbFiXQ+jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFGzN92E5\nHcRFIMq15WYTZYlgNINlMB0GA1UdDgQWBBQ+u+tVDL3beAOHkgKyBKFJAVWQijAK\nBggqhkjOPQQDAgNJADBGAiEAzHyUzHHZ7LRLBGROMRtPOUHTuu/xSZlRqqcW0eU6\ndaECIQCd8aiKy8pF3o2xcze2jnZSuqWM8rT3mrmv8wxMjscmcQ==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUZOm9chfCxzp59MDIJuHLw/L7UUwwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNjA1OTM0OTc3NjYwOTc3NjIzOTEwMjYwMTU5MDg0OTQwMjk2\nODEwMDQwOTg1MDY0MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKAVD\nYHFkA4AqPIyOgJ1Y11yIIeM04cBk7fiSr8mGNdq66aP+qD2CZsWRFzVvEJhQn4Au\nVpLfmvMgxxvd274RZ6N8MHowHQYDVR0OBBYEFOVx137QQYHPPS+Yx9GXETUB5Twj\nMB8GA1UdIwQYMBaAFEBxxaHCRTxCPCI8C/aTBEr5ws3XMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiAQ0DG7RkjnXzGz61uOAZMO6qHBaDFNee7cKqt76SQhhgIh\nAPu7U/B8zPCtI4k1mib7GosWUDyFLjT71jFP8OnevQp1\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKdgN4aXOsexONQANtSPHLk4yudtvHN90hqgplZpbhI7oAoGCCqGSM49\nAwEHoUQDQgAEKAVDYHFkA4AqPIyOgJ1Y11yIIeM04cBk7fiSr8mGNdq66aP+qD2C\nZsWRFzVvEJhQn4AuVpLfmvMgxxvd274RZw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUS3uyiDCLIdPsp0W7IwPipSbAi7EwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTQzNzk4MzgwMTY3MDAzMjA0MzY1NzM5NTk5NTk3MDE0NTcy\nMDQyOTM4MzY4OTAyMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErheB\nGuDdw4e4r/AUDrs1o6uGgbz0SrIBBzX4Efua64mBeFnsnL4cFU8+E2n/uYydPHbu\nwXXmVMcpNzNQYeRPl6N8MHowHQYDVR0OBBYEFACSmdA/hgcO7TC2LWJ91rW2xF9p\nMB8GA1UdIwQYMBaAFD6761UMvdt4A4eSArIEoUkBVZCKMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiAA1PnlcPSFWynFfrkEcB8gaxAUYUfMwiRzYv6o7Ui3wgIh\nAPsdKfP3t3IWJk76Q3dq0gzWebfOg5WYbWR9fLY8rYg1\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAk1XzgZJ1RKdLip9ffwLBcaQM+cWiBb9M2tby+QUUTIoAoGCCqGSM49\nAwEHoUQDQgAErheBGuDdw4e4r/AUDrs1o6uGgbz0SrIBBzX4Efua64mBeFnsnL4c\nFU8+E2n/uYydPHbuwXXmVMcpNzNQYeRPlw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -65,16 +67,17 @@ "id": "pathlen::ee-with-intermediate-pathlen-1", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate (pathlen:1) -> EE\n```\n\nThis is a \"trivial\" verification: the intermediate has a `pathlen:1`\nconstraint, but the leaf is an end entity and is therefore allowed.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUHasmqKH/Yxa+ewF75Xz3LHDZv00wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASBcTeq/I5VjkhTfv1sW68g9DVhlzeS0+Lwc/4T\npkdHSD2fJ6rdeQhUBh+saCNe/B5vEHSQBKzrxzDUfbVIn53/o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUeCjSo0Jjoogbpq7f/64/wGy8IV4wCgYIKoZIzj0EAwIDSQAwRgIh\nAJFpdQSFQxXE2PxQKX/DrVIF26uBeE2rO3dTPryQJrygAiEAsEPrRR6RBo/IX1DA\nykeeqYFbvOKaek+zv4sLbm2+9sE=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUZ8TkW3ur+FrRIt5iPoh8v7ugvg4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQwqfNqCva2DpRfhwgGI4ih0zSICkjY5EFdWzSE\nhTf7esyJvBdBJddqiTHFPT/I79hGa0PugdBZHXY1kG1Cl13eo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUYee0k6KGouMDd0dK6gufK+9tarUwCgYIKoZIzj0EAwIDSAAwRQIg\nP1pOwJ3VVWPM6JEx5tbIidjhwpneG9+WKN5Vb2Z3nYYCIQCmtcN6ZIRirJQ1K8JU\nHY29AFyPmdSP2yUD7MuJUgJ8Ig==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUXv2N9T6I8gFU/yzvCuCcMgMpKtkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxNjkzNzc1Mjc0MzI0NzQ4ODUxNDc4\nMTcyNDM5OTc1NzU1OTE2MDUyMzE1MzM5MDExKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBBq6Y3RLq5miU+E4cfrLggDBB9AgyP8Lh+zSLlrnL0s4mmBIAAR/qPL6jm+Zy/3b\nweuQMBNKf9Cok8PlbjuRM7OjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFHgo0qNC\nY6KIG6au3/+uP8BsvCFeMB0GA1UdDgQWBBQ6O/4jiRP5fMvRLZZqQ1UMGuZLoDAK\nBggqhkjOPQQDAgNIADBFAiBT+uV5K/WfgQ0RmJQQWYjtNOtkJ8L0aj/co/eMxToG\nuAIhANs5tXvKtMHtlaVYSSvaBxU9nETlIbFKnjIUFW0Ug97z\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUQ8rLiJ7PCloZmmXZ0p4YbLogNgMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA1OTI0MTY4ODgxODUwNDMyNjc3NTA1\nODUzODYxMDg2ODM1NTYwMzcwOTYxNjA3ODIxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBDoJSpndk1oxIsRoU9u6y+VUGmpy9PxS+TWo+yUWrezknfKXKTrk0VXvzBJWpaEJ\nyDHdKIIr3w27KTwh4YsFvgijezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFGHntJOi\nhqLjA3dHSuoLnyvvbWq1MB0GA1UdDgQWBBRuYeSY1Nt2gxMhTQTitnVT0so5HTAK\nBggqhkjOPQQDAgNIADBFAiEA+XwWSLTOXA61k9NAOruvdaOB3cY36gi1rvSUExqd\nzlwCIBawFVhSMh8DcggHNIHclnfTVhFtlK1ZuJNyVCPC4J6w\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUHGVlOYc+rZZ7ZlzuWCT+YlCVhqswCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTY5Mzc3NTI3NDMyNDc0ODg1MTQ3ODE3MjQzOTk3NTc1NTkx\nNjA1MjMxNTMzOTAxMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2HJf\nPKdTT27/jjajz3EzW7M3eCYp6jLJPFvfVnwDwgukUrKNNaUwB19QT8p7msT6OvgK\nl8F82HYDRg/JAwVmA6N8MHowHQYDVR0OBBYEFLx8++nlSgYaRoUBA8dlbK/UsF0L\nMB8GA1UdIwQYMBaAFDo7/iOJE/l8y9EtlmpDVQwa5kugMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiBD66WsVyJhq/w/N0KD/rpLy5Iu9u/SachBTZiAuoW6ygIg\nPYkWHtknGPCSKoDQf/PBt7dEmsOQBc8zqncs5/czGBA=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICxOf+qf+4inNDNS4tUIUuGXWF1fLJPxYf94PiIpM4IqoAoGCCqGSM49\nAwEHoUQDQgAE2HJfPKdTT27/jjajz3EzW7M3eCYp6jLJPFvfVnwDwgukUrKNNaUw\nB19QT8p7msT6OvgKl8F82HYDRg/JAwVmAw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUTqLZ5jswt4ZUM9gSly3lAQG5PiowCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTkyNDE2ODg4MTg1MDQzMjY3NzUwNTg1Mzg2MTA4NjgzNTU2\nMDM3MDk2MTYwNzgyMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwRHk\nkWo7uNbPcRKpqBWLPRoJE/cw2pMfRZtV3nkREER2LU5WopoTD45kRIhdzO4D6+hK\n3vKkvk84TKR0j1zWIaN8MHowHQYDVR0OBBYEFIUBHxnnETsUo6wbABJWBWkhp1Vi\nMB8GA1UdIwQYMBaAFG5h5JjU23aDEyFNBOK2dVPSyjkdMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiBEKZbDjtqfSfQ5hBCQeROALEX98i4N+2yWn9vuoDoFrAIh\nANq0LKv3KhzMJ91bcqX6ShxkgB/KluO2ThG0I2HSrYIF\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIH1StYPMT/QmmdijMBi5GNcijtOrWUKrH8a6r69hK4iIoAoGCCqGSM49\nAwEHoUQDQgAEwRHkkWo7uNbPcRKpqBWLPRoJE/cw2pMfRZtV3nkREER2LU5WopoT\nD45kRIhdzO4D6+hK3vKkvk84TKR0j1zWIQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -91,16 +94,17 @@ "id": "pathlen::ee-with-intermediate-pathlen-2", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate (pathlen:2) -> EE\n```\n\nThis is a \"trivial\" verification: the intermediate has a `pathlen:2`\nconstraint, but the leaf is an end entity and is therefore allowed.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUFLXwlUUbqQ0Ccw6rbeGp/iy03Y4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQjZWmjlUBSG/7kf7dUi3LfEuaQUfm/EVDgMRup\n02fUakJxjDDnQJQzrfaK3W5J7MVF5Qnj1DJB/E3sLbDFXdEoo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7edtQZrP/EMESqOQu6dthAEfqPswCgYIKoZIzj0EAwIDRwAwRAIg\ne+3zXs3dfCbOKgLyvIfcGiAZbdH2Gf1DJWFaJ6aqbjUCIGST1RUBqFUV8/B0wPcA\naua5M4jodzkMxOTNZ3g5T7/Z\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUT9BYxXQoB0EaErRAfaj6Cta+594wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASATHOkLAwrdC83TzbFw3ALDjqrC/J352LFvqI7\nC1xhO8bEP0gf2GzeWK9ypohAStd6jK8lGxAJyF1t0MgLWOPko1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUy+hPWmYklUnz72FxaPaKr8/T6zMwCgYIKoZIzj0EAwIDRwAwRAIg\nYXP2Wf4ZaFHbIytFcd4Vpo+WB9WXc0oRJZZ1159K72wCIC946qiA6QNCO8Pb51RT\n9TWLyU35HodlNTQ4Q4oF6amT\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUDO7WwDAzVZS4alsQ2Q121bOOTfowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxMTgyMzcyMDgwMzk5Njc0Nzk0MzQ1\nOTM5MTk1MDA0MTcyOTE2NzgyODY5MjkyOTQxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMjBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBK6GgG169BhwLr6m+ZcO+TP2veswivFv7eun1ZI/rvH6grL+wYNHSHDInI1TLIfb\n56sLFPoh99ZnQnPbr05X5iWjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQIwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFO3nbUGa\nz/xDBEqjkLunbYQBH6j7MB0GA1UdDgQWBBTbWRHOCL3ETZKgD2jEGMzDraVazTAK\nBggqhkjOPQQDAgNIADBFAiA6P1pmCnDowNoFwq75yxCZPNP9IHTIVdu8vA+oBt3/\n5wIhAJl+ZJVPXsZdV0zfYlQ9JxmxhnMS6ZAK/t2CIaBRZFGK\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUJmdO3cPP1kS0UWrgu8bNm0CcjFYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA0NTU2NTY1NTg5Njc1NjQyNTY4NzQ1\nOTg2NDY0MjEyODQyOTM2MjA0MjgzNjc4MzgxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMjBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBL6bvnHeW5n34yiha/SJdcglS5IMANJtbf2A5uQMyYJbXPsfU5saB1qyVQdTy2Vn\nk6Z37pHtajsZ6W+xJh39ZRujezB5MBIGA1UdEwEB/wQIMAYBAf8CAQIwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFMvoT1pm\nJJVJ8+9hcWj2iq/P0+szMB0GA1UdDgQWBBR+q9nn+yrs3XAVXCYyXM1ldqx3TTAK\nBggqhkjOPQQDAgNIADBFAiASbGonBSe1KBHC3QpbjC3XqvuilB1x0R8yL9pydtC+\nTgIhAO046/xn5c4E2PtnP1hLOSmemxiJHxWhmYB242nwA/8h\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUREJnSJ/FxCx0qw/5VCNjMaZZWw8wCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTE4MjM3MjA4MDM5OTY3NDc5NDM0NTkzOTE5NTAwNDE3Mjkx\nNjc4Mjg2OTI5Mjk0MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTIwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEi/hB\nCNF/sdJNwkNePypBCgDXHtX/oIJBmhT6Q7urLNcEN/QUlpoZJoAFTCo2MyZYb8i5\npQB6QCxxU9fPSbuv8KN8MHowHQYDVR0OBBYEFKNY8AsX2865R5FDjnKgt6nrWwzb\nMB8GA1UdIwQYMBaAFNtZEc4IvcRNkqAPaMQYzMOtpVrNMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiBE5cSkdBeD/Kd3cTSIDr5i9Q3XGCphpnCmE+/1i002uAIg\nXDuc5DIVTwNrPVDgnK56i1cxK3jGp4hDv87DI036PMk=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKkgpNFqatcM4cL6Pq+mvO5w+C4REuUvBnWcWriD/e8BoAoGCCqGSM49\nAwEHoUQDQgAEi/hBCNF/sdJNwkNePypBCgDXHtX/oIJBmhT6Q7urLNcEN/QUlpoZ\nJoAFTCo2MyZYb8i5pQB6QCxxU9fPSbuv8A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUUAMcimKPIaw7Ol9jizvR1bQmMCAwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNDU1NjU2NTU4OTY3NTY0MjU2ODc0NTk4NjQ2NDIxMjg0Mjkz\nNjIwNDI4MzY3ODM4MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTIwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuZGx\nfzHcjg/mt9eFB6Vfl2Vw5KH5/pkxZy3OsjWsNq0ZI/E/Uoiv17abbZ24gBZXRJ3G\nYw1MoNLa8QJdvvVP4aN8MHowHQYDVR0OBBYEFB8Du9A/GZGceouXjkyXSay4qYFN\nMB8GA1UdIwQYMBaAFH6r2ef7KuzdcBVcJjJczWV2rHdNMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiBXbLNDwEX7fDgvjusR7du6PPseyo1UPy0x7eXX1p4qNgIg\nOByiuWbpSJitSTaz4TLvQ2gL/NvCrn7OlYMsKBCGgi8=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICcfcZwk+ByQvEE0fEtppu8GSS65IPwDcsq0PVXiCJMSoAoGCCqGSM49\nAwEHoUQDQgAEuZGxfzHcjg/mt9eFB6Vfl2Vw5KH5/pkxZy3OsjWsNq0ZI/E/Uoiv\n17abbZ24gBZXRJ3GYw1MoNLa8QJdvvVP4Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -117,16 +121,17 @@ "id": "pathlen::validation-ignores-pathlen-in-leaf", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate (pathlen:0) -> intermediate (pathlen:0)\n```\n\nThis is, unintuitively, a valid chain construction: RFC 5280 4.2.1.9\nnotes that the leaf certificate in a validation path is definitionally\nnot an intermediate, meaning that it is not included in the maximum\nnumber of intermediate certificates that may follow a path length\nconstrained CA certificate:\n\n> Note: The last certificate in the certification path is not an intermediate\n> certificate, and is not included in this limit. Usually, the last certificate\n> is an end entity certificate, but it can be a CA certificate.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUU/NplXEW62o7s9o2gDMdF8g1tCgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARgQEK0t6LSIM9IPk7uy2vefDrD5imO4kZUXrgo\nMjLsOkyP/l/aCdMFASx6cyTWzBKkoRD7VVksDqYjj1PAKxNSo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUSimMjZzQVj21PSpBPr/RqZWw/gMwCgYIKoZIzj0EAwIDSAAwRQIh\nAL5zDbNzgWlkZHOiweG2giucasU7QaGgZ5gbtvu1NmAYAiBCIsIVoZWvcKFxrcay\nvq7xPJxyH9ftCF4jqvXQjNO7Jw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUeMIkXUISqUYK9nqw5aZkvM3MFTUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ1dWBVnZgr4R9OxaMRHflXI+WRcDb/YicOkp2l\n25H8ucWXRtEoBKr5+44qR3A/MTj/+OSUb/Bjg0D9NlTG2bQwo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUIbTVwkjlkif+9UTdKmGmTQK8Dj4wCgYIKoZIzj0EAwIDSAAwRQIg\nbW+oA7X6nun6F1Ds1YgPyuBWirfxyIFZB0tipEHy1mECIQDM+/KXlJAESEERhx0T\neqow+jjJ5C+iAu16KoxdRDplDQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUT6dWWO1LLTJPZamAf+ZC+TdVAtswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA0NzkyNzQ1MTI3MDQwMzg4OTY4MTc5\nNzU0NjEyMzI3MDMwNzQxMjcyOTk1ODkxNjAxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBCF9bM45GF7GHW7JZTG5PI3U3kc8Ilhw/Gx4bmSvOeRjl6tT5ExVBobKlrvT4qkG\n1AZyopmmN56JBdKvZQNQQLWjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFEopjI2c\n0FY9tT0qQT6/0amVsP4DMB0GA1UdDgQWBBSEk5c5cRaMndmRp5S3Lj2BWkf+mTAK\nBggqhkjOPQQDAgNJADBGAiEApt+Tjsv7/c3QVd/8CsRKxQ6gI4cY/AE9rGcr7fJU\ndl8CIQCm4e0yxNQpAkyEWun41mg95PRUe9aHCBcXSBOt2pFRzQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUdSH8Lh5yqjqHJP7Y/z29yKhZ5fAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA2ODk0MDg0MDQ4NDM3NTUyOTMxNTU0\nMzY4NjgxMTYzNjY2NjQ2NDg4NDMwNzI4MjExKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBM6brtedTBw8YH1MR5siqM8LIjhSZngtDC2jGprFK3sJu1vXuVfSlr6k3mpCqDzs\ncP5v3gkR9RgCui5wsrcye86jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFCG01cJI\n5ZIn/vVE3Sphpk0CvA4+MB0GA1UdDgQWBBSv1q4kmPNHqrqq1UyzisH28+bk/zAK\nBggqhkjOPQQDAgNIADBFAiBR5HFcwj4wNBJvR6YobV34WQcSMkfzBn+6ysycH8NP\n2QIhAP8Ir5jdfYR9Yuvz1mViGKcRJL9DUprzDQOOLdq84gbU\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICTjCCAfOgAwIBAgIUZwd9nXftoqJEO/TSP5M7QrsGynowCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNDc5Mjc0NTEyNzA0MDM4ODk2ODE3OTc1NDYxMjMyNzAzMDc0\nMTI3Mjk5NTg5MTYwMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDQ1NDc0MjAxNzI2MDA5MzczMDg2MjY3ODkwNzQ1MjYyNTc0MDc5NDAw\nMDkwMDgyNzEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEglon7CwLDT8IkVPqo+WmZNcb\nRizZdCAOavOGk0TareZJfCMqxKMluVSc3lq5Q+vJJUwdmg5D+prfYdy/ma6NdqN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUhJOXOXEWjJ3ZkaeUty49gVpH/pkwHQYD\nVR0OBBYEFO7jVfxghra/JSwxsSLn/fnQ2Qw4MAoGCCqGSM49BAMCA0kAMEYCIQCk\nPJe7BdkB3adJvrlkKTEQDRkBLPvrK7zgfhDXjM1jZQIhAIxijISXk07wlHfSWc9X\n+tMquLUuVVVXlmmAcKYGl/2r\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEUahuLeMUhEzLYbxFe3yK0rjhHYO3lzwqDFpsdH/KsjoAoGCCqGSM49\nAwEHoUQDQgAEglon7CwLDT8IkVPqo+WmZNcbRizZdCAOavOGk0TareZJfCMqxKMl\nuVSc3lq5Q+vJJUwdmg5D+prfYdy/ma6Ndg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICTDCCAfOgAwIBAgIUK5y7wpYM6nipD3fxc+9xCQc0Y2kwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNjg5NDA4NDA0ODQzNzU1MjkzMTU1NDM2ODY4MTE2MzY2NjY0\nNjQ4ODQzMDcyODIxMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDY2ODcwOTgxMjc2NzQ1NjYzMTIwNjM4NDQ3NTIzMDcwMTE4NDU1OTI3\nNTk1OTc5MjEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEsaTO9GmbEvsIOJgBMOFuCuy\nIKwucgTzXIawoNb3ilwT7zrhaOZQVvUA36R93FPf5Uq4B31nJIw5+8hGe3TFOKN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUr9auJJjzR6q6qtVMs4rB9vPm5P8wHQYD\nVR0OBBYEFFGzEAm/uA1IkKiyxmdAFcLO185VMAoGCCqGSM49BAMCA0cAMEQCIBgR\npNfbqS1VrU6R+xTHNncra0t6zuhluVbKug/cz9ogAiB+GFOgUk9cXa9OM5D5/uZu\nNzugLGa1TQFtTAwCx8hxkg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFXNN+LFVu0L4uBc04LurJth/vzv/zfXTebfdev+c2kVoAoGCCqGSM49\nAwEHoUQDQgAEEsaTO9GmbEvsIOJgBMOFuCuyIKwucgTzXIawoNb3ilwT7zrhaOZQ\nVvUA36R93FPf5Uq4B31nJIw5+8hGe3TFOA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -143,17 +148,18 @@ "id": "pathlen::intermediate-violates-pathlen-0", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate (pathlen:0) -> intermediate (pathlen:0) -> EE\n```\n\nThis violates the first intermediate's `pathlen:0` constraint,\nwhich requires that any subsequent certificate be an end-entity and not\na CA itself.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUW97Tld8E8dIHn4ePVu0DciU42rQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARRXb1N+JFXI0PtVKmNrovpnffuaemSBBuo6y+I\nZgOncynoCCHikX65+b+JGSijkPGisd38ubBwHmqalO61WHPco1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUJ9qa0+Tcb+OqD7v1zOqvvCqDU+4wCgYIKoZIzj0EAwIDSQAwRgIh\nAIMSrBDp9q4yuqhjuH0ilRX3sfd4vHfd+5oe5oLYBOM0AiEAp56QLixkhw/FCgZI\nMKpRL9VbXbLBsXsKrBrk+QWiLCc=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUQ8aHK1rNZASACCh1PBB+sSbzEC0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASlIua21VDz885f1gvqUhOtTOzPr179M3xFxKzk\n0oD+CZjT9HKk43XmmCo6PxfLjoLr4vwXgSdxvdZwoFgn3KTUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUunrH0M1LyjKAW2U6DSGkwLHZzlcwCgYIKoZIzj0EAwIDSQAwRgIh\nAOJcuEiiVstFtbQl7Ddg40+Fs2UgoMGcbLRK/KL8262bAiEA2+jNRb0R7QlnKxwH\nQ5XhJxlvoh3tNp0w0j06tedD+xc=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUKwiotfU84nmdUwg6nxxgPVs6aggwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA1MjQ0ODczNTcyNjk4OTA5ODQ2MjI5\nNjg3NTc0NzU1OTMyNjc4OTAzOTM1MDQ0MzYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBIREhOKiEEr3/b1Wzqe9HhD5kJGutrZ8UlW55TN6ammlx/NEpjSnmtwLkoYfcilK\n18y9GT1dULq1z5f8m2kbVw+jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFCfamtPk\n3G/jqg+79czqr7wqg1PuMB0GA1UdDgQWBBTsj3dRTJao8CMWH0qWLbfg/gzQTjAK\nBggqhkjOPQQDAgNIADBFAiEAq/nZ6ce0V3I4bCU7vJSmefEOZTDbau9zr7ReeQWe\nM8sCICfxejFjpHK4EImixL0y6V8V0MmWrUeSG8FfjBaoJ0yJ\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUOUjN1bcW5z+MQ9BZ8bAmE3eg2MMwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTI0NDg3MzU3MjY5ODkwOTg0NjIyOTY4NzU3NDc1NTkzMjY3\nODkwMzkzNTA0NDM2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDI0NTY3OTcwNTg4ODEzNTI4MzE3NzE0MDA4NjQ0NTM0NzI5NTI0NDgz\nNjMwMTMyMDEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEAOaUosprHK7jgLJgxMt9QCZ5\nv3bMBaG474PrAQ+QbPatD4PGrpCN4BaL/LdCywDs/tXBhR6xMiL7dpR5odtktaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAU7I93UUyWqPAjFh9Kli234P4M0E4wHQYD\nVR0OBBYEFKnmyQgj9EUhkyASEgS9Z/zoR37EMAoGCCqGSM49BAMCA0gAMEUCIEJ3\nFEKhbZtIcL/xT3mAEdrQZfy39IbV+36xwGOINrkHAiEA14TepGivIjQQ4mNxnS29\nznVLLVIB8lWDWYSqeHGzCKM=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUfb7ZebZQUi+Hh+dBVoNnEcgfgKswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAzODY5Mjk3MDQxMDU5NDU4NDU4MTM0\nMzQ5NjIzNTIyMjY3MjE2NTc0MzMyOTY5NDExKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBEktuqfSUr0dD9YClt+2E7anyOu++sNxGjhUsBg0qb2YqNqyijVPZcs7KnoDaSG4\nKwruvON7GZFgltgWi87btXajezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLp6x9DN\nS8oygFtlOg0hpMCx2c5XMB0GA1UdDgQWBBTKn8SsADz3t/Vw1r2Xgfi37VV8CTAK\nBggqhkjOPQQDAgNIADBFAiEAyqWdwK6CU9TpohDIUEvz6+FeaUqxZsk7znxBaRgt\nzzYCIBsoCCXKdMlfTloybpO0aN7ZnDKfI5YHC/ub9AgKa1VH\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUKEZldJxvbbU5KcLH0tmPPYB8UjMwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMzg2OTI5NzA0MTA1OTQ1ODQ1ODEzNDM0OTYyMzUyMjI2NzIx\nNjU3NDMzMjk2OTQxMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDcxNzg3OTkzMjcyMzI1MDg5NDIzNzkwNDU1MzcyMDcwMzY2NzQ4ODU1\nMzkyNjgyNzEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmRpKBmAlFjzZe+BnZUMPcwyb\nXP+fq8FdcviyQ0WoBhJzrZx1aTb1bFNH1Ffx/8eF6xCYHoMfFbqXNOHaZFFJsaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUyp/ErAA897f1cNa9l4H4t+1VfAkwHQYD\nVR0OBBYEFJd8JQMxvZ364/Fh6MgqV6FZrmVWMAoGCCqGSM49BAMCA0gAMEUCIB+P\nwd2q1L2CDmsHCN2bbRLzG6W7s1WpcX/nz+weU+zEAiEAlwigZmSB/aLuIf9zEZz+\nsxTPW39R9tlTKzPXzRyXPoM=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUHQzby+cCLZtZOg0uk0tTjNs2dP8wCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMjQ1Njc5NzA1ODg4MTM1MjgzMTc3MTQwMDg2NDQ1MzQ3Mjk1\nMjQ0ODM2MzAxMzIwMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAETJU8\n6lWCjQjvnPz6QfJK3aE/aQ4MYkEc+nPYAjM9q/Km4klFsw6EyIyCs+R5zY4fDDoM\nWnCtnaWXEqboMhAFxaN8MHowHQYDVR0OBBYEFEevm4zsIafpXHXLSq3Wh/pb0XZl\nMB8GA1UdIwQYMBaAFKnmyQgj9EUhkyASEgS9Z/zoR37EMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiBwQRK2Cgo0nz1DVwNC7eT+m45v8C2kx0ma4ohh3yqoeQIh\nANakqKEugbbpeWoFn6VCDI58l13IOuFIUKDHVdzGng7g\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHUVtAU482L+Yo/vKkOK/y8Uoqs6l5jK2dUqUK0LTJ78oAoGCCqGSM49\nAwEHoUQDQgAETJU86lWCjQjvnPz6QfJK3aE/aQ4MYkEc+nPYAjM9q/Km4klFsw6E\nyIyCs+R5zY4fDDoMWnCtnaWXEqboMhAFxQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUFzCONN72k0f7WVR1+7PKAXGqLzYwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNzE3ODc5OTMyNzIzMjUwODk0MjM3OTA0NTUzNzIwNzAzNjY3\nNDg4NTUzOTI2ODI3MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExu/x\nsEY3hMikSnCU4K2yhgCB8779mOxDIiRLkxv0tEiWpJ3nCjr7IogSCWUMEnz47QQm\nxlLOG/iQKhgaI867taN8MHowHQYDVR0OBBYEFOCEqHgr/O2Dn5pkeGdcvimC1ghn\nMB8GA1UdIwQYMBaAFJd8JQMxvZ364/Fh6MgqV6FZrmVWMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEAugikvq9VAGUBLTbu9SucId2QG0ONTQvHQkK2oDkCzNcC\nIQCX8c4FWbmrn6bqKjN65VwckPBMaZbmDaigZeW82q88vg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEII5z5W4lbWj8Ce1duNSuqu7V3kQWa5dP8UEf554SWp/ZoAoGCCqGSM49\nAwEHoUQDQgAExu/xsEY3hMikSnCU4K2yhgCB8779mOxDIiRLkxv0tEiWpJ3nCjr7\nIogSCWUMEnz47QQmxlLOG/iQKhgaI867tQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -170,17 +176,18 @@ "id": "pathlen::intermediate-pathlen-may-increase", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate (pathlen:1) -> intermediate (pathlen:2) -> EE\n```\n\nThis is a less straightforward case as the second intermediate's `pathlen:2`\nconstraint seems to contradict the first intermediate's `pathlen:1`\nconstraint.\n\nRFC 5280 permits this as part of supporting multiple validation paths.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUHBKBv+BsVryyW0RFNaUL/z0egjAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT2xhOJtE1MBhieadmk2BQ9mqfwFsp5KvB5hsN0\nQ32w+SCN4fcbF0HzNimHTDCQi6f9eD3ePYd0u+upPWzeiL+lo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUsXhRHnY/jB0NdW7qaXlc2hisET0wCgYIKoZIzj0EAwIDSAAwRQIh\nANoTCZmzY6aGoiq6bipg2VxnoqyRzRHFfa3Fd6r3QT7CAiAQulyjAGIetPH9MNho\nxBlli4f3vC2Y7seYAygg1bKPRg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUQl2sT969ooORIJ6GyBvwM0S9tF4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASbLcjwWEQh0ajL46369oW17WiCZL0inoPMyLox\nsjPow6Fq+5lVyT9WfMDrBQX7ICsaZWEwK9x7hTzQ0oWug4UOo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUBK3D+bPQE/HP0KincAY4ztxm4BswCgYIKoZIzj0EAwIDSAAwRQIg\nJbqexLoRsumeBv1Ns/BGBFEfn4vE3jKmzrPBZptO6ZACIQCiYrAhGm3ZT/t9MvEV\nDZ4QeMw2ouhTq7ApZVfHZh+AUA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUdwm2pTRB4dPIgoUMnD1Lncpkim8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxNjAyNjQ0NTc3NzM3Njc5MzUyMjAw\nMDE2NTc1Mjk5MTkwMTI4NzUxMjUyOTM2MTYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBJuMNxB8UtvIJ0eSPM+sI/jcwq+dbjERrDabY3mgycI2SQ4UBBdR5RmNWa6+dzxx\ntk0APzvi2McEY1uncRnt7vyjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLF4UR52\nP4wdDXVu6ml5XNoYrBE9MB0GA1UdDgQWBBSjABqRv/HpBy1WOfbojtspsMk5eDAK\nBggqhkjOPQQDAgNJADBGAiEA3yC3Ysxipd8+IHQIO56R3McV6g3fQyjpWG6poDfv\n9gICIQC9kxuv0J5ugNZtjUA52hnAl6gIRgsEmT3jAyioPjP6fg==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTDCCAfOgAwIBAgIUGNizKs88telgodTqjig3IvBC6hkwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTYwMjY0NDU3NzczNzY3OTM1MjIwMDAxNjU3NTI5OTE5MDEy\nODc1MTI1MjkzNjE2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDY3OTU4NjUxOTA4NjkxNTczNjcwOTczMjM5MTg3OTU4NjU4MDk5Mjg2\nNDA2MjA2MzEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0yMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAESAtJ/JV8MIBkI2sUQhTYMw63\n6F5FSFgMunsYG04Z1sNfcqa0D/22f8nnPa0Lr5BjYaxK3mC+oc+NFkB2ig2sKKN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBAjALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUowAakb/x6QctVjn26I7bKbDJOXgwHQYD\nVR0OBBYEFLi++AUkrBK7Pk+CXVCq5gwBw0YZMAoGCCqGSM49BAMCA0cAMEQCIAD7\nffmPjGSnDFhaLfs4LhthSUgsr0McdYXZFGVG8kV1AiAi42mVr7XbbUl+mIGuxUL2\nTpHSH8Ashoqzz91aWWsc6w==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUXBE0HIxZnlF8nPutLQeZqykO42AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAzNzg4ODIzNzA2NjkzOTcyNjE0MTI3\nODYzOTg0Njc1MTU4NTY4NjQ3NTMzMzMzNDIxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBN/KiQSP79KiHiQVXxhNxBDQJXXOs1iJSffOm7f00gMzYYaq7IOj2m76yo9AersB\n/kzXxNaZ9lXWYOvr9NhDNn6jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFAStw/mz\n0BPxz9Cop3AGOM7cZuAbMB0GA1UdDgQWBBRhdXg6RmawXqykEyBIz/gelWOxHTAK\nBggqhkjOPQQDAgNHADBEAiBKx3RM35C+M8G20iSuabF1X60WvYY6mP/23jGHtFnC\nfwIgcJjfnkzwOeHKGE1NvW0OQRWAAMCywZC2VGeNLyNxfz8=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUTBl/ACgYO3iUtiLj1dlqfeD5zWwwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMzc4ODgyMzcwNjY5Mzk3MjYxNDEyNzg2Mzk4NDY3NTE1ODU2\nODY0NzUzMzMzMzQyMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDUyNTYxMDgwMzEzNzUwMDIyNzA0OTAyMDIzMDAyNDM0ODIzMDIwMDQ4\nNDM1Njk2MDEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0yMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEBDdmtNlFovElIiBqp+jUsGla\no5YKQIZSGaH3dzLyR995DB/I6c+YHF8P0MavkT2TVl5EOKh2sdvwIuwrXxGqZaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBAjALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUYXV4OkZmsF6spBMgSM/4HpVjsR0wHQYD\nVR0OBBYEFBGt1ZaTT4LbeXHeBVroaU2BsZfpMAoGCCqGSM49BAMCA0gAMEUCIHkX\nR6ISen3L9097T7NhLmKFVQk0M0ynOqaoTBR2kXAhAiEAwrSULZMRZ5OVI6hTh9IG\nbFw4aFAMd6q7oQoOGSObHzg=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUOfsA8qsjTOjSqnxFOajz0ag99+wwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNjc5NTg2NTE5MDg2OTE1NzM2NzA5NzMyMzkxODc5NTg2NTgw\nOTkyODY0MDYyMDYzMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTIwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEgF5\nzYn61E5G8rE/EUwGLGdPVV8APnDe1/SEgSHTj0JqJPnJE19PPXvtDrSKYCAh/rvF\nhjUrtU0N9JsKHaTlfaN8MHowHQYDVR0OBBYEFECQn885L42AjNJCqemA4/yMuCiu\nMB8GA1UdIwQYMBaAFLi++AUkrBK7Pk+CXVCq5gwBw0YZMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEAxtWd7NJOpVXduRjB09XINAAsBIM8oe0QWALU/3H76t4C\nIQCQlr0MDtksdgUhzUDTFwa0NCbPo8aNe5Fi2NvdCrEKww==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMsAXvFaCP5r104tx96BEeLAVhCjA3M4IcLlnB3zlYJeoAoGCCqGSM49\nAwEHoUQDQgAEEgF5zYn61E5G8rE/EUwGLGdPVV8APnDe1/SEgSHTj0JqJPnJE19P\nPXvtDrSKYCAh/rvFhjUrtU0N9JsKHaTlfQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUQiLfcAGnAFHwV8yt60wrkodAh0IwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTI1NjEwODAzMTM3NTAwMjI3MDQ5MDIwMjMwMDI0MzQ4MjMw\nMjAwNDg0MzU2OTYwMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTIwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHKsG\n9aFBTiAScZSDD2zfteTpvJhA5Q9LTixr3REvHs1z+ebCRFDA4D/F3J07KDCO084d\nDy7AjzCgRfUqPryvHKN8MHowHQYDVR0OBBYEFDq3A0Zq5qKrsnNDCMfIW+bvdPXr\nMB8GA1UdIwQYMBaAFBGt1ZaTT4LbeXHeBVroaU2BsZfpMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiBobYuId9YCGJ9OI2nIA7g/2oc7u/MT/6y6Ehjyfol7UgIg\nflCzzs526nCZOm/pe63TqvgZkvI2wMw8SnD1mpFIP6w=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILFrxLy7cBaYNXYHSHMen8KCAh9Puar2jLLkCS+ZH/RRoAoGCCqGSM49\nAwEHoUQDQgAEHKsG9aFBTiAScZSDD2zfteTpvJhA5Q9LTixr3REvHs1z+ebCRFDA\n4D/F3J07KDCO084dDy7AjzCgRfUqPryvHA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -197,18 +204,19 @@ "id": "pathlen::intermediate-pathlen-too-long", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate (pathlen:1) -> intermediate (pathlen:0) -> intermediate (pathlen:0) -> EE\n```\n\nThis violates the second intermediate's `pathlen:0` constraint, which\nforbids any subsequent issuing certificates (which the third intermediate\nis).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUcuv92yTjwnSDb0wpDtJ3VjY9kcIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARxkGF0G/tDJa+UinysfNs63YeoVsdciuwtmWiK\nQFB0HIGsSdTye3aAM9ZHlTSwFM3Y6AtUPpzptxgiCan/72x0o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUuPxH139TY29hgHO7i8zWsTRcX58wCgYIKoZIzj0EAwIDSAAwRQIg\nGtEAwUKGZXtE2R2AHT9B1arQ3kEis1wfsBAU/OOKLlwCIQDtOH3lbU537cnWwxhW\nD8ZCL23nvyj2oWsgiY9wAF1zzw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUFgmmXyn2b+SW8ewRNzYXhd6y/rAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQPYqbVM6ZcVq9QiocMbtrWnDeaK37HAU9cKb8m\nCBdGFkhcIxzFJkKP1c01kyc5nx1xHmRWcl6+qryswbFvcu7no1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU3P6IC0n/68i3LYBH8hoIC04dVHEwCgYIKoZIzj0EAwIDSAAwRQIg\nR0FoeZfU4F+AIPBZbTAbtWr6oeS2NGameiEGBC6G8icCIQDoJPU+Mpd14e3uC9DE\n9AbKLKHGPi8AN/KdAgxEJsIuPQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUSnVnVaOStTK9MO15OCoG7FEwHLkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA2NTYwODc3MzY5NzQ3ODYyOTY0ODI1\nMTU4MTQyNzM0MDQ4NzkxNTAxMzY1MjkzNDYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBDYvjsu/eEncDYkIU6Yoh1i91yu+1hNUc7ZgHdezC7whz6lNL6guPKN42EpGVR6N\nGBFsom22JyhyiGdrkLwt11CjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLj8R9d/\nU2NvYYBzu4vM1rE0XF+fMB0GA1UdDgQWBBToN642mEkB5kx8QczeT9GwHOFs8TAK\nBggqhkjOPQQDAgNJADBGAiEApgsQyKELDQkJbgiGCt4svLdfZwcrO3Ye+/k0UlBx\npsoCIQCexrW+S3SsKkIOq4SxYP6gOHfAIoGt0MsSoQ6jbRf6gA==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUGpn83MndbVQa/VBVQ8VJjEJHqLAwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNjU2MDg3NzM2OTc0Nzg2Mjk2NDgyNTE1ODE0MjczNDA0ODc5\nMTUwMTM2NTI5MzQ2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDQyNTA4MzUwNTkzNjA3MDI4MTA3NjM3MTg5ODE1ODYyNTY3NjY5MDc2\nMzgxNjEyMTEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIlEH9YNcsCnfeN9VzQbX2qg+\niV2jfCxyXFPLDR/6mvxfDUz+1u2awtQyyNCR/6MY9t1Qqk47uVAVFCvaUb+hhaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAU6DeuNphJAeZMfEHM3k/RsBzhbPEwHQYD\nVR0OBBYEFMWA8LQkR2LB/RHWpCZcmGBmRAv8MAoGCCqGSM49BAMCA0gAMEUCIDR4\ne8vjgobZu9cTCRvSqYU6I6YgoFK/m41gaKWed1FSAiEA05acCB8eYPqnc0UOcrqa\n8b5kpe+cu8qH3vFCWypcluE=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTjCCAfOgAwIBAgIUF7Nrtbbz98kc25ACr5eEICXmtrQwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNDI1MDgzNTA1OTM2MDcwMjgxMDc2MzcxODk4MTU4NjI1Njc2\nNjkwNzYzODE2MTIxMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDE1MTg2NzgwMTQ4MzI5NTA4MTM2NDAwMzIwMTMyMzI5NDczMjY2OTk1\nNjg5Mjg0ODEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEJR2FY5VV7wMMahnnDyjliahK\nyVdRsi5J/lCTotxuTnFiqsYND3YXYfkrTP4y+BKZvkno/ms7Ax0dTWMmXCdF/KN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUxYDwtCRHYsH9EdakJlyYYGZEC/wwHQYD\nVR0OBBYEFNkjXnYeAjWKSoxRN91Z9YmhJuf0MAoGCCqGSM49BAMCA0kAMEYCIQDS\npmdser5iQxSdUbrgo7gbpryjIx7jP8xY74E/bUOObgIhAODGltrE/lDXpeIihGwN\nlHljXGViyMHAk63djQJc3Xlq\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUBONMTf4fVjU22aGNZtC3P7vYBIAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxMjU4MTI5OTY2ODY5Nzg2OTcxNDQw\nODM3NDk3MjkwNjcwNDAzNTAyNDIyNzQ5OTIxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBFJ+jPd+QIi43tbctMcYbUEhk3Xjn7DQlchl5Qii/snVlXMI3Zo4sBfhd7fn4byn\nWYA4d5+nk8a/uLq33ZAVDtKjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFNz+iAtJ\n/+vIty2AR/IaCAtOHVRxMB0GA1UdDgQWBBQanFb7yGYYlDIIsirmcuRiFcOCbTAK\nBggqhkjOPQQDAgNJADBGAiEAnSs8m/sKYiKlws5vB231E/KJcGvilfI8j2/ucC8m\nv8cCIQC6WrcfoLp8OqmkhlJ6puVHn0M8tM0qvu5Z49cncl3e7w==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTDCCAfKgAwIBAgIUHCnWjzz+KaPRSGxCSewy5JYdi6YwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTI1ODEyOTk2Njg2OTc4Njk3MTQ0MDgzNzQ5NzI5MDY3MDQw\nMzUwMjQyMjc0OTkyMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGYxODA2\nBgNVBAsMLzI3OTA0ODc5MzE2NjIxNDk2ODc2MzQ1MDQyNjcxNjIwMTQzMTEwNjcx\nNTY1OTUyMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1wYXRobGVu\nLTAwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARXrnLE/G+9cNAo1iZcVhWZRnMG\nhqrqw4A8FLEjk0UcR2nIvDfzmctEaeL9SVMLfbEK9z88+sI5J6HyVSZWNtfJo3sw\neTASBgNVHRMBAf8ECDAGAQH/AgEAMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtl\neGFtcGxlLmNvbTAfBgNVHSMEGDAWgBQanFb7yGYYlDIIsirmcuRiFcOCbTAdBgNV\nHQ4EFgQUzFc8Y/ErUx7eo7tRKOEMYa8lCuEwCgYIKoZIzj0EAwIDSAAwRQIhAL0A\nv9qTc2QcpHOxDrouB+/B+SCdXxDmpe2r7nzgBpXAAiAzahchkdCYLvdnBcM5KcYO\nTnw9/+fPQlJSUI0wfkukRQ==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTDCCAfKgAwIBAgIUHIeQP396CcEiI5XhMClsbazZkCUwCgYIKoZIzj0EAwIw\nZjE4MDYGA1UECwwvMjc5MDQ4NzkzMTY2MjE0OTY4NzYzNDUwNDI2NzE2MjAxNDMx\nMTA2NzE1NjU5NTIxKjAoBgNVBAMMIXg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tMDAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowZzE5MDcG\nA1UECwwwMTYwNzg0NzYyOTA2ODQ4NDk2MzIxMjMwNjA0ODkwMDk5MzQxOTY1NzY5\nMTQ5MzUwMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1wYXRobGVu\nLTAwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR9dwpZFAOzry5XCzpxYlI6mEDo\nJjYG6pCHooRTdomx55X2T9MpVoUiHQBDzYV7LoONCKKFgQFNArLbbFD0MA5Wo3sw\neTASBgNVHRMBAf8ECDAGAQH/AgEAMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtl\neGFtcGxlLmNvbTAfBgNVHSMEGDAWgBTMVzxj8StTHt6ju1Eo4QxhryUK4TAdBgNV\nHQ4EFgQUprvi9ee/bRUdEcuKQsmcNz9rgEAwCgYIKoZIzj0EAwIDSAAwRQIhANzV\nRf4gRMzFdMizb2IfCGpCbgtWdb4WNZEUsgUYvdhpAiBmzF7J5B6zgStu7pYSORt1\nQjmwrr+PcT86F7w3Qux+dA==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUeg0P9DXBXnpozdSU126OnXPoEe8wCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTUxODY3ODAxNDgzMjk1MDgxMzY0MDAzMjAxMzIzMjk0NzMy\nNjY5OTU2ODkyODQ4MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwEhz\nfsbbDzqEoa6363X0jVPG1AbBt3xj2AVwC1dK/4+s3dGEWKNXvxXr9hUTf82DlZVU\nhXa/XOEHOW4kiZEK76N8MHowHQYDVR0OBBYEFGo7gHhMGIK1UtYiZjVtGPONBiSl\nMB8GA1UdIwQYMBaAFNkjXnYeAjWKSoxRN91Z9YmhJuf0MAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiBhWXPVggavWtnLZb2zCuHM8pvNGFSXQzr16yoYjHoG4QIh\nAO/tkgal9Ah3fzXuVNh/aHc0zW5Jbu1rELnGLbfbdSOl\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIItrEJTsOhQlwJ0fr68RV/rjfOecOtyZLbIBhJRK4WNroAoGCCqGSM49\nAwEHoUQDQgAEwEhzfsbbDzqEoa6363X0jVPG1AbBt3xj2AVwC1dK/4+s3dGEWKNX\nvxXr9hUTf82DlZVUhXa/XOEHOW4kiZEK7w==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUKo6wqpElVLjdRrQiLGFnYwIqbWcwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTYwNzg0NzYyOTA2ODQ4NDk2MzIxMjMwNjA0ODkwMDk5MzQx\nOTY1NzY5MTQ5MzUwMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs5fq\nYxTHTOQXtF7KUDnXIavtPHPNjKPOn0c4vLQ0nRSg6+HUmPfqDeq+ts416J2LqBlx\nf2d3liA4X+3nMTYflqN8MHowHQYDVR0OBBYEFJQo71+5wYzr/QQWcuh0d4R0/SQj\nMB8GA1UdIwQYMBaAFKa74vXnv20VHRHLikLJnDc/a4BAMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiEAy0rlrD0o5ANKfSiKpCF0zdjQFW3CCrg0gLCQx3vSce4C\nIHDVEXw+8nb6O3tY/cGRV7F5ox5xrtZBOKujX4ermzCh\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIB5HqzrAlGk1zrrOOD7wgn8zLwcAhSl7n1dzgF4MWhyLoAoGCCqGSM49\nAwEHoUQDQgAEs5fqYxTHTOQXtF7KUDnXIavtPHPNjKPOn0c4vLQ0nRSg6+HUmPfq\nDeq+ts416J2LqBlxf2d3liA4X+3nMTYflg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -225,18 +233,19 @@ "id": "pathlen::self-issued-certs-pathlen", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> ICA' (pathlen:1) -> ICA' (pathlen:1) -> ICA'' (pathlen:0) -> EE\n```\n\nThe second ICA' intermediate is a self-issued certificate. Self-issued certificates\nare certificates with identical issuers and subjects. While this chain trivially\nseems to violate the assigned path length constraints, the RFC 5280 4.2.1.9\nstates that self issued certificates should not be counted.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUZ30PJ0IHJJy1YJA7xTji9IoN11AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT16aynfqaApyHX+w6W2Lvoy2iWaut9FIBPCyA5\n3E1JXqbWu2Ks1Hgl+rNUmqZymO6pTlJhq2sO2sDzTVYzAdApo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUo8xJEKSbfyVJiH2sCqosjtgAUdswCgYIKoZIzj0EAwIDRwAwRAIg\naGGf/3WR1BMG9X8sBCw2M04wgMncEJfrJ0UYqe2jHTECIEdVSrBVGfknPiZ19Y+0\niBjOrO7y0eRnqF9BxEYgiwuJ\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUEjUIu35K8RW5ObscgoLwMOCtPYwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASmQ8XVvvvly8y29c/BGhqRfVbdLgfCAsSzkDb5\nts7UuVstKV8QLoOzTs7VlieQcYDvLqOvRALaj2YWWlMYrEyno1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUpUvwrL2LAF5l9DlxNEAooP6HQTAwCgYIKoZIzj0EAwIDSAAwRQIg\nH/ZGRpCqHQCgoT84jLUoESv1+CHXkQf13fT0P4uzXvICIQCJV/hg835Xf7ypcj1o\nuYknafXP4zwTMT9wucGDIU9Ddw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUa4wSW4TedwOgNnhGA6T6HrNvVzkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA1OTA4MTQ5NjI1ODc3MzkyMjE1OTEy\nOTIzNTg0OTc0ODc0Mjg5MzUzNTYzNzI4MTYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBI2rb9oJwoXqUCPm/XGXbJiEgVDq5TvSYFWjA58/C14vqKdokW6jR8xJPJfn3diB\n1WNX7riGVN+Nnj0uXSvxCdyjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFKPMSRCk\nm38lSYh9rAqqLI7YAFHbMB0GA1UdDgQWBBRsFL0HLOSsC13VhyxeIa6FWBvohzAK\nBggqhkjOPQQDAgNJADBGAiEAhjETvrh00u+Xce/7n8DuiUfogHDSHiMlGKNLemvW\nakACIQCFT+EyR2/g7kKziNdQU0S7Mec8smm4nIBJiqsSDyh01A==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTjCCAfOgAwIBAgIUIG/jn7PYjBGlc/nmHiduPTN2x/swCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTkwODE0OTYyNTg3NzM5MjIxNTkxMjkyMzU4NDk3NDg3NDI4\nOTM1MzU2MzcyODE2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDU5MDgxNDk2MjU4NzczOTIyMTU5MTI5MjM1ODQ5NzQ4NzQyODkzNTM1\nNjM3MjgxNjEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0xMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnz+lvKMb9im4yhioNG28xWUh\nPGmQG5+InqdI7r5dupXb49pPW1WM+X4v6+6NSWhEEfQlO7ndEqx4TcMcQwPFVqN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBATALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUbBS9ByzkrAtd1YcsXiGuhVgb6IcwHQYD\nVR0OBBYEFJVpv9idlk5pU0O1ZD3UJSVdsMr/MAoGCCqGSM49BAMCA0kAMEYCIQCE\nGJ9DJyOQpRkdayeXMS/AYcLUzubvfNXaIs7aDUpgYgIhAL59hRg2ZQhQgztgkM1F\nlrb9Es0ipCXU2QX0S7ishgGO\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUZeqAi78rfmiUuYIEeLamwLw8HiYwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTkwODE0OTYyNTg3NzM5MjIxNTkxMjkyMzU4NDk3NDg3NDI4\nOTM1MzU2MzcyODE2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDE4NTE4MjkxNjIxNjI1ODgwMjI1MTc0NzUxNDMxNzQwMTk2MTU5NjIy\nNTc2NzQxOTEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE69FzuwKH9xiLPzG7jKxsbdsi\nrmYzkmZF1gYRlO/S+ObTEJ4ybjvLs6j+zxgj7daR++zak1QVYIMzojm21R5dbaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUlWm/2J2WTmlTQ7VkPdQlJV2wyv8wHQYD\nVR0OBBYEFNXOT31li/3h/vWWsDeulOGbWoH0MAoGCCqGSM49BAMCA0gAMEUCIQDa\n3WMu9YAvhyS4JjoeFh5DA6XdMMdNl4v4x10YN9qCGgIgMwN1JaUAtB8PfW1xSPPk\nczKgCPbKdBh48X56b5wJm2c=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUc7ngoLMW4O1ztbo1KitZvPqJhmAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxMDM5NDQ1MzQwNjkzMTMxNDk5Nzg0\nMjUyMTI3OTA2ODgxNzUzODYxODI2MzA3OTYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBFqpRXl+1P0eZfNS+Lm8hGw1JsPN1cVfMzWgXJ0WiQJNrQe2z2DUJKHK3wrjfu5l\n9zOXxQoK01nDZmp6zmhT+dCjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQEwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFKVL8Ky9\niwBeZfQ5cTRAKKD+h0EwMB0GA1UdDgQWBBSXA3QL//ec2vBvNvKJo6mCkB1+YTAK\nBggqhkjOPQQDAgNHADBEAiANLopyQDSngkBbDSX947zcx9aJnVmsu+6pDRKta45W\nQgIgW7Nyc3E+h2WkW3QJYSW7lDtMefspH56uvlRAu7eY/ys=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTTCCAfOgAwIBAgIUWC+3UwXOFdZOb0flyhP6Qjd0WOIwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTAzOTQ0NTM0MDY5MzEzMTQ5OTc4NDI1MjEyNzkwNjg4MTc1\nMzg2MTgyNjMwNzk2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDEwMzk0NDUzNDA2OTMxMzE0OTk3ODQyNTIxMjc5MDY4ODE3NTM4NjE4\nMjYzMDc5NjEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0xMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEk7D3yfHqlpYvH9LfnZ6Gzdr+\n3XeGU1ZQVS54+34sERsE4W5NJtESbSqpl1QFpVNimAd4NbmkmpNtF5gS3MWQGKN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBATALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUlwN0C//3nNrwbzbyiaOpgpAdfmEwHQYD\nVR0OBBYEFFbDvoA/eufrM91MiZKmPv6NO1JOMAoGCCqGSM49BAMCA0gAMEUCIAbD\nf3Lx3kmJDXCf8GXkEI7nwQ5uDyrmvzjNr/67ZxflAiEArlVbWXuSCs0b3S53O5/Z\nMRpn6r8iWVFF4dq+HrV0qU4=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTjCCAfOgAwIBAgIURg/LTqnTqeeFPuVJuP9uzg3B1gswCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTAzOTQ0NTM0MDY5MzEzMTQ5OTc4NDI1MjEyNzkwNjg4MTc1\nMzg2MTgyNjMwNzk2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTEwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGcxOTA3\nBgNVBAsMMDUwMzQ1NTI5MjY1NjMwNjk4MDAyNDY4MzIwOTI5MTMwOTY3OTc3MzA5\nMDA3Njg5ODEqMCgGA1UEAwwheDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0aGxl\nbi0wMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEyGMt21XDTg2JiyCPIzJyZUD+\nDZglQYG68al8pmLW5cy9BV+YeiLEh+cjg+Q2JEvcTcga7q9o7CM41CXUmvpRgaN7\nMHkwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUVsO+gD965+sz3UyJkqY+/o07Uk4wHQYD\nVR0OBBYEFD1wd4w/Ow4J14jTaR8SLAOkiAKNMAoGCCqGSM49BAMCA0kAMEYCIQCx\nzFmtV016mn8lLsyn25umRZODi0b/e9aAP8V1P29PWQIhAOJV8qU6Ix8csar5z8ax\nKcNfDz+E2L4zo+yUc/aMVacC\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUWHnUMynQYLbA85uT5Ni6ELe+RpowCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTg1MTgyOTE2MjE2MjU4ODAyMjUxNzQ3NTE0MzE3NDAxOTYx\nNTk2MjI1NzY3NDE5MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAER717\nMeClM4hOFPP33HJJDuKz+3anrwVvYqm+fJZV6JbVqlEhnTr37zHzz7fDpduFrryd\nYeM5LLgKP9z4D3l1JKN8MHowHQYDVR0OBBYEFEuZLbzx5m2fzPpazfo5PRpcKPCi\nMB8GA1UdIwQYMBaAFNXOT31li/3h/vWWsDeulOGbWoH0MAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEA5cdF7ZRhSWRAyG7HioyrD5QUAvmEquE5uHFSdcKOW+UC\nIQD1AjRZNhoueFhmzWSxAFxdfgDWROY3FH8DMCYBXxnx/w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIL55cFeX3X79adVUFV4CdXDQSUwr7h15KAKUkE+BRKlFoAoGCCqGSM49\nAwEHoUQDQgAER717MeClM4hOFPP33HJJDuKz+3anrwVvYqm+fJZV6JbVqlEhnTr3\n7zHzz7fDpduFrrydYeM5LLgKP9z4D3l1JA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUcK5SFcccpoGLHqdlgWDts3Sn8SIwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTAzNDU1MjkyNjU2MzA2OTgwMDI0NjgzMjA5MjkxMzA5Njc5\nNzczMDkwMDc2ODk4MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIcq1\njVznHTLXzH1VJpW5icDOxjx6dKor2GYUYTgUkJqw42/6yB/fIkBUB5hi0muFT6Z6\nlfu9p7sph+FrYbhlXKN8MHowHQYDVR0OBBYEFPnSorgZI5gDmEHsjavUaI5ST+jx\nMB8GA1UdIwQYMBaAFD1wd4w/Ow4J14jTaR8SLAOkiAKNMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiEA+ydLITz5nWfwji/GHKHWiwuwBuxDHpLudzhzPLowfi8C\nIARotL+7kaPDsCxWJpgJBnU5462OJtNTNljYjTaCtYXs\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIER6/RhO3wnTmAh5yRxq2RziUTPhCLufKGyVW8q3zbqXoAoGCCqGSM49\nAwEHoUQDQgAEIcq1jVznHTLXzH1VJpW5icDOxjx6dKor2GYUYTgUkJqw42/6yB/f\nIkBUB5hi0muFT6Z6lfu9p7sph+FrYbhlXA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -255,14 +264,15 @@ "features": [ "max-chain-depth" ], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nWhen validating with a maximum chain depth of 0, there may not be any\nintermediates.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUD3PwvjgPfBYs9Pg6i/ZAB6ok4cAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATAbePx0psiUwLt2e7Lv0pXAXKUXX60b9RjS4Yu\ngO8dD57urpLn2Gcb1IqsniYvc18hgL9WZjkFz2XyXsrfvFx3o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUkbzaorcNT2vdpMzbE66WlS/r9wcwCgYIKoZIzj0EAwIDRwAwRAIg\nb2r/uKPjb8X2N1siujwmECWDH5DHhj85AYjrQVjw9QQCIGfHVbaG98S9axzc74H2\niyFxGEHw22W1dPqDp1eDF9PQ\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUVPBPHQ6t0FonE54veY72up862UkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATstxQ6CfmxXTpnnf6yNspv30okYwlmglYoBE0o\n79vBbDuzMHn1kD8B123PFMlu4UUilBp+tnkp3lQOv6/Jpas+o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUJ51bpzWHF5eRddyz66KxpfwRUJUwCgYIKoZIzj0EAwIDRwAwRAIg\nHWFrlqrnuIsYObzZL+7FuWn31pROjFfQvewoBAhKyHICIBpVSc3ybl8FlyNPrB5V\nXrXp5fFIhaF4qU/px/008gev\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUC7ma9arx55qhbCx36uW7Fe9Tc4gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNAjQmdkAnLsciYztNXeTla+iA1GPmlygHbwiUdeKMts\nviHoayYBHZfDQE2V59qy0aEY/jYjMGofiY3DYXundzGjfDB6MB0GA1UdDgQWBBQm\nCsJrDJEsTrJs/loiVTkrk6o5cTAfBgNVHSMEGDAWgBSRvNqitw1Pa92kzNsTrpaV\nL+v3BzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgfJUdzXQn366QFcVZC0B0\nQqWrZPzsnH5m98Xl65JSNv4CIBSFzJStGmedslHgh1JiuYDHhWkaMuCrRtODUPPH\nkjhv\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKz/hS5+NOUbEi1+D3vi9Xv6DMvpPEj270xY4hKiiqH6oAoGCCqGSM49\nAwEHoUQDQgAE0CNCZ2QCcuxyJjO01d5OVr6IDUY+aXKAdvCJR14oy2y+IehrJgEd\nl8NATZXn2rLRoRj+NiMwah+JjcNhe6d3MQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUSmNTt/BqZttsHG52f9kYkt9Lcx8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABD5J1hqPEw12ME4ldqzL2+i4pPucqA2CNr10l4b62Wrm\nsii1LSy1I4VCfReenFe3STpzx1stGq7BCa9ZYX1a/lOjfDB6MB0GA1UdDgQWBBTo\nZGVzZq/n76y4YX2v6wUPA+QF9jAfBgNVHSMEGDAWgBQnnVunNYcXl5F13LProrGl\n/BFQlTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhALBvYDsifNixlVL7o/Uq\nxaiBf+AhISVD2O+ORRVReBRsAiEA6/DRn4kz7gwu4SWvoljkOfU5109JOeE9erCd\ncjFQMYs=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIH9MvxTiIraAVipTtxtjf5gRsSqiX8ZJRfarcTXfbbbloAoGCCqGSM49\nAwEHoUQDQgAEPknWGo8TDXYwTiV2rMvb6Lik+5yoDYI2vXSXhvrZauayKLUtLLUj\nhUJ9F56cV7dJOnPHWy0arsEJr1lhfVr+Uw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -281,16 +291,17 @@ "features": [ "max-chain-depth" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA' -> leaf\n```\n\nWhen validating with a maximum chain depth of 0, there may not be any\nintermediates.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUXAnpl8KTh2331yA+vnifRmXGNmMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASjOW7v2sbPAMpV+je7Hil7FENJjdh3ILTSu7yw\nJ9ZvnZlDcfG9eG9NYleSC8M3y6v2lYUWccZIQkww66kVGSaRo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUsIHFyC/rqDkMvl7k6vl9BVDCUXowCgYIKoZIzj0EAwIDSQAwRgIh\nAIqMZqq9oar9zxCtvt1kLRhjEqjzdzr70cfsIrtPxdSvAiEA7Hja4LH2S8+AsHHx\nkQzDHJ9TXf9x45q0o91Hdn6wGXU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUAam4eFYx3ThsYB2TJU/Zfxu+XiEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQJUSW+TqVwSLTdqnDRIrtf7xIJOPKGz2YV2Aqv\nTSjcD7xFxro719fVpS7AVK4hNmjXNBZG+KbwNfQbziGTXFyzo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUVZWQl7q2Y0UadrKiFjbu5fHEtN4wCgYIKoZIzj0EAwIDRwAwRAIg\nTx9y6uiVBMPwkWv1I6QJwZOwI7fwHFhiAfRN1ApyNm8CIFly1KYzM+clUnhdOk9O\nejg6LXAQ8hLjJsJPlrGhOes2\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUEU3Y8G8Mre5411USz32TGNTOblEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1MjU0NDgyMDY0MjY0NzU3NjI2OTUy\nNDcwNzkzNDUzMTAyOTc2MTUwMTUyMjkwMjcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABMvfR3GNJOw8uIapKzQZLuZtBz34Xs5kalaWm6cPpkfDWIRo5h7Qeo/isp22\nCJf7nv89yiwXOSF5vt/b8Ii3yMKjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLCBxcgv\n66g5DL5e5Or5fQVQwlF6MB0GA1UdDgQWBBTaWdf/lf3eqfmT5OAbd/nfOI5/VDAK\nBggqhkjOPQQDAgNJADBGAiEAjcsRWD0KSQeHBqGScw39PR/DzwfF1NsxeoBw0UHi\nmdgCIQDioGKdt0J9HWYf4XqRe+CC7gyJVy2X/5RpcPcjBO8/kQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaSgAwIBAgIUWPsDtX61GtLiqYOqhSvcjZH8VUowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBoMTcwNQYDVQQLDC45NDkzODg2MzE4NDQzNTA2Mjk5NTYy\nMzMxNzEyMjA1MTcxMDY3ODcyNzYzNDI1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAATl0DAH0o66H209JsG6x1RywUmgw/XNSnhrcgZyRdsthImYvsq6PzpXaKHwiaej\n2DnbF8vzIC50tBzQqezQLYnCo3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBRVlZCXurZj\nRRp2sqIWNu7l8cS03jAdBgNVHQ4EFgQU9mX3dXnUGfCpIDS2WMzu4crV3rkwCgYI\nKoZIzj0EAwIDRwAwRAIgQ7cypCz3+oZJAWx4jx4Hwo/3/GTS/KsF1TxVooLw8XAC\nIH8iXfROYSOzolDoN81eb1fFiGmOOJvXYP718E3ryO1s\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUG8s+FnQfHv2gSj4Kk3YvBRy/QEwwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTI1NDQ4MjA2NDI2NDc1NzYyNjk1MjQ3MDc5MzQ1MzEwMjk3\nNjE1MDE1MjI5MDI3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nT+LeYretjGXwYvLt8k0FmcN3/38NOThPesnsKu8KF5lwQy/pHDdHgUHL0kPQvqho\n4gC3/MugnvsPmn+0ssVkAqN8MHowHQYDVR0OBBYEFAzZhQHafs+yO6T70TdgoGJh\n1NyXMB8GA1UdIwQYMBaAFNpZ1/+V/d6p+ZPk4Bt3+d84jn9UMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEA9Eiz8ATvmuODP7jq5W5v95gCyxL8XWX+diZFDZae\nbesCIGsUda6UV9ShzvJI2Leoz16H/UJR1+rR43zIbrMYtiJN\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPlPU300usWCeXtvU/+/G5mJIBsQ9BYDtZeMfYoK3C5aoAoGCCqGSM49\nAwEHoUQDQgAET+LeYretjGXwYvLt8k0FmcN3/38NOThPesnsKu8KF5lwQy/pHDdH\ngUHL0kPQvqho4gC3/MugnvsPmn+0ssVkAg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaSgAwIBAgIUCxjIWthwZSS0gw4G9Ys4UeGhg58wCgYIKoZIzj0EAwIw\naDE3MDUGA1UECwwuOTQ5Mzg4NjMxODQ0MzUwNjI5OTU2MjMzMTcxMjIwNTE3MTA2\nNzg3Mjc2MzQyNTEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAwMDAxWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNxg\nHN646HbEGRFZZxEdzstlUVMRXtpGG7Nq/AH82tXHeHSHG3VE/nG/V83+WF1ZK71C\nb2SBTJ9FvJWPTxuKMROjfDB6MB0GA1UdDgQWBBQyselFyE+Bgu9WT9uK3jVL8E4c\nIDAfBgNVHSMEGDAWgBT2Zfd1edQZ8KkgNLZYzO7hytXeuTALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSQAwRgIhAMRVvay+TyP8tghU5qooFZaIONSdHXKulbvgcOQ6M/Xq\nAiEAnJ8bJx710QJFnGMSbfcJldZR/UTiCJzZQk8a1Nlhptg=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKNHQ9YN/ejhtq7o6piPDxF+cvMGi128k8L15lxBfuy3oAoGCCqGSM49\nAwEHoUQDQgAE3GAc3rjodsQZEVlnER3Oy2VRUxFe2kYbs2r8Afza1cd4dIcbdUT+\ncb9Xzf5YXVkrvUJvZIFMn0W8lY9PG4oxEw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -309,16 +320,17 @@ "features": [ "max-chain-depth" ], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> ICA' -> leaf\n```\n\nWhen validating with a maximum chain depth of 1, there may only be one\nlogical intermediate.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUTafZ5BOVnWBASGS95PmEvN5MEz8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS8Ea3YImFUCE4PCl/NtoMHv537e2/8uRgqN/oj\nME1AfAnyoKedHghwUKPWL/fAWx8Cg1KThbmXs9/cItSFk7WXo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU71tYzhE7Q9vcPxCOh5LZqT4E8QIwCgYIKoZIzj0EAwIDSQAwRgIh\nAKcIik3yc87uwTvxWkCPrmdLT7TTWLeGIa28FW+/ocSBAiEAxCqloSY/JnsdRrrR\n38s90/FlpA9TcwbQzg0h4vvoGfY=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUbIO62wWAWQvPeFsCE+isSsN9QdUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARq+sxgXWzC9SSXu4kbiapFaGR16wroRx97ib9I\nFIyUzDDvJGe36tWFy5MOSKWskedFIC1oj4d9237cpUDR9QB4o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUYFp8ROabsflzhWaxJG/KOPu0z0IwCgYIKoZIzj0EAwIDSAAwRQIh\nAM6HXSxWjXJl+hPPBmwyYO85W1lCnshUIASl5H68mzDlAiAjQuy1l/KcoKiKtsD+\nzEeKI0mgUc/du6nPlk1W8CAYBQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUEpaTFGXIy0cwSUUd0ncDOMDlmycwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NDMzMzU0OTQ3NzgwNDkyODM0OTQw\nMjE1NTUxODgxOTYyODg0NTY0Mjk0MDkwODcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABKZz8BVKmSBzm0bpEVcltZcMQU6DMTmrHY3Na9C8MYppUk/MaQYLhW+W8eMV\nOq5JxrHSzldz0Tauyl+b/FGim/yjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFO9bWM4R\nO0Pb3D8QjoeS2ak+BPECMB0GA1UdDgQWBBSxSQm5r/miX3olhT4tx84qfSqirjAK\nBggqhkjOPQQDAgNIADBFAiBL5HF5I/34qHeEkfvHxue9axSgSy20f0ddfCXRMQRk\nGQIhAMW+pDQ/fwjCPQCtcmTjaqmAawx1q605uOODcDwKW0VC\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUAsHXRueKHbZvaJsmVCr8/gQGOI0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2MTk1MDg2NzgyODQzMTY0MDMzODcx\nMTA5MzYyODE4NDE5MTY1MDM0Njc1NzM3MTcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABEeWLVaJJ/qtI7xVkEGAy7egL8Hps/BcXWiscUdayW5eVRHEdSrqPpcB2atR\nlEmGK9EuxAKGtLd+tN1d6RBOW6WjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFGBafETm\nm7H5c4VmsSRvyjj7tM9CMB0GA1UdDgQWBBRUhQH+P6tibHDTosmyW4m8eyeQGTAK\nBggqhkjOPQQDAgNIADBFAiEAscvjwxgt3klMaNCzr8jenTc+Fk2EqNYpAfjDZITh\n9UACIE5GXBtZBlHMJrqtrW2pAN5ugmFEi82vv9NODHGPYo+7\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUMKD8UFqfVqj1ENNX4g6yb8SpqB4wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDQzMzM1NDk0Nzc4MDQ5MjgzNDk0MDIxNTU1MTg4MTk2Mjg4\nNDU2NDI5NDA5MDg3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nWDt8ROVUAqZXtR0vlYstVtSPHfl+QvMjhPQiIiwMZRTlH24Hm5zuNPbYMB3kmXG9\n2Z+xFzGlmdMyYQpLmI4f9qN8MHowHQYDVR0OBBYEFGmpHHyv3I6/QFIELajz35o8\nKL8TMB8GA1UdIwQYMBaAFLFJCbmv+aJfeiWFPi3Hzip9KqKuMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiB4UYDJ1SG+g5VVBn3T3kzjTFfaC5d2mUCOUGb3qBVX\nwwIhALtQcumIiD14n3DVqcd2KKUvoliMrpDZiyTWbp1wqi/7\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPhm3dm3/p1xm2pojoX/bsg4kmKeXfMhKD2FF1UxFcMEoAoGCCqGSM49\nAwEHoUQDQgAEWDt8ROVUAqZXtR0vlYstVtSPHfl+QvMjhPQiIiwMZRTlH24Hm5zu\nNPbYMB3kmXG92Z+xFzGlmdMyYQpLmI4f9g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUNBKhZT836QX/O3EKFkXI3Lj7IcMwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjE5NTA4Njc4Mjg0MzE2NDAzMzg3MTEwOTM2MjgxODQxOTE2\nNTAzNDY3NTczNzE3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nJplwSi02C1DLjetMmuHXdnmi8mn4xXh+/pnJ1yCyRVn4PYiL0wSyyymJCtTk4bt3\nyQZetcU1RKBfntfXIzEz+6N8MHowHQYDVR0OBBYEFBpa9UhfT5/puvlERLpBNz4e\nfImyMB8GA1UdIwQYMBaAFFSFAf4/q2JscNOiybJbibx7J5AZMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEAvnOjV7DjJTAkUTATF1+6GXfMkoWJm6MeNbJxcJcQ\nyTQCIBK8mHakJfAqSY2OKpy1ZBAriC3R9Chkwml3xPUisBMW\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGf2FAAdTqmGNJFnPfzB0j61Cv8y/q36x9brSVGVREn7oAoGCCqGSM49\nAwEHoUQDQgAEJplwSi02C1DLjetMmuHXdnmi8mn4xXh+/pnJ1yCyRVn4PYiL0wSy\nyymJCtTk4bt3yQZetcU1RKBfntfXIzEz+w==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -337,17 +349,18 @@ "features": [ "max-chain-depth" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA' -> ICA'' -> leaf\n```\n\nWhen validating with a maximum chain depth of 1, there may only be one\nlogical intermediate.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUVQdEb49ZjMx5TMYFOeewFmmneC4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATDKmJD0mDxpuQtXB2KdiiiU2v4sAr8/Q3mkJ+3\n0D/qlcPuX3/Inov+K2VSksfcFlB9KqjJqeNmABNpbrA/9CaHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUOH4DuwTZMEu1wSRDS+Ty3GbsCAUwCgYIKoZIzj0EAwIDSAAwRQIh\nAI4u64fNfwl2PuvmSfDf+zNPf4BF2DkTDocJ/7s30ZucAiBlXM6qOttAXUZfwpG3\nx++uiSW9f/2pqRj0bw4llOd+sA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUOhSWT+eyIw5Z8AMOrSY7/pIa0T4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR9MPv1MtWd08TnZM3Wt3/qdvwq/P/1Z5ThR7qc\nYjWBj3ws2X6qWOprbjPghjSUe3ngmlNHWXwFDTH0tuPheJI9o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUIGRSoRcOi7DQb/cEE5TMTUh1Jg0wCgYIKoZIzj0EAwIDSAAwRQIg\nY4fZOE7A5OzGQYnQt8zH1VieKyDSiYVRhaIvogTIwRACIQClnjyuotPXi0cjLlFG\neRIcfWeoktULNlfQenEz3jP83A==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUa6Mlff5HvSp65UW1wyOyiP0U3+4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0ODU0MjYyODIzMzM3NDY3MzUzOTc4\nMzIxMjc4MDQwOTU2MTg0MjA4NzQ2Mzk0MDYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABEniG3jiLdHw/3dRJquaJWBSydJLtOg+6pvYHP4LyOG85YOy3DsOEOiKgEoC\nO1FeDoiG2DEi1hehzOGdGMpZcBqjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFDh+A7sE\n2TBLtcEkQ0vk8txm7AgFMB0GA1UdDgQWBBSkpaTkKN975jhHePc0fCIjWJBZizAK\nBggqhkjOPQQDAgNHADBEAiBebJiupVMKB5xU6GIyednP/6/01K+HKq1h/Z5ozVPg\nFAIgJCBOoWk/gyTAfk0VHmpsRr3gYZkh2QX6tCUNa4P68t8=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICUDCCAfagAwIBAgIUEaLMhYLLlcmDxCYjNXS5+F8pkOEwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDg1NDI2MjgyMzMzNzQ2NzM1Mzk3ODMyMTI3ODA0MDk1NjE4\nNDIwODc0NjM5NDA2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDYxNDUwMDI5OTk3MzM4MzA2MTY1ODgwNzQzOTY2MDA0MzIxMDA2\nMjEyODUzNzU4MjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEGxP5OeVSoswd+56+\neyeLXuwlzODI4EIUQs83iuI0wM7YzDzOof/TIl2HlTRLjYb7fDwFj3UR92AJttCr\nM+1Kk6N4MHYwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUpKWk5Cjfe+Y4R3j3NHwiI1iQWYsw\nHQYDVR0OBBYEFFAhy+OxazY7CylatUP8vvPc7rcmMAoGCCqGSM49BAMCA0gAMEUC\nIQCjaqDZlQg/jMBPNKor2/tVkBTGkAhJroRCS6khcsZSQQIgd/ndkFlFzDObCMg4\nRWQMD57inCFjTW+Ilu380ttkSwY=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIULS2XLa6M0nuI7p4DNgQZHK38UmowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzMzE1ODA1NzM2NDQ5MjY2NjI1NDc5\nODgxNTc5NDQ3MTY0NDMxNTYyMzYzOTA3MTgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABO/igN/sCDYcBx65BOA+gJIutGGkHLv5/dVSseFVVLyvV0JGUZ+4HAVHY9dz\nXNI0g54nttiPJaavliUQjwC2NGWjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFCBkUqEX\nDouw0G/3BBOUzE1IdSYNMB0GA1UdDgQWBBRF3XjgZBzWzBAGt7yVKNDuPcgPhjAK\nBggqhkjOPQQDAgNHADBEAiBX2im2ZC3/BZa8QCgcQEVxvTtbVSAiPXn6JfMQpWZd\nkAIgXq2VDimVucH+R6m2u/RgvaTFJ8gLUFGnhfUG00hg150=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICUDCCAfagAwIBAgIUNQ3Kqc0t0eri6lLCkhSNFgkDxO4wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzMxNTgwNTczNjQ0OTI2NjYyNTQ3OTg4MTU3OTQ0NzE2NDQz\nMTU2MjM2MzkwNzE4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDI1NzkyMTI4NzcyMDkwNTcyNTc5MTU2NDUwMzYxNjMyNzc2ODg4\nNTkwODIzMDc2MjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfASxbBNdS6cq0U2b\njTtiHLV9DOjr5hKjr4fCXSUIBKWFb+XM6s3yvqlGCuEGbXDFQOP8zs/2qXv3GD3i\nPT7oSKN4MHYwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAURd144GQc1swQBre8lSjQ7j3ID4Yw\nHQYDVR0OBBYEFM8oGnb4ICgt5jCCoyS+5DSzEQLMMAoGCCqGSM49BAMCA0gAMEUC\nIQDqyd9Evee+eHhn5DUd1sNb0TC1YVnZ7WQnIeQdeBEY6wIgPwYOAvSnIbO98ogT\nTKukT4pLBuZ7+PwvSVkftIFo7aA=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUYD7z3X4+GCSLATCdKMjdJL7OCnMwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjE0NTAwMjk5OTczMzgzMDYxNjU4ODA3NDM5NjYwMDQzMjEw\nMDYyMTI4NTM3NTgyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nnOhd93syY8K8pudHQReFvYkJABPsCTNBP54e3zeMQyfZcVvx5apGhWIlZiXxosO8\nK6vI3TIE5jKbcfLdzvtS6KN8MHowHQYDVR0OBBYEFF1KVyzliTMAascBkTn2RlJd\nciQCMB8GA1UdIwQYMBaAFFAhy+OxazY7CylatUP8vvPc7rcmMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEA4ndEYmnsLt2Wjv9UNHM6fd25R1uKeh+JCncPqcHJ\nLzQCIC41OE+rN2EDbVOlAT2AnuQTjcjAtQEiznLHwHAJ5g9m\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEau0ZKjOlTulT36CfNn+KGctyZDaSJsGgnhEaYaIp8eoAoGCCqGSM49\nAwEHoUQDQgAEnOhd93syY8K8pudHQReFvYkJABPsCTNBP54e3zeMQyfZcVvx5apG\nhWIlZiXxosO8K6vI3TIE5jKbcfLdzvtS6A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUfZ2IxrLOMm7wZxoS+PI+BuaT1fEwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjU3OTIxMjg3NzIwOTA1NzI1NzkxNTY0NTAzNjE2MzI3NzY4\nODg1OTA4MjMwNzYyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n7Mk58L+enfuluaUhn/gObpY4olUXNhk3ORNA/k8aNT9NL+kZYbinSoyb2eGIcxw1\nsuXcyp+CtMtEKWeekGKy9aN8MHowHQYDVR0OBBYEFDHi73B5XxaQpNmFUhpDKu0N\n3jYpMB8GA1UdIwQYMBaAFM8oGnb4ICgt5jCCoyS+5DSzEQLMMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiBlKiSFcF3XxWZb5r/X6K0jRfYsUgXKabcF+P/J/zoR\n8QIgCfqp8gbksED/F6Fbu1lr806Nxhsh2AXlRPHdbC/yv3U=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMrteWcsdoCoB6NKSEloheyfZ2yQLH4IWF1BTj7tfZU5oAoGCCqGSM49\nAwEHoUQDQgAE7Mk58L+enfuluaUhn/gObpY4olUXNhk3ORNA/k8aNT9NL+kZYbin\nSoyb2eGIcxw1suXcyp+CtMtEKWeekGKy9Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -366,17 +379,18 @@ "features": [ "max-chain-depth" ], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> ICA' -> ICA' -> leaf\n```\n\nWhen validating with a maximum chain depth of 1, there may only be one\nlogical intermediate.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUfGUb+ieubWRZPmiJZfCbcsmBVSQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATq6APhFUtXv5DB5WUamFJZEKLEo6K2MaS/+ARJ\nwTpMQb0i3Eu2dEz3AiCf1FS38+VuYwv37MUZ8PVZIxlTgsJio1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUHGd4QBh0GS9ZXQoJUVjGoYIFFVYwCgYIKoZIzj0EAwIDSQAwRgIh\nAI5YUtLYH/9u7o+lh6ppTSa19Fa9P5YaK2UND2qjtnadAiEAs2fcJIOz5cftJrNq\nRHjSY2+yLugoutFgBB4Cw+k/2BI=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUX3SlaZwkD47qaZK2mU49+Gpun6cwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQXXJoOtxOFJbvbVEN1AfesI2RNq/QjRWxyxLnP\nhG2C6SQSZwsP8EJ3xigjcQ23jX0UhrdORFrM+fspRR2htl2Ko1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUhXnEHldxX+BZ2aQNnAGlU9AFupswCgYIKoZIzj0EAwIDSAAwRQIg\ncIVPowucp/wP5XMII7w4/izQ7kevYcaqhANjjpJNe88CIQCAJ/vRu3Ym0czcY8aq\nXXf2+9zmmluhiaxzMPgXI9w10w==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUHVhWfxz9rFj/XsZZaRD312J1JQcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA3MTAxNjk2NjgwMDIyNjUxNTE5MjU1\nNTk3MTQ1MjYxMjc3NjYzNzUwNzgzODQ5MzIxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABKWFNPZs0T8mLS1HTW/+zJQvkrgIx5bQSijEDuOz1i9UPeDW5o4qYwGwYyvt\nDI4fz+6e9JK451TKm4qWFGHvIICjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFBxneEAY\ndBkvWV0KCVFYxqGCBRVWMB0GA1UdDgQWBBRsYgxkghtR50+y0jqV/g9C+fXDSDAK\nBggqhkjOPQQDAgNIADBFAiBBDEaDgpmB5rksbcV0cpGKAPALC+gu3BoK608Jy4ev\nWwIhAMQ0txS3Ag+RaLzv4e9Qat/aXi+m+lhjDjv/4pqD5fp4\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICUDCCAfagAwIBAgIUKznw++Q/V0jGtKXhx/9kw3Ve+/cwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNzEwMTY5NjY4MDAyMjY1MTUxOTI1NTU5NzE0NTI2MTI3NzY2\nMzc1MDc4Mzg0OTMyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDcxMDE2OTY2ODAwMjI2NTE1MTkyNTU1OTcxNDUyNjEyNzc2NjM3\nNTA3ODM4NDkzMjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE9LoeZ2cwAFouIXFZ\nzG3P7erLzF5l84/Zoj6YH3FT0CF6Z7AjdhVqvQ46qN0gk50OkwzCFTyEGN2VcbQz\nWsDfYqN4MHYwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUbGIMZIIbUedPstI6lf4PQvn1w0gw\nHQYDVR0OBBYEFFxwrtpjBzpjKF5RtmAvALPCvROxMAoGCCqGSM49BAMCA0gAMEUC\nIQCljlTS5tohnPKk1MHewHK8zQGyMb7kSq398pZdXNCAogIgOdD0U6A0+459cnzd\nTiqbd5lFOwLM5VeBgQaWqfgmU2Y=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIURN4bK0GsUKYKEriglkpxwnlQFzowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1NDQ5NTU0MTkxMzU2NjgzNzk4MTQy\nNDY1NTI0MTk1MTUzOTQzNTAwNjMxOTgxMTkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABIMbpwhJ28Lg4tc8p1feqyKesTyvJkjJyYJkFPbsn9DmQftn5E2kpJz9pOQ7\nm7o8fQhv7rvLoYEJdiU8VE/6c+mjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFIV5xB5X\ncV/gWdmkDZwBpVPQBbqbMB0GA1UdDgQWBBSeODS0LT5ZH9ifYHKiutbYTZOp1jAK\nBggqhkjOPQQDAgNHADBEAiA6+EgaYi9nVlKNy/fs7sg7Phq3qtZl56sS1ZHNhPuZ\negIgS90EhpzIvu9fEyR0vezY6Wmh/msmNCwHSUh7t0YRinU=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICTzCCAfagAwIBAgIUE1eGAkWplqxMbGp9jBi0h4Myu2EwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTQ0OTU1NDE5MTM1NjY4Mzc5ODE0MjQ2NTUyNDE5NTE1Mzk0\nMzUwMDYzMTk4MTE5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDU0NDk1NTQxOTEzNTY2ODM3OTgxNDI0NjU1MjQxOTUxNTM5NDM1\nMDA2MzE5ODExOTEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEN6OTbZeIaGsWrD/5\nxwqsJlF7SvRcUx3+C7JFfF5F60iSJP9UUp/HaUp9pI/BRWxLVAt+iyM2t906gmW3\nMHmG/6N4MHYwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUnjg0tC0+WR/Yn2ByorrW2E2TqdYw\nHQYDVR0OBBYEFLR8c7duaihRTHjthlDujP7jvSwdMAoGCCqGSM49BAMCA0cAMEQC\nIAt2GWhqHbV7DtTgp4vv72MdwsYPEvwfo4dfJEcaauZDAiBH42eGTUyw+g3KwCFy\nzHs55wRGj1bhEyIBsrcqpsC0VA==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUZ0vvii0Vfh6YqaWwjrP+icHVzQYwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNzEwMTY5NjY4MDAyMjY1MTUxOTI1NTU5NzE0NTI2MTI3NzY2\nMzc1MDc4Mzg0OTMyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nHW7v0bCUYkcS2ePw2Zkyq7EHTWW5PSb5WfcQDsAuqGXq9N+rrMOll7zy5gS07VYz\n+AzrKEnW38h84byavcCCZKN8MHowHQYDVR0OBBYEFFjVakUjHIkPc2c7r+frhDI1\namY/MB8GA1UdIwQYMBaAFFxwrtpjBzpjKF5RtmAvALPCvROxMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiBWqnRy1/yWtgkLi53DtUEWjVjcxnyq7wL/oTippuFl\nwwIhAPStC9l3eqUQM6hwWC2LG31c3S6o+nbB2ZMKXrIEZ7ak\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIG1ROx/K3GUANFMQ4211f6bpQP03osl3/pVvvEpegCtBoAoGCCqGSM49\nAwEHoUQDQgAEHW7v0bCUYkcS2ePw2Zkyq7EHTWW5PSb5WfcQDsAuqGXq9N+rrMOl\nl7zy5gS07VYz+AzrKEnW38h84byavcCCZA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUZpQxqZnJieyBaAKDBXkKHFPhWsAwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTQ0OTU1NDE5MTM1NjY4Mzc5ODE0MjQ2NTUyNDE5NTE1Mzk0\nMzUwMDYzMTk4MTE5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\naIOXy1Rr7uTuS0u1PAAElMmVpzlSDdDNUaDWNq94HqLUH962iIzwV8yw1ulXwGLc\ni4KwqqYDEBwB7GxDhXgLSKN8MHowHQYDVR0OBBYEFJy3HMJkN9NOBAgYLy8bIshs\n+hXGMB8GA1UdIwQYMBaAFLR8c7duaihRTHjthlDujP7jvSwdMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA2TRXuNVWhA/zCb88Vcg/myR+gERfDnVGFrwfc5KP\n14QCIQCFfq2pasimdfzPkii1o3MUEaAHgNz7d68fVcbdBczPbQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAAwtj/26RILt/JVoPIsK7GhL/geY44a2tkUEAHN/BouoAoGCCqGSM49\nAwEHoUQDQgAEaIOXy1Rr7uTuS0u1PAAElMmVpzlSDdDNUaDWNq94HqLUH962iIzw\nV8yw1ulXwGLci4KwqqYDEBwB7GxDhXgLSA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -393,17 +407,18 @@ "id": "pathological::multiple-chains-expired-intermediate", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following chain:\n\n```\nroot 2 -> intermediate (expired) -> root -> EE\n```\n\nBoth roots are trusted. A chain should be built successfully, disregarding\nthe expired intermediate certificate and the second root. This scenario is\nknown as the \"chain of pain\"; for further reference, see\n.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUcMUSI1tLW5T/+08ahfaoFTJ8vl8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR3vcRD9wgFRvI/39/72RyJCzeqvJaSJL3rXE4s\nvaNnpJKGfO+6YAcVT8KeStudkAUMcb5ize2LMjWEBkWbvsUzo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUmMjYk8vQtHO5FBwTm6a9+b00mtwwCgYIKoZIzj0EAwIDSQAwRgIh\nAKdpZmvSEDKf5WbrN59WN92++OFOKc08VQJX4+s+2VTBAiEA+kMf0pt49qlStFdJ\n0fKHk3LFdJO0w7eeIsRuD/veXkM=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBkzCCATmgAwIBAgIUM7GubSvPZ7U4oZviUD7g9Yj8MO8wCgYIKoZIzj0EAwIw\nHDEaMBgGA1UEAwwReDUwOS1saW1iby1yb290LTIwIBcNNzAwMTAxMDAwMDAxWhgP\nMjk2OTA1MDMwMDAwMDFaMBwxGjAYBgNVBAMMEXg1MDktbGltYm8tcm9vdC0yMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOI9Bnpvztmyc5RDAf2ri5U129UHwfU4z\n6B1sODJMtND31bT2jJGGcPNOkNS5q7IILrK9e28hwGSgdQgRAQ5CC6NXMFUwDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFNIN6kUDu8bCbC7hoEzMco9EPn3pMAoGCCqGSM49BAMCA0gA\nMEUCIAuHsZU3OPuBKe5T4wIY76ko6Fzd6YU/zakkXxFmFkOnAiEA5kBZEmOODNy3\nC0rHlauufbb8pDpIcqNoZqHtvlK63Tg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUCbWTA52fEugrtXM8+ujiqkMdDBwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQnhKGGj70liSzi+klz6c65iAcbxXoZNk2eVc8e\nUTfdMo/bZq00xgkarR+k323/2pT7DvctS1UXw3Ap7+x+LZHMo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU246McvavpZw4aCEvoUgjMlicEsowCgYIKoZIzj0EAwIDSAAwRQIg\nDNPTQN4dUq/MxJTwLhIDb0foDDOXaacoZdJboNUtMKsCIQCFPY/2NH0ZPClOzgTa\n3H5poXzO0DK6D4K8HC6X0w+HyQ==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBkzCCATmgAwIBAgIUack9bg4COIjBT7TVT7lFl3cQ61QwCgYIKoZIzj0EAwIw\nHDEaMBgGA1UEAwwReDUwOS1saW1iby1yb290LTIwIBcNNzAwMTAxMDAwMDAxWhgP\nMjk2OTA1MDMwMDAwMDFaMBwxGjAYBgNVBAMMEXg1MDktbGltYm8tcm9vdC0yMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfYEeGN4aLzEY6H/Bx9pNx+cK5g/rtrMB\n8noT4MIZGJseMZG1QxTwaf1Xf7EC3aBX3lY7mJyLXiV4R33ANMIYaaNXMFUwDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFHN5OPFDxUwLzTESeDxK9SmVAKUgMAoGCCqGSM49BAMCA0gA\nMEUCIFTM6qfOMSMTF/NPD8LVC+tio4/PkcL8cvt/IGAnOhAjAiEA1bhATJ6UHTIq\nxGypAteoYtc3iVqY+JyOYV9MO/SBi7o=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVmgAwIBAgIUFgPC0gNf/sCQVkh3s9efOUwC0icwCgYIKoZIzj0EAwIw\nHDEaMBgGA1UEAwwReDUwOS1saW1iby1yb290LTIwHhcNNzAwMTAxMDAwMDAxWhcN\nODgxMTI1MDAwMDAwWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR3vcRD9wgFRvI/39/72RyJCzeqvJaSJL3rXE4s\nvaNnpJKGfO+6YAcVT8KeStudkAUMcb5ize2LMjWEBkWbvsUzo3sweTASBgNVHRMB\nAf8ECDAGAQH/AgEBMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNv\nbTAfBgNVHSMEGDAWgBTSDepFA7vGwmwu4aBMzHKPRD596TAdBgNVHQ4EFgQUmMjY\nk8vQtHO5FBwTm6a9+b00mtwwCgYIKoZIzj0EAwIDRwAwRAIgGvlHATmvUgPN903j\nbfexafc/5a+Cg1TdLEWzZTLgWwsCIBEwzj9nHXnREVIz+hRVQfFRKxPDT1/t1Uan\nrvXeo8c+\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVmgAwIBAgIUS1vs2VPcJRHKuPPsc3qUio+8VoEwCgYIKoZIzj0EAwIw\nHDEaMBgGA1UEAwwReDUwOS1saW1iby1yb290LTIwHhcNNzAwMTAxMDAwMDAxWhcN\nODgxMTI1MDAwMDAwWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQnhKGGj70liSzi+klz6c65iAcbxXoZNk2eVc8e\nUTfdMo/bZq00xgkarR+k323/2pT7DvctS1UXw3Ap7+x+LZHMo3sweTASBgNVHRMB\nAf8ECDAGAQH/AgEBMAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNv\nbTAfBgNVHSMEGDAWgBRzeTjxQ8VMC80xEng8SvUplQClIDAdBgNVHQ4EFgQU246M\ncvavpZw4aCEvoUgjMlicEsowCgYIKoZIzj0EAwIDSQAwRgIhAK3t28u9t1JSQoGe\nux0SXwIAsxHPLbgIor4QnL02BbVeAiEAhMj027M1SmzytPs6JheDUskK0BzJ5lad\nFYCV2+NgCgo=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUHr4zk24RYV1+/mCpHTrBP+QUz4owCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFqj5CHz18trskUGGrgQYzxDkOI+k42tOpGc+wqXN6ii\ncKusnQfMq1/YqJ6k465E+BH0uJCsRw+eEvyqU6mYuiGjfDB6MB0GA1UdDgQWBBS+\nVjhQdi8EkfqQ8G9P9mSHFmY74DAfBgNVHSMEGDAWgBSYyNiTy9C0c7kUHBObpr35\nvTSa3DALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgQ4brUb1tyF12nmoJK2qW\nryMx5pCUv/9D4bd+jEeapBMCIGfTcRcLrXg7/UP/FbbWyz//fJ3nVrvR14vFLjBQ\nvBrR\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIX4Oy1znBSRCSiKgnS1/y3EL34tXlRqsU1r/J7yCuuloAoGCCqGSM49\nAwEHoUQDQgAEWqPkIfPXy2uyRQYauBBjPEOQ4j6Tja06kZz7Cpc3qKJwq6ydB8yr\nX9ionqTjrkT4EfS4kKxHD54S/KpTqZi6IQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUGZqtuWAzZali2lHTi1EW7d9t/8YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHHH74dSvS3M2MJ7F2SU0hbZKTzi48zUDyFbmcZhOiFl\ndGU4In4j1P9MXt2mle6BPf4q3ZoUY4B/xt8AbE9Rq5ijfDB6MB0GA1UdDgQWBBRu\nTHfeBLMP0eypeGTGVkWHHBBsIjAfBgNVHSMEGDAWgBTbjoxy9q+lnDhoIS+hSCMy\nWJwSyjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAPx4jFbDVvpKj+AJdonA\nFLSLCIHW9tO8WTnCoGvOgvwtAiBxNUSxvJQaU/H1wu/149fqIycW1OIZSAhch9Zo\nIsXzqQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDQKiDA1YpklPX3OCWrtOIE/mldyRDeGz1YFTsEgNSkRoAoGCCqGSM49\nAwEHoUQDQgAEccfvh1K9LczYwnsXZJTSFtkpPOLjzNQPIVuZxmE6IWV0ZTgifiPU\n/0xe3aaV7oE9/irdmhRjgH/G3wBsT1GrmA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -420,17 +435,18 @@ "id": "pathological::intermediate-cycle-distinct-cas", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -/-> (ICA' <-> ICA'') -> EE\n```\n\n`ICA'` and `ICA''` are separate logical CAs that sign for each other.\nNeither chains up to the root.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUJRqyCrAj6IcNKHQrNtuXbpbtQ9owCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATU8rGwbinJFoc4fQBokwdBqi59z7OHOKAwdi57\n9kyt2R1LV59V7dMsUa87qrhZpF2wbrTQrj8LzHXAAkRqfzxJo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUIPTj6Blond+DxsVhzOh7rOz+T7swCgYIKoZIzj0EAwIDSAAwRQIh\nAJcUJVHan1jv7MbsI7QrcfzjitpmpJIQwFYXP1sjStXgAiBdZFXQW37drs5SB0vf\nuX2NCE+kRo7i0sz9ELDZu1yMSw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUZaS9xhX4amPcyyxk72SrlYz9jp8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATqBqLeRG7se7mJNfC/99KdoSjy/VxhGxI5s3uS\nJp7CczMi5oow5LjSsPWkv2XhLnSpZ1+Qci9tQkZ1hEKzQnR0o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUhY9F4jMHekLSJHqh0Ugo4IY05xUwCgYIKoZIzj0EAwIDRwAwRAIg\nbdOtS+XtwFlGSmS2AsYOECowdkqhgmmma9clgA27aUECIFs9KRLuTMVYT7J3bkOl\n/63nTpmBEC2jMIiC6IIKvJkh\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBtzCCAV6gAwIBAgIUUw31p2zxY6mreYiGjTw6XRLkDHwwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABOetLZMe9j+Q4n9S1edjruY7fL59vcvpmde/4BdvmoMtC6iphqN7uT9OTT/P\nR8KhPu7dTGAPiWEff+kTFwsL3K+jYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFGbxn2eeDgiFIbKh5zxZDNjklTpWMB0GA1UdDgQW\nBBSUI84vUJ3IFK2ehL/+wyPvB5dyBjAKBggqhkjOPQQDAgNHADBEAiAnorkwJvEi\nnnpN/6Tv31hRyUAn2dn5wRYs9tAZThTWoQIgQDLfkj6EpVwDNObAFZIymfYRqqwz\nztvKV/DPAig5FFM=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV6gAwIBAgIUYq0Q+fzGWoAktxrWVyK2OA+rQgEwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABIAkdfme9OuwdgFg2bDTRudYiRl/z5kfVY2HYP9hGnTMar+nh5ohCZGuh6VS\nwot/JgIdUImhYUFHHSvjDLlnz7ujYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFJQjzi9QncgUrZ6Ev/7DI+8Hl3IGMB0GA1UdDgQW\nBBRm8Z9nng4IhSGyoec8WQzY5JU6VjAKBggqhkjOPQQDAgNJADBGAiEAj31omtd0\nKC9ZY9HsGZWp63sMOvMKUBh/PxpYBLC+ZYwCIQCNFEZhSb4zphIB4JOd7RGxHrK6\ngKxt66aCFN8jWU9NWw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBuDCCAV6gAwIBAgIUTTYM1/qSJi3JxXP5nl6kt+jg5g8wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABCJk0FwhIbnp7Uj7M69GXzp8AqWzZ6pWbc7xnuHsjjXEVMilHztMFlIp/cX6\nR0WsNvXiFl8nae0esGzY/U+rwBmjYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFMMFMyF/x96M9bcL1CPoSpEomk1tMB0GA1UdDgQW\nBBSGQCba22R2pfpUJ/awvAZ7+ewxmjAKBggqhkjOPQQDAgNIADBFAiBJgZN8Nu43\nc8mRauFqCgveMddKEqPr1W3mS72MMpyQ8AIhAJI1GzCqSqqfoMOGRFM7V6kxgnVD\nZyLsmr4l+udfpzx6\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV6gAwIBAgIUQFn+DRqCo5MHvjDdvIl2w/YRtX8wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABJSz1R551Nogz1suIpOFev10z+U2a3iMxdwhI4yBzXsk30809iR+bFm4mokG\nL+Gp+mHxjyctE8utx2BPexHq52qjYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFIZAJtrbZHal+lQn9rC8Bnv57DGaMB0GA1UdDgQW\nBBTDBTMhf8fejPW3C9Qj6EqRKJpNbTAKBggqhkjOPQQDAgNJADBGAiEA+YCsgfgR\n3+YZ461ipUDtdoCPeTjefi05OnURIQDmHi0CIQCe0KQBybC6sl8tKVsISbVXJdto\nLMCzlBp5Q16ouQk6Ag==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBvzCCAWagAwIBAgIUfMBCvU9j1MN9UGAI2KsraEWd8IEwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhhbXBs\nZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAThT1cmj12MrGNnbgXBAu6X\njedchBR6NTMFOmNHtN48NZNQe1xHVk5NLhE9Lunq8Q+zA8YnaekgCYf38/jjtk7h\no3wwejAdBgNVHQ4EFgQUg0VAnVMC287elKvdCFRih0ZyDYowHwYDVR0jBBgwFoAU\nlCPOL1CdyBStnoS//sMj7weXcgYwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQC\nIA8AQNjvwsG/cgKh70mYYRusXFLOI1o/y9RfyoZVHANJAiByH6O+LVuGhszXSWwx\nQqJnurqj3Xu1LDaj1+o8JHDG1w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJXo4E6xnj9z5YH2ZJDMhghPHUg+VMujnt/gUUdeY/69oAoGCCqGSM49\nAwEHoUQDQgAE4U9XJo9djKxjZ24FwQLul43nXIQUejUzBTpjR7TePDWTUHtcR1ZO\nTS4RPS7p6vEPswPGJ2npIAmH9/P447ZO4Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwDCCAWagAwIBAgIUT4Jx2dMU2NC+kX7z83Vfva33RJ8wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhhbXBs\nZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARzvz2ebnJPo3L4e+AAPqJL\nX9t4xjcWeYdMXW60ulJ4kGRDBfxXsWj+ny9kGtgQinaOT727K82sjC4pmMItVrPI\no3wwejAdBgNVHQ4EFgQU0Cve1oA3q/nocN/dTR995gMN/0gwHwYDVR0jBBgwFoAU\nhkAm2ttkdqX6VCf2sLwGe/nsMZowCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUC\nICeezvv4JYlFBQtPC706llrUYl9hjR/aI/knKNj+ILdxAiEA/IFoOuh/sMsYbWfd\nMNHQ5dEHQhcpZIPUhx0wkbJiPDE=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICZvLIrEiViGVQ/sbYzsDUAwzCH1yh7Q1aKkyfVT4R0QoAoGCCqGSM49\nAwEHoUQDQgAEc789nm5yT6Ny+HvgAD6iS1/beMY3FnmHTF1utLpSeJBkQwX8V7Fo\n/p8vZBrYEIp2jk+9uyvNrIwuKZjCLVazyA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -447,17 +463,18 @@ "id": "pathological::intermediate-cycle-distinct-cas-max-depth", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -/-> (ICA' <-> ICA'') -> EE\n```\n\n`ICA'` and `ICA''` are separate logical CAs that sign for each other.\nNeither chains up to the root.\n\nThis testcase is identical to `intermediate-cycle-distinct-cas`, except\nthat it specifies a large explicit max depth.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUWt90//WbF61jWJKLMcBr+rvV6NowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATTgCjoBG8k41Am4n6TGWo06ZA+xyyeiNhZPXbN\nULEagcysVyHdf9hO9NR12ljzVJMdSSzQ8ZknW9VEhf0bar7Co1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUpeDvcBlJQ9VDFkpQWMEm3IFpJBYwCgYIKoZIzj0EAwIDSAAwRQIh\nAMKPRvR9vEcWjp5EOEC67jCyIydife/+iCb+LDIJT+k+AiADCpY2E48/nZqT8bG0\nKe/g9TOpWAMTdKXb9kcqvxfAjA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUF99W29a7/YF52R/xgmg+/jFlMHowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASHkxZxDiTQiPaH2iajpGmFO5cT7u5PytL1lshY\nikEkgAyu50yefqKPAVagtQthwPaBD9C/u1v9d/TAfTjTNjEwo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUp7baFuJgevA0iB7FUgc4ep39S2IwCgYIKoZIzj0EAwIDSAAwRQIh\nAPNiRG/GZkWwneu/OTpuqjguFmy0TdOh4sA8uT+FAdXwAiArfoApKcPv93HAr/xD\nMngv0HSASUdv+kIBhglW9S4qNg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV6gAwIBAgIUOtpRkTLjqoX3xEGbXzyEGuFy9VYwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFORJMr3FQrP3sRU4nwSdedeX6wV6Zcs26rO48m5ywEVRUxnxzowP9epxtfD\npeqvUraYJDpD7dk/mVwfVwv6MDajYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFFHQBLldqWmYA5+1R+BiK5bbsO+tMB0GA1UdDgQW\nBBQi7x7CA0m4SpCPgGomHJxhWIm6TTAKBggqhkjOPQQDAgNJADBGAiEAjLqnlrFl\nINfu0rdD7jDI1Nuac/GLwVhsuw2DPbvZu5oCIQC41TV5FB3LHXSloFzvEZ+XPNBJ\nx0xmAzp/i4rDca5ZlQ==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBtzCCAV6gAwIBAgIUY4/dCVsRDBQ1xFU0diSrk9kOsG4wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABAZ2udLoRtEheZbQO9Kfhm91700E0oQ8LhxDp2kBug1sSl41uE0s1Gd7tVJS\ncoXWLpOvyTj8GRDHmur85qHXO2qjYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFCLvHsIDSbhKkI+AaiYcnGFYibpNMB0GA1UdDgQW\nBBRR0AS5XalpmAOftUfgYiuW27DvrTAKBggqhkjOPQQDAgNHADBEAiAsvTgLOxX5\nhOadv74GgXIq9ELsYIsCfD2B18yOci2miQIgMFaLMWxAEFZ1iicaoHx12BxgpDsw\nj8Lxgh2+WyA+xAw=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBuDCCAV6gAwIBAgIUINIiQkqgtEIPqSuHiHlisJ5lUJAwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABIjd2gpOayQ3vbEIs2LFAZ2POsCkAE6qvnY+QHpKvm3xZkMt6QLlOhMrf68g\nxytM01r95hyziyOKrfRGnpqbHzGjYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFOBd5uj0i113mNX1gEsZXa+lTW2CMB0GA1UdDgQW\nBBRZFqNsyR9kG+VmaqTsaYTzjoTltDAKBggqhkjOPQQDAgNIADBFAiEArkn+XHg2\nEZ9malNYf3U5KZIEe+T/T47mOXZNnyBR0dsCIA0L+ICmrLK3DO/nK0T5zGbumf/+\nI142SBzctTXh6oSY\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBuDCCAV6gAwIBAgIUR5Gw5jmMjI43rlvMhO4GC4smuC8wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowKjEoMCYGA1UEAwwfaW50ZXJt\nZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMjBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABLH4weNp8OHrIKbnRHB8gdg88Ac6KRbXryLkVRKBDRV3jmOD2LVnlIgE4pUc\n2wf/Q8+Ddscp1B1EUrZYE3fXzhCjYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFFkWo2zJH2Qb5WZqpOxphPOOhOW0MB0GA1UdDgQW\nBBTgXebo9Itdd5jV9YBLGV2vpU1tgjAKBggqhkjOPQQDAgNIADBFAiEA8SnRQa6k\nndFUhnVRShBnL3LN+pZu608CRoE6MlNwEvACIFBuAr2p64vvcrOHzCzvo9wh6Xuc\nkhahRcfgy9xN+JGC\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBvzCCAWagAwIBAgIUA7dbLq2YU7/ZTsQ7z3xKgRgUuEEwCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhhbXBs\nZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAT1tuRVq1PUK+xLOTbfm/aJ\nJXHfP+VJik0yP4uFFGIo8YOJCkXoPoaYcOckqztRvDRIVzakkvLYOBkwYbIXdmiw\no3wwejAdBgNVHQ4EFgQUM9wtozSo7JV/vVEOg5dwqxfLmF4wHwYDVR0jBBgwFoAU\nIu8ewgNJuEqQj4BqJhycYViJuk0wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQC\nIH0HqVe/e1SbldZ9YPYM7YhhmHfFtTroaiMCXIuDoH9IAiBLx0P7oAR3BzqOeOGg\nYlfqTWcafHC7WYf4Wp3AWx0Lag==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICssLQt3J05c7w6Cp5fxJLRNfuHw15fij8U1KCNS/1jEoAoGCCqGSM49\nAwEHoUQDQgAE9bbkVatT1CvsSzk235v2iSVx3z/lSYpNMj+LhRRiKPGDiQpF6D6G\nmHDnJKs7Ubw0SFc2pJLy2DgZMGGyF3ZosA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwDCCAWagAwIBAgIULHygZdc5xrnSpgiQRnx1oLCeJs0wCgYIKoZIzj0EAwIw\nKjEoMCYGA1UEAwwfaW50ZXJtZWRpYXRlLWN5Y2xlLWRpc3RpbmN0LWNhMTAgFw03\nMDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhhbXBs\nZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATdujQl1xYH5D3iS/Xs2ked\ns/QKKOskHH474qIIqT/2qctLcdMB7cDaxwGPzDfYirnA+dyG298/ofgOkws9P/1z\no3wwejAdBgNVHQ4EFgQUcyc+66ia7T5BceqnXl0Flh7GnL4wHwYDVR0jBBgwFoAU\nWRajbMkfZBvlZmqk7GmE846E5bQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUC\nIFIZR4B0SqwgtVp/nFJhAzrN+anL2NjUv2yLmU67xuc0AiEAzDmNDDikgYXxB1xZ\nj018FcLFAMl8WH//e5DFkfNLOFU=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINJcb/2lHLvM5hvQT11UbKtWXWxeUKO0kS4Iwlle1k9VoAoGCCqGSM49\nAwEHoUQDQgAE3bo0JdcWB+Q94kv17NpHnbP0CijrJBx+O+KiCKk/9qnLS3HTAe3A\n2scBj8w32Iq5wPnchtvfP6H4DpMLPT/9cw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -474,17 +491,18 @@ "id": "pathological::intermediate-cycle-same-logical-ca", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -/-> (ICA <-> ICA) -> EE\n```\n\nThe two ICA certificates are from the same logical CA (same subject),\nbut have different keys and sign for each other, forming a cycle.\nNeither chains up to the root.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUAYQ0w9MXBnx60m9qBWvOPFvd+JswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASKe5+A9Y2voZWDT4i+Opl6BkRpMegRNH5yKVme\nzmqtXqz9wdnKheriYJl8gcpAQ8oSCg6w5Y5cAxTZJ9CPPoILo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUCmjpZLOvuQLuC2BKIi46oh2NTgkwCgYIKoZIzj0EAwIDSAAwRQIg\nUsI/3lRPPSKXhE615Jol/Y/lTMqflhX9YB9W617+hwUCIQDXOgI/4gyNS6t4Jb6r\n+5p5WZMMoBUgPrb4nWQXt2X+mw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUBOCg5I6Z77uO6jXDo2NXKCJ2+rowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ25J1W5mOl6tPIzsMsVS6rS+QHzwiY3nHJ+YwK\nb0pFRP7eCifP1dum8hWfSB83fqDFQFlt1amEBY5HuuB3wjamo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUWuMwEjjia24A4bPJpvJhMLtZt9cwCgYIKoZIzj0EAwIDSAAwRQIg\nCYVC/ccsbTsEeXqb3xJsP+3iP5aVFVan30V5WCMDQtgCIQD4kAOaqSV7l33FUr6X\nrtbLWwJEATd7Gh/1JL74R7WQMQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVegAwIBAgIUGBMKQwMUtxepLP4X9puOXXJS/BowCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowLTErMCkGA1UEAwwiaW50\nZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABMHK/OmitDjYw+8ssSRDBAydXsbNxr7xVf8AS2XqjCmwiIEhvaN4\nALgBdymUQOY+U3qcnHCFtL5LKwyg2i0FvJmjUzBRMA8GA1UdEwEB/wQFMAMBAf8w\nHwYDVR0jBBgwFoAUkhAQGP8eyRyuCpjv1tqs00ubJdQwHQYDVR0OBBYEFNl/Im9N\noOIlDNOsOcVDUAahzhAPMAoGCCqGSM49BAMCA0cAMEQCIH6R2BHmkaq0XMywnNwU\nnForWXLSZ28msn5qFUTAs3C1AiAudyrr4PhKmcnbgCWaSwguK5DX41TXVo7WDjQT\nZGgGrA==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVegAwIBAgIUJyRiffidTHNZNDDYzQvDzDlVsbcwCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowLTErMCkGA1UEAwwiaW50\nZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABA9NPGqwyFzzt5rr9ptsJWRxo5oixQNP8rc46AyrJTLosHQTMQwu\nmmPIJfaAh4q2P0BgsxciTV18By+clz8wIiSjUzBRMA8GA1UdEwEB/wQFMAMBAf8w\nHwYDVR0jBBgwFoAU2X8ib02g4iUM06w5xUNQBqHOEA8wHQYDVR0OBBYEFJIQEBj/\nHskcrgqY79barNNLmyXUMAoGCCqGSM49BAMCA0gAMEUCICyd394LRU2DgDd4Pqsa\nlwi3ovotfJNeHImZjRcO5Z13AiEA9b7RQDiK0s2XMyU5Mr4O7c3XSRbhWBSwgppg\n0I9MqJ8=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVegAwIBAgIUDek7zNXZ8yBMk7E77DyEUwWlitswCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowLTErMCkGA1UEAwwiaW50\nZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABDCcvnH9CQy/61UBoT42W+ieCsTS6FatsRTYz3WiH7n++kYTrqrU\nRQ3/LiGTHTQUeT97su7YS9naQ1/XuLlxHYKjUzBRMA8GA1UdEwEB/wQFMAMBAf8w\nHwYDVR0jBBgwFoAUfGquB8uYCvjBkQvQV6qMbCWIT18wHQYDVR0OBBYEFDzaWH3c\nbClcBROHOlYjL9O26U56MAoGCCqGSM49BAMCA0cAMEQCIGj5PCPFSMMsHCu9H+oB\ns8gti2aSNDewvkpHa0DOjJ68AiAOvS54NyMUUjiBewQCfPlQ6uX7LXfOe8X2s9n2\nFfTk6w==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVegAwIBAgIUAqi7Dnis0QjoF3VQpUQmExivJp0wCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowLTErMCkGA1UEAwwiaW50\nZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABKWpmzSwoao6Gx1sioxIAdc6WxW7DyIEO7C9kSqoie1NOH8fdwhq\nJGECvHZDOuXrfGHbaWNHRly8423QrB5KSOOjUzBRMA8GA1UdEwEB/wQFMAMBAf8w\nHwYDVR0jBBgwFoAUPNpYfdxsKVwFE4c6ViMv07bpTnowHQYDVR0OBBYEFHxqrgfL\nmAr4wZEL0FeqjGwliE9fMAoGCCqGSM49BAMCA0kAMEYCIQCWnkTdLWMJ8TtP43oA\nYu17J1G5lZ59Nk6S1F8cODkHzgIhAP93lDvyxgaFvkjW1lOVxNKZB/zEl1dDf9r+\nyRGRRKmh\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxDCCAWmgAwIBAgIUJBXgPJBjVrC85LhAYy2bpZsr77gwCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARcF5/iwkPDZ4ni5sR2\nvBZg1BblbnI6Nlul4iHbBRj84sMW2xS7CR+Eefj1nznhXJVQwFwubGcu934uZoOW\nUEogo3wwejAdBgNVHQ4EFgQU77UZlv1xa77ZFG1LdWEPBRQLBLgwHwYDVR0jBBgw\nFoAU2X8ib02g4iUM06w5xUNQBqHOEA8wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoG\nCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0kA\nMEYCIQC8H0jnpwIUEUyObLc5gj6v6YhvawT/8/73GvlHam3mGwIhAIQOzrmBzfpn\nOGntLkKjYPUmW9E1UtvVy3C3vRYvyekg\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFqM6tGqUV96pMPgSOhNMpNO8mr2QZ7uW/cMTEPwJn46oAoGCCqGSM49\nAwEHoUQDQgAEXBef4sJDw2eJ4ubEdrwWYNQW5W5yOjZbpeIh2wUY/OLDFtsUuwkf\nhHn49Z854VyVUMBcLmxnLvd+LmaDllBKIA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxDCCAWmgAwIBAgIUMrNm0QIN6JvYH02RUQc8s32ZCTowCgYIKoZIzj0EAwIw\nLTErMCkGA1UEAwwiaW50ZXJtZWRpYXRlLWN5Y2xlLXNhbWUtbG9naWNhbC1jYTAg\nFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQ4wBvxKyQ1HUKcwVzW\nCxkyVgm8nAw8VxNqqLoA+ahNlr4cmIAVsHvpVS/k25LlRqT8/iZjMDvoOK42zBnb\n7bU0o3wwejAdBgNVHQ4EFgQUdGDx7zagqKzo9i801ccdFixD2vEwHwYDVR0jBBgw\nFoAUPNpYfdxsKVwFE4c6ViMv07bpTnowCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoG\nCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0kA\nMEYCIQCcf3+lastU4r5XstHIjC6mq7e38fbvMLaeeznHiFdvNgIhAJL77CdGEdzO\n4umx7ro4EAKli+bM9t7bZ4s8iwjGoXK2\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBlmUpnNdPOLUZkY55VSVWyb6g01vfpyxZ7I6peQPlqkoAoGCCqGSM49\nAwEHoUQDQgAEOMAb8SskNR1CnMFc1gsZMlYJvJwMPFcTaqi6APmoTZa+HJiAFbB7\n6VUv5NuS5Uak/P4mYzA76DiuNswZ2+21NA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -503,14 +521,15 @@ "features": [ "denial-of-service" ], + "importance": "undetermined", "description": "Produces the following pathological chain:\n\n```\nroot [many constraints] -> EE [many names]\n```\n\nThe root CA contains 2048 permits and excludes name constraints, which\nare checked against the EE's 2048 SANs and 2048 subjects. This is typically rejected by\nimplementations due to quadratic blowup, but is technically valid.\n\nThis testcase is extended from OpenSSL's `(many-names1.pem, many-constraints.pem)`\ntestcase, via .", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMILZCzCC2LGgAwIBAgIUXL9GKA8i0ot+hZto34YjqLdHxwwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATMOt9bxUuk0mMh7r9wqD8gJupsUQoy6kRTF/uy\noUYFDSwIY9zaTwPJaN1Zk11W8y27XwB/oRjuIVaX+i4yrvyLo4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFJCfvewSG9nfU4g9b+puLThXhofqMILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDSAAwRQIhAIwhSwfVX0pUFJFZHpmwrfiY3TPxTtNA1xw/OkSIkJZpAiBR\nEYdFK4nkgWLq81xTOtLvTz69JTDfLYKJrYMz6Y0Kig==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMILZCzCC2LGgAwIBAgIUDlD2eJT2JxJjhh1aKvMIRtlGA6AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATa/am/p9Yg6qAXdczEv94L1J1hlUQ3TBEWtk0w\nHEEt4D4G+y+JK8FWgtbvJQsBQMYrZsWwj7K85uuLhXbSNXqOo4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFP4LUW9D+tnJ/EQV2NNS8Mu6we9ZMILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDSAAwRQIgTnQdBhBQyFekCrq44NMNU1Nr9/wKpLR8WLuu75rKflcCIQDU\ncsfJnEGCVWfXZZXk26gIkacp2WRvwMk49aU7F8os6w==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIMBMQEwgwEwpaADAgECAhRZicm5LJUNjpsQaRk5t/iNsj2i0TAKBggqhkjOPQQD\nAjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgP\nMjk2OTA1MDMwMDAwMDFaMILTvDEWMBQGCSqGSIb3DQEJARYHdDBAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDFAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDJAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDNAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDRAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDVAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDZAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDdAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDhAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDlAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDEwQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQxMUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MTJAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDEzQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxNEB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0MTVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDE2QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQxN0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MThA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDE5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQy\nMEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjFAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDIyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyM0B0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0MjRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDI1QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQyNkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjdAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDI4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyOUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0MzBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDMxQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQzMkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzNAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDM0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzNUB0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0MzZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDM3QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQzOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzlAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDQwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0MUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQz\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nNDVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ2QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ0N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDhAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDQ5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1MEB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0NTFAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDUyQHRlc3QxFzAVBgkqhkiG\n9w0BCQEWCHQ1M0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTRAdGVzdDEXMBUGCSqG\nSIb3DQEJARYIdDU1QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1NkB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0NTdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDU4QHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQ1OUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjBAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDYxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2MkB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0NjNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDY0QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQ2NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjZA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDY3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2\nOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjlAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDcwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3MUB0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0NzJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDczQHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQ3NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzVAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDc2QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3N0B0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0NzhAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDc5QHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQ4MEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODFAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDgyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4M0B0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0ODRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDg1QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ4NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODdAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDg4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4OUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDkx\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5MkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nOTNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDk0QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ5NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTZAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDk3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5OEB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDEwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDExMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTEzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDExOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTE5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDEyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTIyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDEyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTI4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTM3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQ2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTUyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTYxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTcwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTg1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTkx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTk0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxOTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjAwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjMzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjM5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQ4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjU3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjYz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjY2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjcyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mjc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjgxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Mjg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjkwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyOTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzA1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzEx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzE0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzIwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzUzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzU5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzYyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzY4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzc3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzgz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzg2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Mzg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzkyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nOTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQwMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDAxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwM0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDA0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQwOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDEwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxMkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDEzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQxNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxOEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDIyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQyNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDI1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDI4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDMx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQzM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDM0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDM3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzhAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQzOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDQ2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ0OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDUyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ1N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDYxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ2M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDcwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ3MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDczQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDc2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDc5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ4MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDgyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0ODNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDg1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ4N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDg4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0ODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nOTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDk0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ5NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDk3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0OThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTAwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTAz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUwNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTA2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwOEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTA5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUxMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTEyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxNEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxN0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTE4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUyMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTIxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyM0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTI0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUyOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTMwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzMkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTMzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUzNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzOEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTQyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU0NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQ1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTQ4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTUx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU1M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTU0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTU3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU1OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTYwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTY2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU2OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTcyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU3N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTgxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU4M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1ODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTkwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU5MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTkzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1OTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTk2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTk5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjAyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjA4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjExQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYxNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjE3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYyMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjIz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjI2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyOEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYzMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjMyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzNEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzN0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY0NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjUwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjY1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY3MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njcx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njc0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Njc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzhAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjgwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2ODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjgzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2OTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY5NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzEzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDcxOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzE5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDcyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzIyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzI4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDczNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzM3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQ2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzUyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzYxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzcwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzg1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3ODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Nzg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzkx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzk0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3OTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Nzk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODAwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODMzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODM5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQ4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODU3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODYz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODY2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODcyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODgxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4ODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODkwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4OTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4OTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTA1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTEx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTE0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTIwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTUzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTU5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTYyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTY4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTc3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTgz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTg2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5ODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTkyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5OTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nOTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwMTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwMTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwMjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwMzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwNDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwNTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwNTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwNTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwNjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwNjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwNjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwNzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwOTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwOTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwOTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwOThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExMTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExMzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExNDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExNTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExNTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExNjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExNjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExNzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExOTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExOTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExOTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExOTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExOTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyNTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyNTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyNjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyNzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyOTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyOTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyOTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyOTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzMTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzMjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzNTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzNTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzNTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzNjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzNjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzNzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzOTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzOTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzOThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2MDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2MTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2MjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2MzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2NDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2NTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2NjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2NzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2ODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2ODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2ODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2OTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2OTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3MDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3MTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3MjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3MzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3NTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3NzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3ODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3ODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3OTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwNDdAdGVzdDEQMA4GA1UEAwwHdDAudGVzdDBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABHnQNyH+G6lCOIvoUxLMfA0lNO+Jci5m1ic22DoLs9AdkvsSWaQz\niB+hMB8/YHKst/hT3Mhz0xB5MAHIDvXvjp2jglwhMIJcHTAdBgNVHQ4EFgQU3r/W\npN3rwKMBlMmdAHUAOnOWO+swHwYDVR0jBBgwFoAUkJ+97BIb2d9TiD1v6m4tOFeG\nh+owCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMIJbtwYDVR0RBIJb\nrjCCW6qCB3QwLnRlc3SCB3QxLnRlc3SCB3QyLnRlc3SCB3QzLnRlc3SCB3Q0LnRl\nc3SCB3Q1LnRlc3SCB3Q2LnRlc3SCB3Q3LnRlc3SCB3Q4LnRlc3SCB3Q5LnRlc3SC\nCHQxMC50ZXN0ggh0MTEudGVzdIIIdDEyLnRlc3SCCHQxMy50ZXN0ggh0MTQudGVz\ndIIIdDE1LnRlc3SCCHQxNi50ZXN0ggh0MTcudGVzdIIIdDE4LnRlc3SCCHQxOS50\nZXN0ggh0MjAudGVzdIIIdDIxLnRlc3SCCHQyMi50ZXN0ggh0MjMudGVzdIIIdDI0\nLnRlc3SCCHQyNS50ZXN0ggh0MjYudGVzdIIIdDI3LnRlc3SCCHQyOC50ZXN0ggh0\nMjkudGVzdIIIdDMwLnRlc3SCCHQzMS50ZXN0ggh0MzIudGVzdIIIdDMzLnRlc3SC\nCHQzNC50ZXN0ggh0MzUudGVzdIIIdDM2LnRlc3SCCHQzNy50ZXN0ggh0MzgudGVz\ndIIIdDM5LnRlc3SCCHQ0MC50ZXN0ggh0NDEudGVzdIIIdDQyLnRlc3SCCHQ0My50\nZXN0ggh0NDQudGVzdIIIdDQ1LnRlc3SCCHQ0Ni50ZXN0ggh0NDcudGVzdIIIdDQ4\nLnRlc3SCCHQ0OS50ZXN0ggh0NTAudGVzdIIIdDUxLnRlc3SCCHQ1Mi50ZXN0ggh0\nNTMudGVzdIIIdDU0LnRlc3SCCHQ1NS50ZXN0ggh0NTYudGVzdIIIdDU3LnRlc3SC\nCHQ1OC50ZXN0ggh0NTkudGVzdIIIdDYwLnRlc3SCCHQ2MS50ZXN0ggh0NjIudGVz\ndIIIdDYzLnRlc3SCCHQ2NC50ZXN0ggh0NjUudGVzdIIIdDY2LnRlc3SCCHQ2Ny50\nZXN0ggh0NjgudGVzdIIIdDY5LnRlc3SCCHQ3MC50ZXN0ggh0NzEudGVzdIIIdDcy\nLnRlc3SCCHQ3My50ZXN0ggh0NzQudGVzdIIIdDc1LnRlc3SCCHQ3Ni50ZXN0ggh0\nNzcudGVzdIIIdDc4LnRlc3SCCHQ3OS50ZXN0ggh0ODAudGVzdIIIdDgxLnRlc3SC\nCHQ4Mi50ZXN0ggh0ODMudGVzdIIIdDg0LnRlc3SCCHQ4NS50ZXN0ggh0ODYudGVz\ndIIIdDg3LnRlc3SCCHQ4OC50ZXN0ggh0ODkudGVzdIIIdDkwLnRlc3SCCHQ5MS50\nZXN0ggh0OTIudGVzdIIIdDkzLnRlc3SCCHQ5NC50ZXN0ggh0OTUudGVzdIIIdDk2\nLnRlc3SCCHQ5Ny50ZXN0ggh0OTgudGVzdIIIdDk5LnRlc3SCCXQxMDAudGVzdIIJ\ndDEwMS50ZXN0ggl0MTAyLnRlc3SCCXQxMDMudGVzdIIJdDEwNC50ZXN0ggl0MTA1\nLnRlc3SCCXQxMDYudGVzdIIJdDEwNy50ZXN0ggl0MTA4LnRlc3SCCXQxMDkudGVz\ndIIJdDExMC50ZXN0ggl0MTExLnRlc3SCCXQxMTIudGVzdIIJdDExMy50ZXN0ggl0\nMTE0LnRlc3SCCXQxMTUudGVzdIIJdDExNi50ZXN0ggl0MTE3LnRlc3SCCXQxMTgu\ndGVzdIIJdDExOS50ZXN0ggl0MTIwLnRlc3SCCXQxMjEudGVzdIIJdDEyMi50ZXN0\nggl0MTIzLnRlc3SCCXQxMjQudGVzdIIJdDEyNS50ZXN0ggl0MTI2LnRlc3SCCXQx\nMjcudGVzdIIJdDEyOC50ZXN0ggl0MTI5LnRlc3SCCXQxMzAudGVzdIIJdDEzMS50\nZXN0ggl0MTMyLnRlc3SCCXQxMzMudGVzdIIJdDEzNC50ZXN0ggl0MTM1LnRlc3SC\nCXQxMzYudGVzdIIJdDEzNy50ZXN0ggl0MTM4LnRlc3SCCXQxMzkudGVzdIIJdDE0\nMC50ZXN0ggl0MTQxLnRlc3SCCXQxNDIudGVzdIIJdDE0My50ZXN0ggl0MTQ0LnRl\nc3SCCXQxNDUudGVzdIIJdDE0Ni50ZXN0ggl0MTQ3LnRlc3SCCXQxNDgudGVzdIIJ\ndDE0OS50ZXN0ggl0MTUwLnRlc3SCCXQxNTEudGVzdIIJdDE1Mi50ZXN0ggl0MTUz\nLnRlc3SCCXQxNTQudGVzdIIJdDE1NS50ZXN0ggl0MTU2LnRlc3SCCXQxNTcudGVz\ndIIJdDE1OC50ZXN0ggl0MTU5LnRlc3SCCXQxNjAudGVzdIIJdDE2MS50ZXN0ggl0\nMTYyLnRlc3SCCXQxNjMudGVzdIIJdDE2NC50ZXN0ggl0MTY1LnRlc3SCCXQxNjYu\ndGVzdIIJdDE2Ny50ZXN0ggl0MTY4LnRlc3SCCXQxNjkudGVzdIIJdDE3MC50ZXN0\nggl0MTcxLnRlc3SCCXQxNzIudGVzdIIJdDE3My50ZXN0ggl0MTc0LnRlc3SCCXQx\nNzUudGVzdIIJdDE3Ni50ZXN0ggl0MTc3LnRlc3SCCXQxNzgudGVzdIIJdDE3OS50\nZXN0ggl0MTgwLnRlc3SCCXQxODEudGVzdIIJdDE4Mi50ZXN0ggl0MTgzLnRlc3SC\nCXQxODQudGVzdIIJdDE4NS50ZXN0ggl0MTg2LnRlc3SCCXQxODcudGVzdIIJdDE4\nOC50ZXN0ggl0MTg5LnRlc3SCCXQxOTAudGVzdIIJdDE5MS50ZXN0ggl0MTkyLnRl\nc3SCCXQxOTMudGVzdIIJdDE5NC50ZXN0ggl0MTk1LnRlc3SCCXQxOTYudGVzdIIJ\ndDE5Ny50ZXN0ggl0MTk4LnRlc3SCCXQxOTkudGVzdIIJdDIwMC50ZXN0ggl0MjAx\nLnRlc3SCCXQyMDIudGVzdIIJdDIwMy50ZXN0ggl0MjA0LnRlc3SCCXQyMDUudGVz\ndIIJdDIwNi50ZXN0ggl0MjA3LnRlc3SCCXQyMDgudGVzdIIJdDIwOS50ZXN0ggl0\nMjEwLnRlc3SCCXQyMTEudGVzdIIJdDIxMi50ZXN0ggl0MjEzLnRlc3SCCXQyMTQu\ndGVzdIIJdDIxNS50ZXN0ggl0MjE2LnRlc3SCCXQyMTcudGVzdIIJdDIxOC50ZXN0\nggl0MjE5LnRlc3SCCXQyMjAudGVzdIIJdDIyMS50ZXN0ggl0MjIyLnRlc3SCCXQy\nMjMudGVzdIIJdDIyNC50ZXN0ggl0MjI1LnRlc3SCCXQyMjYudGVzdIIJdDIyNy50\nZXN0ggl0MjI4LnRlc3SCCXQyMjkudGVzdIIJdDIzMC50ZXN0ggl0MjMxLnRlc3SC\nCXQyMzIudGVzdIIJdDIzMy50ZXN0ggl0MjM0LnRlc3SCCXQyMzUudGVzdIIJdDIz\nNi50ZXN0ggl0MjM3LnRlc3SCCXQyMzgudGVzdIIJdDIzOS50ZXN0ggl0MjQwLnRl\nc3SCCXQyNDEudGVzdIIJdDI0Mi50ZXN0ggl0MjQzLnRlc3SCCXQyNDQudGVzdIIJ\ndDI0NS50ZXN0ggl0MjQ2LnRlc3SCCXQyNDcudGVzdIIJdDI0OC50ZXN0ggl0MjQ5\nLnRlc3SCCXQyNTAudGVzdIIJdDI1MS50ZXN0ggl0MjUyLnRlc3SCCXQyNTMudGVz\ndIIJdDI1NC50ZXN0ggl0MjU1LnRlc3SCCXQyNTYudGVzdIIJdDI1Ny50ZXN0ggl0\nMjU4LnRlc3SCCXQyNTkudGVzdIIJdDI2MC50ZXN0ggl0MjYxLnRlc3SCCXQyNjIu\ndGVzdIIJdDI2My50ZXN0ggl0MjY0LnRlc3SCCXQyNjUudGVzdIIJdDI2Ni50ZXN0\nggl0MjY3LnRlc3SCCXQyNjgudGVzdIIJdDI2OS50ZXN0ggl0MjcwLnRlc3SCCXQy\nNzEudGVzdIIJdDI3Mi50ZXN0ggl0MjczLnRlc3SCCXQyNzQudGVzdIIJdDI3NS50\nZXN0ggl0Mjc2LnRlc3SCCXQyNzcudGVzdIIJdDI3OC50ZXN0ggl0Mjc5LnRlc3SC\nCXQyODAudGVzdIIJdDI4MS50ZXN0ggl0MjgyLnRlc3SCCXQyODMudGVzdIIJdDI4\nNC50ZXN0ggl0Mjg1LnRlc3SCCXQyODYudGVzdIIJdDI4Ny50ZXN0ggl0Mjg4LnRl\nc3SCCXQyODkudGVzdIIJdDI5MC50ZXN0ggl0MjkxLnRlc3SCCXQyOTIudGVzdIIJ\ndDI5My50ZXN0ggl0Mjk0LnRlc3SCCXQyOTUudGVzdIIJdDI5Ni50ZXN0ggl0Mjk3\nLnRlc3SCCXQyOTgudGVzdIIJdDI5OS50ZXN0ggl0MzAwLnRlc3SCCXQzMDEudGVz\ndIIJdDMwMi50ZXN0ggl0MzAzLnRlc3SCCXQzMDQudGVzdIIJdDMwNS50ZXN0ggl0\nMzA2LnRlc3SCCXQzMDcudGVzdIIJdDMwOC50ZXN0ggl0MzA5LnRlc3SCCXQzMTAu\ndGVzdIIJdDMxMS50ZXN0ggl0MzEyLnRlc3SCCXQzMTMudGVzdIIJdDMxNC50ZXN0\nggl0MzE1LnRlc3SCCXQzMTYudGVzdIIJdDMxNy50ZXN0ggl0MzE4LnRlc3SCCXQz\nMTkudGVzdIIJdDMyMC50ZXN0ggl0MzIxLnRlc3SCCXQzMjIudGVzdIIJdDMyMy50\nZXN0ggl0MzI0LnRlc3SCCXQzMjUudGVzdIIJdDMyNi50ZXN0ggl0MzI3LnRlc3SC\nCXQzMjgudGVzdIIJdDMyOS50ZXN0ggl0MzMwLnRlc3SCCXQzMzEudGVzdIIJdDMz\nMi50ZXN0ggl0MzMzLnRlc3SCCXQzMzQudGVzdIIJdDMzNS50ZXN0ggl0MzM2LnRl\nc3SCCXQzMzcudGVzdIIJdDMzOC50ZXN0ggl0MzM5LnRlc3SCCXQzNDAudGVzdIIJ\ndDM0MS50ZXN0ggl0MzQyLnRlc3SCCXQzNDMudGVzdIIJdDM0NC50ZXN0ggl0MzQ1\nLnRlc3SCCXQzNDYudGVzdIIJdDM0Ny50ZXN0ggl0MzQ4LnRlc3SCCXQzNDkudGVz\ndIIJdDM1MC50ZXN0ggl0MzUxLnRlc3SCCXQzNTIudGVzdIIJdDM1My50ZXN0ggl0\nMzU0LnRlc3SCCXQzNTUudGVzdIIJdDM1Ni50ZXN0ggl0MzU3LnRlc3SCCXQzNTgu\ndGVzdIIJdDM1OS50ZXN0ggl0MzYwLnRlc3SCCXQzNjEudGVzdIIJdDM2Mi50ZXN0\nggl0MzYzLnRlc3SCCXQzNjQudGVzdIIJdDM2NS50ZXN0ggl0MzY2LnRlc3SCCXQz\nNjcudGVzdIIJdDM2OC50ZXN0ggl0MzY5LnRlc3SCCXQzNzAudGVzdIIJdDM3MS50\nZXN0ggl0MzcyLnRlc3SCCXQzNzMudGVzdIIJdDM3NC50ZXN0ggl0Mzc1LnRlc3SC\nCXQzNzYudGVzdIIJdDM3Ny50ZXN0ggl0Mzc4LnRlc3SCCXQzNzkudGVzdIIJdDM4\nMC50ZXN0ggl0MzgxLnRlc3SCCXQzODIudGVzdIIJdDM4My50ZXN0ggl0Mzg0LnRl\nc3SCCXQzODUudGVzdIIJdDM4Ni50ZXN0ggl0Mzg3LnRlc3SCCXQzODgudGVzdIIJ\ndDM4OS50ZXN0ggl0MzkwLnRlc3SCCXQzOTEudGVzdIIJdDM5Mi50ZXN0ggl0Mzkz\nLnRlc3SCCXQzOTQudGVzdIIJdDM5NS50ZXN0ggl0Mzk2LnRlc3SCCXQzOTcudGVz\ndIIJdDM5OC50ZXN0ggl0Mzk5LnRlc3SCCXQ0MDAudGVzdIIJdDQwMS50ZXN0ggl0\nNDAyLnRlc3SCCXQ0MDMudGVzdIIJdDQwNC50ZXN0ggl0NDA1LnRlc3SCCXQ0MDYu\ndGVzdIIJdDQwNy50ZXN0ggl0NDA4LnRlc3SCCXQ0MDkudGVzdIIJdDQxMC50ZXN0\nggl0NDExLnRlc3SCCXQ0MTIudGVzdIIJdDQxMy50ZXN0ggl0NDE0LnRlc3SCCXQ0\nMTUudGVzdIIJdDQxNi50ZXN0ggl0NDE3LnRlc3SCCXQ0MTgudGVzdIIJdDQxOS50\nZXN0ggl0NDIwLnRlc3SCCXQ0MjEudGVzdIIJdDQyMi50ZXN0ggl0NDIzLnRlc3SC\nCXQ0MjQudGVzdIIJdDQyNS50ZXN0ggl0NDI2LnRlc3SCCXQ0MjcudGVzdIIJdDQy\nOC50ZXN0ggl0NDI5LnRlc3SCCXQ0MzAudGVzdIIJdDQzMS50ZXN0ggl0NDMyLnRl\nc3SCCXQ0MzMudGVzdIIJdDQzNC50ZXN0ggl0NDM1LnRlc3SCCXQ0MzYudGVzdIIJ\ndDQzNy50ZXN0ggl0NDM4LnRlc3SCCXQ0MzkudGVzdIIJdDQ0MC50ZXN0ggl0NDQx\nLnRlc3SCCXQ0NDIudGVzdIIJdDQ0My50ZXN0ggl0NDQ0LnRlc3SCCXQ0NDUudGVz\ndIIJdDQ0Ni50ZXN0ggl0NDQ3LnRlc3SCCXQ0NDgudGVzdIIJdDQ0OS50ZXN0ggl0\nNDUwLnRlc3SCCXQ0NTEudGVzdIIJdDQ1Mi50ZXN0ggl0NDUzLnRlc3SCCXQ0NTQu\ndGVzdIIJdDQ1NS50ZXN0ggl0NDU2LnRlc3SCCXQ0NTcudGVzdIIJdDQ1OC50ZXN0\nggl0NDU5LnRlc3SCCXQ0NjAudGVzdIIJdDQ2MS50ZXN0ggl0NDYyLnRlc3SCCXQ0\nNjMudGVzdIIJdDQ2NC50ZXN0ggl0NDY1LnRlc3SCCXQ0NjYudGVzdIIJdDQ2Ny50\nZXN0ggl0NDY4LnRlc3SCCXQ0NjkudGVzdIIJdDQ3MC50ZXN0ggl0NDcxLnRlc3SC\nCXQ0NzIudGVzdIIJdDQ3My50ZXN0ggl0NDc0LnRlc3SCCXQ0NzUudGVzdIIJdDQ3\nNi50ZXN0ggl0NDc3LnRlc3SCCXQ0NzgudGVzdIIJdDQ3OS50ZXN0ggl0NDgwLnRl\nc3SCCXQ0ODEudGVzdIIJdDQ4Mi50ZXN0ggl0NDgzLnRlc3SCCXQ0ODQudGVzdIIJ\ndDQ4NS50ZXN0ggl0NDg2LnRlc3SCCXQ0ODcudGVzdIIJdDQ4OC50ZXN0ggl0NDg5\nLnRlc3SCCXQ0OTAudGVzdIIJdDQ5MS50ZXN0ggl0NDkyLnRlc3SCCXQ0OTMudGVz\ndIIJdDQ5NC50ZXN0ggl0NDk1LnRlc3SCCXQ0OTYudGVzdIIJdDQ5Ny50ZXN0ggl0\nNDk4LnRlc3SCCXQ0OTkudGVzdIIJdDUwMC50ZXN0ggl0NTAxLnRlc3SCCXQ1MDIu\ndGVzdIIJdDUwMy50ZXN0ggl0NTA0LnRlc3SCCXQ1MDUudGVzdIIJdDUwNi50ZXN0\nggl0NTA3LnRlc3SCCXQ1MDgudGVzdIIJdDUwOS50ZXN0ggl0NTEwLnRlc3SCCXQ1\nMTEudGVzdIIJdDUxMi50ZXN0ggl0NTEzLnRlc3SCCXQ1MTQudGVzdIIJdDUxNS50\nZXN0ggl0NTE2LnRlc3SCCXQ1MTcudGVzdIIJdDUxOC50ZXN0ggl0NTE5LnRlc3SC\nCXQ1MjAudGVzdIIJdDUyMS50ZXN0ggl0NTIyLnRlc3SCCXQ1MjMudGVzdIIJdDUy\nNC50ZXN0ggl0NTI1LnRlc3SCCXQ1MjYudGVzdIIJdDUyNy50ZXN0ggl0NTI4LnRl\nc3SCCXQ1MjkudGVzdIIJdDUzMC50ZXN0ggl0NTMxLnRlc3SCCXQ1MzIudGVzdIIJ\ndDUzMy50ZXN0ggl0NTM0LnRlc3SCCXQ1MzUudGVzdIIJdDUzNi50ZXN0ggl0NTM3\nLnRlc3SCCXQ1MzgudGVzdIIJdDUzOS50ZXN0ggl0NTQwLnRlc3SCCXQ1NDEudGVz\ndIIJdDU0Mi50ZXN0ggl0NTQzLnRlc3SCCXQ1NDQudGVzdIIJdDU0NS50ZXN0ggl0\nNTQ2LnRlc3SCCXQ1NDcudGVzdIIJdDU0OC50ZXN0ggl0NTQ5LnRlc3SCCXQ1NTAu\ndGVzdIIJdDU1MS50ZXN0ggl0NTUyLnRlc3SCCXQ1NTMudGVzdIIJdDU1NC50ZXN0\nggl0NTU1LnRlc3SCCXQ1NTYudGVzdIIJdDU1Ny50ZXN0ggl0NTU4LnRlc3SCCXQ1\nNTkudGVzdIIJdDU2MC50ZXN0ggl0NTYxLnRlc3SCCXQ1NjIudGVzdIIJdDU2My50\nZXN0ggl0NTY0LnRlc3SCCXQ1NjUudGVzdIIJdDU2Ni50ZXN0ggl0NTY3LnRlc3SC\nCXQ1NjgudGVzdIIJdDU2OS50ZXN0ggl0NTcwLnRlc3SCCXQ1NzEudGVzdIIJdDU3\nMi50ZXN0ggl0NTczLnRlc3SCCXQ1NzQudGVzdIIJdDU3NS50ZXN0ggl0NTc2LnRl\nc3SCCXQ1NzcudGVzdIIJdDU3OC50ZXN0ggl0NTc5LnRlc3SCCXQ1ODAudGVzdIIJ\ndDU4MS50ZXN0ggl0NTgyLnRlc3SCCXQ1ODMudGVzdIIJdDU4NC50ZXN0ggl0NTg1\nLnRlc3SCCXQ1ODYudGVzdIIJdDU4Ny50ZXN0ggl0NTg4LnRlc3SCCXQ1ODkudGVz\ndIIJdDU5MC50ZXN0ggl0NTkxLnRlc3SCCXQ1OTIudGVzdIIJdDU5My50ZXN0ggl0\nNTk0LnRlc3SCCXQ1OTUudGVzdIIJdDU5Ni50ZXN0ggl0NTk3LnRlc3SCCXQ1OTgu\ndGVzdIIJdDU5OS50ZXN0ggl0NjAwLnRlc3SCCXQ2MDEudGVzdIIJdDYwMi50ZXN0\nggl0NjAzLnRlc3SCCXQ2MDQudGVzdIIJdDYwNS50ZXN0ggl0NjA2LnRlc3SCCXQ2\nMDcudGVzdIIJdDYwOC50ZXN0ggl0NjA5LnRlc3SCCXQ2MTAudGVzdIIJdDYxMS50\nZXN0ggl0NjEyLnRlc3SCCXQ2MTMudGVzdIIJdDYxNC50ZXN0ggl0NjE1LnRlc3SC\nCXQ2MTYudGVzdIIJdDYxNy50ZXN0ggl0NjE4LnRlc3SCCXQ2MTkudGVzdIIJdDYy\nMC50ZXN0ggl0NjIxLnRlc3SCCXQ2MjIudGVzdIIJdDYyMy50ZXN0ggl0NjI0LnRl\nc3SCCXQ2MjUudGVzdIIJdDYyNi50ZXN0ggl0NjI3LnRlc3SCCXQ2MjgudGVzdIIJ\ndDYyOS50ZXN0ggl0NjMwLnRlc3SCCXQ2MzEudGVzdIIJdDYzMi50ZXN0ggl0NjMz\nLnRlc3SCCXQ2MzQudGVzdIIJdDYzNS50ZXN0ggl0NjM2LnRlc3SCCXQ2MzcudGVz\ndIIJdDYzOC50ZXN0ggl0NjM5LnRlc3SCCXQ2NDAudGVzdIIJdDY0MS50ZXN0ggl0\nNjQyLnRlc3SCCXQ2NDMudGVzdIIJdDY0NC50ZXN0ggl0NjQ1LnRlc3SCCXQ2NDYu\ndGVzdIIJdDY0Ny50ZXN0ggl0NjQ4LnRlc3SCCXQ2NDkudGVzdIIJdDY1MC50ZXN0\nggl0NjUxLnRlc3SCCXQ2NTIudGVzdIIJdDY1My50ZXN0ggl0NjU0LnRlc3SCCXQ2\nNTUudGVzdIIJdDY1Ni50ZXN0ggl0NjU3LnRlc3SCCXQ2NTgudGVzdIIJdDY1OS50\nZXN0ggl0NjYwLnRlc3SCCXQ2NjEudGVzdIIJdDY2Mi50ZXN0ggl0NjYzLnRlc3SC\nCXQ2NjQudGVzdIIJdDY2NS50ZXN0ggl0NjY2LnRlc3SCCXQ2NjcudGVzdIIJdDY2\nOC50ZXN0ggl0NjY5LnRlc3SCCXQ2NzAudGVzdIIJdDY3MS50ZXN0ggl0NjcyLnRl\nc3SCCXQ2NzMudGVzdIIJdDY3NC50ZXN0ggl0Njc1LnRlc3SCCXQ2NzYudGVzdIIJ\ndDY3Ny50ZXN0ggl0Njc4LnRlc3SCCXQ2NzkudGVzdIIJdDY4MC50ZXN0ggl0Njgx\nLnRlc3SCCXQ2ODIudGVzdIIJdDY4My50ZXN0ggl0Njg0LnRlc3SCCXQ2ODUudGVz\ndIIJdDY4Ni50ZXN0ggl0Njg3LnRlc3SCCXQ2ODgudGVzdIIJdDY4OS50ZXN0ggl0\nNjkwLnRlc3SCCXQ2OTEudGVzdIIJdDY5Mi50ZXN0ggl0NjkzLnRlc3SCCXQ2OTQu\ndGVzdIIJdDY5NS50ZXN0ggl0Njk2LnRlc3SCCXQ2OTcudGVzdIIJdDY5OC50ZXN0\nggl0Njk5LnRlc3SCCXQ3MDAudGVzdIIJdDcwMS50ZXN0ggl0NzAyLnRlc3SCCXQ3\nMDMudGVzdIIJdDcwNC50ZXN0ggl0NzA1LnRlc3SCCXQ3MDYudGVzdIIJdDcwNy50\nZXN0ggl0NzA4LnRlc3SCCXQ3MDkudGVzdIIJdDcxMC50ZXN0ggl0NzExLnRlc3SC\nCXQ3MTIudGVzdIIJdDcxMy50ZXN0ggl0NzE0LnRlc3SCCXQ3MTUudGVzdIIJdDcx\nNi50ZXN0ggl0NzE3LnRlc3SCCXQ3MTgudGVzdIIJdDcxOS50ZXN0ggl0NzIwLnRl\nc3SCCXQ3MjEudGVzdIIJdDcyMi50ZXN0ggl0NzIzLnRlc3SCCXQ3MjQudGVzdIIJ\ndDcyNS50ZXN0ggl0NzI2LnRlc3SCCXQ3MjcudGVzdIIJdDcyOC50ZXN0ggl0NzI5\nLnRlc3SCCXQ3MzAudGVzdIIJdDczMS50ZXN0ggl0NzMyLnRlc3SCCXQ3MzMudGVz\ndIIJdDczNC50ZXN0ggl0NzM1LnRlc3SCCXQ3MzYudGVzdIIJdDczNy50ZXN0ggl0\nNzM4LnRlc3SCCXQ3MzkudGVzdIIJdDc0MC50ZXN0ggl0NzQxLnRlc3SCCXQ3NDIu\ndGVzdIIJdDc0My50ZXN0ggl0NzQ0LnRlc3SCCXQ3NDUudGVzdIIJdDc0Ni50ZXN0\nggl0NzQ3LnRlc3SCCXQ3NDgudGVzdIIJdDc0OS50ZXN0ggl0NzUwLnRlc3SCCXQ3\nNTEudGVzdIIJdDc1Mi50ZXN0ggl0NzUzLnRlc3SCCXQ3NTQudGVzdIIJdDc1NS50\nZXN0ggl0NzU2LnRlc3SCCXQ3NTcudGVzdIIJdDc1OC50ZXN0ggl0NzU5LnRlc3SC\nCXQ3NjAudGVzdIIJdDc2MS50ZXN0ggl0NzYyLnRlc3SCCXQ3NjMudGVzdIIJdDc2\nNC50ZXN0ggl0NzY1LnRlc3SCCXQ3NjYudGVzdIIJdDc2Ny50ZXN0ggl0NzY4LnRl\nc3SCCXQ3NjkudGVzdIIJdDc3MC50ZXN0ggl0NzcxLnRlc3SCCXQ3NzIudGVzdIIJ\ndDc3My50ZXN0ggl0Nzc0LnRlc3SCCXQ3NzUudGVzdIIJdDc3Ni50ZXN0ggl0Nzc3\nLnRlc3SCCXQ3NzgudGVzdIIJdDc3OS50ZXN0ggl0NzgwLnRlc3SCCXQ3ODEudGVz\ndIIJdDc4Mi50ZXN0ggl0NzgzLnRlc3SCCXQ3ODQudGVzdIIJdDc4NS50ZXN0ggl0\nNzg2LnRlc3SCCXQ3ODcudGVzdIIJdDc4OC50ZXN0ggl0Nzg5LnRlc3SCCXQ3OTAu\ndGVzdIIJdDc5MS50ZXN0ggl0NzkyLnRlc3SCCXQ3OTMudGVzdIIJdDc5NC50ZXN0\nggl0Nzk1LnRlc3SCCXQ3OTYudGVzdIIJdDc5Ny50ZXN0ggl0Nzk4LnRlc3SCCXQ3\nOTkudGVzdIIJdDgwMC50ZXN0ggl0ODAxLnRlc3SCCXQ4MDIudGVzdIIJdDgwMy50\nZXN0ggl0ODA0LnRlc3SCCXQ4MDUudGVzdIIJdDgwNi50ZXN0ggl0ODA3LnRlc3SC\nCXQ4MDgudGVzdIIJdDgwOS50ZXN0ggl0ODEwLnRlc3SCCXQ4MTEudGVzdIIJdDgx\nMi50ZXN0ggl0ODEzLnRlc3SCCXQ4MTQudGVzdIIJdDgxNS50ZXN0ggl0ODE2LnRl\nc3SCCXQ4MTcudGVzdIIJdDgxOC50ZXN0ggl0ODE5LnRlc3SCCXQ4MjAudGVzdIIJ\ndDgyMS50ZXN0ggl0ODIyLnRlc3SCCXQ4MjMudGVzdIIJdDgyNC50ZXN0ggl0ODI1\nLnRlc3SCCXQ4MjYudGVzdIIJdDgyNy50ZXN0ggl0ODI4LnRlc3SCCXQ4MjkudGVz\ndIIJdDgzMC50ZXN0ggl0ODMxLnRlc3SCCXQ4MzIudGVzdIIJdDgzMy50ZXN0ggl0\nODM0LnRlc3SCCXQ4MzUudGVzdIIJdDgzNi50ZXN0ggl0ODM3LnRlc3SCCXQ4Mzgu\ndGVzdIIJdDgzOS50ZXN0ggl0ODQwLnRlc3SCCXQ4NDEudGVzdIIJdDg0Mi50ZXN0\nggl0ODQzLnRlc3SCCXQ4NDQudGVzdIIJdDg0NS50ZXN0ggl0ODQ2LnRlc3SCCXQ4\nNDcudGVzdIIJdDg0OC50ZXN0ggl0ODQ5LnRlc3SCCXQ4NTAudGVzdIIJdDg1MS50\nZXN0ggl0ODUyLnRlc3SCCXQ4NTMudGVzdIIJdDg1NC50ZXN0ggl0ODU1LnRlc3SC\nCXQ4NTYudGVzdIIJdDg1Ny50ZXN0ggl0ODU4LnRlc3SCCXQ4NTkudGVzdIIJdDg2\nMC50ZXN0ggl0ODYxLnRlc3SCCXQ4NjIudGVzdIIJdDg2My50ZXN0ggl0ODY0LnRl\nc3SCCXQ4NjUudGVzdIIJdDg2Ni50ZXN0ggl0ODY3LnRlc3SCCXQ4NjgudGVzdIIJ\ndDg2OS50ZXN0ggl0ODcwLnRlc3SCCXQ4NzEudGVzdIIJdDg3Mi50ZXN0ggl0ODcz\nLnRlc3SCCXQ4NzQudGVzdIIJdDg3NS50ZXN0ggl0ODc2LnRlc3SCCXQ4NzcudGVz\ndIIJdDg3OC50ZXN0ggl0ODc5LnRlc3SCCXQ4ODAudGVzdIIJdDg4MS50ZXN0ggl0\nODgyLnRlc3SCCXQ4ODMudGVzdIIJdDg4NC50ZXN0ggl0ODg1LnRlc3SCCXQ4ODYu\ndGVzdIIJdDg4Ny50ZXN0ggl0ODg4LnRlc3SCCXQ4ODkudGVzdIIJdDg5MC50ZXN0\nggl0ODkxLnRlc3SCCXQ4OTIudGVzdIIJdDg5My50ZXN0ggl0ODk0LnRlc3SCCXQ4\nOTUudGVzdIIJdDg5Ni50ZXN0ggl0ODk3LnRlc3SCCXQ4OTgudGVzdIIJdDg5OS50\nZXN0ggl0OTAwLnRlc3SCCXQ5MDEudGVzdIIJdDkwMi50ZXN0ggl0OTAzLnRlc3SC\nCXQ5MDQudGVzdIIJdDkwNS50ZXN0ggl0OTA2LnRlc3SCCXQ5MDcudGVzdIIJdDkw\nOC50ZXN0ggl0OTA5LnRlc3SCCXQ5MTAudGVzdIIJdDkxMS50ZXN0ggl0OTEyLnRl\nc3SCCXQ5MTMudGVzdIIJdDkxNC50ZXN0ggl0OTE1LnRlc3SCCXQ5MTYudGVzdIIJ\ndDkxNy50ZXN0ggl0OTE4LnRlc3SCCXQ5MTkudGVzdIIJdDkyMC50ZXN0ggl0OTIx\nLnRlc3SCCXQ5MjIudGVzdIIJdDkyMy50ZXN0ggl0OTI0LnRlc3SCCXQ5MjUudGVz\ndIIJdDkyNi50ZXN0ggl0OTI3LnRlc3SCCXQ5MjgudGVzdIIJdDkyOS50ZXN0ggl0\nOTMwLnRlc3SCCXQ5MzEudGVzdIIJdDkzMi50ZXN0ggl0OTMzLnRlc3SCCXQ5MzQu\ndGVzdIIJdDkzNS50ZXN0ggl0OTM2LnRlc3SCCXQ5MzcudGVzdIIJdDkzOC50ZXN0\nggl0OTM5LnRlc3SCCXQ5NDAudGVzdIIJdDk0MS50ZXN0ggl0OTQyLnRlc3SCCXQ5\nNDMudGVzdIIJdDk0NC50ZXN0ggl0OTQ1LnRlc3SCCXQ5NDYudGVzdIIJdDk0Ny50\nZXN0ggl0OTQ4LnRlc3SCCXQ5NDkudGVzdIIJdDk1MC50ZXN0ggl0OTUxLnRlc3SC\nCXQ5NTIudGVzdIIJdDk1My50ZXN0ggl0OTU0LnRlc3SCCXQ5NTUudGVzdIIJdDk1\nNi50ZXN0ggl0OTU3LnRlc3SCCXQ5NTgudGVzdIIJdDk1OS50ZXN0ggl0OTYwLnRl\nc3SCCXQ5NjEudGVzdIIJdDk2Mi50ZXN0ggl0OTYzLnRlc3SCCXQ5NjQudGVzdIIJ\ndDk2NS50ZXN0ggl0OTY2LnRlc3SCCXQ5NjcudGVzdIIJdDk2OC50ZXN0ggl0OTY5\nLnRlc3SCCXQ5NzAudGVzdIIJdDk3MS50ZXN0ggl0OTcyLnRlc3SCCXQ5NzMudGVz\ndIIJdDk3NC50ZXN0ggl0OTc1LnRlc3SCCXQ5NzYudGVzdIIJdDk3Ny50ZXN0ggl0\nOTc4LnRlc3SCCXQ5NzkudGVzdIIJdDk4MC50ZXN0ggl0OTgxLnRlc3SCCXQ5ODIu\ndGVzdIIJdDk4My50ZXN0ggl0OTg0LnRlc3SCCXQ5ODUudGVzdIIJdDk4Ni50ZXN0\nggl0OTg3LnRlc3SCCXQ5ODgudGVzdIIJdDk4OS50ZXN0ggl0OTkwLnRlc3SCCXQ5\nOTEudGVzdIIJdDk5Mi50ZXN0ggl0OTkzLnRlc3SCCXQ5OTQudGVzdIIJdDk5NS50\nZXN0ggl0OTk2LnRlc3SCCXQ5OTcudGVzdIIJdDk5OC50ZXN0ggl0OTk5LnRlc3SC\nCnQxMDAwLnRlc3SCCnQxMDAxLnRlc3SCCnQxMDAyLnRlc3SCCnQxMDAzLnRlc3SC\nCnQxMDA0LnRlc3SCCnQxMDA1LnRlc3SCCnQxMDA2LnRlc3SCCnQxMDA3LnRlc3SC\nCnQxMDA4LnRlc3SCCnQxMDA5LnRlc3SCCnQxMDEwLnRlc3SCCnQxMDExLnRlc3SC\nCnQxMDEyLnRlc3SCCnQxMDEzLnRlc3SCCnQxMDE0LnRlc3SCCnQxMDE1LnRlc3SC\nCnQxMDE2LnRlc3SCCnQxMDE3LnRlc3SCCnQxMDE4LnRlc3SCCnQxMDE5LnRlc3SC\nCnQxMDIwLnRlc3SCCnQxMDIxLnRlc3SCCnQxMDIyLnRlc3SCCnQxMDIzLnRlc3SC\nCnQxMDI0LnRlc3SCCnQxMDI1LnRlc3SCCnQxMDI2LnRlc3SCCnQxMDI3LnRlc3SC\nCnQxMDI4LnRlc3SCCnQxMDI5LnRlc3SCCnQxMDMwLnRlc3SCCnQxMDMxLnRlc3SC\nCnQxMDMyLnRlc3SCCnQxMDMzLnRlc3SCCnQxMDM0LnRlc3SCCnQxMDM1LnRlc3SC\nCnQxMDM2LnRlc3SCCnQxMDM3LnRlc3SCCnQxMDM4LnRlc3SCCnQxMDM5LnRlc3SC\nCnQxMDQwLnRlc3SCCnQxMDQxLnRlc3SCCnQxMDQyLnRlc3SCCnQxMDQzLnRlc3SC\nCnQxMDQ0LnRlc3SCCnQxMDQ1LnRlc3SCCnQxMDQ2LnRlc3SCCnQxMDQ3LnRlc3SC\nCnQxMDQ4LnRlc3SCCnQxMDQ5LnRlc3SCCnQxMDUwLnRlc3SCCnQxMDUxLnRlc3SC\nCnQxMDUyLnRlc3SCCnQxMDUzLnRlc3SCCnQxMDU0LnRlc3SCCnQxMDU1LnRlc3SC\nCnQxMDU2LnRlc3SCCnQxMDU3LnRlc3SCCnQxMDU4LnRlc3SCCnQxMDU5LnRlc3SC\nCnQxMDYwLnRlc3SCCnQxMDYxLnRlc3SCCnQxMDYyLnRlc3SCCnQxMDYzLnRlc3SC\nCnQxMDY0LnRlc3SCCnQxMDY1LnRlc3SCCnQxMDY2LnRlc3SCCnQxMDY3LnRlc3SC\nCnQxMDY4LnRlc3SCCnQxMDY5LnRlc3SCCnQxMDcwLnRlc3SCCnQxMDcxLnRlc3SC\nCnQxMDcyLnRlc3SCCnQxMDczLnRlc3SCCnQxMDc0LnRlc3SCCnQxMDc1LnRlc3SC\nCnQxMDc2LnRlc3SCCnQxMDc3LnRlc3SCCnQxMDc4LnRlc3SCCnQxMDc5LnRlc3SC\nCnQxMDgwLnRlc3SCCnQxMDgxLnRlc3SCCnQxMDgyLnRlc3SCCnQxMDgzLnRlc3SC\nCnQxMDg0LnRlc3SCCnQxMDg1LnRlc3SCCnQxMDg2LnRlc3SCCnQxMDg3LnRlc3SC\nCnQxMDg4LnRlc3SCCnQxMDg5LnRlc3SCCnQxMDkwLnRlc3SCCnQxMDkxLnRlc3SC\nCnQxMDkyLnRlc3SCCnQxMDkzLnRlc3SCCnQxMDk0LnRlc3SCCnQxMDk1LnRlc3SC\nCnQxMDk2LnRlc3SCCnQxMDk3LnRlc3SCCnQxMDk4LnRlc3SCCnQxMDk5LnRlc3SC\nCnQxMTAwLnRlc3SCCnQxMTAxLnRlc3SCCnQxMTAyLnRlc3SCCnQxMTAzLnRlc3SC\nCnQxMTA0LnRlc3SCCnQxMTA1LnRlc3SCCnQxMTA2LnRlc3SCCnQxMTA3LnRlc3SC\nCnQxMTA4LnRlc3SCCnQxMTA5LnRlc3SCCnQxMTEwLnRlc3SCCnQxMTExLnRlc3SC\nCnQxMTEyLnRlc3SCCnQxMTEzLnRlc3SCCnQxMTE0LnRlc3SCCnQxMTE1LnRlc3SC\nCnQxMTE2LnRlc3SCCnQxMTE3LnRlc3SCCnQxMTE4LnRlc3SCCnQxMTE5LnRlc3SC\nCnQxMTIwLnRlc3SCCnQxMTIxLnRlc3SCCnQxMTIyLnRlc3SCCnQxMTIzLnRlc3SC\nCnQxMTI0LnRlc3SCCnQxMTI1LnRlc3SCCnQxMTI2LnRlc3SCCnQxMTI3LnRlc3SC\nCnQxMTI4LnRlc3SCCnQxMTI5LnRlc3SCCnQxMTMwLnRlc3SCCnQxMTMxLnRlc3SC\nCnQxMTMyLnRlc3SCCnQxMTMzLnRlc3SCCnQxMTM0LnRlc3SCCnQxMTM1LnRlc3SC\nCnQxMTM2LnRlc3SCCnQxMTM3LnRlc3SCCnQxMTM4LnRlc3SCCnQxMTM5LnRlc3SC\nCnQxMTQwLnRlc3SCCnQxMTQxLnRlc3SCCnQxMTQyLnRlc3SCCnQxMTQzLnRlc3SC\nCnQxMTQ0LnRlc3SCCnQxMTQ1LnRlc3SCCnQxMTQ2LnRlc3SCCnQxMTQ3LnRlc3SC\nCnQxMTQ4LnRlc3SCCnQxMTQ5LnRlc3SCCnQxMTUwLnRlc3SCCnQxMTUxLnRlc3SC\nCnQxMTUyLnRlc3SCCnQxMTUzLnRlc3SCCnQxMTU0LnRlc3SCCnQxMTU1LnRlc3SC\nCnQxMTU2LnRlc3SCCnQxMTU3LnRlc3SCCnQxMTU4LnRlc3SCCnQxMTU5LnRlc3SC\nCnQxMTYwLnRlc3SCCnQxMTYxLnRlc3SCCnQxMTYyLnRlc3SCCnQxMTYzLnRlc3SC\nCnQxMTY0LnRlc3SCCnQxMTY1LnRlc3SCCnQxMTY2LnRlc3SCCnQxMTY3LnRlc3SC\nCnQxMTY4LnRlc3SCCnQxMTY5LnRlc3SCCnQxMTcwLnRlc3SCCnQxMTcxLnRlc3SC\nCnQxMTcyLnRlc3SCCnQxMTczLnRlc3SCCnQxMTc0LnRlc3SCCnQxMTc1LnRlc3SC\nCnQxMTc2LnRlc3SCCnQxMTc3LnRlc3SCCnQxMTc4LnRlc3SCCnQxMTc5LnRlc3SC\nCnQxMTgwLnRlc3SCCnQxMTgxLnRlc3SCCnQxMTgyLnRlc3SCCnQxMTgzLnRlc3SC\nCnQxMTg0LnRlc3SCCnQxMTg1LnRlc3SCCnQxMTg2LnRlc3SCCnQxMTg3LnRlc3SC\nCnQxMTg4LnRlc3SCCnQxMTg5LnRlc3SCCnQxMTkwLnRlc3SCCnQxMTkxLnRlc3SC\nCnQxMTkyLnRlc3SCCnQxMTkzLnRlc3SCCnQxMTk0LnRlc3SCCnQxMTk1LnRlc3SC\nCnQxMTk2LnRlc3SCCnQxMTk3LnRlc3SCCnQxMTk4LnRlc3SCCnQxMTk5LnRlc3SC\nCnQxMjAwLnRlc3SCCnQxMjAxLnRlc3SCCnQxMjAyLnRlc3SCCnQxMjAzLnRlc3SC\nCnQxMjA0LnRlc3SCCnQxMjA1LnRlc3SCCnQxMjA2LnRlc3SCCnQxMjA3LnRlc3SC\nCnQxMjA4LnRlc3SCCnQxMjA5LnRlc3SCCnQxMjEwLnRlc3SCCnQxMjExLnRlc3SC\nCnQxMjEyLnRlc3SCCnQxMjEzLnRlc3SCCnQxMjE0LnRlc3SCCnQxMjE1LnRlc3SC\nCnQxMjE2LnRlc3SCCnQxMjE3LnRlc3SCCnQxMjE4LnRlc3SCCnQxMjE5LnRlc3SC\nCnQxMjIwLnRlc3SCCnQxMjIxLnRlc3SCCnQxMjIyLnRlc3SCCnQxMjIzLnRlc3SC\nCnQxMjI0LnRlc3SCCnQxMjI1LnRlc3SCCnQxMjI2LnRlc3SCCnQxMjI3LnRlc3SC\nCnQxMjI4LnRlc3SCCnQxMjI5LnRlc3SCCnQxMjMwLnRlc3SCCnQxMjMxLnRlc3SC\nCnQxMjMyLnRlc3SCCnQxMjMzLnRlc3SCCnQxMjM0LnRlc3SCCnQxMjM1LnRlc3SC\nCnQxMjM2LnRlc3SCCnQxMjM3LnRlc3SCCnQxMjM4LnRlc3SCCnQxMjM5LnRlc3SC\nCnQxMjQwLnRlc3SCCnQxMjQxLnRlc3SCCnQxMjQyLnRlc3SCCnQxMjQzLnRlc3SC\nCnQxMjQ0LnRlc3SCCnQxMjQ1LnRlc3SCCnQxMjQ2LnRlc3SCCnQxMjQ3LnRlc3SC\nCnQxMjQ4LnRlc3SCCnQxMjQ5LnRlc3SCCnQxMjUwLnRlc3SCCnQxMjUxLnRlc3SC\nCnQxMjUyLnRlc3SCCnQxMjUzLnRlc3SCCnQxMjU0LnRlc3SCCnQxMjU1LnRlc3SC\nCnQxMjU2LnRlc3SCCnQxMjU3LnRlc3SCCnQxMjU4LnRlc3SCCnQxMjU5LnRlc3SC\nCnQxMjYwLnRlc3SCCnQxMjYxLnRlc3SCCnQxMjYyLnRlc3SCCnQxMjYzLnRlc3SC\nCnQxMjY0LnRlc3SCCnQxMjY1LnRlc3SCCnQxMjY2LnRlc3SCCnQxMjY3LnRlc3SC\nCnQxMjY4LnRlc3SCCnQxMjY5LnRlc3SCCnQxMjcwLnRlc3SCCnQxMjcxLnRlc3SC\nCnQxMjcyLnRlc3SCCnQxMjczLnRlc3SCCnQxMjc0LnRlc3SCCnQxMjc1LnRlc3SC\nCnQxMjc2LnRlc3SCCnQxMjc3LnRlc3SCCnQxMjc4LnRlc3SCCnQxMjc5LnRlc3SC\nCnQxMjgwLnRlc3SCCnQxMjgxLnRlc3SCCnQxMjgyLnRlc3SCCnQxMjgzLnRlc3SC\nCnQxMjg0LnRlc3SCCnQxMjg1LnRlc3SCCnQxMjg2LnRlc3SCCnQxMjg3LnRlc3SC\nCnQxMjg4LnRlc3SCCnQxMjg5LnRlc3SCCnQxMjkwLnRlc3SCCnQxMjkxLnRlc3SC\nCnQxMjkyLnRlc3SCCnQxMjkzLnRlc3SCCnQxMjk0LnRlc3SCCnQxMjk1LnRlc3SC\nCnQxMjk2LnRlc3SCCnQxMjk3LnRlc3SCCnQxMjk4LnRlc3SCCnQxMjk5LnRlc3SC\nCnQxMzAwLnRlc3SCCnQxMzAxLnRlc3SCCnQxMzAyLnRlc3SCCnQxMzAzLnRlc3SC\nCnQxMzA0LnRlc3SCCnQxMzA1LnRlc3SCCnQxMzA2LnRlc3SCCnQxMzA3LnRlc3SC\nCnQxMzA4LnRlc3SCCnQxMzA5LnRlc3SCCnQxMzEwLnRlc3SCCnQxMzExLnRlc3SC\nCnQxMzEyLnRlc3SCCnQxMzEzLnRlc3SCCnQxMzE0LnRlc3SCCnQxMzE1LnRlc3SC\nCnQxMzE2LnRlc3SCCnQxMzE3LnRlc3SCCnQxMzE4LnRlc3SCCnQxMzE5LnRlc3SC\nCnQxMzIwLnRlc3SCCnQxMzIxLnRlc3SCCnQxMzIyLnRlc3SCCnQxMzIzLnRlc3SC\nCnQxMzI0LnRlc3SCCnQxMzI1LnRlc3SCCnQxMzI2LnRlc3SCCnQxMzI3LnRlc3SC\nCnQxMzI4LnRlc3SCCnQxMzI5LnRlc3SCCnQxMzMwLnRlc3SCCnQxMzMxLnRlc3SC\nCnQxMzMyLnRlc3SCCnQxMzMzLnRlc3SCCnQxMzM0LnRlc3SCCnQxMzM1LnRlc3SC\nCnQxMzM2LnRlc3SCCnQxMzM3LnRlc3SCCnQxMzM4LnRlc3SCCnQxMzM5LnRlc3SC\nCnQxMzQwLnRlc3SCCnQxMzQxLnRlc3SCCnQxMzQyLnRlc3SCCnQxMzQzLnRlc3SC\nCnQxMzQ0LnRlc3SCCnQxMzQ1LnRlc3SCCnQxMzQ2LnRlc3SCCnQxMzQ3LnRlc3SC\nCnQxMzQ4LnRlc3SCCnQxMzQ5LnRlc3SCCnQxMzUwLnRlc3SCCnQxMzUxLnRlc3SC\nCnQxMzUyLnRlc3SCCnQxMzUzLnRlc3SCCnQxMzU0LnRlc3SCCnQxMzU1LnRlc3SC\nCnQxMzU2LnRlc3SCCnQxMzU3LnRlc3SCCnQxMzU4LnRlc3SCCnQxMzU5LnRlc3SC\nCnQxMzYwLnRlc3SCCnQxMzYxLnRlc3SCCnQxMzYyLnRlc3SCCnQxMzYzLnRlc3SC\nCnQxMzY0LnRlc3SCCnQxMzY1LnRlc3SCCnQxMzY2LnRlc3SCCnQxMzY3LnRlc3SC\nCnQxMzY4LnRlc3SCCnQxMzY5LnRlc3SCCnQxMzcwLnRlc3SCCnQxMzcxLnRlc3SC\nCnQxMzcyLnRlc3SCCnQxMzczLnRlc3SCCnQxMzc0LnRlc3SCCnQxMzc1LnRlc3SC\nCnQxMzc2LnRlc3SCCnQxMzc3LnRlc3SCCnQxMzc4LnRlc3SCCnQxMzc5LnRlc3SC\nCnQxMzgwLnRlc3SCCnQxMzgxLnRlc3SCCnQxMzgyLnRlc3SCCnQxMzgzLnRlc3SC\nCnQxMzg0LnRlc3SCCnQxMzg1LnRlc3SCCnQxMzg2LnRlc3SCCnQxMzg3LnRlc3SC\nCnQxMzg4LnRlc3SCCnQxMzg5LnRlc3SCCnQxMzkwLnRlc3SCCnQxMzkxLnRlc3SC\nCnQxMzkyLnRlc3SCCnQxMzkzLnRlc3SCCnQxMzk0LnRlc3SCCnQxMzk1LnRlc3SC\nCnQxMzk2LnRlc3SCCnQxMzk3LnRlc3SCCnQxMzk4LnRlc3SCCnQxMzk5LnRlc3SC\nCnQxNDAwLnRlc3SCCnQxNDAxLnRlc3SCCnQxNDAyLnRlc3SCCnQxNDAzLnRlc3SC\nCnQxNDA0LnRlc3SCCnQxNDA1LnRlc3SCCnQxNDA2LnRlc3SCCnQxNDA3LnRlc3SC\nCnQxNDA4LnRlc3SCCnQxNDA5LnRlc3SCCnQxNDEwLnRlc3SCCnQxNDExLnRlc3SC\nCnQxNDEyLnRlc3SCCnQxNDEzLnRlc3SCCnQxNDE0LnRlc3SCCnQxNDE1LnRlc3SC\nCnQxNDE2LnRlc3SCCnQxNDE3LnRlc3SCCnQxNDE4LnRlc3SCCnQxNDE5LnRlc3SC\nCnQxNDIwLnRlc3SCCnQxNDIxLnRlc3SCCnQxNDIyLnRlc3SCCnQxNDIzLnRlc3SC\nCnQxNDI0LnRlc3SCCnQxNDI1LnRlc3SCCnQxNDI2LnRlc3SCCnQxNDI3LnRlc3SC\nCnQxNDI4LnRlc3SCCnQxNDI5LnRlc3SCCnQxNDMwLnRlc3SCCnQxNDMxLnRlc3SC\nCnQxNDMyLnRlc3SCCnQxNDMzLnRlc3SCCnQxNDM0LnRlc3SCCnQxNDM1LnRlc3SC\nCnQxNDM2LnRlc3SCCnQxNDM3LnRlc3SCCnQxNDM4LnRlc3SCCnQxNDM5LnRlc3SC\nCnQxNDQwLnRlc3SCCnQxNDQxLnRlc3SCCnQxNDQyLnRlc3SCCnQxNDQzLnRlc3SC\nCnQxNDQ0LnRlc3SCCnQxNDQ1LnRlc3SCCnQxNDQ2LnRlc3SCCnQxNDQ3LnRlc3SC\nCnQxNDQ4LnRlc3SCCnQxNDQ5LnRlc3SCCnQxNDUwLnRlc3SCCnQxNDUxLnRlc3SC\nCnQxNDUyLnRlc3SCCnQxNDUzLnRlc3SCCnQxNDU0LnRlc3SCCnQxNDU1LnRlc3SC\nCnQxNDU2LnRlc3SCCnQxNDU3LnRlc3SCCnQxNDU4LnRlc3SCCnQxNDU5LnRlc3SC\nCnQxNDYwLnRlc3SCCnQxNDYxLnRlc3SCCnQxNDYyLnRlc3SCCnQxNDYzLnRlc3SC\nCnQxNDY0LnRlc3SCCnQxNDY1LnRlc3SCCnQxNDY2LnRlc3SCCnQxNDY3LnRlc3SC\nCnQxNDY4LnRlc3SCCnQxNDY5LnRlc3SCCnQxNDcwLnRlc3SCCnQxNDcxLnRlc3SC\nCnQxNDcyLnRlc3SCCnQxNDczLnRlc3SCCnQxNDc0LnRlc3SCCnQxNDc1LnRlc3SC\nCnQxNDc2LnRlc3SCCnQxNDc3LnRlc3SCCnQxNDc4LnRlc3SCCnQxNDc5LnRlc3SC\nCnQxNDgwLnRlc3SCCnQxNDgxLnRlc3SCCnQxNDgyLnRlc3SCCnQxNDgzLnRlc3SC\nCnQxNDg0LnRlc3SCCnQxNDg1LnRlc3SCCnQxNDg2LnRlc3SCCnQxNDg3LnRlc3SC\nCnQxNDg4LnRlc3SCCnQxNDg5LnRlc3SCCnQxNDkwLnRlc3SCCnQxNDkxLnRlc3SC\nCnQxNDkyLnRlc3SCCnQxNDkzLnRlc3SCCnQxNDk0LnRlc3SCCnQxNDk1LnRlc3SC\nCnQxNDk2LnRlc3SCCnQxNDk3LnRlc3SCCnQxNDk4LnRlc3SCCnQxNDk5LnRlc3SC\nCnQxNTAwLnRlc3SCCnQxNTAxLnRlc3SCCnQxNTAyLnRlc3SCCnQxNTAzLnRlc3SC\nCnQxNTA0LnRlc3SCCnQxNTA1LnRlc3SCCnQxNTA2LnRlc3SCCnQxNTA3LnRlc3SC\nCnQxNTA4LnRlc3SCCnQxNTA5LnRlc3SCCnQxNTEwLnRlc3SCCnQxNTExLnRlc3SC\nCnQxNTEyLnRlc3SCCnQxNTEzLnRlc3SCCnQxNTE0LnRlc3SCCnQxNTE1LnRlc3SC\nCnQxNTE2LnRlc3SCCnQxNTE3LnRlc3SCCnQxNTE4LnRlc3SCCnQxNTE5LnRlc3SC\nCnQxNTIwLnRlc3SCCnQxNTIxLnRlc3SCCnQxNTIyLnRlc3SCCnQxNTIzLnRlc3SC\nCnQxNTI0LnRlc3SCCnQxNTI1LnRlc3SCCnQxNTI2LnRlc3SCCnQxNTI3LnRlc3SC\nCnQxNTI4LnRlc3SCCnQxNTI5LnRlc3SCCnQxNTMwLnRlc3SCCnQxNTMxLnRlc3SC\nCnQxNTMyLnRlc3SCCnQxNTMzLnRlc3SCCnQxNTM0LnRlc3SCCnQxNTM1LnRlc3SC\nCnQxNTM2LnRlc3SCCnQxNTM3LnRlc3SCCnQxNTM4LnRlc3SCCnQxNTM5LnRlc3SC\nCnQxNTQwLnRlc3SCCnQxNTQxLnRlc3SCCnQxNTQyLnRlc3SCCnQxNTQzLnRlc3SC\nCnQxNTQ0LnRlc3SCCnQxNTQ1LnRlc3SCCnQxNTQ2LnRlc3SCCnQxNTQ3LnRlc3SC\nCnQxNTQ4LnRlc3SCCnQxNTQ5LnRlc3SCCnQxNTUwLnRlc3SCCnQxNTUxLnRlc3SC\nCnQxNTUyLnRlc3SCCnQxNTUzLnRlc3SCCnQxNTU0LnRlc3SCCnQxNTU1LnRlc3SC\nCnQxNTU2LnRlc3SCCnQxNTU3LnRlc3SCCnQxNTU4LnRlc3SCCnQxNTU5LnRlc3SC\nCnQxNTYwLnRlc3SCCnQxNTYxLnRlc3SCCnQxNTYyLnRlc3SCCnQxNTYzLnRlc3SC\nCnQxNTY0LnRlc3SCCnQxNTY1LnRlc3SCCnQxNTY2LnRlc3SCCnQxNTY3LnRlc3SC\nCnQxNTY4LnRlc3SCCnQxNTY5LnRlc3SCCnQxNTcwLnRlc3SCCnQxNTcxLnRlc3SC\nCnQxNTcyLnRlc3SCCnQxNTczLnRlc3SCCnQxNTc0LnRlc3SCCnQxNTc1LnRlc3SC\nCnQxNTc2LnRlc3SCCnQxNTc3LnRlc3SCCnQxNTc4LnRlc3SCCnQxNTc5LnRlc3SC\nCnQxNTgwLnRlc3SCCnQxNTgxLnRlc3SCCnQxNTgyLnRlc3SCCnQxNTgzLnRlc3SC\nCnQxNTg0LnRlc3SCCnQxNTg1LnRlc3SCCnQxNTg2LnRlc3SCCnQxNTg3LnRlc3SC\nCnQxNTg4LnRlc3SCCnQxNTg5LnRlc3SCCnQxNTkwLnRlc3SCCnQxNTkxLnRlc3SC\nCnQxNTkyLnRlc3SCCnQxNTkzLnRlc3SCCnQxNTk0LnRlc3SCCnQxNTk1LnRlc3SC\nCnQxNTk2LnRlc3SCCnQxNTk3LnRlc3SCCnQxNTk4LnRlc3SCCnQxNTk5LnRlc3SC\nCnQxNjAwLnRlc3SCCnQxNjAxLnRlc3SCCnQxNjAyLnRlc3SCCnQxNjAzLnRlc3SC\nCnQxNjA0LnRlc3SCCnQxNjA1LnRlc3SCCnQxNjA2LnRlc3SCCnQxNjA3LnRlc3SC\nCnQxNjA4LnRlc3SCCnQxNjA5LnRlc3SCCnQxNjEwLnRlc3SCCnQxNjExLnRlc3SC\nCnQxNjEyLnRlc3SCCnQxNjEzLnRlc3SCCnQxNjE0LnRlc3SCCnQxNjE1LnRlc3SC\nCnQxNjE2LnRlc3SCCnQxNjE3LnRlc3SCCnQxNjE4LnRlc3SCCnQxNjE5LnRlc3SC\nCnQxNjIwLnRlc3SCCnQxNjIxLnRlc3SCCnQxNjIyLnRlc3SCCnQxNjIzLnRlc3SC\nCnQxNjI0LnRlc3SCCnQxNjI1LnRlc3SCCnQxNjI2LnRlc3SCCnQxNjI3LnRlc3SC\nCnQxNjI4LnRlc3SCCnQxNjI5LnRlc3SCCnQxNjMwLnRlc3SCCnQxNjMxLnRlc3SC\nCnQxNjMyLnRlc3SCCnQxNjMzLnRlc3SCCnQxNjM0LnRlc3SCCnQxNjM1LnRlc3SC\nCnQxNjM2LnRlc3SCCnQxNjM3LnRlc3SCCnQxNjM4LnRlc3SCCnQxNjM5LnRlc3SC\nCnQxNjQwLnRlc3SCCnQxNjQxLnRlc3SCCnQxNjQyLnRlc3SCCnQxNjQzLnRlc3SC\nCnQxNjQ0LnRlc3SCCnQxNjQ1LnRlc3SCCnQxNjQ2LnRlc3SCCnQxNjQ3LnRlc3SC\nCnQxNjQ4LnRlc3SCCnQxNjQ5LnRlc3SCCnQxNjUwLnRlc3SCCnQxNjUxLnRlc3SC\nCnQxNjUyLnRlc3SCCnQxNjUzLnRlc3SCCnQxNjU0LnRlc3SCCnQxNjU1LnRlc3SC\nCnQxNjU2LnRlc3SCCnQxNjU3LnRlc3SCCnQxNjU4LnRlc3SCCnQxNjU5LnRlc3SC\nCnQxNjYwLnRlc3SCCnQxNjYxLnRlc3SCCnQxNjYyLnRlc3SCCnQxNjYzLnRlc3SC\nCnQxNjY0LnRlc3SCCnQxNjY1LnRlc3SCCnQxNjY2LnRlc3SCCnQxNjY3LnRlc3SC\nCnQxNjY4LnRlc3SCCnQxNjY5LnRlc3SCCnQxNjcwLnRlc3SCCnQxNjcxLnRlc3SC\nCnQxNjcyLnRlc3SCCnQxNjczLnRlc3SCCnQxNjc0LnRlc3SCCnQxNjc1LnRlc3SC\nCnQxNjc2LnRlc3SCCnQxNjc3LnRlc3SCCnQxNjc4LnRlc3SCCnQxNjc5LnRlc3SC\nCnQxNjgwLnRlc3SCCnQxNjgxLnRlc3SCCnQxNjgyLnRlc3SCCnQxNjgzLnRlc3SC\nCnQxNjg0LnRlc3SCCnQxNjg1LnRlc3SCCnQxNjg2LnRlc3SCCnQxNjg3LnRlc3SC\nCnQxNjg4LnRlc3SCCnQxNjg5LnRlc3SCCnQxNjkwLnRlc3SCCnQxNjkxLnRlc3SC\nCnQxNjkyLnRlc3SCCnQxNjkzLnRlc3SCCnQxNjk0LnRlc3SCCnQxNjk1LnRlc3SC\nCnQxNjk2LnRlc3SCCnQxNjk3LnRlc3SCCnQxNjk4LnRlc3SCCnQxNjk5LnRlc3SC\nCnQxNzAwLnRlc3SCCnQxNzAxLnRlc3SCCnQxNzAyLnRlc3SCCnQxNzAzLnRlc3SC\nCnQxNzA0LnRlc3SCCnQxNzA1LnRlc3SCCnQxNzA2LnRlc3SCCnQxNzA3LnRlc3SC\nCnQxNzA4LnRlc3SCCnQxNzA5LnRlc3SCCnQxNzEwLnRlc3SCCnQxNzExLnRlc3SC\nCnQxNzEyLnRlc3SCCnQxNzEzLnRlc3SCCnQxNzE0LnRlc3SCCnQxNzE1LnRlc3SC\nCnQxNzE2LnRlc3SCCnQxNzE3LnRlc3SCCnQxNzE4LnRlc3SCCnQxNzE5LnRlc3SC\nCnQxNzIwLnRlc3SCCnQxNzIxLnRlc3SCCnQxNzIyLnRlc3SCCnQxNzIzLnRlc3SC\nCnQxNzI0LnRlc3SCCnQxNzI1LnRlc3SCCnQxNzI2LnRlc3SCCnQxNzI3LnRlc3SC\nCnQxNzI4LnRlc3SCCnQxNzI5LnRlc3SCCnQxNzMwLnRlc3SCCnQxNzMxLnRlc3SC\nCnQxNzMyLnRlc3SCCnQxNzMzLnRlc3SCCnQxNzM0LnRlc3SCCnQxNzM1LnRlc3SC\nCnQxNzM2LnRlc3SCCnQxNzM3LnRlc3SCCnQxNzM4LnRlc3SCCnQxNzM5LnRlc3SC\nCnQxNzQwLnRlc3SCCnQxNzQxLnRlc3SCCnQxNzQyLnRlc3SCCnQxNzQzLnRlc3SC\nCnQxNzQ0LnRlc3SCCnQxNzQ1LnRlc3SCCnQxNzQ2LnRlc3SCCnQxNzQ3LnRlc3SC\nCnQxNzQ4LnRlc3SCCnQxNzQ5LnRlc3SCCnQxNzUwLnRlc3SCCnQxNzUxLnRlc3SC\nCnQxNzUyLnRlc3SCCnQxNzUzLnRlc3SCCnQxNzU0LnRlc3SCCnQxNzU1LnRlc3SC\nCnQxNzU2LnRlc3SCCnQxNzU3LnRlc3SCCnQxNzU4LnRlc3SCCnQxNzU5LnRlc3SC\nCnQxNzYwLnRlc3SCCnQxNzYxLnRlc3SCCnQxNzYyLnRlc3SCCnQxNzYzLnRlc3SC\nCnQxNzY0LnRlc3SCCnQxNzY1LnRlc3SCCnQxNzY2LnRlc3SCCnQxNzY3LnRlc3SC\nCnQxNzY4LnRlc3SCCnQxNzY5LnRlc3SCCnQxNzcwLnRlc3SCCnQxNzcxLnRlc3SC\nCnQxNzcyLnRlc3SCCnQxNzczLnRlc3SCCnQxNzc0LnRlc3SCCnQxNzc1LnRlc3SC\nCnQxNzc2LnRlc3SCCnQxNzc3LnRlc3SCCnQxNzc4LnRlc3SCCnQxNzc5LnRlc3SC\nCnQxNzgwLnRlc3SCCnQxNzgxLnRlc3SCCnQxNzgyLnRlc3SCCnQxNzgzLnRlc3SC\nCnQxNzg0LnRlc3SCCnQxNzg1LnRlc3SCCnQxNzg2LnRlc3SCCnQxNzg3LnRlc3SC\nCnQxNzg4LnRlc3SCCnQxNzg5LnRlc3SCCnQxNzkwLnRlc3SCCnQxNzkxLnRlc3SC\nCnQxNzkyLnRlc3SCCnQxNzkzLnRlc3SCCnQxNzk0LnRlc3SCCnQxNzk1LnRlc3SC\nCnQxNzk2LnRlc3SCCnQxNzk3LnRlc3SCCnQxNzk4LnRlc3SCCnQxNzk5LnRlc3SC\nCnQxODAwLnRlc3SCCnQxODAxLnRlc3SCCnQxODAyLnRlc3SCCnQxODAzLnRlc3SC\nCnQxODA0LnRlc3SCCnQxODA1LnRlc3SCCnQxODA2LnRlc3SCCnQxODA3LnRlc3SC\nCnQxODA4LnRlc3SCCnQxODA5LnRlc3SCCnQxODEwLnRlc3SCCnQxODExLnRlc3SC\nCnQxODEyLnRlc3SCCnQxODEzLnRlc3SCCnQxODE0LnRlc3SCCnQxODE1LnRlc3SC\nCnQxODE2LnRlc3SCCnQxODE3LnRlc3SCCnQxODE4LnRlc3SCCnQxODE5LnRlc3SC\nCnQxODIwLnRlc3SCCnQxODIxLnRlc3SCCnQxODIyLnRlc3SCCnQxODIzLnRlc3SC\nCnQxODI0LnRlc3SCCnQxODI1LnRlc3SCCnQxODI2LnRlc3SCCnQxODI3LnRlc3SC\nCnQxODI4LnRlc3SCCnQxODI5LnRlc3SCCnQxODMwLnRlc3SCCnQxODMxLnRlc3SC\nCnQxODMyLnRlc3SCCnQxODMzLnRlc3SCCnQxODM0LnRlc3SCCnQxODM1LnRlc3SC\nCnQxODM2LnRlc3SCCnQxODM3LnRlc3SCCnQxODM4LnRlc3SCCnQxODM5LnRlc3SC\nCnQxODQwLnRlc3SCCnQxODQxLnRlc3SCCnQxODQyLnRlc3SCCnQxODQzLnRlc3SC\nCnQxODQ0LnRlc3SCCnQxODQ1LnRlc3SCCnQxODQ2LnRlc3SCCnQxODQ3LnRlc3SC\nCnQxODQ4LnRlc3SCCnQxODQ5LnRlc3SCCnQxODUwLnRlc3SCCnQxODUxLnRlc3SC\nCnQxODUyLnRlc3SCCnQxODUzLnRlc3SCCnQxODU0LnRlc3SCCnQxODU1LnRlc3SC\nCnQxODU2LnRlc3SCCnQxODU3LnRlc3SCCnQxODU4LnRlc3SCCnQxODU5LnRlc3SC\nCnQxODYwLnRlc3SCCnQxODYxLnRlc3SCCnQxODYyLnRlc3SCCnQxODYzLnRlc3SC\nCnQxODY0LnRlc3SCCnQxODY1LnRlc3SCCnQxODY2LnRlc3SCCnQxODY3LnRlc3SC\nCnQxODY4LnRlc3SCCnQxODY5LnRlc3SCCnQxODcwLnRlc3SCCnQxODcxLnRlc3SC\nCnQxODcyLnRlc3SCCnQxODczLnRlc3SCCnQxODc0LnRlc3SCCnQxODc1LnRlc3SC\nCnQxODc2LnRlc3SCCnQxODc3LnRlc3SCCnQxODc4LnRlc3SCCnQxODc5LnRlc3SC\nCnQxODgwLnRlc3SCCnQxODgxLnRlc3SCCnQxODgyLnRlc3SCCnQxODgzLnRlc3SC\nCnQxODg0LnRlc3SCCnQxODg1LnRlc3SCCnQxODg2LnRlc3SCCnQxODg3LnRlc3SC\nCnQxODg4LnRlc3SCCnQxODg5LnRlc3SCCnQxODkwLnRlc3SCCnQxODkxLnRlc3SC\nCnQxODkyLnRlc3SCCnQxODkzLnRlc3SCCnQxODk0LnRlc3SCCnQxODk1LnRlc3SC\nCnQxODk2LnRlc3SCCnQxODk3LnRlc3SCCnQxODk4LnRlc3SCCnQxODk5LnRlc3SC\nCnQxOTAwLnRlc3SCCnQxOTAxLnRlc3SCCnQxOTAyLnRlc3SCCnQxOTAzLnRlc3SC\nCnQxOTA0LnRlc3SCCnQxOTA1LnRlc3SCCnQxOTA2LnRlc3SCCnQxOTA3LnRlc3SC\nCnQxOTA4LnRlc3SCCnQxOTA5LnRlc3SCCnQxOTEwLnRlc3SCCnQxOTExLnRlc3SC\nCnQxOTEyLnRlc3SCCnQxOTEzLnRlc3SCCnQxOTE0LnRlc3SCCnQxOTE1LnRlc3SC\nCnQxOTE2LnRlc3SCCnQxOTE3LnRlc3SCCnQxOTE4LnRlc3SCCnQxOTE5LnRlc3SC\nCnQxOTIwLnRlc3SCCnQxOTIxLnRlc3SCCnQxOTIyLnRlc3SCCnQxOTIzLnRlc3SC\nCnQxOTI0LnRlc3SCCnQxOTI1LnRlc3SCCnQxOTI2LnRlc3SCCnQxOTI3LnRlc3SC\nCnQxOTI4LnRlc3SCCnQxOTI5LnRlc3SCCnQxOTMwLnRlc3SCCnQxOTMxLnRlc3SC\nCnQxOTMyLnRlc3SCCnQxOTMzLnRlc3SCCnQxOTM0LnRlc3SCCnQxOTM1LnRlc3SC\nCnQxOTM2LnRlc3SCCnQxOTM3LnRlc3SCCnQxOTM4LnRlc3SCCnQxOTM5LnRlc3SC\nCnQxOTQwLnRlc3SCCnQxOTQxLnRlc3SCCnQxOTQyLnRlc3SCCnQxOTQzLnRlc3SC\nCnQxOTQ0LnRlc3SCCnQxOTQ1LnRlc3SCCnQxOTQ2LnRlc3SCCnQxOTQ3LnRlc3SC\nCnQxOTQ4LnRlc3SCCnQxOTQ5LnRlc3SCCnQxOTUwLnRlc3SCCnQxOTUxLnRlc3SC\nCnQxOTUyLnRlc3SCCnQxOTUzLnRlc3SCCnQxOTU0LnRlc3SCCnQxOTU1LnRlc3SC\nCnQxOTU2LnRlc3SCCnQxOTU3LnRlc3SCCnQxOTU4LnRlc3SCCnQxOTU5LnRlc3SC\nCnQxOTYwLnRlc3SCCnQxOTYxLnRlc3SCCnQxOTYyLnRlc3SCCnQxOTYzLnRlc3SC\nCnQxOTY0LnRlc3SCCnQxOTY1LnRlc3SCCnQxOTY2LnRlc3SCCnQxOTY3LnRlc3SC\nCnQxOTY4LnRlc3SCCnQxOTY5LnRlc3SCCnQxOTcwLnRlc3SCCnQxOTcxLnRlc3SC\nCnQxOTcyLnRlc3SCCnQxOTczLnRlc3SCCnQxOTc0LnRlc3SCCnQxOTc1LnRlc3SC\nCnQxOTc2LnRlc3SCCnQxOTc3LnRlc3SCCnQxOTc4LnRlc3SCCnQxOTc5LnRlc3SC\nCnQxOTgwLnRlc3SCCnQxOTgxLnRlc3SCCnQxOTgyLnRlc3SCCnQxOTgzLnRlc3SC\nCnQxOTg0LnRlc3SCCnQxOTg1LnRlc3SCCnQxOTg2LnRlc3SCCnQxOTg3LnRlc3SC\nCnQxOTg4LnRlc3SCCnQxOTg5LnRlc3SCCnQxOTkwLnRlc3SCCnQxOTkxLnRlc3SC\nCnQxOTkyLnRlc3SCCnQxOTkzLnRlc3SCCnQxOTk0LnRlc3SCCnQxOTk1LnRlc3SC\nCnQxOTk2LnRlc3SCCnQxOTk3LnRlc3SCCnQxOTk4LnRlc3SCCnQxOTk5LnRlc3SC\nCnQyMDAwLnRlc3SCCnQyMDAxLnRlc3SCCnQyMDAyLnRlc3SCCnQyMDAzLnRlc3SC\nCnQyMDA0LnRlc3SCCnQyMDA1LnRlc3SCCnQyMDA2LnRlc3SCCnQyMDA3LnRlc3SC\nCnQyMDA4LnRlc3SCCnQyMDA5LnRlc3SCCnQyMDEwLnRlc3SCCnQyMDExLnRlc3SC\nCnQyMDEyLnRlc3SCCnQyMDEzLnRlc3SCCnQyMDE0LnRlc3SCCnQyMDE1LnRlc3SC\nCnQyMDE2LnRlc3SCCnQyMDE3LnRlc3SCCnQyMDE4LnRlc3SCCnQyMDE5LnRlc3SC\nCnQyMDIwLnRlc3SCCnQyMDIxLnRlc3SCCnQyMDIyLnRlc3SCCnQyMDIzLnRlc3SC\nCnQyMDI0LnRlc3SCCnQyMDI1LnRlc3SCCnQyMDI2LnRlc3SCCnQyMDI3LnRlc3SC\nCnQyMDI4LnRlc3SCCnQyMDI5LnRlc3SCCnQyMDMwLnRlc3SCCnQyMDMxLnRlc3SC\nCnQyMDMyLnRlc3SCCnQyMDMzLnRlc3SCCnQyMDM0LnRlc3SCCnQyMDM1LnRlc3SC\nCnQyMDM2LnRlc3SCCnQyMDM3LnRlc3SCCnQyMDM4LnRlc3SCCnQyMDM5LnRlc3SC\nCnQyMDQwLnRlc3SCCnQyMDQxLnRlc3SCCnQyMDQyLnRlc3SCCnQyMDQzLnRlc3SC\nCnQyMDQ0LnRlc3SCCnQyMDQ1LnRlc3SCCnQyMDQ2LnRlc3SCCnQyMDQ3LnRlc3Qw\nCgYIKoZIzj0EAwIDSQAwRgIhAMspir3tlb90KiVpQXH0eLuH/lVMdtMNTUaCdbeq\nmP1eAiEA0kTYGhI3pCLq5inbk30afoQ4xa2QRrTZE0ZtNrpA2ho=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEJX3su+OaH3xmSumG6K5lSgmM1DOpxnodsaSCRVFvGSoAoGCCqGSM49\nAwEHoUQDQgAEedA3If4bqUI4i+hTEsx8DSU074lyLmbWJzbYOguz0B2S+xJZpDOI\nH6EwHz9gcqy3+FPcyHPTEHkwAcgO9e+OnQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIMBMQAwgwEwpaADAgECAhR5dX6i7dUr6K6s+ggaizfMY7H1WzAKBggqhkjOPQQD\nAjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgP\nMjk2OTA1MDMwMDAwMDFaMILTvDEWMBQGCSqGSIb3DQEJARYHdDBAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDFAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDJAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDNAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDRAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDVAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDZAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDdAdGVzdDEWMBQGCSqGSIb3DQEJARYHdDhAdGVzdDEWMBQG\nCSqGSIb3DQEJARYHdDlAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDEwQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQxMUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MTJAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDEzQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxNEB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0MTVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDE2QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQxN0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MThA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDE5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQy\nMEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjFAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDIyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyM0B0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0MjRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDI1QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQyNkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjdAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDI4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyOUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0MzBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDMxQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQzMkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzNAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDM0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzNUB0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0MzZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDM3QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQzOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzlAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDQwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0MUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQz\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nNDVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ2QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ0N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDhAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDQ5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1MEB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0NTFAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDUyQHRlc3QxFzAVBgkqhkiG\n9w0BCQEWCHQ1M0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTRAdGVzdDEXMBUGCSqG\nSIb3DQEJARYIdDU1QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1NkB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0NTdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDU4QHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQ1OUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjBAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDYxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2MkB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0NjNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDY0QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQ2NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjZA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDY3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2\nOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjlAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDcwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3MUB0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0NzJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDczQHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQ3NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzVAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDc2QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3N0B0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0NzhAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDc5QHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQ4MEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODFAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDgyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4M0B0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0ODRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDg1QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ4NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODdAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDg4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4OUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDkx\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5MkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nOTNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDk0QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ5NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTZAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDk3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5OEB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDEwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDExMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTEzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDExOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTE5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDEyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTIyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDEyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTI4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTM3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQ2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTUyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTYxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTcwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTg1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTkx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTk0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxOTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjAwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjMzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjM5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQ4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjU3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjYz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjY2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjcyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mjc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjgxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Mjg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjkwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyOTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzA1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzEx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzE0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzIwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzUzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzU5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzYyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzY4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzc3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzgz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzg2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Mzg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzkyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nOTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQwMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDAxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwM0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDA0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQwOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDEwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxMkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDEzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQxNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxOEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDIyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQyNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDI1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDI4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDMx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQzM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDM0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDM3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzhAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQzOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDQ2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ0OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDUyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ1N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDYxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ2M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDcwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ3MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDczQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDc2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDc5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ4MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDgyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0ODNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDg1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ4N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDg4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0ODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nOTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDk0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ5NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDk3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0OThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTAwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTAz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUwNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTA2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwOEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTA5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUxMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTEyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxNEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxN0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTE4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUyMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTIxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyM0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTI0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUyOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTMwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzMkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTMzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUzNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzOEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTQyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU0NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQ1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTQ4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTUx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU1M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTU0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTU3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU1OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTYwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTY2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU2OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTcyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU3N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTgxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU4M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1ODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTkwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU5MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTkzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1OTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTk2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTk5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjAyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjA4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjExQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYxNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjE3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYyMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjIz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjI2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyOEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYzMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjMyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzNEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzN0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY0NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjUwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjY1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY3MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njcx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njc0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Njc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzhAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjgwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2ODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4MkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjgzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4NUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2OTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5MUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY5NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzEzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDcxOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzE5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDcyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzIyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyNEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzI4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczMEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczM0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDczNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzM3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczOUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQ2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzUyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzYxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzcwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4MUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzg1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3ODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4N0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Nzg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzkx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzk0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3OTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5NkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Nzk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODAwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyMEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyNkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyOUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODMzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzNUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODM5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQ4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODU3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODYz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODY2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODcyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzlAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODgxQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4ODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4M0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODVAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg3\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODkwQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4OTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5MkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OTRAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk2QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4OTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5OEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwMUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDNAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTA1QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwN0B0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDlAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTEx\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTE0QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxNkB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MThAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTIwQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyMkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyNUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjdAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI5QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzMUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzNAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM1\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM4QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0MEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDJAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ0QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0NkB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0OUB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTFAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTUzQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1NUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTdAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTU5\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTYyQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2NEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjZAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTY4QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3MEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3M0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzVAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTc3QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3OUB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODFAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTgz\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTg2QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5ODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4OEB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTBAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTkyQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5OTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5NEB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nOTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5N0B0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwMTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwMTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwMjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwMzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwMzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwMzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwMzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwMzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwMzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwNDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwNTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwNTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwNTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwNjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwNjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwNjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwNzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwNzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwNzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwNzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEwODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEw\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEwODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEwODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEwOTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEwOTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEwOTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEwOThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEwOTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExMTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExMzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExMzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExMzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExMzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExNDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExNTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExNTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExNjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExNjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExNzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExNzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExNzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExNzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExNzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDExODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDExODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDExODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDExOTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDExOTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDExOTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDExOTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEx\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDExOThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDExOTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyMzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyNTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyNTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyNjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyNzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyNzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyNzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyNzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyNzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyNzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEyODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEyODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyODlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEyOTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEyOTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEy\nOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEyOTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEyOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEyOThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEyOTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzMTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzMjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzMzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzMzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzMzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzNTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzNTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzNTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzNjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzNjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzNzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzNzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzNzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzNzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzNzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDEzODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDEzODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzODdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDEzODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEz\nODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDEzOTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDEzOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDEzOTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDEzOThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDEzOTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0MzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0NzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE0ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE0ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0ODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE0ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE0OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE0OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE0OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE0OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE0OTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1MzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1NzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE1ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE1ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE1OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE1OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE1OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE1OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE1OThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE1OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2MDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2MTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2MjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2MzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2MzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2MzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2MzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2NDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2NTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2NjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2NzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2NzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nNzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2NzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2NzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2ODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE2ODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE2ODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2ODlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE2OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE2OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2\nOTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE2OTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE2OTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE2OThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE2OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3MDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nMDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3MTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3MjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nMjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3MzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3MzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3MzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3NTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3NzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3NzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nNzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3NzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3NzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE3ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE3ODZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3ODdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE3ODhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3\nODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE3OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE3OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE3OTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE3OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE3OTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MDhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4MTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4MjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MjlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4MzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4MzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4MzhAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4NTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4NTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nNTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4NjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4NjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nNjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4NzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4NzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4ODJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE4ODRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4\nODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE4ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4ODhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE4ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE4OTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE4OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE4OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE4OThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE4OTlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MDdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MDlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5MTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5MTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5MTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MjFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MjNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5MjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5MjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MjlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5MzBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5MzJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5MzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5MzdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5MzhAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5MzlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NDdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5NDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nNDlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5NTFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5NTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5NTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NThAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NTlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NjBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5NjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nNjVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5NjdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NjhAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5NjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzBAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5NzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzJA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzNAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5NzRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzVAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5NzZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzdAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5NzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5NzlAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5ODBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nODFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODJAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5ODNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODRAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDE5ODVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODZAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDE5ODdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODhA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5ODlAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDE5OTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTFAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDE5OTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTNAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDE5OTRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OTVAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDE5OTZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5\nOTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDE5OThAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDE5OTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDBAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMDFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDJAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMDNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDRA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDVAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMDZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDdAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwMDhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMDlAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwMTBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTFAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwMTJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nMTNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTRAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwMTVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMTZAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMTdAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMThAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMTlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjBA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjFAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMjJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjNAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwMjRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjVAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwMjZAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMjdAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwMjhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nMjlAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzBAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwMzFAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzJAdGVzdDEZMBcGCSqG\nSIb3DQEJARYKdDIwMzNAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzRAdGVzdDEZ\nMBcGCSqGSIb3DQEJARYKdDIwMzVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzZA\ndGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzdAdGVzdDEZMBcGCSqGSIb3DQEJARYK\ndDIwMzhAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwMzlAdGVzdDEZMBcGCSqGSIb3\nDQEJARYKdDIwNDBAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDFAdGVzdDEZMBcG\nCSqGSIb3DQEJARYKdDIwNDJAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDNAdGVz\ndDEZMBcGCSqGSIb3DQEJARYKdDIwNDRAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIw\nNDVAdGVzdDEZMBcGCSqGSIb3DQEJARYKdDIwNDZAdGVzdDEZMBcGCSqGSIb3DQEJ\nARYKdDIwNDdAdGVzdDEQMA4GA1UEAwwHdDAudGVzdDBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABPjXJ+fTs35Cx9E/nuAG7lb4ufl3hhLfQ2hBbZVVn/87Bksf26J/\n9H8lKLl58zAyD0jyrMP7YCCSsrbBztcdTIqjglwhMIJcHTAdBgNVHQ4EFgQU3eK9\nqLb6VbV7uAtZQehMAa8LVCMwHwYDVR0jBBgwFoAU/gtRb0P62cn8RBXY01Lwy7rB\n71kwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMIJbtwYDVR0RBIJb\nrjCCW6qCB3QwLnRlc3SCB3QxLnRlc3SCB3QyLnRlc3SCB3QzLnRlc3SCB3Q0LnRl\nc3SCB3Q1LnRlc3SCB3Q2LnRlc3SCB3Q3LnRlc3SCB3Q4LnRlc3SCB3Q5LnRlc3SC\nCHQxMC50ZXN0ggh0MTEudGVzdIIIdDEyLnRlc3SCCHQxMy50ZXN0ggh0MTQudGVz\ndIIIdDE1LnRlc3SCCHQxNi50ZXN0ggh0MTcudGVzdIIIdDE4LnRlc3SCCHQxOS50\nZXN0ggh0MjAudGVzdIIIdDIxLnRlc3SCCHQyMi50ZXN0ggh0MjMudGVzdIIIdDI0\nLnRlc3SCCHQyNS50ZXN0ggh0MjYudGVzdIIIdDI3LnRlc3SCCHQyOC50ZXN0ggh0\nMjkudGVzdIIIdDMwLnRlc3SCCHQzMS50ZXN0ggh0MzIudGVzdIIIdDMzLnRlc3SC\nCHQzNC50ZXN0ggh0MzUudGVzdIIIdDM2LnRlc3SCCHQzNy50ZXN0ggh0MzgudGVz\ndIIIdDM5LnRlc3SCCHQ0MC50ZXN0ggh0NDEudGVzdIIIdDQyLnRlc3SCCHQ0My50\nZXN0ggh0NDQudGVzdIIIdDQ1LnRlc3SCCHQ0Ni50ZXN0ggh0NDcudGVzdIIIdDQ4\nLnRlc3SCCHQ0OS50ZXN0ggh0NTAudGVzdIIIdDUxLnRlc3SCCHQ1Mi50ZXN0ggh0\nNTMudGVzdIIIdDU0LnRlc3SCCHQ1NS50ZXN0ggh0NTYudGVzdIIIdDU3LnRlc3SC\nCHQ1OC50ZXN0ggh0NTkudGVzdIIIdDYwLnRlc3SCCHQ2MS50ZXN0ggh0NjIudGVz\ndIIIdDYzLnRlc3SCCHQ2NC50ZXN0ggh0NjUudGVzdIIIdDY2LnRlc3SCCHQ2Ny50\nZXN0ggh0NjgudGVzdIIIdDY5LnRlc3SCCHQ3MC50ZXN0ggh0NzEudGVzdIIIdDcy\nLnRlc3SCCHQ3My50ZXN0ggh0NzQudGVzdIIIdDc1LnRlc3SCCHQ3Ni50ZXN0ggh0\nNzcudGVzdIIIdDc4LnRlc3SCCHQ3OS50ZXN0ggh0ODAudGVzdIIIdDgxLnRlc3SC\nCHQ4Mi50ZXN0ggh0ODMudGVzdIIIdDg0LnRlc3SCCHQ4NS50ZXN0ggh0ODYudGVz\ndIIIdDg3LnRlc3SCCHQ4OC50ZXN0ggh0ODkudGVzdIIIdDkwLnRlc3SCCHQ5MS50\nZXN0ggh0OTIudGVzdIIIdDkzLnRlc3SCCHQ5NC50ZXN0ggh0OTUudGVzdIIIdDk2\nLnRlc3SCCHQ5Ny50ZXN0ggh0OTgudGVzdIIIdDk5LnRlc3SCCXQxMDAudGVzdIIJ\ndDEwMS50ZXN0ggl0MTAyLnRlc3SCCXQxMDMudGVzdIIJdDEwNC50ZXN0ggl0MTA1\nLnRlc3SCCXQxMDYudGVzdIIJdDEwNy50ZXN0ggl0MTA4LnRlc3SCCXQxMDkudGVz\ndIIJdDExMC50ZXN0ggl0MTExLnRlc3SCCXQxMTIudGVzdIIJdDExMy50ZXN0ggl0\nMTE0LnRlc3SCCXQxMTUudGVzdIIJdDExNi50ZXN0ggl0MTE3LnRlc3SCCXQxMTgu\ndGVzdIIJdDExOS50ZXN0ggl0MTIwLnRlc3SCCXQxMjEudGVzdIIJdDEyMi50ZXN0\nggl0MTIzLnRlc3SCCXQxMjQudGVzdIIJdDEyNS50ZXN0ggl0MTI2LnRlc3SCCXQx\nMjcudGVzdIIJdDEyOC50ZXN0ggl0MTI5LnRlc3SCCXQxMzAudGVzdIIJdDEzMS50\nZXN0ggl0MTMyLnRlc3SCCXQxMzMudGVzdIIJdDEzNC50ZXN0ggl0MTM1LnRlc3SC\nCXQxMzYudGVzdIIJdDEzNy50ZXN0ggl0MTM4LnRlc3SCCXQxMzkudGVzdIIJdDE0\nMC50ZXN0ggl0MTQxLnRlc3SCCXQxNDIudGVzdIIJdDE0My50ZXN0ggl0MTQ0LnRl\nc3SCCXQxNDUudGVzdIIJdDE0Ni50ZXN0ggl0MTQ3LnRlc3SCCXQxNDgudGVzdIIJ\ndDE0OS50ZXN0ggl0MTUwLnRlc3SCCXQxNTEudGVzdIIJdDE1Mi50ZXN0ggl0MTUz\nLnRlc3SCCXQxNTQudGVzdIIJdDE1NS50ZXN0ggl0MTU2LnRlc3SCCXQxNTcudGVz\ndIIJdDE1OC50ZXN0ggl0MTU5LnRlc3SCCXQxNjAudGVzdIIJdDE2MS50ZXN0ggl0\nMTYyLnRlc3SCCXQxNjMudGVzdIIJdDE2NC50ZXN0ggl0MTY1LnRlc3SCCXQxNjYu\ndGVzdIIJdDE2Ny50ZXN0ggl0MTY4LnRlc3SCCXQxNjkudGVzdIIJdDE3MC50ZXN0\nggl0MTcxLnRlc3SCCXQxNzIudGVzdIIJdDE3My50ZXN0ggl0MTc0LnRlc3SCCXQx\nNzUudGVzdIIJdDE3Ni50ZXN0ggl0MTc3LnRlc3SCCXQxNzgudGVzdIIJdDE3OS50\nZXN0ggl0MTgwLnRlc3SCCXQxODEudGVzdIIJdDE4Mi50ZXN0ggl0MTgzLnRlc3SC\nCXQxODQudGVzdIIJdDE4NS50ZXN0ggl0MTg2LnRlc3SCCXQxODcudGVzdIIJdDE4\nOC50ZXN0ggl0MTg5LnRlc3SCCXQxOTAudGVzdIIJdDE5MS50ZXN0ggl0MTkyLnRl\nc3SCCXQxOTMudGVzdIIJdDE5NC50ZXN0ggl0MTk1LnRlc3SCCXQxOTYudGVzdIIJ\ndDE5Ny50ZXN0ggl0MTk4LnRlc3SCCXQxOTkudGVzdIIJdDIwMC50ZXN0ggl0MjAx\nLnRlc3SCCXQyMDIudGVzdIIJdDIwMy50ZXN0ggl0MjA0LnRlc3SCCXQyMDUudGVz\ndIIJdDIwNi50ZXN0ggl0MjA3LnRlc3SCCXQyMDgudGVzdIIJdDIwOS50ZXN0ggl0\nMjEwLnRlc3SCCXQyMTEudGVzdIIJdDIxMi50ZXN0ggl0MjEzLnRlc3SCCXQyMTQu\ndGVzdIIJdDIxNS50ZXN0ggl0MjE2LnRlc3SCCXQyMTcudGVzdIIJdDIxOC50ZXN0\nggl0MjE5LnRlc3SCCXQyMjAudGVzdIIJdDIyMS50ZXN0ggl0MjIyLnRlc3SCCXQy\nMjMudGVzdIIJdDIyNC50ZXN0ggl0MjI1LnRlc3SCCXQyMjYudGVzdIIJdDIyNy50\nZXN0ggl0MjI4LnRlc3SCCXQyMjkudGVzdIIJdDIzMC50ZXN0ggl0MjMxLnRlc3SC\nCXQyMzIudGVzdIIJdDIzMy50ZXN0ggl0MjM0LnRlc3SCCXQyMzUudGVzdIIJdDIz\nNi50ZXN0ggl0MjM3LnRlc3SCCXQyMzgudGVzdIIJdDIzOS50ZXN0ggl0MjQwLnRl\nc3SCCXQyNDEudGVzdIIJdDI0Mi50ZXN0ggl0MjQzLnRlc3SCCXQyNDQudGVzdIIJ\ndDI0NS50ZXN0ggl0MjQ2LnRlc3SCCXQyNDcudGVzdIIJdDI0OC50ZXN0ggl0MjQ5\nLnRlc3SCCXQyNTAudGVzdIIJdDI1MS50ZXN0ggl0MjUyLnRlc3SCCXQyNTMudGVz\ndIIJdDI1NC50ZXN0ggl0MjU1LnRlc3SCCXQyNTYudGVzdIIJdDI1Ny50ZXN0ggl0\nMjU4LnRlc3SCCXQyNTkudGVzdIIJdDI2MC50ZXN0ggl0MjYxLnRlc3SCCXQyNjIu\ndGVzdIIJdDI2My50ZXN0ggl0MjY0LnRlc3SCCXQyNjUudGVzdIIJdDI2Ni50ZXN0\nggl0MjY3LnRlc3SCCXQyNjgudGVzdIIJdDI2OS50ZXN0ggl0MjcwLnRlc3SCCXQy\nNzEudGVzdIIJdDI3Mi50ZXN0ggl0MjczLnRlc3SCCXQyNzQudGVzdIIJdDI3NS50\nZXN0ggl0Mjc2LnRlc3SCCXQyNzcudGVzdIIJdDI3OC50ZXN0ggl0Mjc5LnRlc3SC\nCXQyODAudGVzdIIJdDI4MS50ZXN0ggl0MjgyLnRlc3SCCXQyODMudGVzdIIJdDI4\nNC50ZXN0ggl0Mjg1LnRlc3SCCXQyODYudGVzdIIJdDI4Ny50ZXN0ggl0Mjg4LnRl\nc3SCCXQyODkudGVzdIIJdDI5MC50ZXN0ggl0MjkxLnRlc3SCCXQyOTIudGVzdIIJ\ndDI5My50ZXN0ggl0Mjk0LnRlc3SCCXQyOTUudGVzdIIJdDI5Ni50ZXN0ggl0Mjk3\nLnRlc3SCCXQyOTgudGVzdIIJdDI5OS50ZXN0ggl0MzAwLnRlc3SCCXQzMDEudGVz\ndIIJdDMwMi50ZXN0ggl0MzAzLnRlc3SCCXQzMDQudGVzdIIJdDMwNS50ZXN0ggl0\nMzA2LnRlc3SCCXQzMDcudGVzdIIJdDMwOC50ZXN0ggl0MzA5LnRlc3SCCXQzMTAu\ndGVzdIIJdDMxMS50ZXN0ggl0MzEyLnRlc3SCCXQzMTMudGVzdIIJdDMxNC50ZXN0\nggl0MzE1LnRlc3SCCXQzMTYudGVzdIIJdDMxNy50ZXN0ggl0MzE4LnRlc3SCCXQz\nMTkudGVzdIIJdDMyMC50ZXN0ggl0MzIxLnRlc3SCCXQzMjIudGVzdIIJdDMyMy50\nZXN0ggl0MzI0LnRlc3SCCXQzMjUudGVzdIIJdDMyNi50ZXN0ggl0MzI3LnRlc3SC\nCXQzMjgudGVzdIIJdDMyOS50ZXN0ggl0MzMwLnRlc3SCCXQzMzEudGVzdIIJdDMz\nMi50ZXN0ggl0MzMzLnRlc3SCCXQzMzQudGVzdIIJdDMzNS50ZXN0ggl0MzM2LnRl\nc3SCCXQzMzcudGVzdIIJdDMzOC50ZXN0ggl0MzM5LnRlc3SCCXQzNDAudGVzdIIJ\ndDM0MS50ZXN0ggl0MzQyLnRlc3SCCXQzNDMudGVzdIIJdDM0NC50ZXN0ggl0MzQ1\nLnRlc3SCCXQzNDYudGVzdIIJdDM0Ny50ZXN0ggl0MzQ4LnRlc3SCCXQzNDkudGVz\ndIIJdDM1MC50ZXN0ggl0MzUxLnRlc3SCCXQzNTIudGVzdIIJdDM1My50ZXN0ggl0\nMzU0LnRlc3SCCXQzNTUudGVzdIIJdDM1Ni50ZXN0ggl0MzU3LnRlc3SCCXQzNTgu\ndGVzdIIJdDM1OS50ZXN0ggl0MzYwLnRlc3SCCXQzNjEudGVzdIIJdDM2Mi50ZXN0\nggl0MzYzLnRlc3SCCXQzNjQudGVzdIIJdDM2NS50ZXN0ggl0MzY2LnRlc3SCCXQz\nNjcudGVzdIIJdDM2OC50ZXN0ggl0MzY5LnRlc3SCCXQzNzAudGVzdIIJdDM3MS50\nZXN0ggl0MzcyLnRlc3SCCXQzNzMudGVzdIIJdDM3NC50ZXN0ggl0Mzc1LnRlc3SC\nCXQzNzYudGVzdIIJdDM3Ny50ZXN0ggl0Mzc4LnRlc3SCCXQzNzkudGVzdIIJdDM4\nMC50ZXN0ggl0MzgxLnRlc3SCCXQzODIudGVzdIIJdDM4My50ZXN0ggl0Mzg0LnRl\nc3SCCXQzODUudGVzdIIJdDM4Ni50ZXN0ggl0Mzg3LnRlc3SCCXQzODgudGVzdIIJ\ndDM4OS50ZXN0ggl0MzkwLnRlc3SCCXQzOTEudGVzdIIJdDM5Mi50ZXN0ggl0Mzkz\nLnRlc3SCCXQzOTQudGVzdIIJdDM5NS50ZXN0ggl0Mzk2LnRlc3SCCXQzOTcudGVz\ndIIJdDM5OC50ZXN0ggl0Mzk5LnRlc3SCCXQ0MDAudGVzdIIJdDQwMS50ZXN0ggl0\nNDAyLnRlc3SCCXQ0MDMudGVzdIIJdDQwNC50ZXN0ggl0NDA1LnRlc3SCCXQ0MDYu\ndGVzdIIJdDQwNy50ZXN0ggl0NDA4LnRlc3SCCXQ0MDkudGVzdIIJdDQxMC50ZXN0\nggl0NDExLnRlc3SCCXQ0MTIudGVzdIIJdDQxMy50ZXN0ggl0NDE0LnRlc3SCCXQ0\nMTUudGVzdIIJdDQxNi50ZXN0ggl0NDE3LnRlc3SCCXQ0MTgudGVzdIIJdDQxOS50\nZXN0ggl0NDIwLnRlc3SCCXQ0MjEudGVzdIIJdDQyMi50ZXN0ggl0NDIzLnRlc3SC\nCXQ0MjQudGVzdIIJdDQyNS50ZXN0ggl0NDI2LnRlc3SCCXQ0MjcudGVzdIIJdDQy\nOC50ZXN0ggl0NDI5LnRlc3SCCXQ0MzAudGVzdIIJdDQzMS50ZXN0ggl0NDMyLnRl\nc3SCCXQ0MzMudGVzdIIJdDQzNC50ZXN0ggl0NDM1LnRlc3SCCXQ0MzYudGVzdIIJ\ndDQzNy50ZXN0ggl0NDM4LnRlc3SCCXQ0MzkudGVzdIIJdDQ0MC50ZXN0ggl0NDQx\nLnRlc3SCCXQ0NDIudGVzdIIJdDQ0My50ZXN0ggl0NDQ0LnRlc3SCCXQ0NDUudGVz\ndIIJdDQ0Ni50ZXN0ggl0NDQ3LnRlc3SCCXQ0NDgudGVzdIIJdDQ0OS50ZXN0ggl0\nNDUwLnRlc3SCCXQ0NTEudGVzdIIJdDQ1Mi50ZXN0ggl0NDUzLnRlc3SCCXQ0NTQu\ndGVzdIIJdDQ1NS50ZXN0ggl0NDU2LnRlc3SCCXQ0NTcudGVzdIIJdDQ1OC50ZXN0\nggl0NDU5LnRlc3SCCXQ0NjAudGVzdIIJdDQ2MS50ZXN0ggl0NDYyLnRlc3SCCXQ0\nNjMudGVzdIIJdDQ2NC50ZXN0ggl0NDY1LnRlc3SCCXQ0NjYudGVzdIIJdDQ2Ny50\nZXN0ggl0NDY4LnRlc3SCCXQ0NjkudGVzdIIJdDQ3MC50ZXN0ggl0NDcxLnRlc3SC\nCXQ0NzIudGVzdIIJdDQ3My50ZXN0ggl0NDc0LnRlc3SCCXQ0NzUudGVzdIIJdDQ3\nNi50ZXN0ggl0NDc3LnRlc3SCCXQ0NzgudGVzdIIJdDQ3OS50ZXN0ggl0NDgwLnRl\nc3SCCXQ0ODEudGVzdIIJdDQ4Mi50ZXN0ggl0NDgzLnRlc3SCCXQ0ODQudGVzdIIJ\ndDQ4NS50ZXN0ggl0NDg2LnRlc3SCCXQ0ODcudGVzdIIJdDQ4OC50ZXN0ggl0NDg5\nLnRlc3SCCXQ0OTAudGVzdIIJdDQ5MS50ZXN0ggl0NDkyLnRlc3SCCXQ0OTMudGVz\ndIIJdDQ5NC50ZXN0ggl0NDk1LnRlc3SCCXQ0OTYudGVzdIIJdDQ5Ny50ZXN0ggl0\nNDk4LnRlc3SCCXQ0OTkudGVzdIIJdDUwMC50ZXN0ggl0NTAxLnRlc3SCCXQ1MDIu\ndGVzdIIJdDUwMy50ZXN0ggl0NTA0LnRlc3SCCXQ1MDUudGVzdIIJdDUwNi50ZXN0\nggl0NTA3LnRlc3SCCXQ1MDgudGVzdIIJdDUwOS50ZXN0ggl0NTEwLnRlc3SCCXQ1\nMTEudGVzdIIJdDUxMi50ZXN0ggl0NTEzLnRlc3SCCXQ1MTQudGVzdIIJdDUxNS50\nZXN0ggl0NTE2LnRlc3SCCXQ1MTcudGVzdIIJdDUxOC50ZXN0ggl0NTE5LnRlc3SC\nCXQ1MjAudGVzdIIJdDUyMS50ZXN0ggl0NTIyLnRlc3SCCXQ1MjMudGVzdIIJdDUy\nNC50ZXN0ggl0NTI1LnRlc3SCCXQ1MjYudGVzdIIJdDUyNy50ZXN0ggl0NTI4LnRl\nc3SCCXQ1MjkudGVzdIIJdDUzMC50ZXN0ggl0NTMxLnRlc3SCCXQ1MzIudGVzdIIJ\ndDUzMy50ZXN0ggl0NTM0LnRlc3SCCXQ1MzUudGVzdIIJdDUzNi50ZXN0ggl0NTM3\nLnRlc3SCCXQ1MzgudGVzdIIJdDUzOS50ZXN0ggl0NTQwLnRlc3SCCXQ1NDEudGVz\ndIIJdDU0Mi50ZXN0ggl0NTQzLnRlc3SCCXQ1NDQudGVzdIIJdDU0NS50ZXN0ggl0\nNTQ2LnRlc3SCCXQ1NDcudGVzdIIJdDU0OC50ZXN0ggl0NTQ5LnRlc3SCCXQ1NTAu\ndGVzdIIJdDU1MS50ZXN0ggl0NTUyLnRlc3SCCXQ1NTMudGVzdIIJdDU1NC50ZXN0\nggl0NTU1LnRlc3SCCXQ1NTYudGVzdIIJdDU1Ny50ZXN0ggl0NTU4LnRlc3SCCXQ1\nNTkudGVzdIIJdDU2MC50ZXN0ggl0NTYxLnRlc3SCCXQ1NjIudGVzdIIJdDU2My50\nZXN0ggl0NTY0LnRlc3SCCXQ1NjUudGVzdIIJdDU2Ni50ZXN0ggl0NTY3LnRlc3SC\nCXQ1NjgudGVzdIIJdDU2OS50ZXN0ggl0NTcwLnRlc3SCCXQ1NzEudGVzdIIJdDU3\nMi50ZXN0ggl0NTczLnRlc3SCCXQ1NzQudGVzdIIJdDU3NS50ZXN0ggl0NTc2LnRl\nc3SCCXQ1NzcudGVzdIIJdDU3OC50ZXN0ggl0NTc5LnRlc3SCCXQ1ODAudGVzdIIJ\ndDU4MS50ZXN0ggl0NTgyLnRlc3SCCXQ1ODMudGVzdIIJdDU4NC50ZXN0ggl0NTg1\nLnRlc3SCCXQ1ODYudGVzdIIJdDU4Ny50ZXN0ggl0NTg4LnRlc3SCCXQ1ODkudGVz\ndIIJdDU5MC50ZXN0ggl0NTkxLnRlc3SCCXQ1OTIudGVzdIIJdDU5My50ZXN0ggl0\nNTk0LnRlc3SCCXQ1OTUudGVzdIIJdDU5Ni50ZXN0ggl0NTk3LnRlc3SCCXQ1OTgu\ndGVzdIIJdDU5OS50ZXN0ggl0NjAwLnRlc3SCCXQ2MDEudGVzdIIJdDYwMi50ZXN0\nggl0NjAzLnRlc3SCCXQ2MDQudGVzdIIJdDYwNS50ZXN0ggl0NjA2LnRlc3SCCXQ2\nMDcudGVzdIIJdDYwOC50ZXN0ggl0NjA5LnRlc3SCCXQ2MTAudGVzdIIJdDYxMS50\nZXN0ggl0NjEyLnRlc3SCCXQ2MTMudGVzdIIJdDYxNC50ZXN0ggl0NjE1LnRlc3SC\nCXQ2MTYudGVzdIIJdDYxNy50ZXN0ggl0NjE4LnRlc3SCCXQ2MTkudGVzdIIJdDYy\nMC50ZXN0ggl0NjIxLnRlc3SCCXQ2MjIudGVzdIIJdDYyMy50ZXN0ggl0NjI0LnRl\nc3SCCXQ2MjUudGVzdIIJdDYyNi50ZXN0ggl0NjI3LnRlc3SCCXQ2MjgudGVzdIIJ\ndDYyOS50ZXN0ggl0NjMwLnRlc3SCCXQ2MzEudGVzdIIJdDYzMi50ZXN0ggl0NjMz\nLnRlc3SCCXQ2MzQudGVzdIIJdDYzNS50ZXN0ggl0NjM2LnRlc3SCCXQ2MzcudGVz\ndIIJdDYzOC50ZXN0ggl0NjM5LnRlc3SCCXQ2NDAudGVzdIIJdDY0MS50ZXN0ggl0\nNjQyLnRlc3SCCXQ2NDMudGVzdIIJdDY0NC50ZXN0ggl0NjQ1LnRlc3SCCXQ2NDYu\ndGVzdIIJdDY0Ny50ZXN0ggl0NjQ4LnRlc3SCCXQ2NDkudGVzdIIJdDY1MC50ZXN0\nggl0NjUxLnRlc3SCCXQ2NTIudGVzdIIJdDY1My50ZXN0ggl0NjU0LnRlc3SCCXQ2\nNTUudGVzdIIJdDY1Ni50ZXN0ggl0NjU3LnRlc3SCCXQ2NTgudGVzdIIJdDY1OS50\nZXN0ggl0NjYwLnRlc3SCCXQ2NjEudGVzdIIJdDY2Mi50ZXN0ggl0NjYzLnRlc3SC\nCXQ2NjQudGVzdIIJdDY2NS50ZXN0ggl0NjY2LnRlc3SCCXQ2NjcudGVzdIIJdDY2\nOC50ZXN0ggl0NjY5LnRlc3SCCXQ2NzAudGVzdIIJdDY3MS50ZXN0ggl0NjcyLnRl\nc3SCCXQ2NzMudGVzdIIJdDY3NC50ZXN0ggl0Njc1LnRlc3SCCXQ2NzYudGVzdIIJ\ndDY3Ny50ZXN0ggl0Njc4LnRlc3SCCXQ2NzkudGVzdIIJdDY4MC50ZXN0ggl0Njgx\nLnRlc3SCCXQ2ODIudGVzdIIJdDY4My50ZXN0ggl0Njg0LnRlc3SCCXQ2ODUudGVz\ndIIJdDY4Ni50ZXN0ggl0Njg3LnRlc3SCCXQ2ODgudGVzdIIJdDY4OS50ZXN0ggl0\nNjkwLnRlc3SCCXQ2OTEudGVzdIIJdDY5Mi50ZXN0ggl0NjkzLnRlc3SCCXQ2OTQu\ndGVzdIIJdDY5NS50ZXN0ggl0Njk2LnRlc3SCCXQ2OTcudGVzdIIJdDY5OC50ZXN0\nggl0Njk5LnRlc3SCCXQ3MDAudGVzdIIJdDcwMS50ZXN0ggl0NzAyLnRlc3SCCXQ3\nMDMudGVzdIIJdDcwNC50ZXN0ggl0NzA1LnRlc3SCCXQ3MDYudGVzdIIJdDcwNy50\nZXN0ggl0NzA4LnRlc3SCCXQ3MDkudGVzdIIJdDcxMC50ZXN0ggl0NzExLnRlc3SC\nCXQ3MTIudGVzdIIJdDcxMy50ZXN0ggl0NzE0LnRlc3SCCXQ3MTUudGVzdIIJdDcx\nNi50ZXN0ggl0NzE3LnRlc3SCCXQ3MTgudGVzdIIJdDcxOS50ZXN0ggl0NzIwLnRl\nc3SCCXQ3MjEudGVzdIIJdDcyMi50ZXN0ggl0NzIzLnRlc3SCCXQ3MjQudGVzdIIJ\ndDcyNS50ZXN0ggl0NzI2LnRlc3SCCXQ3MjcudGVzdIIJdDcyOC50ZXN0ggl0NzI5\nLnRlc3SCCXQ3MzAudGVzdIIJdDczMS50ZXN0ggl0NzMyLnRlc3SCCXQ3MzMudGVz\ndIIJdDczNC50ZXN0ggl0NzM1LnRlc3SCCXQ3MzYudGVzdIIJdDczNy50ZXN0ggl0\nNzM4LnRlc3SCCXQ3MzkudGVzdIIJdDc0MC50ZXN0ggl0NzQxLnRlc3SCCXQ3NDIu\ndGVzdIIJdDc0My50ZXN0ggl0NzQ0LnRlc3SCCXQ3NDUudGVzdIIJdDc0Ni50ZXN0\nggl0NzQ3LnRlc3SCCXQ3NDgudGVzdIIJdDc0OS50ZXN0ggl0NzUwLnRlc3SCCXQ3\nNTEudGVzdIIJdDc1Mi50ZXN0ggl0NzUzLnRlc3SCCXQ3NTQudGVzdIIJdDc1NS50\nZXN0ggl0NzU2LnRlc3SCCXQ3NTcudGVzdIIJdDc1OC50ZXN0ggl0NzU5LnRlc3SC\nCXQ3NjAudGVzdIIJdDc2MS50ZXN0ggl0NzYyLnRlc3SCCXQ3NjMudGVzdIIJdDc2\nNC50ZXN0ggl0NzY1LnRlc3SCCXQ3NjYudGVzdIIJdDc2Ny50ZXN0ggl0NzY4LnRl\nc3SCCXQ3NjkudGVzdIIJdDc3MC50ZXN0ggl0NzcxLnRlc3SCCXQ3NzIudGVzdIIJ\ndDc3My50ZXN0ggl0Nzc0LnRlc3SCCXQ3NzUudGVzdIIJdDc3Ni50ZXN0ggl0Nzc3\nLnRlc3SCCXQ3NzgudGVzdIIJdDc3OS50ZXN0ggl0NzgwLnRlc3SCCXQ3ODEudGVz\ndIIJdDc4Mi50ZXN0ggl0NzgzLnRlc3SCCXQ3ODQudGVzdIIJdDc4NS50ZXN0ggl0\nNzg2LnRlc3SCCXQ3ODcudGVzdIIJdDc4OC50ZXN0ggl0Nzg5LnRlc3SCCXQ3OTAu\ndGVzdIIJdDc5MS50ZXN0ggl0NzkyLnRlc3SCCXQ3OTMudGVzdIIJdDc5NC50ZXN0\nggl0Nzk1LnRlc3SCCXQ3OTYudGVzdIIJdDc5Ny50ZXN0ggl0Nzk4LnRlc3SCCXQ3\nOTkudGVzdIIJdDgwMC50ZXN0ggl0ODAxLnRlc3SCCXQ4MDIudGVzdIIJdDgwMy50\nZXN0ggl0ODA0LnRlc3SCCXQ4MDUudGVzdIIJdDgwNi50ZXN0ggl0ODA3LnRlc3SC\nCXQ4MDgudGVzdIIJdDgwOS50ZXN0ggl0ODEwLnRlc3SCCXQ4MTEudGVzdIIJdDgx\nMi50ZXN0ggl0ODEzLnRlc3SCCXQ4MTQudGVzdIIJdDgxNS50ZXN0ggl0ODE2LnRl\nc3SCCXQ4MTcudGVzdIIJdDgxOC50ZXN0ggl0ODE5LnRlc3SCCXQ4MjAudGVzdIIJ\ndDgyMS50ZXN0ggl0ODIyLnRlc3SCCXQ4MjMudGVzdIIJdDgyNC50ZXN0ggl0ODI1\nLnRlc3SCCXQ4MjYudGVzdIIJdDgyNy50ZXN0ggl0ODI4LnRlc3SCCXQ4MjkudGVz\ndIIJdDgzMC50ZXN0ggl0ODMxLnRlc3SCCXQ4MzIudGVzdIIJdDgzMy50ZXN0ggl0\nODM0LnRlc3SCCXQ4MzUudGVzdIIJdDgzNi50ZXN0ggl0ODM3LnRlc3SCCXQ4Mzgu\ndGVzdIIJdDgzOS50ZXN0ggl0ODQwLnRlc3SCCXQ4NDEudGVzdIIJdDg0Mi50ZXN0\nggl0ODQzLnRlc3SCCXQ4NDQudGVzdIIJdDg0NS50ZXN0ggl0ODQ2LnRlc3SCCXQ4\nNDcudGVzdIIJdDg0OC50ZXN0ggl0ODQ5LnRlc3SCCXQ4NTAudGVzdIIJdDg1MS50\nZXN0ggl0ODUyLnRlc3SCCXQ4NTMudGVzdIIJdDg1NC50ZXN0ggl0ODU1LnRlc3SC\nCXQ4NTYudGVzdIIJdDg1Ny50ZXN0ggl0ODU4LnRlc3SCCXQ4NTkudGVzdIIJdDg2\nMC50ZXN0ggl0ODYxLnRlc3SCCXQ4NjIudGVzdIIJdDg2My50ZXN0ggl0ODY0LnRl\nc3SCCXQ4NjUudGVzdIIJdDg2Ni50ZXN0ggl0ODY3LnRlc3SCCXQ4NjgudGVzdIIJ\ndDg2OS50ZXN0ggl0ODcwLnRlc3SCCXQ4NzEudGVzdIIJdDg3Mi50ZXN0ggl0ODcz\nLnRlc3SCCXQ4NzQudGVzdIIJdDg3NS50ZXN0ggl0ODc2LnRlc3SCCXQ4NzcudGVz\ndIIJdDg3OC50ZXN0ggl0ODc5LnRlc3SCCXQ4ODAudGVzdIIJdDg4MS50ZXN0ggl0\nODgyLnRlc3SCCXQ4ODMudGVzdIIJdDg4NC50ZXN0ggl0ODg1LnRlc3SCCXQ4ODYu\ndGVzdIIJdDg4Ny50ZXN0ggl0ODg4LnRlc3SCCXQ4ODkudGVzdIIJdDg5MC50ZXN0\nggl0ODkxLnRlc3SCCXQ4OTIudGVzdIIJdDg5My50ZXN0ggl0ODk0LnRlc3SCCXQ4\nOTUudGVzdIIJdDg5Ni50ZXN0ggl0ODk3LnRlc3SCCXQ4OTgudGVzdIIJdDg5OS50\nZXN0ggl0OTAwLnRlc3SCCXQ5MDEudGVzdIIJdDkwMi50ZXN0ggl0OTAzLnRlc3SC\nCXQ5MDQudGVzdIIJdDkwNS50ZXN0ggl0OTA2LnRlc3SCCXQ5MDcudGVzdIIJdDkw\nOC50ZXN0ggl0OTA5LnRlc3SCCXQ5MTAudGVzdIIJdDkxMS50ZXN0ggl0OTEyLnRl\nc3SCCXQ5MTMudGVzdIIJdDkxNC50ZXN0ggl0OTE1LnRlc3SCCXQ5MTYudGVzdIIJ\ndDkxNy50ZXN0ggl0OTE4LnRlc3SCCXQ5MTkudGVzdIIJdDkyMC50ZXN0ggl0OTIx\nLnRlc3SCCXQ5MjIudGVzdIIJdDkyMy50ZXN0ggl0OTI0LnRlc3SCCXQ5MjUudGVz\ndIIJdDkyNi50ZXN0ggl0OTI3LnRlc3SCCXQ5MjgudGVzdIIJdDkyOS50ZXN0ggl0\nOTMwLnRlc3SCCXQ5MzEudGVzdIIJdDkzMi50ZXN0ggl0OTMzLnRlc3SCCXQ5MzQu\ndGVzdIIJdDkzNS50ZXN0ggl0OTM2LnRlc3SCCXQ5MzcudGVzdIIJdDkzOC50ZXN0\nggl0OTM5LnRlc3SCCXQ5NDAudGVzdIIJdDk0MS50ZXN0ggl0OTQyLnRlc3SCCXQ5\nNDMudGVzdIIJdDk0NC50ZXN0ggl0OTQ1LnRlc3SCCXQ5NDYudGVzdIIJdDk0Ny50\nZXN0ggl0OTQ4LnRlc3SCCXQ5NDkudGVzdIIJdDk1MC50ZXN0ggl0OTUxLnRlc3SC\nCXQ5NTIudGVzdIIJdDk1My50ZXN0ggl0OTU0LnRlc3SCCXQ5NTUudGVzdIIJdDk1\nNi50ZXN0ggl0OTU3LnRlc3SCCXQ5NTgudGVzdIIJdDk1OS50ZXN0ggl0OTYwLnRl\nc3SCCXQ5NjEudGVzdIIJdDk2Mi50ZXN0ggl0OTYzLnRlc3SCCXQ5NjQudGVzdIIJ\ndDk2NS50ZXN0ggl0OTY2LnRlc3SCCXQ5NjcudGVzdIIJdDk2OC50ZXN0ggl0OTY5\nLnRlc3SCCXQ5NzAudGVzdIIJdDk3MS50ZXN0ggl0OTcyLnRlc3SCCXQ5NzMudGVz\ndIIJdDk3NC50ZXN0ggl0OTc1LnRlc3SCCXQ5NzYudGVzdIIJdDk3Ny50ZXN0ggl0\nOTc4LnRlc3SCCXQ5NzkudGVzdIIJdDk4MC50ZXN0ggl0OTgxLnRlc3SCCXQ5ODIu\ndGVzdIIJdDk4My50ZXN0ggl0OTg0LnRlc3SCCXQ5ODUudGVzdIIJdDk4Ni50ZXN0\nggl0OTg3LnRlc3SCCXQ5ODgudGVzdIIJdDk4OS50ZXN0ggl0OTkwLnRlc3SCCXQ5\nOTEudGVzdIIJdDk5Mi50ZXN0ggl0OTkzLnRlc3SCCXQ5OTQudGVzdIIJdDk5NS50\nZXN0ggl0OTk2LnRlc3SCCXQ5OTcudGVzdIIJdDk5OC50ZXN0ggl0OTk5LnRlc3SC\nCnQxMDAwLnRlc3SCCnQxMDAxLnRlc3SCCnQxMDAyLnRlc3SCCnQxMDAzLnRlc3SC\nCnQxMDA0LnRlc3SCCnQxMDA1LnRlc3SCCnQxMDA2LnRlc3SCCnQxMDA3LnRlc3SC\nCnQxMDA4LnRlc3SCCnQxMDA5LnRlc3SCCnQxMDEwLnRlc3SCCnQxMDExLnRlc3SC\nCnQxMDEyLnRlc3SCCnQxMDEzLnRlc3SCCnQxMDE0LnRlc3SCCnQxMDE1LnRlc3SC\nCnQxMDE2LnRlc3SCCnQxMDE3LnRlc3SCCnQxMDE4LnRlc3SCCnQxMDE5LnRlc3SC\nCnQxMDIwLnRlc3SCCnQxMDIxLnRlc3SCCnQxMDIyLnRlc3SCCnQxMDIzLnRlc3SC\nCnQxMDI0LnRlc3SCCnQxMDI1LnRlc3SCCnQxMDI2LnRlc3SCCnQxMDI3LnRlc3SC\nCnQxMDI4LnRlc3SCCnQxMDI5LnRlc3SCCnQxMDMwLnRlc3SCCnQxMDMxLnRlc3SC\nCnQxMDMyLnRlc3SCCnQxMDMzLnRlc3SCCnQxMDM0LnRlc3SCCnQxMDM1LnRlc3SC\nCnQxMDM2LnRlc3SCCnQxMDM3LnRlc3SCCnQxMDM4LnRlc3SCCnQxMDM5LnRlc3SC\nCnQxMDQwLnRlc3SCCnQxMDQxLnRlc3SCCnQxMDQyLnRlc3SCCnQxMDQzLnRlc3SC\nCnQxMDQ0LnRlc3SCCnQxMDQ1LnRlc3SCCnQxMDQ2LnRlc3SCCnQxMDQ3LnRlc3SC\nCnQxMDQ4LnRlc3SCCnQxMDQ5LnRlc3SCCnQxMDUwLnRlc3SCCnQxMDUxLnRlc3SC\nCnQxMDUyLnRlc3SCCnQxMDUzLnRlc3SCCnQxMDU0LnRlc3SCCnQxMDU1LnRlc3SC\nCnQxMDU2LnRlc3SCCnQxMDU3LnRlc3SCCnQxMDU4LnRlc3SCCnQxMDU5LnRlc3SC\nCnQxMDYwLnRlc3SCCnQxMDYxLnRlc3SCCnQxMDYyLnRlc3SCCnQxMDYzLnRlc3SC\nCnQxMDY0LnRlc3SCCnQxMDY1LnRlc3SCCnQxMDY2LnRlc3SCCnQxMDY3LnRlc3SC\nCnQxMDY4LnRlc3SCCnQxMDY5LnRlc3SCCnQxMDcwLnRlc3SCCnQxMDcxLnRlc3SC\nCnQxMDcyLnRlc3SCCnQxMDczLnRlc3SCCnQxMDc0LnRlc3SCCnQxMDc1LnRlc3SC\nCnQxMDc2LnRlc3SCCnQxMDc3LnRlc3SCCnQxMDc4LnRlc3SCCnQxMDc5LnRlc3SC\nCnQxMDgwLnRlc3SCCnQxMDgxLnRlc3SCCnQxMDgyLnRlc3SCCnQxMDgzLnRlc3SC\nCnQxMDg0LnRlc3SCCnQxMDg1LnRlc3SCCnQxMDg2LnRlc3SCCnQxMDg3LnRlc3SC\nCnQxMDg4LnRlc3SCCnQxMDg5LnRlc3SCCnQxMDkwLnRlc3SCCnQxMDkxLnRlc3SC\nCnQxMDkyLnRlc3SCCnQxMDkzLnRlc3SCCnQxMDk0LnRlc3SCCnQxMDk1LnRlc3SC\nCnQxMDk2LnRlc3SCCnQxMDk3LnRlc3SCCnQxMDk4LnRlc3SCCnQxMDk5LnRlc3SC\nCnQxMTAwLnRlc3SCCnQxMTAxLnRlc3SCCnQxMTAyLnRlc3SCCnQxMTAzLnRlc3SC\nCnQxMTA0LnRlc3SCCnQxMTA1LnRlc3SCCnQxMTA2LnRlc3SCCnQxMTA3LnRlc3SC\nCnQxMTA4LnRlc3SCCnQxMTA5LnRlc3SCCnQxMTEwLnRlc3SCCnQxMTExLnRlc3SC\nCnQxMTEyLnRlc3SCCnQxMTEzLnRlc3SCCnQxMTE0LnRlc3SCCnQxMTE1LnRlc3SC\nCnQxMTE2LnRlc3SCCnQxMTE3LnRlc3SCCnQxMTE4LnRlc3SCCnQxMTE5LnRlc3SC\nCnQxMTIwLnRlc3SCCnQxMTIxLnRlc3SCCnQxMTIyLnRlc3SCCnQxMTIzLnRlc3SC\nCnQxMTI0LnRlc3SCCnQxMTI1LnRlc3SCCnQxMTI2LnRlc3SCCnQxMTI3LnRlc3SC\nCnQxMTI4LnRlc3SCCnQxMTI5LnRlc3SCCnQxMTMwLnRlc3SCCnQxMTMxLnRlc3SC\nCnQxMTMyLnRlc3SCCnQxMTMzLnRlc3SCCnQxMTM0LnRlc3SCCnQxMTM1LnRlc3SC\nCnQxMTM2LnRlc3SCCnQxMTM3LnRlc3SCCnQxMTM4LnRlc3SCCnQxMTM5LnRlc3SC\nCnQxMTQwLnRlc3SCCnQxMTQxLnRlc3SCCnQxMTQyLnRlc3SCCnQxMTQzLnRlc3SC\nCnQxMTQ0LnRlc3SCCnQxMTQ1LnRlc3SCCnQxMTQ2LnRlc3SCCnQxMTQ3LnRlc3SC\nCnQxMTQ4LnRlc3SCCnQxMTQ5LnRlc3SCCnQxMTUwLnRlc3SCCnQxMTUxLnRlc3SC\nCnQxMTUyLnRlc3SCCnQxMTUzLnRlc3SCCnQxMTU0LnRlc3SCCnQxMTU1LnRlc3SC\nCnQxMTU2LnRlc3SCCnQxMTU3LnRlc3SCCnQxMTU4LnRlc3SCCnQxMTU5LnRlc3SC\nCnQxMTYwLnRlc3SCCnQxMTYxLnRlc3SCCnQxMTYyLnRlc3SCCnQxMTYzLnRlc3SC\nCnQxMTY0LnRlc3SCCnQxMTY1LnRlc3SCCnQxMTY2LnRlc3SCCnQxMTY3LnRlc3SC\nCnQxMTY4LnRlc3SCCnQxMTY5LnRlc3SCCnQxMTcwLnRlc3SCCnQxMTcxLnRlc3SC\nCnQxMTcyLnRlc3SCCnQxMTczLnRlc3SCCnQxMTc0LnRlc3SCCnQxMTc1LnRlc3SC\nCnQxMTc2LnRlc3SCCnQxMTc3LnRlc3SCCnQxMTc4LnRlc3SCCnQxMTc5LnRlc3SC\nCnQxMTgwLnRlc3SCCnQxMTgxLnRlc3SCCnQxMTgyLnRlc3SCCnQxMTgzLnRlc3SC\nCnQxMTg0LnRlc3SCCnQxMTg1LnRlc3SCCnQxMTg2LnRlc3SCCnQxMTg3LnRlc3SC\nCnQxMTg4LnRlc3SCCnQxMTg5LnRlc3SCCnQxMTkwLnRlc3SCCnQxMTkxLnRlc3SC\nCnQxMTkyLnRlc3SCCnQxMTkzLnRlc3SCCnQxMTk0LnRlc3SCCnQxMTk1LnRlc3SC\nCnQxMTk2LnRlc3SCCnQxMTk3LnRlc3SCCnQxMTk4LnRlc3SCCnQxMTk5LnRlc3SC\nCnQxMjAwLnRlc3SCCnQxMjAxLnRlc3SCCnQxMjAyLnRlc3SCCnQxMjAzLnRlc3SC\nCnQxMjA0LnRlc3SCCnQxMjA1LnRlc3SCCnQxMjA2LnRlc3SCCnQxMjA3LnRlc3SC\nCnQxMjA4LnRlc3SCCnQxMjA5LnRlc3SCCnQxMjEwLnRlc3SCCnQxMjExLnRlc3SC\nCnQxMjEyLnRlc3SCCnQxMjEzLnRlc3SCCnQxMjE0LnRlc3SCCnQxMjE1LnRlc3SC\nCnQxMjE2LnRlc3SCCnQxMjE3LnRlc3SCCnQxMjE4LnRlc3SCCnQxMjE5LnRlc3SC\nCnQxMjIwLnRlc3SCCnQxMjIxLnRlc3SCCnQxMjIyLnRlc3SCCnQxMjIzLnRlc3SC\nCnQxMjI0LnRlc3SCCnQxMjI1LnRlc3SCCnQxMjI2LnRlc3SCCnQxMjI3LnRlc3SC\nCnQxMjI4LnRlc3SCCnQxMjI5LnRlc3SCCnQxMjMwLnRlc3SCCnQxMjMxLnRlc3SC\nCnQxMjMyLnRlc3SCCnQxMjMzLnRlc3SCCnQxMjM0LnRlc3SCCnQxMjM1LnRlc3SC\nCnQxMjM2LnRlc3SCCnQxMjM3LnRlc3SCCnQxMjM4LnRlc3SCCnQxMjM5LnRlc3SC\nCnQxMjQwLnRlc3SCCnQxMjQxLnRlc3SCCnQxMjQyLnRlc3SCCnQxMjQzLnRlc3SC\nCnQxMjQ0LnRlc3SCCnQxMjQ1LnRlc3SCCnQxMjQ2LnRlc3SCCnQxMjQ3LnRlc3SC\nCnQxMjQ4LnRlc3SCCnQxMjQ5LnRlc3SCCnQxMjUwLnRlc3SCCnQxMjUxLnRlc3SC\nCnQxMjUyLnRlc3SCCnQxMjUzLnRlc3SCCnQxMjU0LnRlc3SCCnQxMjU1LnRlc3SC\nCnQxMjU2LnRlc3SCCnQxMjU3LnRlc3SCCnQxMjU4LnRlc3SCCnQxMjU5LnRlc3SC\nCnQxMjYwLnRlc3SCCnQxMjYxLnRlc3SCCnQxMjYyLnRlc3SCCnQxMjYzLnRlc3SC\nCnQxMjY0LnRlc3SCCnQxMjY1LnRlc3SCCnQxMjY2LnRlc3SCCnQxMjY3LnRlc3SC\nCnQxMjY4LnRlc3SCCnQxMjY5LnRlc3SCCnQxMjcwLnRlc3SCCnQxMjcxLnRlc3SC\nCnQxMjcyLnRlc3SCCnQxMjczLnRlc3SCCnQxMjc0LnRlc3SCCnQxMjc1LnRlc3SC\nCnQxMjc2LnRlc3SCCnQxMjc3LnRlc3SCCnQxMjc4LnRlc3SCCnQxMjc5LnRlc3SC\nCnQxMjgwLnRlc3SCCnQxMjgxLnRlc3SCCnQxMjgyLnRlc3SCCnQxMjgzLnRlc3SC\nCnQxMjg0LnRlc3SCCnQxMjg1LnRlc3SCCnQxMjg2LnRlc3SCCnQxMjg3LnRlc3SC\nCnQxMjg4LnRlc3SCCnQxMjg5LnRlc3SCCnQxMjkwLnRlc3SCCnQxMjkxLnRlc3SC\nCnQxMjkyLnRlc3SCCnQxMjkzLnRlc3SCCnQxMjk0LnRlc3SCCnQxMjk1LnRlc3SC\nCnQxMjk2LnRlc3SCCnQxMjk3LnRlc3SCCnQxMjk4LnRlc3SCCnQxMjk5LnRlc3SC\nCnQxMzAwLnRlc3SCCnQxMzAxLnRlc3SCCnQxMzAyLnRlc3SCCnQxMzAzLnRlc3SC\nCnQxMzA0LnRlc3SCCnQxMzA1LnRlc3SCCnQxMzA2LnRlc3SCCnQxMzA3LnRlc3SC\nCnQxMzA4LnRlc3SCCnQxMzA5LnRlc3SCCnQxMzEwLnRlc3SCCnQxMzExLnRlc3SC\nCnQxMzEyLnRlc3SCCnQxMzEzLnRlc3SCCnQxMzE0LnRlc3SCCnQxMzE1LnRlc3SC\nCnQxMzE2LnRlc3SCCnQxMzE3LnRlc3SCCnQxMzE4LnRlc3SCCnQxMzE5LnRlc3SC\nCnQxMzIwLnRlc3SCCnQxMzIxLnRlc3SCCnQxMzIyLnRlc3SCCnQxMzIzLnRlc3SC\nCnQxMzI0LnRlc3SCCnQxMzI1LnRlc3SCCnQxMzI2LnRlc3SCCnQxMzI3LnRlc3SC\nCnQxMzI4LnRlc3SCCnQxMzI5LnRlc3SCCnQxMzMwLnRlc3SCCnQxMzMxLnRlc3SC\nCnQxMzMyLnRlc3SCCnQxMzMzLnRlc3SCCnQxMzM0LnRlc3SCCnQxMzM1LnRlc3SC\nCnQxMzM2LnRlc3SCCnQxMzM3LnRlc3SCCnQxMzM4LnRlc3SCCnQxMzM5LnRlc3SC\nCnQxMzQwLnRlc3SCCnQxMzQxLnRlc3SCCnQxMzQyLnRlc3SCCnQxMzQzLnRlc3SC\nCnQxMzQ0LnRlc3SCCnQxMzQ1LnRlc3SCCnQxMzQ2LnRlc3SCCnQxMzQ3LnRlc3SC\nCnQxMzQ4LnRlc3SCCnQxMzQ5LnRlc3SCCnQxMzUwLnRlc3SCCnQxMzUxLnRlc3SC\nCnQxMzUyLnRlc3SCCnQxMzUzLnRlc3SCCnQxMzU0LnRlc3SCCnQxMzU1LnRlc3SC\nCnQxMzU2LnRlc3SCCnQxMzU3LnRlc3SCCnQxMzU4LnRlc3SCCnQxMzU5LnRlc3SC\nCnQxMzYwLnRlc3SCCnQxMzYxLnRlc3SCCnQxMzYyLnRlc3SCCnQxMzYzLnRlc3SC\nCnQxMzY0LnRlc3SCCnQxMzY1LnRlc3SCCnQxMzY2LnRlc3SCCnQxMzY3LnRlc3SC\nCnQxMzY4LnRlc3SCCnQxMzY5LnRlc3SCCnQxMzcwLnRlc3SCCnQxMzcxLnRlc3SC\nCnQxMzcyLnRlc3SCCnQxMzczLnRlc3SCCnQxMzc0LnRlc3SCCnQxMzc1LnRlc3SC\nCnQxMzc2LnRlc3SCCnQxMzc3LnRlc3SCCnQxMzc4LnRlc3SCCnQxMzc5LnRlc3SC\nCnQxMzgwLnRlc3SCCnQxMzgxLnRlc3SCCnQxMzgyLnRlc3SCCnQxMzgzLnRlc3SC\nCnQxMzg0LnRlc3SCCnQxMzg1LnRlc3SCCnQxMzg2LnRlc3SCCnQxMzg3LnRlc3SC\nCnQxMzg4LnRlc3SCCnQxMzg5LnRlc3SCCnQxMzkwLnRlc3SCCnQxMzkxLnRlc3SC\nCnQxMzkyLnRlc3SCCnQxMzkzLnRlc3SCCnQxMzk0LnRlc3SCCnQxMzk1LnRlc3SC\nCnQxMzk2LnRlc3SCCnQxMzk3LnRlc3SCCnQxMzk4LnRlc3SCCnQxMzk5LnRlc3SC\nCnQxNDAwLnRlc3SCCnQxNDAxLnRlc3SCCnQxNDAyLnRlc3SCCnQxNDAzLnRlc3SC\nCnQxNDA0LnRlc3SCCnQxNDA1LnRlc3SCCnQxNDA2LnRlc3SCCnQxNDA3LnRlc3SC\nCnQxNDA4LnRlc3SCCnQxNDA5LnRlc3SCCnQxNDEwLnRlc3SCCnQxNDExLnRlc3SC\nCnQxNDEyLnRlc3SCCnQxNDEzLnRlc3SCCnQxNDE0LnRlc3SCCnQxNDE1LnRlc3SC\nCnQxNDE2LnRlc3SCCnQxNDE3LnRlc3SCCnQxNDE4LnRlc3SCCnQxNDE5LnRlc3SC\nCnQxNDIwLnRlc3SCCnQxNDIxLnRlc3SCCnQxNDIyLnRlc3SCCnQxNDIzLnRlc3SC\nCnQxNDI0LnRlc3SCCnQxNDI1LnRlc3SCCnQxNDI2LnRlc3SCCnQxNDI3LnRlc3SC\nCnQxNDI4LnRlc3SCCnQxNDI5LnRlc3SCCnQxNDMwLnRlc3SCCnQxNDMxLnRlc3SC\nCnQxNDMyLnRlc3SCCnQxNDMzLnRlc3SCCnQxNDM0LnRlc3SCCnQxNDM1LnRlc3SC\nCnQxNDM2LnRlc3SCCnQxNDM3LnRlc3SCCnQxNDM4LnRlc3SCCnQxNDM5LnRlc3SC\nCnQxNDQwLnRlc3SCCnQxNDQxLnRlc3SCCnQxNDQyLnRlc3SCCnQxNDQzLnRlc3SC\nCnQxNDQ0LnRlc3SCCnQxNDQ1LnRlc3SCCnQxNDQ2LnRlc3SCCnQxNDQ3LnRlc3SC\nCnQxNDQ4LnRlc3SCCnQxNDQ5LnRlc3SCCnQxNDUwLnRlc3SCCnQxNDUxLnRlc3SC\nCnQxNDUyLnRlc3SCCnQxNDUzLnRlc3SCCnQxNDU0LnRlc3SCCnQxNDU1LnRlc3SC\nCnQxNDU2LnRlc3SCCnQxNDU3LnRlc3SCCnQxNDU4LnRlc3SCCnQxNDU5LnRlc3SC\nCnQxNDYwLnRlc3SCCnQxNDYxLnRlc3SCCnQxNDYyLnRlc3SCCnQxNDYzLnRlc3SC\nCnQxNDY0LnRlc3SCCnQxNDY1LnRlc3SCCnQxNDY2LnRlc3SCCnQxNDY3LnRlc3SC\nCnQxNDY4LnRlc3SCCnQxNDY5LnRlc3SCCnQxNDcwLnRlc3SCCnQxNDcxLnRlc3SC\nCnQxNDcyLnRlc3SCCnQxNDczLnRlc3SCCnQxNDc0LnRlc3SCCnQxNDc1LnRlc3SC\nCnQxNDc2LnRlc3SCCnQxNDc3LnRlc3SCCnQxNDc4LnRlc3SCCnQxNDc5LnRlc3SC\nCnQxNDgwLnRlc3SCCnQxNDgxLnRlc3SCCnQxNDgyLnRlc3SCCnQxNDgzLnRlc3SC\nCnQxNDg0LnRlc3SCCnQxNDg1LnRlc3SCCnQxNDg2LnRlc3SCCnQxNDg3LnRlc3SC\nCnQxNDg4LnRlc3SCCnQxNDg5LnRlc3SCCnQxNDkwLnRlc3SCCnQxNDkxLnRlc3SC\nCnQxNDkyLnRlc3SCCnQxNDkzLnRlc3SCCnQxNDk0LnRlc3SCCnQxNDk1LnRlc3SC\nCnQxNDk2LnRlc3SCCnQxNDk3LnRlc3SCCnQxNDk4LnRlc3SCCnQxNDk5LnRlc3SC\nCnQxNTAwLnRlc3SCCnQxNTAxLnRlc3SCCnQxNTAyLnRlc3SCCnQxNTAzLnRlc3SC\nCnQxNTA0LnRlc3SCCnQxNTA1LnRlc3SCCnQxNTA2LnRlc3SCCnQxNTA3LnRlc3SC\nCnQxNTA4LnRlc3SCCnQxNTA5LnRlc3SCCnQxNTEwLnRlc3SCCnQxNTExLnRlc3SC\nCnQxNTEyLnRlc3SCCnQxNTEzLnRlc3SCCnQxNTE0LnRlc3SCCnQxNTE1LnRlc3SC\nCnQxNTE2LnRlc3SCCnQxNTE3LnRlc3SCCnQxNTE4LnRlc3SCCnQxNTE5LnRlc3SC\nCnQxNTIwLnRlc3SCCnQxNTIxLnRlc3SCCnQxNTIyLnRlc3SCCnQxNTIzLnRlc3SC\nCnQxNTI0LnRlc3SCCnQxNTI1LnRlc3SCCnQxNTI2LnRlc3SCCnQxNTI3LnRlc3SC\nCnQxNTI4LnRlc3SCCnQxNTI5LnRlc3SCCnQxNTMwLnRlc3SCCnQxNTMxLnRlc3SC\nCnQxNTMyLnRlc3SCCnQxNTMzLnRlc3SCCnQxNTM0LnRlc3SCCnQxNTM1LnRlc3SC\nCnQxNTM2LnRlc3SCCnQxNTM3LnRlc3SCCnQxNTM4LnRlc3SCCnQxNTM5LnRlc3SC\nCnQxNTQwLnRlc3SCCnQxNTQxLnRlc3SCCnQxNTQyLnRlc3SCCnQxNTQzLnRlc3SC\nCnQxNTQ0LnRlc3SCCnQxNTQ1LnRlc3SCCnQxNTQ2LnRlc3SCCnQxNTQ3LnRlc3SC\nCnQxNTQ4LnRlc3SCCnQxNTQ5LnRlc3SCCnQxNTUwLnRlc3SCCnQxNTUxLnRlc3SC\nCnQxNTUyLnRlc3SCCnQxNTUzLnRlc3SCCnQxNTU0LnRlc3SCCnQxNTU1LnRlc3SC\nCnQxNTU2LnRlc3SCCnQxNTU3LnRlc3SCCnQxNTU4LnRlc3SCCnQxNTU5LnRlc3SC\nCnQxNTYwLnRlc3SCCnQxNTYxLnRlc3SCCnQxNTYyLnRlc3SCCnQxNTYzLnRlc3SC\nCnQxNTY0LnRlc3SCCnQxNTY1LnRlc3SCCnQxNTY2LnRlc3SCCnQxNTY3LnRlc3SC\nCnQxNTY4LnRlc3SCCnQxNTY5LnRlc3SCCnQxNTcwLnRlc3SCCnQxNTcxLnRlc3SC\nCnQxNTcyLnRlc3SCCnQxNTczLnRlc3SCCnQxNTc0LnRlc3SCCnQxNTc1LnRlc3SC\nCnQxNTc2LnRlc3SCCnQxNTc3LnRlc3SCCnQxNTc4LnRlc3SCCnQxNTc5LnRlc3SC\nCnQxNTgwLnRlc3SCCnQxNTgxLnRlc3SCCnQxNTgyLnRlc3SCCnQxNTgzLnRlc3SC\nCnQxNTg0LnRlc3SCCnQxNTg1LnRlc3SCCnQxNTg2LnRlc3SCCnQxNTg3LnRlc3SC\nCnQxNTg4LnRlc3SCCnQxNTg5LnRlc3SCCnQxNTkwLnRlc3SCCnQxNTkxLnRlc3SC\nCnQxNTkyLnRlc3SCCnQxNTkzLnRlc3SCCnQxNTk0LnRlc3SCCnQxNTk1LnRlc3SC\nCnQxNTk2LnRlc3SCCnQxNTk3LnRlc3SCCnQxNTk4LnRlc3SCCnQxNTk5LnRlc3SC\nCnQxNjAwLnRlc3SCCnQxNjAxLnRlc3SCCnQxNjAyLnRlc3SCCnQxNjAzLnRlc3SC\nCnQxNjA0LnRlc3SCCnQxNjA1LnRlc3SCCnQxNjA2LnRlc3SCCnQxNjA3LnRlc3SC\nCnQxNjA4LnRlc3SCCnQxNjA5LnRlc3SCCnQxNjEwLnRlc3SCCnQxNjExLnRlc3SC\nCnQxNjEyLnRlc3SCCnQxNjEzLnRlc3SCCnQxNjE0LnRlc3SCCnQxNjE1LnRlc3SC\nCnQxNjE2LnRlc3SCCnQxNjE3LnRlc3SCCnQxNjE4LnRlc3SCCnQxNjE5LnRlc3SC\nCnQxNjIwLnRlc3SCCnQxNjIxLnRlc3SCCnQxNjIyLnRlc3SCCnQxNjIzLnRlc3SC\nCnQxNjI0LnRlc3SCCnQxNjI1LnRlc3SCCnQxNjI2LnRlc3SCCnQxNjI3LnRlc3SC\nCnQxNjI4LnRlc3SCCnQxNjI5LnRlc3SCCnQxNjMwLnRlc3SCCnQxNjMxLnRlc3SC\nCnQxNjMyLnRlc3SCCnQxNjMzLnRlc3SCCnQxNjM0LnRlc3SCCnQxNjM1LnRlc3SC\nCnQxNjM2LnRlc3SCCnQxNjM3LnRlc3SCCnQxNjM4LnRlc3SCCnQxNjM5LnRlc3SC\nCnQxNjQwLnRlc3SCCnQxNjQxLnRlc3SCCnQxNjQyLnRlc3SCCnQxNjQzLnRlc3SC\nCnQxNjQ0LnRlc3SCCnQxNjQ1LnRlc3SCCnQxNjQ2LnRlc3SCCnQxNjQ3LnRlc3SC\nCnQxNjQ4LnRlc3SCCnQxNjQ5LnRlc3SCCnQxNjUwLnRlc3SCCnQxNjUxLnRlc3SC\nCnQxNjUyLnRlc3SCCnQxNjUzLnRlc3SCCnQxNjU0LnRlc3SCCnQxNjU1LnRlc3SC\nCnQxNjU2LnRlc3SCCnQxNjU3LnRlc3SCCnQxNjU4LnRlc3SCCnQxNjU5LnRlc3SC\nCnQxNjYwLnRlc3SCCnQxNjYxLnRlc3SCCnQxNjYyLnRlc3SCCnQxNjYzLnRlc3SC\nCnQxNjY0LnRlc3SCCnQxNjY1LnRlc3SCCnQxNjY2LnRlc3SCCnQxNjY3LnRlc3SC\nCnQxNjY4LnRlc3SCCnQxNjY5LnRlc3SCCnQxNjcwLnRlc3SCCnQxNjcxLnRlc3SC\nCnQxNjcyLnRlc3SCCnQxNjczLnRlc3SCCnQxNjc0LnRlc3SCCnQxNjc1LnRlc3SC\nCnQxNjc2LnRlc3SCCnQxNjc3LnRlc3SCCnQxNjc4LnRlc3SCCnQxNjc5LnRlc3SC\nCnQxNjgwLnRlc3SCCnQxNjgxLnRlc3SCCnQxNjgyLnRlc3SCCnQxNjgzLnRlc3SC\nCnQxNjg0LnRlc3SCCnQxNjg1LnRlc3SCCnQxNjg2LnRlc3SCCnQxNjg3LnRlc3SC\nCnQxNjg4LnRlc3SCCnQxNjg5LnRlc3SCCnQxNjkwLnRlc3SCCnQxNjkxLnRlc3SC\nCnQxNjkyLnRlc3SCCnQxNjkzLnRlc3SCCnQxNjk0LnRlc3SCCnQxNjk1LnRlc3SC\nCnQxNjk2LnRlc3SCCnQxNjk3LnRlc3SCCnQxNjk4LnRlc3SCCnQxNjk5LnRlc3SC\nCnQxNzAwLnRlc3SCCnQxNzAxLnRlc3SCCnQxNzAyLnRlc3SCCnQxNzAzLnRlc3SC\nCnQxNzA0LnRlc3SCCnQxNzA1LnRlc3SCCnQxNzA2LnRlc3SCCnQxNzA3LnRlc3SC\nCnQxNzA4LnRlc3SCCnQxNzA5LnRlc3SCCnQxNzEwLnRlc3SCCnQxNzExLnRlc3SC\nCnQxNzEyLnRlc3SCCnQxNzEzLnRlc3SCCnQxNzE0LnRlc3SCCnQxNzE1LnRlc3SC\nCnQxNzE2LnRlc3SCCnQxNzE3LnRlc3SCCnQxNzE4LnRlc3SCCnQxNzE5LnRlc3SC\nCnQxNzIwLnRlc3SCCnQxNzIxLnRlc3SCCnQxNzIyLnRlc3SCCnQxNzIzLnRlc3SC\nCnQxNzI0LnRlc3SCCnQxNzI1LnRlc3SCCnQxNzI2LnRlc3SCCnQxNzI3LnRlc3SC\nCnQxNzI4LnRlc3SCCnQxNzI5LnRlc3SCCnQxNzMwLnRlc3SCCnQxNzMxLnRlc3SC\nCnQxNzMyLnRlc3SCCnQxNzMzLnRlc3SCCnQxNzM0LnRlc3SCCnQxNzM1LnRlc3SC\nCnQxNzM2LnRlc3SCCnQxNzM3LnRlc3SCCnQxNzM4LnRlc3SCCnQxNzM5LnRlc3SC\nCnQxNzQwLnRlc3SCCnQxNzQxLnRlc3SCCnQxNzQyLnRlc3SCCnQxNzQzLnRlc3SC\nCnQxNzQ0LnRlc3SCCnQxNzQ1LnRlc3SCCnQxNzQ2LnRlc3SCCnQxNzQ3LnRlc3SC\nCnQxNzQ4LnRlc3SCCnQxNzQ5LnRlc3SCCnQxNzUwLnRlc3SCCnQxNzUxLnRlc3SC\nCnQxNzUyLnRlc3SCCnQxNzUzLnRlc3SCCnQxNzU0LnRlc3SCCnQxNzU1LnRlc3SC\nCnQxNzU2LnRlc3SCCnQxNzU3LnRlc3SCCnQxNzU4LnRlc3SCCnQxNzU5LnRlc3SC\nCnQxNzYwLnRlc3SCCnQxNzYxLnRlc3SCCnQxNzYyLnRlc3SCCnQxNzYzLnRlc3SC\nCnQxNzY0LnRlc3SCCnQxNzY1LnRlc3SCCnQxNzY2LnRlc3SCCnQxNzY3LnRlc3SC\nCnQxNzY4LnRlc3SCCnQxNzY5LnRlc3SCCnQxNzcwLnRlc3SCCnQxNzcxLnRlc3SC\nCnQxNzcyLnRlc3SCCnQxNzczLnRlc3SCCnQxNzc0LnRlc3SCCnQxNzc1LnRlc3SC\nCnQxNzc2LnRlc3SCCnQxNzc3LnRlc3SCCnQxNzc4LnRlc3SCCnQxNzc5LnRlc3SC\nCnQxNzgwLnRlc3SCCnQxNzgxLnRlc3SCCnQxNzgyLnRlc3SCCnQxNzgzLnRlc3SC\nCnQxNzg0LnRlc3SCCnQxNzg1LnRlc3SCCnQxNzg2LnRlc3SCCnQxNzg3LnRlc3SC\nCnQxNzg4LnRlc3SCCnQxNzg5LnRlc3SCCnQxNzkwLnRlc3SCCnQxNzkxLnRlc3SC\nCnQxNzkyLnRlc3SCCnQxNzkzLnRlc3SCCnQxNzk0LnRlc3SCCnQxNzk1LnRlc3SC\nCnQxNzk2LnRlc3SCCnQxNzk3LnRlc3SCCnQxNzk4LnRlc3SCCnQxNzk5LnRlc3SC\nCnQxODAwLnRlc3SCCnQxODAxLnRlc3SCCnQxODAyLnRlc3SCCnQxODAzLnRlc3SC\nCnQxODA0LnRlc3SCCnQxODA1LnRlc3SCCnQxODA2LnRlc3SCCnQxODA3LnRlc3SC\nCnQxODA4LnRlc3SCCnQxODA5LnRlc3SCCnQxODEwLnRlc3SCCnQxODExLnRlc3SC\nCnQxODEyLnRlc3SCCnQxODEzLnRlc3SCCnQxODE0LnRlc3SCCnQxODE1LnRlc3SC\nCnQxODE2LnRlc3SCCnQxODE3LnRlc3SCCnQxODE4LnRlc3SCCnQxODE5LnRlc3SC\nCnQxODIwLnRlc3SCCnQxODIxLnRlc3SCCnQxODIyLnRlc3SCCnQxODIzLnRlc3SC\nCnQxODI0LnRlc3SCCnQxODI1LnRlc3SCCnQxODI2LnRlc3SCCnQxODI3LnRlc3SC\nCnQxODI4LnRlc3SCCnQxODI5LnRlc3SCCnQxODMwLnRlc3SCCnQxODMxLnRlc3SC\nCnQxODMyLnRlc3SCCnQxODMzLnRlc3SCCnQxODM0LnRlc3SCCnQxODM1LnRlc3SC\nCnQxODM2LnRlc3SCCnQxODM3LnRlc3SCCnQxODM4LnRlc3SCCnQxODM5LnRlc3SC\nCnQxODQwLnRlc3SCCnQxODQxLnRlc3SCCnQxODQyLnRlc3SCCnQxODQzLnRlc3SC\nCnQxODQ0LnRlc3SCCnQxODQ1LnRlc3SCCnQxODQ2LnRlc3SCCnQxODQ3LnRlc3SC\nCnQxODQ4LnRlc3SCCnQxODQ5LnRlc3SCCnQxODUwLnRlc3SCCnQxODUxLnRlc3SC\nCnQxODUyLnRlc3SCCnQxODUzLnRlc3SCCnQxODU0LnRlc3SCCnQxODU1LnRlc3SC\nCnQxODU2LnRlc3SCCnQxODU3LnRlc3SCCnQxODU4LnRlc3SCCnQxODU5LnRlc3SC\nCnQxODYwLnRlc3SCCnQxODYxLnRlc3SCCnQxODYyLnRlc3SCCnQxODYzLnRlc3SC\nCnQxODY0LnRlc3SCCnQxODY1LnRlc3SCCnQxODY2LnRlc3SCCnQxODY3LnRlc3SC\nCnQxODY4LnRlc3SCCnQxODY5LnRlc3SCCnQxODcwLnRlc3SCCnQxODcxLnRlc3SC\nCnQxODcyLnRlc3SCCnQxODczLnRlc3SCCnQxODc0LnRlc3SCCnQxODc1LnRlc3SC\nCnQxODc2LnRlc3SCCnQxODc3LnRlc3SCCnQxODc4LnRlc3SCCnQxODc5LnRlc3SC\nCnQxODgwLnRlc3SCCnQxODgxLnRlc3SCCnQxODgyLnRlc3SCCnQxODgzLnRlc3SC\nCnQxODg0LnRlc3SCCnQxODg1LnRlc3SCCnQxODg2LnRlc3SCCnQxODg3LnRlc3SC\nCnQxODg4LnRlc3SCCnQxODg5LnRlc3SCCnQxODkwLnRlc3SCCnQxODkxLnRlc3SC\nCnQxODkyLnRlc3SCCnQxODkzLnRlc3SCCnQxODk0LnRlc3SCCnQxODk1LnRlc3SC\nCnQxODk2LnRlc3SCCnQxODk3LnRlc3SCCnQxODk4LnRlc3SCCnQxODk5LnRlc3SC\nCnQxOTAwLnRlc3SCCnQxOTAxLnRlc3SCCnQxOTAyLnRlc3SCCnQxOTAzLnRlc3SC\nCnQxOTA0LnRlc3SCCnQxOTA1LnRlc3SCCnQxOTA2LnRlc3SCCnQxOTA3LnRlc3SC\nCnQxOTA4LnRlc3SCCnQxOTA5LnRlc3SCCnQxOTEwLnRlc3SCCnQxOTExLnRlc3SC\nCnQxOTEyLnRlc3SCCnQxOTEzLnRlc3SCCnQxOTE0LnRlc3SCCnQxOTE1LnRlc3SC\nCnQxOTE2LnRlc3SCCnQxOTE3LnRlc3SCCnQxOTE4LnRlc3SCCnQxOTE5LnRlc3SC\nCnQxOTIwLnRlc3SCCnQxOTIxLnRlc3SCCnQxOTIyLnRlc3SCCnQxOTIzLnRlc3SC\nCnQxOTI0LnRlc3SCCnQxOTI1LnRlc3SCCnQxOTI2LnRlc3SCCnQxOTI3LnRlc3SC\nCnQxOTI4LnRlc3SCCnQxOTI5LnRlc3SCCnQxOTMwLnRlc3SCCnQxOTMxLnRlc3SC\nCnQxOTMyLnRlc3SCCnQxOTMzLnRlc3SCCnQxOTM0LnRlc3SCCnQxOTM1LnRlc3SC\nCnQxOTM2LnRlc3SCCnQxOTM3LnRlc3SCCnQxOTM4LnRlc3SCCnQxOTM5LnRlc3SC\nCnQxOTQwLnRlc3SCCnQxOTQxLnRlc3SCCnQxOTQyLnRlc3SCCnQxOTQzLnRlc3SC\nCnQxOTQ0LnRlc3SCCnQxOTQ1LnRlc3SCCnQxOTQ2LnRlc3SCCnQxOTQ3LnRlc3SC\nCnQxOTQ4LnRlc3SCCnQxOTQ5LnRlc3SCCnQxOTUwLnRlc3SCCnQxOTUxLnRlc3SC\nCnQxOTUyLnRlc3SCCnQxOTUzLnRlc3SCCnQxOTU0LnRlc3SCCnQxOTU1LnRlc3SC\nCnQxOTU2LnRlc3SCCnQxOTU3LnRlc3SCCnQxOTU4LnRlc3SCCnQxOTU5LnRlc3SC\nCnQxOTYwLnRlc3SCCnQxOTYxLnRlc3SCCnQxOTYyLnRlc3SCCnQxOTYzLnRlc3SC\nCnQxOTY0LnRlc3SCCnQxOTY1LnRlc3SCCnQxOTY2LnRlc3SCCnQxOTY3LnRlc3SC\nCnQxOTY4LnRlc3SCCnQxOTY5LnRlc3SCCnQxOTcwLnRlc3SCCnQxOTcxLnRlc3SC\nCnQxOTcyLnRlc3SCCnQxOTczLnRlc3SCCnQxOTc0LnRlc3SCCnQxOTc1LnRlc3SC\nCnQxOTc2LnRlc3SCCnQxOTc3LnRlc3SCCnQxOTc4LnRlc3SCCnQxOTc5LnRlc3SC\nCnQxOTgwLnRlc3SCCnQxOTgxLnRlc3SCCnQxOTgyLnRlc3SCCnQxOTgzLnRlc3SC\nCnQxOTg0LnRlc3SCCnQxOTg1LnRlc3SCCnQxOTg2LnRlc3SCCnQxOTg3LnRlc3SC\nCnQxOTg4LnRlc3SCCnQxOTg5LnRlc3SCCnQxOTkwLnRlc3SCCnQxOTkxLnRlc3SC\nCnQxOTkyLnRlc3SCCnQxOTkzLnRlc3SCCnQxOTk0LnRlc3SCCnQxOTk1LnRlc3SC\nCnQxOTk2LnRlc3SCCnQxOTk3LnRlc3SCCnQxOTk4LnRlc3SCCnQxOTk5LnRlc3SC\nCnQyMDAwLnRlc3SCCnQyMDAxLnRlc3SCCnQyMDAyLnRlc3SCCnQyMDAzLnRlc3SC\nCnQyMDA0LnRlc3SCCnQyMDA1LnRlc3SCCnQyMDA2LnRlc3SCCnQyMDA3LnRlc3SC\nCnQyMDA4LnRlc3SCCnQyMDA5LnRlc3SCCnQyMDEwLnRlc3SCCnQyMDExLnRlc3SC\nCnQyMDEyLnRlc3SCCnQyMDEzLnRlc3SCCnQyMDE0LnRlc3SCCnQyMDE1LnRlc3SC\nCnQyMDE2LnRlc3SCCnQyMDE3LnRlc3SCCnQyMDE4LnRlc3SCCnQyMDE5LnRlc3SC\nCnQyMDIwLnRlc3SCCnQyMDIxLnRlc3SCCnQyMDIyLnRlc3SCCnQyMDIzLnRlc3SC\nCnQyMDI0LnRlc3SCCnQyMDI1LnRlc3SCCnQyMDI2LnRlc3SCCnQyMDI3LnRlc3SC\nCnQyMDI4LnRlc3SCCnQyMDI5LnRlc3SCCnQyMDMwLnRlc3SCCnQyMDMxLnRlc3SC\nCnQyMDMyLnRlc3SCCnQyMDMzLnRlc3SCCnQyMDM0LnRlc3SCCnQyMDM1LnRlc3SC\nCnQyMDM2LnRlc3SCCnQyMDM3LnRlc3SCCnQyMDM4LnRlc3SCCnQyMDM5LnRlc3SC\nCnQyMDQwLnRlc3SCCnQyMDQxLnRlc3SCCnQyMDQyLnRlc3SCCnQyMDQzLnRlc3SC\nCnQyMDQ0LnRlc3SCCnQyMDQ1LnRlc3SCCnQyMDQ2LnRlc3SCCnQyMDQ3LnRlc3Qw\nCgYIKoZIzj0EAwIDSAAwRQIgJ3DxkJXYfuF0fOyxP/+Vgec1MUe7hI2icwdIBoov\nrEgCIQDLJ2U5qY9gnij/XCc5yjKUtlBQ7YnCOdd+CDXPr817ng==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJSRPdY08oTYlPwTJRWYeoN4U/L2w5Vlpp6HO+QInj1EoAoGCCqGSM49\nAwEHoUQDQgAE+Ncn59OzfkLH0T+e4AbuVvi5+XeGEt9DaEFtlVWf/zsGSx/bon/0\nfyUouXnzMDIPSPKsw/tgIJKytsHO1x1Mig==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -529,14 +548,15 @@ "features": [ "denial-of-service" ], + "importance": "undetermined", "description": "Produces the following pathological chain:\n\n```\nroot [many constraints] -> EE [many names]\n```\n\nThe root CA contains over 2048 permits and excludes name constraints, which\nare checked against the EE's 2048 SANs. This is typically rejected by\nimplementations due to quadratic blowup, but is technically valid.\n\nThis testcase is extended from OpenSSL's `(many-names2.pem, many-constraints.pem)`\ntestcase, via .", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMILZDDCC2LGgAwIBAgIUCcq437DcwUgtkNouIQlzl+1ogN4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQiu1WCxNrgi65PXYxxIcQI1MLMOXgvjvS48Thh\n2eK/8ArDqXEkGs+CB8GKE2/kDaZTfA4BUWmHO5sBRCGMcp6Ao4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFPqyxhDQVcedSaFM/p0JaqPz9vBeMILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDSQAwRgIhAJuJ8wt+EAm8TUP1F+dUQXhQxmKpVZlMVqfZyYoWoukmAiEA\noMa6rbwPRWIy5dz8zrhAj6W32Z40xetqTuyiwt2QqSU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMILZCjCC2LGgAwIBAgIUBOhsvl+aRTcauZcWabs7/m5MunIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQxSdrGSTSHekDz8NiuU05QJZoNKlabsZ45wpjy\nGTBegpF7ZIG44A/SXMTIRJeBKbMdwpe0yWn9tgPa+R8450fbo4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFPHkOtrKOSCsRt8CmFq8MFW/kpdmMILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDRwAwRAIgdbUnziu2woCxWEy+czGBi6DYi8jsE+qFKOLkAdGp6PoCIFUr\nO4ErDASuYileJpyz77MnjvDb3Eos1eShlf3zQqut\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIJdRTCCXOqgAwIBAgIUZ0/XhuUbrAuNOZf/q67t4LXBsGowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEPoVHSSHF\ndp4lIX7yMQ0sg/X7swsiPVYhGfuMXVNMShxiTHiPeAq+y0wCBCJeUCZ/hFLxZiw9\nwDefQdfYLbCug6OCXCQwglwgMB0GA1UdDgQWBBTkN6TFxOPZo9xAzegaJ/ZiU+Gr\neTAfBgNVHSMEGDAWgBT6ssYQ0FXHnUmhTP6dCWqj8/bwXjALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwglu6BgNVHREBAf8EgluuMIJbqoIHdDAudGVz\ndIIHdDEudGVzdIIHdDIudGVzdIIHdDMudGVzdIIHdDQudGVzdIIHdDUudGVzdIIH\ndDYudGVzdIIHdDcudGVzdIIHdDgudGVzdIIHdDkudGVzdIIIdDEwLnRlc3SCCHQx\nMS50ZXN0ggh0MTIudGVzdIIIdDEzLnRlc3SCCHQxNC50ZXN0ggh0MTUudGVzdIII\ndDE2LnRlc3SCCHQxNy50ZXN0ggh0MTgudGVzdIIIdDE5LnRlc3SCCHQyMC50ZXN0\nggh0MjEudGVzdIIIdDIyLnRlc3SCCHQyMy50ZXN0ggh0MjQudGVzdIIIdDI1LnRl\nc3SCCHQyNi50ZXN0ggh0MjcudGVzdIIIdDI4LnRlc3SCCHQyOS50ZXN0ggh0MzAu\ndGVzdIIIdDMxLnRlc3SCCHQzMi50ZXN0ggh0MzMudGVzdIIIdDM0LnRlc3SCCHQz\nNS50ZXN0ggh0MzYudGVzdIIIdDM3LnRlc3SCCHQzOC50ZXN0ggh0MzkudGVzdIII\ndDQwLnRlc3SCCHQ0MS50ZXN0ggh0NDIudGVzdIIIdDQzLnRlc3SCCHQ0NC50ZXN0\nggh0NDUudGVzdIIIdDQ2LnRlc3SCCHQ0Ny50ZXN0ggh0NDgudGVzdIIIdDQ5LnRl\nc3SCCHQ1MC50ZXN0ggh0NTEudGVzdIIIdDUyLnRlc3SCCHQ1My50ZXN0ggh0NTQu\ndGVzdIIIdDU1LnRlc3SCCHQ1Ni50ZXN0ggh0NTcudGVzdIIIdDU4LnRlc3SCCHQ1\nOS50ZXN0ggh0NjAudGVzdIIIdDYxLnRlc3SCCHQ2Mi50ZXN0ggh0NjMudGVzdIII\ndDY0LnRlc3SCCHQ2NS50ZXN0ggh0NjYudGVzdIIIdDY3LnRlc3SCCHQ2OC50ZXN0\nggh0NjkudGVzdIIIdDcwLnRlc3SCCHQ3MS50ZXN0ggh0NzIudGVzdIIIdDczLnRl\nc3SCCHQ3NC50ZXN0ggh0NzUudGVzdIIIdDc2LnRlc3SCCHQ3Ny50ZXN0ggh0Nzgu\ndGVzdIIIdDc5LnRlc3SCCHQ4MC50ZXN0ggh0ODEudGVzdIIIdDgyLnRlc3SCCHQ4\nMy50ZXN0ggh0ODQudGVzdIIIdDg1LnRlc3SCCHQ4Ni50ZXN0ggh0ODcudGVzdIII\ndDg4LnRlc3SCCHQ4OS50ZXN0ggh0OTAudGVzdIIIdDkxLnRlc3SCCHQ5Mi50ZXN0\nggh0OTMudGVzdIIIdDk0LnRlc3SCCHQ5NS50ZXN0ggh0OTYudGVzdIIIdDk3LnRl\nc3SCCHQ5OC50ZXN0ggh0OTkudGVzdIIJdDEwMC50ZXN0ggl0MTAxLnRlc3SCCXQx\nMDIudGVzdIIJdDEwMy50ZXN0ggl0MTA0LnRlc3SCCXQxMDUudGVzdIIJdDEwNi50\nZXN0ggl0MTA3LnRlc3SCCXQxMDgudGVzdIIJdDEwOS50ZXN0ggl0MTEwLnRlc3SC\nCXQxMTEudGVzdIIJdDExMi50ZXN0ggl0MTEzLnRlc3SCCXQxMTQudGVzdIIJdDEx\nNS50ZXN0ggl0MTE2LnRlc3SCCXQxMTcudGVzdIIJdDExOC50ZXN0ggl0MTE5LnRl\nc3SCCXQxMjAudGVzdIIJdDEyMS50ZXN0ggl0MTIyLnRlc3SCCXQxMjMudGVzdIIJ\ndDEyNC50ZXN0ggl0MTI1LnRlc3SCCXQxMjYudGVzdIIJdDEyNy50ZXN0ggl0MTI4\nLnRlc3SCCXQxMjkudGVzdIIJdDEzMC50ZXN0ggl0MTMxLnRlc3SCCXQxMzIudGVz\ndIIJdDEzMy50ZXN0ggl0MTM0LnRlc3SCCXQxMzUudGVzdIIJdDEzNi50ZXN0ggl0\nMTM3LnRlc3SCCXQxMzgudGVzdIIJdDEzOS50ZXN0ggl0MTQwLnRlc3SCCXQxNDEu\ndGVzdIIJdDE0Mi50ZXN0ggl0MTQzLnRlc3SCCXQxNDQudGVzdIIJdDE0NS50ZXN0\nggl0MTQ2LnRlc3SCCXQxNDcudGVzdIIJdDE0OC50ZXN0ggl0MTQ5LnRlc3SCCXQx\nNTAudGVzdIIJdDE1MS50ZXN0ggl0MTUyLnRlc3SCCXQxNTMudGVzdIIJdDE1NC50\nZXN0ggl0MTU1LnRlc3SCCXQxNTYudGVzdIIJdDE1Ny50ZXN0ggl0MTU4LnRlc3SC\nCXQxNTkudGVzdIIJdDE2MC50ZXN0ggl0MTYxLnRlc3SCCXQxNjIudGVzdIIJdDE2\nMy50ZXN0ggl0MTY0LnRlc3SCCXQxNjUudGVzdIIJdDE2Ni50ZXN0ggl0MTY3LnRl\nc3SCCXQxNjgudGVzdIIJdDE2OS50ZXN0ggl0MTcwLnRlc3SCCXQxNzEudGVzdIIJ\ndDE3Mi50ZXN0ggl0MTczLnRlc3SCCXQxNzQudGVzdIIJdDE3NS50ZXN0ggl0MTc2\nLnRlc3SCCXQxNzcudGVzdIIJdDE3OC50ZXN0ggl0MTc5LnRlc3SCCXQxODAudGVz\ndIIJdDE4MS50ZXN0ggl0MTgyLnRlc3SCCXQxODMudGVzdIIJdDE4NC50ZXN0ggl0\nMTg1LnRlc3SCCXQxODYudGVzdIIJdDE4Ny50ZXN0ggl0MTg4LnRlc3SCCXQxODku\ndGVzdIIJdDE5MC50ZXN0ggl0MTkxLnRlc3SCCXQxOTIudGVzdIIJdDE5My50ZXN0\nggl0MTk0LnRlc3SCCXQxOTUudGVzdIIJdDE5Ni50ZXN0ggl0MTk3LnRlc3SCCXQx\nOTgudGVzdIIJdDE5OS50ZXN0ggl0MjAwLnRlc3SCCXQyMDEudGVzdIIJdDIwMi50\nZXN0ggl0MjAzLnRlc3SCCXQyMDQudGVzdIIJdDIwNS50ZXN0ggl0MjA2LnRlc3SC\nCXQyMDcudGVzdIIJdDIwOC50ZXN0ggl0MjA5LnRlc3SCCXQyMTAudGVzdIIJdDIx\nMS50ZXN0ggl0MjEyLnRlc3SCCXQyMTMudGVzdIIJdDIxNC50ZXN0ggl0MjE1LnRl\nc3SCCXQyMTYudGVzdIIJdDIxNy50ZXN0ggl0MjE4LnRlc3SCCXQyMTkudGVzdIIJ\ndDIyMC50ZXN0ggl0MjIxLnRlc3SCCXQyMjIudGVzdIIJdDIyMy50ZXN0ggl0MjI0\nLnRlc3SCCXQyMjUudGVzdIIJdDIyNi50ZXN0ggl0MjI3LnRlc3SCCXQyMjgudGVz\ndIIJdDIyOS50ZXN0ggl0MjMwLnRlc3SCCXQyMzEudGVzdIIJdDIzMi50ZXN0ggl0\nMjMzLnRlc3SCCXQyMzQudGVzdIIJdDIzNS50ZXN0ggl0MjM2LnRlc3SCCXQyMzcu\ndGVzdIIJdDIzOC50ZXN0ggl0MjM5LnRlc3SCCXQyNDAudGVzdIIJdDI0MS50ZXN0\nggl0MjQyLnRlc3SCCXQyNDMudGVzdIIJdDI0NC50ZXN0ggl0MjQ1LnRlc3SCCXQy\nNDYudGVzdIIJdDI0Ny50ZXN0ggl0MjQ4LnRlc3SCCXQyNDkudGVzdIIJdDI1MC50\nZXN0ggl0MjUxLnRlc3SCCXQyNTIudGVzdIIJdDI1My50ZXN0ggl0MjU0LnRlc3SC\nCXQyNTUudGVzdIIJdDI1Ni50ZXN0ggl0MjU3LnRlc3SCCXQyNTgudGVzdIIJdDI1\nOS50ZXN0ggl0MjYwLnRlc3SCCXQyNjEudGVzdIIJdDI2Mi50ZXN0ggl0MjYzLnRl\nc3SCCXQyNjQudGVzdIIJdDI2NS50ZXN0ggl0MjY2LnRlc3SCCXQyNjcudGVzdIIJ\ndDI2OC50ZXN0ggl0MjY5LnRlc3SCCXQyNzAudGVzdIIJdDI3MS50ZXN0ggl0Mjcy\nLnRlc3SCCXQyNzMudGVzdIIJdDI3NC50ZXN0ggl0Mjc1LnRlc3SCCXQyNzYudGVz\ndIIJdDI3Ny50ZXN0ggl0Mjc4LnRlc3SCCXQyNzkudGVzdIIJdDI4MC50ZXN0ggl0\nMjgxLnRlc3SCCXQyODIudGVzdIIJdDI4My50ZXN0ggl0Mjg0LnRlc3SCCXQyODUu\ndGVzdIIJdDI4Ni50ZXN0ggl0Mjg3LnRlc3SCCXQyODgudGVzdIIJdDI4OS50ZXN0\nggl0MjkwLnRlc3SCCXQyOTEudGVzdIIJdDI5Mi50ZXN0ggl0MjkzLnRlc3SCCXQy\nOTQudGVzdIIJdDI5NS50ZXN0ggl0Mjk2LnRlc3SCCXQyOTcudGVzdIIJdDI5OC50\nZXN0ggl0Mjk5LnRlc3SCCXQzMDAudGVzdIIJdDMwMS50ZXN0ggl0MzAyLnRlc3SC\nCXQzMDMudGVzdIIJdDMwNC50ZXN0ggl0MzA1LnRlc3SCCXQzMDYudGVzdIIJdDMw\nNy50ZXN0ggl0MzA4LnRlc3SCCXQzMDkudGVzdIIJdDMxMC50ZXN0ggl0MzExLnRl\nc3SCCXQzMTIudGVzdIIJdDMxMy50ZXN0ggl0MzE0LnRlc3SCCXQzMTUudGVzdIIJ\ndDMxNi50ZXN0ggl0MzE3LnRlc3SCCXQzMTgudGVzdIIJdDMxOS50ZXN0ggl0MzIw\nLnRlc3SCCXQzMjEudGVzdIIJdDMyMi50ZXN0ggl0MzIzLnRlc3SCCXQzMjQudGVz\ndIIJdDMyNS50ZXN0ggl0MzI2LnRlc3SCCXQzMjcudGVzdIIJdDMyOC50ZXN0ggl0\nMzI5LnRlc3SCCXQzMzAudGVzdIIJdDMzMS50ZXN0ggl0MzMyLnRlc3SCCXQzMzMu\ndGVzdIIJdDMzNC50ZXN0ggl0MzM1LnRlc3SCCXQzMzYudGVzdIIJdDMzNy50ZXN0\nggl0MzM4LnRlc3SCCXQzMzkudGVzdIIJdDM0MC50ZXN0ggl0MzQxLnRlc3SCCXQz\nNDIudGVzdIIJdDM0My50ZXN0ggl0MzQ0LnRlc3SCCXQzNDUudGVzdIIJdDM0Ni50\nZXN0ggl0MzQ3LnRlc3SCCXQzNDgudGVzdIIJdDM0OS50ZXN0ggl0MzUwLnRlc3SC\nCXQzNTEudGVzdIIJdDM1Mi50ZXN0ggl0MzUzLnRlc3SCCXQzNTQudGVzdIIJdDM1\nNS50ZXN0ggl0MzU2LnRlc3SCCXQzNTcudGVzdIIJdDM1OC50ZXN0ggl0MzU5LnRl\nc3SCCXQzNjAudGVzdIIJdDM2MS50ZXN0ggl0MzYyLnRlc3SCCXQzNjMudGVzdIIJ\ndDM2NC50ZXN0ggl0MzY1LnRlc3SCCXQzNjYudGVzdIIJdDM2Ny50ZXN0ggl0MzY4\nLnRlc3SCCXQzNjkudGVzdIIJdDM3MC50ZXN0ggl0MzcxLnRlc3SCCXQzNzIudGVz\ndIIJdDM3My50ZXN0ggl0Mzc0LnRlc3SCCXQzNzUudGVzdIIJdDM3Ni50ZXN0ggl0\nMzc3LnRlc3SCCXQzNzgudGVzdIIJdDM3OS50ZXN0ggl0MzgwLnRlc3SCCXQzODEu\ndGVzdIIJdDM4Mi50ZXN0ggl0MzgzLnRlc3SCCXQzODQudGVzdIIJdDM4NS50ZXN0\nggl0Mzg2LnRlc3SCCXQzODcudGVzdIIJdDM4OC50ZXN0ggl0Mzg5LnRlc3SCCXQz\nOTAudGVzdIIJdDM5MS50ZXN0ggl0MzkyLnRlc3SCCXQzOTMudGVzdIIJdDM5NC50\nZXN0ggl0Mzk1LnRlc3SCCXQzOTYudGVzdIIJdDM5Ny50ZXN0ggl0Mzk4LnRlc3SC\nCXQzOTkudGVzdIIJdDQwMC50ZXN0ggl0NDAxLnRlc3SCCXQ0MDIudGVzdIIJdDQw\nMy50ZXN0ggl0NDA0LnRlc3SCCXQ0MDUudGVzdIIJdDQwNi50ZXN0ggl0NDA3LnRl\nc3SCCXQ0MDgudGVzdIIJdDQwOS50ZXN0ggl0NDEwLnRlc3SCCXQ0MTEudGVzdIIJ\ndDQxMi50ZXN0ggl0NDEzLnRlc3SCCXQ0MTQudGVzdIIJdDQxNS50ZXN0ggl0NDE2\nLnRlc3SCCXQ0MTcudGVzdIIJdDQxOC50ZXN0ggl0NDE5LnRlc3SCCXQ0MjAudGVz\ndIIJdDQyMS50ZXN0ggl0NDIyLnRlc3SCCXQ0MjMudGVzdIIJdDQyNC50ZXN0ggl0\nNDI1LnRlc3SCCXQ0MjYudGVzdIIJdDQyNy50ZXN0ggl0NDI4LnRlc3SCCXQ0Mjku\ndGVzdIIJdDQzMC50ZXN0ggl0NDMxLnRlc3SCCXQ0MzIudGVzdIIJdDQzMy50ZXN0\nggl0NDM0LnRlc3SCCXQ0MzUudGVzdIIJdDQzNi50ZXN0ggl0NDM3LnRlc3SCCXQ0\nMzgudGVzdIIJdDQzOS50ZXN0ggl0NDQwLnRlc3SCCXQ0NDEudGVzdIIJdDQ0Mi50\nZXN0ggl0NDQzLnRlc3SCCXQ0NDQudGVzdIIJdDQ0NS50ZXN0ggl0NDQ2LnRlc3SC\nCXQ0NDcudGVzdIIJdDQ0OC50ZXN0ggl0NDQ5LnRlc3SCCXQ0NTAudGVzdIIJdDQ1\nMS50ZXN0ggl0NDUyLnRlc3SCCXQ0NTMudGVzdIIJdDQ1NC50ZXN0ggl0NDU1LnRl\nc3SCCXQ0NTYudGVzdIIJdDQ1Ny50ZXN0ggl0NDU4LnRlc3SCCXQ0NTkudGVzdIIJ\ndDQ2MC50ZXN0ggl0NDYxLnRlc3SCCXQ0NjIudGVzdIIJdDQ2My50ZXN0ggl0NDY0\nLnRlc3SCCXQ0NjUudGVzdIIJdDQ2Ni50ZXN0ggl0NDY3LnRlc3SCCXQ0NjgudGVz\ndIIJdDQ2OS50ZXN0ggl0NDcwLnRlc3SCCXQ0NzEudGVzdIIJdDQ3Mi50ZXN0ggl0\nNDczLnRlc3SCCXQ0NzQudGVzdIIJdDQ3NS50ZXN0ggl0NDc2LnRlc3SCCXQ0Nzcu\ndGVzdIIJdDQ3OC50ZXN0ggl0NDc5LnRlc3SCCXQ0ODAudGVzdIIJdDQ4MS50ZXN0\nggl0NDgyLnRlc3SCCXQ0ODMudGVzdIIJdDQ4NC50ZXN0ggl0NDg1LnRlc3SCCXQ0\nODYudGVzdIIJdDQ4Ny50ZXN0ggl0NDg4LnRlc3SCCXQ0ODkudGVzdIIJdDQ5MC50\nZXN0ggl0NDkxLnRlc3SCCXQ0OTIudGVzdIIJdDQ5My50ZXN0ggl0NDk0LnRlc3SC\nCXQ0OTUudGVzdIIJdDQ5Ni50ZXN0ggl0NDk3LnRlc3SCCXQ0OTgudGVzdIIJdDQ5\nOS50ZXN0ggl0NTAwLnRlc3SCCXQ1MDEudGVzdIIJdDUwMi50ZXN0ggl0NTAzLnRl\nc3SCCXQ1MDQudGVzdIIJdDUwNS50ZXN0ggl0NTA2LnRlc3SCCXQ1MDcudGVzdIIJ\ndDUwOC50ZXN0ggl0NTA5LnRlc3SCCXQ1MTAudGVzdIIJdDUxMS50ZXN0ggl0NTEy\nLnRlc3SCCXQ1MTMudGVzdIIJdDUxNC50ZXN0ggl0NTE1LnRlc3SCCXQ1MTYudGVz\ndIIJdDUxNy50ZXN0ggl0NTE4LnRlc3SCCXQ1MTkudGVzdIIJdDUyMC50ZXN0ggl0\nNTIxLnRlc3SCCXQ1MjIudGVzdIIJdDUyMy50ZXN0ggl0NTI0LnRlc3SCCXQ1MjUu\ndGVzdIIJdDUyNi50ZXN0ggl0NTI3LnRlc3SCCXQ1MjgudGVzdIIJdDUyOS50ZXN0\nggl0NTMwLnRlc3SCCXQ1MzEudGVzdIIJdDUzMi50ZXN0ggl0NTMzLnRlc3SCCXQ1\nMzQudGVzdIIJdDUzNS50ZXN0ggl0NTM2LnRlc3SCCXQ1MzcudGVzdIIJdDUzOC50\nZXN0ggl0NTM5LnRlc3SCCXQ1NDAudGVzdIIJdDU0MS50ZXN0ggl0NTQyLnRlc3SC\nCXQ1NDMudGVzdIIJdDU0NC50ZXN0ggl0NTQ1LnRlc3SCCXQ1NDYudGVzdIIJdDU0\nNy50ZXN0ggl0NTQ4LnRlc3SCCXQ1NDkudGVzdIIJdDU1MC50ZXN0ggl0NTUxLnRl\nc3SCCXQ1NTIudGVzdIIJdDU1My50ZXN0ggl0NTU0LnRlc3SCCXQ1NTUudGVzdIIJ\ndDU1Ni50ZXN0ggl0NTU3LnRlc3SCCXQ1NTgudGVzdIIJdDU1OS50ZXN0ggl0NTYw\nLnRlc3SCCXQ1NjEudGVzdIIJdDU2Mi50ZXN0ggl0NTYzLnRlc3SCCXQ1NjQudGVz\ndIIJdDU2NS50ZXN0ggl0NTY2LnRlc3SCCXQ1NjcudGVzdIIJdDU2OC50ZXN0ggl0\nNTY5LnRlc3SCCXQ1NzAudGVzdIIJdDU3MS50ZXN0ggl0NTcyLnRlc3SCCXQ1NzMu\ndGVzdIIJdDU3NC50ZXN0ggl0NTc1LnRlc3SCCXQ1NzYudGVzdIIJdDU3Ny50ZXN0\nggl0NTc4LnRlc3SCCXQ1NzkudGVzdIIJdDU4MC50ZXN0ggl0NTgxLnRlc3SCCXQ1\nODIudGVzdIIJdDU4My50ZXN0ggl0NTg0LnRlc3SCCXQ1ODUudGVzdIIJdDU4Ni50\nZXN0ggl0NTg3LnRlc3SCCXQ1ODgudGVzdIIJdDU4OS50ZXN0ggl0NTkwLnRlc3SC\nCXQ1OTEudGVzdIIJdDU5Mi50ZXN0ggl0NTkzLnRlc3SCCXQ1OTQudGVzdIIJdDU5\nNS50ZXN0ggl0NTk2LnRlc3SCCXQ1OTcudGVzdIIJdDU5OC50ZXN0ggl0NTk5LnRl\nc3SCCXQ2MDAudGVzdIIJdDYwMS50ZXN0ggl0NjAyLnRlc3SCCXQ2MDMudGVzdIIJ\ndDYwNC50ZXN0ggl0NjA1LnRlc3SCCXQ2MDYudGVzdIIJdDYwNy50ZXN0ggl0NjA4\nLnRlc3SCCXQ2MDkudGVzdIIJdDYxMC50ZXN0ggl0NjExLnRlc3SCCXQ2MTIudGVz\ndIIJdDYxMy50ZXN0ggl0NjE0LnRlc3SCCXQ2MTUudGVzdIIJdDYxNi50ZXN0ggl0\nNjE3LnRlc3SCCXQ2MTgudGVzdIIJdDYxOS50ZXN0ggl0NjIwLnRlc3SCCXQ2MjEu\ndGVzdIIJdDYyMi50ZXN0ggl0NjIzLnRlc3SCCXQ2MjQudGVzdIIJdDYyNS50ZXN0\nggl0NjI2LnRlc3SCCXQ2MjcudGVzdIIJdDYyOC50ZXN0ggl0NjI5LnRlc3SCCXQ2\nMzAudGVzdIIJdDYzMS50ZXN0ggl0NjMyLnRlc3SCCXQ2MzMudGVzdIIJdDYzNC50\nZXN0ggl0NjM1LnRlc3SCCXQ2MzYudGVzdIIJdDYzNy50ZXN0ggl0NjM4LnRlc3SC\nCXQ2MzkudGVzdIIJdDY0MC50ZXN0ggl0NjQxLnRlc3SCCXQ2NDIudGVzdIIJdDY0\nMy50ZXN0ggl0NjQ0LnRlc3SCCXQ2NDUudGVzdIIJdDY0Ni50ZXN0ggl0NjQ3LnRl\nc3SCCXQ2NDgudGVzdIIJdDY0OS50ZXN0ggl0NjUwLnRlc3SCCXQ2NTEudGVzdIIJ\ndDY1Mi50ZXN0ggl0NjUzLnRlc3SCCXQ2NTQudGVzdIIJdDY1NS50ZXN0ggl0NjU2\nLnRlc3SCCXQ2NTcudGVzdIIJdDY1OC50ZXN0ggl0NjU5LnRlc3SCCXQ2NjAudGVz\ndIIJdDY2MS50ZXN0ggl0NjYyLnRlc3SCCXQ2NjMudGVzdIIJdDY2NC50ZXN0ggl0\nNjY1LnRlc3SCCXQ2NjYudGVzdIIJdDY2Ny50ZXN0ggl0NjY4LnRlc3SCCXQ2Njku\ndGVzdIIJdDY3MC50ZXN0ggl0NjcxLnRlc3SCCXQ2NzIudGVzdIIJdDY3My50ZXN0\nggl0Njc0LnRlc3SCCXQ2NzUudGVzdIIJdDY3Ni50ZXN0ggl0Njc3LnRlc3SCCXQ2\nNzgudGVzdIIJdDY3OS50ZXN0ggl0NjgwLnRlc3SCCXQ2ODEudGVzdIIJdDY4Mi50\nZXN0ggl0NjgzLnRlc3SCCXQ2ODQudGVzdIIJdDY4NS50ZXN0ggl0Njg2LnRlc3SC\nCXQ2ODcudGVzdIIJdDY4OC50ZXN0ggl0Njg5LnRlc3SCCXQ2OTAudGVzdIIJdDY5\nMS50ZXN0ggl0NjkyLnRlc3SCCXQ2OTMudGVzdIIJdDY5NC50ZXN0ggl0Njk1LnRl\nc3SCCXQ2OTYudGVzdIIJdDY5Ny50ZXN0ggl0Njk4LnRlc3SCCXQ2OTkudGVzdIIJ\ndDcwMC50ZXN0ggl0NzAxLnRlc3SCCXQ3MDIudGVzdIIJdDcwMy50ZXN0ggl0NzA0\nLnRlc3SCCXQ3MDUudGVzdIIJdDcwNi50ZXN0ggl0NzA3LnRlc3SCCXQ3MDgudGVz\ndIIJdDcwOS50ZXN0ggl0NzEwLnRlc3SCCXQ3MTEudGVzdIIJdDcxMi50ZXN0ggl0\nNzEzLnRlc3SCCXQ3MTQudGVzdIIJdDcxNS50ZXN0ggl0NzE2LnRlc3SCCXQ3MTcu\ndGVzdIIJdDcxOC50ZXN0ggl0NzE5LnRlc3SCCXQ3MjAudGVzdIIJdDcyMS50ZXN0\nggl0NzIyLnRlc3SCCXQ3MjMudGVzdIIJdDcyNC50ZXN0ggl0NzI1LnRlc3SCCXQ3\nMjYudGVzdIIJdDcyNy50ZXN0ggl0NzI4LnRlc3SCCXQ3MjkudGVzdIIJdDczMC50\nZXN0ggl0NzMxLnRlc3SCCXQ3MzIudGVzdIIJdDczMy50ZXN0ggl0NzM0LnRlc3SC\nCXQ3MzUudGVzdIIJdDczNi50ZXN0ggl0NzM3LnRlc3SCCXQ3MzgudGVzdIIJdDcz\nOS50ZXN0ggl0NzQwLnRlc3SCCXQ3NDEudGVzdIIJdDc0Mi50ZXN0ggl0NzQzLnRl\nc3SCCXQ3NDQudGVzdIIJdDc0NS50ZXN0ggl0NzQ2LnRlc3SCCXQ3NDcudGVzdIIJ\ndDc0OC50ZXN0ggl0NzQ5LnRlc3SCCXQ3NTAudGVzdIIJdDc1MS50ZXN0ggl0NzUy\nLnRlc3SCCXQ3NTMudGVzdIIJdDc1NC50ZXN0ggl0NzU1LnRlc3SCCXQ3NTYudGVz\ndIIJdDc1Ny50ZXN0ggl0NzU4LnRlc3SCCXQ3NTkudGVzdIIJdDc2MC50ZXN0ggl0\nNzYxLnRlc3SCCXQ3NjIudGVzdIIJdDc2My50ZXN0ggl0NzY0LnRlc3SCCXQ3NjUu\ndGVzdIIJdDc2Ni50ZXN0ggl0NzY3LnRlc3SCCXQ3NjgudGVzdIIJdDc2OS50ZXN0\nggl0NzcwLnRlc3SCCXQ3NzEudGVzdIIJdDc3Mi50ZXN0ggl0NzczLnRlc3SCCXQ3\nNzQudGVzdIIJdDc3NS50ZXN0ggl0Nzc2LnRlc3SCCXQ3NzcudGVzdIIJdDc3OC50\nZXN0ggl0Nzc5LnRlc3SCCXQ3ODAudGVzdIIJdDc4MS50ZXN0ggl0NzgyLnRlc3SC\nCXQ3ODMudGVzdIIJdDc4NC50ZXN0ggl0Nzg1LnRlc3SCCXQ3ODYudGVzdIIJdDc4\nNy50ZXN0ggl0Nzg4LnRlc3SCCXQ3ODkudGVzdIIJdDc5MC50ZXN0ggl0NzkxLnRl\nc3SCCXQ3OTIudGVzdIIJdDc5My50ZXN0ggl0Nzk0LnRlc3SCCXQ3OTUudGVzdIIJ\ndDc5Ni50ZXN0ggl0Nzk3LnRlc3SCCXQ3OTgudGVzdIIJdDc5OS50ZXN0ggl0ODAw\nLnRlc3SCCXQ4MDEudGVzdIIJdDgwMi50ZXN0ggl0ODAzLnRlc3SCCXQ4MDQudGVz\ndIIJdDgwNS50ZXN0ggl0ODA2LnRlc3SCCXQ4MDcudGVzdIIJdDgwOC50ZXN0ggl0\nODA5LnRlc3SCCXQ4MTAudGVzdIIJdDgxMS50ZXN0ggl0ODEyLnRlc3SCCXQ4MTMu\ndGVzdIIJdDgxNC50ZXN0ggl0ODE1LnRlc3SCCXQ4MTYudGVzdIIJdDgxNy50ZXN0\nggl0ODE4LnRlc3SCCXQ4MTkudGVzdIIJdDgyMC50ZXN0ggl0ODIxLnRlc3SCCXQ4\nMjIudGVzdIIJdDgyMy50ZXN0ggl0ODI0LnRlc3SCCXQ4MjUudGVzdIIJdDgyNi50\nZXN0ggl0ODI3LnRlc3SCCXQ4MjgudGVzdIIJdDgyOS50ZXN0ggl0ODMwLnRlc3SC\nCXQ4MzEudGVzdIIJdDgzMi50ZXN0ggl0ODMzLnRlc3SCCXQ4MzQudGVzdIIJdDgz\nNS50ZXN0ggl0ODM2LnRlc3SCCXQ4MzcudGVzdIIJdDgzOC50ZXN0ggl0ODM5LnRl\nc3SCCXQ4NDAudGVzdIIJdDg0MS50ZXN0ggl0ODQyLnRlc3SCCXQ4NDMudGVzdIIJ\ndDg0NC50ZXN0ggl0ODQ1LnRlc3SCCXQ4NDYudGVzdIIJdDg0Ny50ZXN0ggl0ODQ4\nLnRlc3SCCXQ4NDkudGVzdIIJdDg1MC50ZXN0ggl0ODUxLnRlc3SCCXQ4NTIudGVz\ndIIJdDg1My50ZXN0ggl0ODU0LnRlc3SCCXQ4NTUudGVzdIIJdDg1Ni50ZXN0ggl0\nODU3LnRlc3SCCXQ4NTgudGVzdIIJdDg1OS50ZXN0ggl0ODYwLnRlc3SCCXQ4NjEu\ndGVzdIIJdDg2Mi50ZXN0ggl0ODYzLnRlc3SCCXQ4NjQudGVzdIIJdDg2NS50ZXN0\nggl0ODY2LnRlc3SCCXQ4NjcudGVzdIIJdDg2OC50ZXN0ggl0ODY5LnRlc3SCCXQ4\nNzAudGVzdIIJdDg3MS50ZXN0ggl0ODcyLnRlc3SCCXQ4NzMudGVzdIIJdDg3NC50\nZXN0ggl0ODc1LnRlc3SCCXQ4NzYudGVzdIIJdDg3Ny50ZXN0ggl0ODc4LnRlc3SC\nCXQ4NzkudGVzdIIJdDg4MC50ZXN0ggl0ODgxLnRlc3SCCXQ4ODIudGVzdIIJdDg4\nMy50ZXN0ggl0ODg0LnRlc3SCCXQ4ODUudGVzdIIJdDg4Ni50ZXN0ggl0ODg3LnRl\nc3SCCXQ4ODgudGVzdIIJdDg4OS50ZXN0ggl0ODkwLnRlc3SCCXQ4OTEudGVzdIIJ\ndDg5Mi50ZXN0ggl0ODkzLnRlc3SCCXQ4OTQudGVzdIIJdDg5NS50ZXN0ggl0ODk2\nLnRlc3SCCXQ4OTcudGVzdIIJdDg5OC50ZXN0ggl0ODk5LnRlc3SCCXQ5MDAudGVz\ndIIJdDkwMS50ZXN0ggl0OTAyLnRlc3SCCXQ5MDMudGVzdIIJdDkwNC50ZXN0ggl0\nOTA1LnRlc3SCCXQ5MDYudGVzdIIJdDkwNy50ZXN0ggl0OTA4LnRlc3SCCXQ5MDku\ndGVzdIIJdDkxMC50ZXN0ggl0OTExLnRlc3SCCXQ5MTIudGVzdIIJdDkxMy50ZXN0\nggl0OTE0LnRlc3SCCXQ5MTUudGVzdIIJdDkxNi50ZXN0ggl0OTE3LnRlc3SCCXQ5\nMTgudGVzdIIJdDkxOS50ZXN0ggl0OTIwLnRlc3SCCXQ5MjEudGVzdIIJdDkyMi50\nZXN0ggl0OTIzLnRlc3SCCXQ5MjQudGVzdIIJdDkyNS50ZXN0ggl0OTI2LnRlc3SC\nCXQ5MjcudGVzdIIJdDkyOC50ZXN0ggl0OTI5LnRlc3SCCXQ5MzAudGVzdIIJdDkz\nMS50ZXN0ggl0OTMyLnRlc3SCCXQ5MzMudGVzdIIJdDkzNC50ZXN0ggl0OTM1LnRl\nc3SCCXQ5MzYudGVzdIIJdDkzNy50ZXN0ggl0OTM4LnRlc3SCCXQ5MzkudGVzdIIJ\ndDk0MC50ZXN0ggl0OTQxLnRlc3SCCXQ5NDIudGVzdIIJdDk0My50ZXN0ggl0OTQ0\nLnRlc3SCCXQ5NDUudGVzdIIJdDk0Ni50ZXN0ggl0OTQ3LnRlc3SCCXQ5NDgudGVz\ndIIJdDk0OS50ZXN0ggl0OTUwLnRlc3SCCXQ5NTEudGVzdIIJdDk1Mi50ZXN0ggl0\nOTUzLnRlc3SCCXQ5NTQudGVzdIIJdDk1NS50ZXN0ggl0OTU2LnRlc3SCCXQ5NTcu\ndGVzdIIJdDk1OC50ZXN0ggl0OTU5LnRlc3SCCXQ5NjAudGVzdIIJdDk2MS50ZXN0\nggl0OTYyLnRlc3SCCXQ5NjMudGVzdIIJdDk2NC50ZXN0ggl0OTY1LnRlc3SCCXQ5\nNjYudGVzdIIJdDk2Ny50ZXN0ggl0OTY4LnRlc3SCCXQ5NjkudGVzdIIJdDk3MC50\nZXN0ggl0OTcxLnRlc3SCCXQ5NzIudGVzdIIJdDk3My50ZXN0ggl0OTc0LnRlc3SC\nCXQ5NzUudGVzdIIJdDk3Ni50ZXN0ggl0OTc3LnRlc3SCCXQ5NzgudGVzdIIJdDk3\nOS50ZXN0ggl0OTgwLnRlc3SCCXQ5ODEudGVzdIIJdDk4Mi50ZXN0ggl0OTgzLnRl\nc3SCCXQ5ODQudGVzdIIJdDk4NS50ZXN0ggl0OTg2LnRlc3SCCXQ5ODcudGVzdIIJ\ndDk4OC50ZXN0ggl0OTg5LnRlc3SCCXQ5OTAudGVzdIIJdDk5MS50ZXN0ggl0OTky\nLnRlc3SCCXQ5OTMudGVzdIIJdDk5NC50ZXN0ggl0OTk1LnRlc3SCCXQ5OTYudGVz\ndIIJdDk5Ny50ZXN0ggl0OTk4LnRlc3SCCXQ5OTkudGVzdIIKdDEwMDAudGVzdIIK\ndDEwMDEudGVzdIIKdDEwMDIudGVzdIIKdDEwMDMudGVzdIIKdDEwMDQudGVzdIIK\ndDEwMDUudGVzdIIKdDEwMDYudGVzdIIKdDEwMDcudGVzdIIKdDEwMDgudGVzdIIK\ndDEwMDkudGVzdIIKdDEwMTAudGVzdIIKdDEwMTEudGVzdIIKdDEwMTIudGVzdIIK\ndDEwMTMudGVzdIIKdDEwMTQudGVzdIIKdDEwMTUudGVzdIIKdDEwMTYudGVzdIIK\ndDEwMTcudGVzdIIKdDEwMTgudGVzdIIKdDEwMTkudGVzdIIKdDEwMjAudGVzdIIK\ndDEwMjEudGVzdIIKdDEwMjIudGVzdIIKdDEwMjMudGVzdIIKdDEwMjQudGVzdIIK\ndDEwMjUudGVzdIIKdDEwMjYudGVzdIIKdDEwMjcudGVzdIIKdDEwMjgudGVzdIIK\ndDEwMjkudGVzdIIKdDEwMzAudGVzdIIKdDEwMzEudGVzdIIKdDEwMzIudGVzdIIK\ndDEwMzMudGVzdIIKdDEwMzQudGVzdIIKdDEwMzUudGVzdIIKdDEwMzYudGVzdIIK\ndDEwMzcudGVzdIIKdDEwMzgudGVzdIIKdDEwMzkudGVzdIIKdDEwNDAudGVzdIIK\ndDEwNDEudGVzdIIKdDEwNDIudGVzdIIKdDEwNDMudGVzdIIKdDEwNDQudGVzdIIK\ndDEwNDUudGVzdIIKdDEwNDYudGVzdIIKdDEwNDcudGVzdIIKdDEwNDgudGVzdIIK\ndDEwNDkudGVzdIIKdDEwNTAudGVzdIIKdDEwNTEudGVzdIIKdDEwNTIudGVzdIIK\ndDEwNTMudGVzdIIKdDEwNTQudGVzdIIKdDEwNTUudGVzdIIKdDEwNTYudGVzdIIK\ndDEwNTcudGVzdIIKdDEwNTgudGVzdIIKdDEwNTkudGVzdIIKdDEwNjAudGVzdIIK\ndDEwNjEudGVzdIIKdDEwNjIudGVzdIIKdDEwNjMudGVzdIIKdDEwNjQudGVzdIIK\ndDEwNjUudGVzdIIKdDEwNjYudGVzdIIKdDEwNjcudGVzdIIKdDEwNjgudGVzdIIK\ndDEwNjkudGVzdIIKdDEwNzAudGVzdIIKdDEwNzEudGVzdIIKdDEwNzIudGVzdIIK\ndDEwNzMudGVzdIIKdDEwNzQudGVzdIIKdDEwNzUudGVzdIIKdDEwNzYudGVzdIIK\ndDEwNzcudGVzdIIKdDEwNzgudGVzdIIKdDEwNzkudGVzdIIKdDEwODAudGVzdIIK\ndDEwODEudGVzdIIKdDEwODIudGVzdIIKdDEwODMudGVzdIIKdDEwODQudGVzdIIK\ndDEwODUudGVzdIIKdDEwODYudGVzdIIKdDEwODcudGVzdIIKdDEwODgudGVzdIIK\ndDEwODkudGVzdIIKdDEwOTAudGVzdIIKdDEwOTEudGVzdIIKdDEwOTIudGVzdIIK\ndDEwOTMudGVzdIIKdDEwOTQudGVzdIIKdDEwOTUudGVzdIIKdDEwOTYudGVzdIIK\ndDEwOTcudGVzdIIKdDEwOTgudGVzdIIKdDEwOTkudGVzdIIKdDExMDAudGVzdIIK\ndDExMDEudGVzdIIKdDExMDIudGVzdIIKdDExMDMudGVzdIIKdDExMDQudGVzdIIK\ndDExMDUudGVzdIIKdDExMDYudGVzdIIKdDExMDcudGVzdIIKdDExMDgudGVzdIIK\ndDExMDkudGVzdIIKdDExMTAudGVzdIIKdDExMTEudGVzdIIKdDExMTIudGVzdIIK\ndDExMTMudGVzdIIKdDExMTQudGVzdIIKdDExMTUudGVzdIIKdDExMTYudGVzdIIK\ndDExMTcudGVzdIIKdDExMTgudGVzdIIKdDExMTkudGVzdIIKdDExMjAudGVzdIIK\ndDExMjEudGVzdIIKdDExMjIudGVzdIIKdDExMjMudGVzdIIKdDExMjQudGVzdIIK\ndDExMjUudGVzdIIKdDExMjYudGVzdIIKdDExMjcudGVzdIIKdDExMjgudGVzdIIK\ndDExMjkudGVzdIIKdDExMzAudGVzdIIKdDExMzEudGVzdIIKdDExMzIudGVzdIIK\ndDExMzMudGVzdIIKdDExMzQudGVzdIIKdDExMzUudGVzdIIKdDExMzYudGVzdIIK\ndDExMzcudGVzdIIKdDExMzgudGVzdIIKdDExMzkudGVzdIIKdDExNDAudGVzdIIK\ndDExNDEudGVzdIIKdDExNDIudGVzdIIKdDExNDMudGVzdIIKdDExNDQudGVzdIIK\ndDExNDUudGVzdIIKdDExNDYudGVzdIIKdDExNDcudGVzdIIKdDExNDgudGVzdIIK\ndDExNDkudGVzdIIKdDExNTAudGVzdIIKdDExNTEudGVzdIIKdDExNTIudGVzdIIK\ndDExNTMudGVzdIIKdDExNTQudGVzdIIKdDExNTUudGVzdIIKdDExNTYudGVzdIIK\ndDExNTcudGVzdIIKdDExNTgudGVzdIIKdDExNTkudGVzdIIKdDExNjAudGVzdIIK\ndDExNjEudGVzdIIKdDExNjIudGVzdIIKdDExNjMudGVzdIIKdDExNjQudGVzdIIK\ndDExNjUudGVzdIIKdDExNjYudGVzdIIKdDExNjcudGVzdIIKdDExNjgudGVzdIIK\ndDExNjkudGVzdIIKdDExNzAudGVzdIIKdDExNzEudGVzdIIKdDExNzIudGVzdIIK\ndDExNzMudGVzdIIKdDExNzQudGVzdIIKdDExNzUudGVzdIIKdDExNzYudGVzdIIK\ndDExNzcudGVzdIIKdDExNzgudGVzdIIKdDExNzkudGVzdIIKdDExODAudGVzdIIK\ndDExODEudGVzdIIKdDExODIudGVzdIIKdDExODMudGVzdIIKdDExODQudGVzdIIK\ndDExODUudGVzdIIKdDExODYudGVzdIIKdDExODcudGVzdIIKdDExODgudGVzdIIK\ndDExODkudGVzdIIKdDExOTAudGVzdIIKdDExOTEudGVzdIIKdDExOTIudGVzdIIK\ndDExOTMudGVzdIIKdDExOTQudGVzdIIKdDExOTUudGVzdIIKdDExOTYudGVzdIIK\ndDExOTcudGVzdIIKdDExOTgudGVzdIIKdDExOTkudGVzdIIKdDEyMDAudGVzdIIK\ndDEyMDEudGVzdIIKdDEyMDIudGVzdIIKdDEyMDMudGVzdIIKdDEyMDQudGVzdIIK\ndDEyMDUudGVzdIIKdDEyMDYudGVzdIIKdDEyMDcudGVzdIIKdDEyMDgudGVzdIIK\ndDEyMDkudGVzdIIKdDEyMTAudGVzdIIKdDEyMTEudGVzdIIKdDEyMTIudGVzdIIK\ndDEyMTMudGVzdIIKdDEyMTQudGVzdIIKdDEyMTUudGVzdIIKdDEyMTYudGVzdIIK\ndDEyMTcudGVzdIIKdDEyMTgudGVzdIIKdDEyMTkudGVzdIIKdDEyMjAudGVzdIIK\ndDEyMjEudGVzdIIKdDEyMjIudGVzdIIKdDEyMjMudGVzdIIKdDEyMjQudGVzdIIK\ndDEyMjUudGVzdIIKdDEyMjYudGVzdIIKdDEyMjcudGVzdIIKdDEyMjgudGVzdIIK\ndDEyMjkudGVzdIIKdDEyMzAudGVzdIIKdDEyMzEudGVzdIIKdDEyMzIudGVzdIIK\ndDEyMzMudGVzdIIKdDEyMzQudGVzdIIKdDEyMzUudGVzdIIKdDEyMzYudGVzdIIK\ndDEyMzcudGVzdIIKdDEyMzgudGVzdIIKdDEyMzkudGVzdIIKdDEyNDAudGVzdIIK\ndDEyNDEudGVzdIIKdDEyNDIudGVzdIIKdDEyNDMudGVzdIIKdDEyNDQudGVzdIIK\ndDEyNDUudGVzdIIKdDEyNDYudGVzdIIKdDEyNDcudGVzdIIKdDEyNDgudGVzdIIK\ndDEyNDkudGVzdIIKdDEyNTAudGVzdIIKdDEyNTEudGVzdIIKdDEyNTIudGVzdIIK\ndDEyNTMudGVzdIIKdDEyNTQudGVzdIIKdDEyNTUudGVzdIIKdDEyNTYudGVzdIIK\ndDEyNTcudGVzdIIKdDEyNTgudGVzdIIKdDEyNTkudGVzdIIKdDEyNjAudGVzdIIK\ndDEyNjEudGVzdIIKdDEyNjIudGVzdIIKdDEyNjMudGVzdIIKdDEyNjQudGVzdIIK\ndDEyNjUudGVzdIIKdDEyNjYudGVzdIIKdDEyNjcudGVzdIIKdDEyNjgudGVzdIIK\ndDEyNjkudGVzdIIKdDEyNzAudGVzdIIKdDEyNzEudGVzdIIKdDEyNzIudGVzdIIK\ndDEyNzMudGVzdIIKdDEyNzQudGVzdIIKdDEyNzUudGVzdIIKdDEyNzYudGVzdIIK\ndDEyNzcudGVzdIIKdDEyNzgudGVzdIIKdDEyNzkudGVzdIIKdDEyODAudGVzdIIK\ndDEyODEudGVzdIIKdDEyODIudGVzdIIKdDEyODMudGVzdIIKdDEyODQudGVzdIIK\ndDEyODUudGVzdIIKdDEyODYudGVzdIIKdDEyODcudGVzdIIKdDEyODgudGVzdIIK\ndDEyODkudGVzdIIKdDEyOTAudGVzdIIKdDEyOTEudGVzdIIKdDEyOTIudGVzdIIK\ndDEyOTMudGVzdIIKdDEyOTQudGVzdIIKdDEyOTUudGVzdIIKdDEyOTYudGVzdIIK\ndDEyOTcudGVzdIIKdDEyOTgudGVzdIIKdDEyOTkudGVzdIIKdDEzMDAudGVzdIIK\ndDEzMDEudGVzdIIKdDEzMDIudGVzdIIKdDEzMDMudGVzdIIKdDEzMDQudGVzdIIK\ndDEzMDUudGVzdIIKdDEzMDYudGVzdIIKdDEzMDcudGVzdIIKdDEzMDgudGVzdIIK\ndDEzMDkudGVzdIIKdDEzMTAudGVzdIIKdDEzMTEudGVzdIIKdDEzMTIudGVzdIIK\ndDEzMTMudGVzdIIKdDEzMTQudGVzdIIKdDEzMTUudGVzdIIKdDEzMTYudGVzdIIK\ndDEzMTcudGVzdIIKdDEzMTgudGVzdIIKdDEzMTkudGVzdIIKdDEzMjAudGVzdIIK\ndDEzMjEudGVzdIIKdDEzMjIudGVzdIIKdDEzMjMudGVzdIIKdDEzMjQudGVzdIIK\ndDEzMjUudGVzdIIKdDEzMjYudGVzdIIKdDEzMjcudGVzdIIKdDEzMjgudGVzdIIK\ndDEzMjkudGVzdIIKdDEzMzAudGVzdIIKdDEzMzEudGVzdIIKdDEzMzIudGVzdIIK\ndDEzMzMudGVzdIIKdDEzMzQudGVzdIIKdDEzMzUudGVzdIIKdDEzMzYudGVzdIIK\ndDEzMzcudGVzdIIKdDEzMzgudGVzdIIKdDEzMzkudGVzdIIKdDEzNDAudGVzdIIK\ndDEzNDEudGVzdIIKdDEzNDIudGVzdIIKdDEzNDMudGVzdIIKdDEzNDQudGVzdIIK\ndDEzNDUudGVzdIIKdDEzNDYudGVzdIIKdDEzNDcudGVzdIIKdDEzNDgudGVzdIIK\ndDEzNDkudGVzdIIKdDEzNTAudGVzdIIKdDEzNTEudGVzdIIKdDEzNTIudGVzdIIK\ndDEzNTMudGVzdIIKdDEzNTQudGVzdIIKdDEzNTUudGVzdIIKdDEzNTYudGVzdIIK\ndDEzNTcudGVzdIIKdDEzNTgudGVzdIIKdDEzNTkudGVzdIIKdDEzNjAudGVzdIIK\ndDEzNjEudGVzdIIKdDEzNjIudGVzdIIKdDEzNjMudGVzdIIKdDEzNjQudGVzdIIK\ndDEzNjUudGVzdIIKdDEzNjYudGVzdIIKdDEzNjcudGVzdIIKdDEzNjgudGVzdIIK\ndDEzNjkudGVzdIIKdDEzNzAudGVzdIIKdDEzNzEudGVzdIIKdDEzNzIudGVzdIIK\ndDEzNzMudGVzdIIKdDEzNzQudGVzdIIKdDEzNzUudGVzdIIKdDEzNzYudGVzdIIK\ndDEzNzcudGVzdIIKdDEzNzgudGVzdIIKdDEzNzkudGVzdIIKdDEzODAudGVzdIIK\ndDEzODEudGVzdIIKdDEzODIudGVzdIIKdDEzODMudGVzdIIKdDEzODQudGVzdIIK\ndDEzODUudGVzdIIKdDEzODYudGVzdIIKdDEzODcudGVzdIIKdDEzODgudGVzdIIK\ndDEzODkudGVzdIIKdDEzOTAudGVzdIIKdDEzOTEudGVzdIIKdDEzOTIudGVzdIIK\ndDEzOTMudGVzdIIKdDEzOTQudGVzdIIKdDEzOTUudGVzdIIKdDEzOTYudGVzdIIK\ndDEzOTcudGVzdIIKdDEzOTgudGVzdIIKdDEzOTkudGVzdIIKdDE0MDAudGVzdIIK\ndDE0MDEudGVzdIIKdDE0MDIudGVzdIIKdDE0MDMudGVzdIIKdDE0MDQudGVzdIIK\ndDE0MDUudGVzdIIKdDE0MDYudGVzdIIKdDE0MDcudGVzdIIKdDE0MDgudGVzdIIK\ndDE0MDkudGVzdIIKdDE0MTAudGVzdIIKdDE0MTEudGVzdIIKdDE0MTIudGVzdIIK\ndDE0MTMudGVzdIIKdDE0MTQudGVzdIIKdDE0MTUudGVzdIIKdDE0MTYudGVzdIIK\ndDE0MTcudGVzdIIKdDE0MTgudGVzdIIKdDE0MTkudGVzdIIKdDE0MjAudGVzdIIK\ndDE0MjEudGVzdIIKdDE0MjIudGVzdIIKdDE0MjMudGVzdIIKdDE0MjQudGVzdIIK\ndDE0MjUudGVzdIIKdDE0MjYudGVzdIIKdDE0MjcudGVzdIIKdDE0MjgudGVzdIIK\ndDE0MjkudGVzdIIKdDE0MzAudGVzdIIKdDE0MzEudGVzdIIKdDE0MzIudGVzdIIK\ndDE0MzMudGVzdIIKdDE0MzQudGVzdIIKdDE0MzUudGVzdIIKdDE0MzYudGVzdIIK\ndDE0MzcudGVzdIIKdDE0MzgudGVzdIIKdDE0MzkudGVzdIIKdDE0NDAudGVzdIIK\ndDE0NDEudGVzdIIKdDE0NDIudGVzdIIKdDE0NDMudGVzdIIKdDE0NDQudGVzdIIK\ndDE0NDUudGVzdIIKdDE0NDYudGVzdIIKdDE0NDcudGVzdIIKdDE0NDgudGVzdIIK\ndDE0NDkudGVzdIIKdDE0NTAudGVzdIIKdDE0NTEudGVzdIIKdDE0NTIudGVzdIIK\ndDE0NTMudGVzdIIKdDE0NTQudGVzdIIKdDE0NTUudGVzdIIKdDE0NTYudGVzdIIK\ndDE0NTcudGVzdIIKdDE0NTgudGVzdIIKdDE0NTkudGVzdIIKdDE0NjAudGVzdIIK\ndDE0NjEudGVzdIIKdDE0NjIudGVzdIIKdDE0NjMudGVzdIIKdDE0NjQudGVzdIIK\ndDE0NjUudGVzdIIKdDE0NjYudGVzdIIKdDE0NjcudGVzdIIKdDE0NjgudGVzdIIK\ndDE0NjkudGVzdIIKdDE0NzAudGVzdIIKdDE0NzEudGVzdIIKdDE0NzIudGVzdIIK\ndDE0NzMudGVzdIIKdDE0NzQudGVzdIIKdDE0NzUudGVzdIIKdDE0NzYudGVzdIIK\ndDE0NzcudGVzdIIKdDE0NzgudGVzdIIKdDE0NzkudGVzdIIKdDE0ODAudGVzdIIK\ndDE0ODEudGVzdIIKdDE0ODIudGVzdIIKdDE0ODMudGVzdIIKdDE0ODQudGVzdIIK\ndDE0ODUudGVzdIIKdDE0ODYudGVzdIIKdDE0ODcudGVzdIIKdDE0ODgudGVzdIIK\ndDE0ODkudGVzdIIKdDE0OTAudGVzdIIKdDE0OTEudGVzdIIKdDE0OTIudGVzdIIK\ndDE0OTMudGVzdIIKdDE0OTQudGVzdIIKdDE0OTUudGVzdIIKdDE0OTYudGVzdIIK\ndDE0OTcudGVzdIIKdDE0OTgudGVzdIIKdDE0OTkudGVzdIIKdDE1MDAudGVzdIIK\ndDE1MDEudGVzdIIKdDE1MDIudGVzdIIKdDE1MDMudGVzdIIKdDE1MDQudGVzdIIK\ndDE1MDUudGVzdIIKdDE1MDYudGVzdIIKdDE1MDcudGVzdIIKdDE1MDgudGVzdIIK\ndDE1MDkudGVzdIIKdDE1MTAudGVzdIIKdDE1MTEudGVzdIIKdDE1MTIudGVzdIIK\ndDE1MTMudGVzdIIKdDE1MTQudGVzdIIKdDE1MTUudGVzdIIKdDE1MTYudGVzdIIK\ndDE1MTcudGVzdIIKdDE1MTgudGVzdIIKdDE1MTkudGVzdIIKdDE1MjAudGVzdIIK\ndDE1MjEudGVzdIIKdDE1MjIudGVzdIIKdDE1MjMudGVzdIIKdDE1MjQudGVzdIIK\ndDE1MjUudGVzdIIKdDE1MjYudGVzdIIKdDE1MjcudGVzdIIKdDE1MjgudGVzdIIK\ndDE1MjkudGVzdIIKdDE1MzAudGVzdIIKdDE1MzEudGVzdIIKdDE1MzIudGVzdIIK\ndDE1MzMudGVzdIIKdDE1MzQudGVzdIIKdDE1MzUudGVzdIIKdDE1MzYudGVzdIIK\ndDE1MzcudGVzdIIKdDE1MzgudGVzdIIKdDE1MzkudGVzdIIKdDE1NDAudGVzdIIK\ndDE1NDEudGVzdIIKdDE1NDIudGVzdIIKdDE1NDMudGVzdIIKdDE1NDQudGVzdIIK\ndDE1NDUudGVzdIIKdDE1NDYudGVzdIIKdDE1NDcudGVzdIIKdDE1NDgudGVzdIIK\ndDE1NDkudGVzdIIKdDE1NTAudGVzdIIKdDE1NTEudGVzdIIKdDE1NTIudGVzdIIK\ndDE1NTMudGVzdIIKdDE1NTQudGVzdIIKdDE1NTUudGVzdIIKdDE1NTYudGVzdIIK\ndDE1NTcudGVzdIIKdDE1NTgudGVzdIIKdDE1NTkudGVzdIIKdDE1NjAudGVzdIIK\ndDE1NjEudGVzdIIKdDE1NjIudGVzdIIKdDE1NjMudGVzdIIKdDE1NjQudGVzdIIK\ndDE1NjUudGVzdIIKdDE1NjYudGVzdIIKdDE1NjcudGVzdIIKdDE1NjgudGVzdIIK\ndDE1NjkudGVzdIIKdDE1NzAudGVzdIIKdDE1NzEudGVzdIIKdDE1NzIudGVzdIIK\ndDE1NzMudGVzdIIKdDE1NzQudGVzdIIKdDE1NzUudGVzdIIKdDE1NzYudGVzdIIK\ndDE1NzcudGVzdIIKdDE1NzgudGVzdIIKdDE1NzkudGVzdIIKdDE1ODAudGVzdIIK\ndDE1ODEudGVzdIIKdDE1ODIudGVzdIIKdDE1ODMudGVzdIIKdDE1ODQudGVzdIIK\ndDE1ODUudGVzdIIKdDE1ODYudGVzdIIKdDE1ODcudGVzdIIKdDE1ODgudGVzdIIK\ndDE1ODkudGVzdIIKdDE1OTAudGVzdIIKdDE1OTEudGVzdIIKdDE1OTIudGVzdIIK\ndDE1OTMudGVzdIIKdDE1OTQudGVzdIIKdDE1OTUudGVzdIIKdDE1OTYudGVzdIIK\ndDE1OTcudGVzdIIKdDE1OTgudGVzdIIKdDE1OTkudGVzdIIKdDE2MDAudGVzdIIK\ndDE2MDEudGVzdIIKdDE2MDIudGVzdIIKdDE2MDMudGVzdIIKdDE2MDQudGVzdIIK\ndDE2MDUudGVzdIIKdDE2MDYudGVzdIIKdDE2MDcudGVzdIIKdDE2MDgudGVzdIIK\ndDE2MDkudGVzdIIKdDE2MTAudGVzdIIKdDE2MTEudGVzdIIKdDE2MTIudGVzdIIK\ndDE2MTMudGVzdIIKdDE2MTQudGVzdIIKdDE2MTUudGVzdIIKdDE2MTYudGVzdIIK\ndDE2MTcudGVzdIIKdDE2MTgudGVzdIIKdDE2MTkudGVzdIIKdDE2MjAudGVzdIIK\ndDE2MjEudGVzdIIKdDE2MjIudGVzdIIKdDE2MjMudGVzdIIKdDE2MjQudGVzdIIK\ndDE2MjUudGVzdIIKdDE2MjYudGVzdIIKdDE2MjcudGVzdIIKdDE2MjgudGVzdIIK\ndDE2MjkudGVzdIIKdDE2MzAudGVzdIIKdDE2MzEudGVzdIIKdDE2MzIudGVzdIIK\ndDE2MzMudGVzdIIKdDE2MzQudGVzdIIKdDE2MzUudGVzdIIKdDE2MzYudGVzdIIK\ndDE2MzcudGVzdIIKdDE2MzgudGVzdIIKdDE2MzkudGVzdIIKdDE2NDAudGVzdIIK\ndDE2NDEudGVzdIIKdDE2NDIudGVzdIIKdDE2NDMudGVzdIIKdDE2NDQudGVzdIIK\ndDE2NDUudGVzdIIKdDE2NDYudGVzdIIKdDE2NDcudGVzdIIKdDE2NDgudGVzdIIK\ndDE2NDkudGVzdIIKdDE2NTAudGVzdIIKdDE2NTEudGVzdIIKdDE2NTIudGVzdIIK\ndDE2NTMudGVzdIIKdDE2NTQudGVzdIIKdDE2NTUudGVzdIIKdDE2NTYudGVzdIIK\ndDE2NTcudGVzdIIKdDE2NTgudGVzdIIKdDE2NTkudGVzdIIKdDE2NjAudGVzdIIK\ndDE2NjEudGVzdIIKdDE2NjIudGVzdIIKdDE2NjMudGVzdIIKdDE2NjQudGVzdIIK\ndDE2NjUudGVzdIIKdDE2NjYudGVzdIIKdDE2NjcudGVzdIIKdDE2NjgudGVzdIIK\ndDE2NjkudGVzdIIKdDE2NzAudGVzdIIKdDE2NzEudGVzdIIKdDE2NzIudGVzdIIK\ndDE2NzMudGVzdIIKdDE2NzQudGVzdIIKdDE2NzUudGVzdIIKdDE2NzYudGVzdIIK\ndDE2NzcudGVzdIIKdDE2NzgudGVzdIIKdDE2NzkudGVzdIIKdDE2ODAudGVzdIIK\ndDE2ODEudGVzdIIKdDE2ODIudGVzdIIKdDE2ODMudGVzdIIKdDE2ODQudGVzdIIK\ndDE2ODUudGVzdIIKdDE2ODYudGVzdIIKdDE2ODcudGVzdIIKdDE2ODgudGVzdIIK\ndDE2ODkudGVzdIIKdDE2OTAudGVzdIIKdDE2OTEudGVzdIIKdDE2OTIudGVzdIIK\ndDE2OTMudGVzdIIKdDE2OTQudGVzdIIKdDE2OTUudGVzdIIKdDE2OTYudGVzdIIK\ndDE2OTcudGVzdIIKdDE2OTgudGVzdIIKdDE2OTkudGVzdIIKdDE3MDAudGVzdIIK\ndDE3MDEudGVzdIIKdDE3MDIudGVzdIIKdDE3MDMudGVzdIIKdDE3MDQudGVzdIIK\ndDE3MDUudGVzdIIKdDE3MDYudGVzdIIKdDE3MDcudGVzdIIKdDE3MDgudGVzdIIK\ndDE3MDkudGVzdIIKdDE3MTAudGVzdIIKdDE3MTEudGVzdIIKdDE3MTIudGVzdIIK\ndDE3MTMudGVzdIIKdDE3MTQudGVzdIIKdDE3MTUudGVzdIIKdDE3MTYudGVzdIIK\ndDE3MTcudGVzdIIKdDE3MTgudGVzdIIKdDE3MTkudGVzdIIKdDE3MjAudGVzdIIK\ndDE3MjEudGVzdIIKdDE3MjIudGVzdIIKdDE3MjMudGVzdIIKdDE3MjQudGVzdIIK\ndDE3MjUudGVzdIIKdDE3MjYudGVzdIIKdDE3MjcudGVzdIIKdDE3MjgudGVzdIIK\ndDE3MjkudGVzdIIKdDE3MzAudGVzdIIKdDE3MzEudGVzdIIKdDE3MzIudGVzdIIK\ndDE3MzMudGVzdIIKdDE3MzQudGVzdIIKdDE3MzUudGVzdIIKdDE3MzYudGVzdIIK\ndDE3MzcudGVzdIIKdDE3MzgudGVzdIIKdDE3MzkudGVzdIIKdDE3NDAudGVzdIIK\ndDE3NDEudGVzdIIKdDE3NDIudGVzdIIKdDE3NDMudGVzdIIKdDE3NDQudGVzdIIK\ndDE3NDUudGVzdIIKdDE3NDYudGVzdIIKdDE3NDcudGVzdIIKdDE3NDgudGVzdIIK\ndDE3NDkudGVzdIIKdDE3NTAudGVzdIIKdDE3NTEudGVzdIIKdDE3NTIudGVzdIIK\ndDE3NTMudGVzdIIKdDE3NTQudGVzdIIKdDE3NTUudGVzdIIKdDE3NTYudGVzdIIK\ndDE3NTcudGVzdIIKdDE3NTgudGVzdIIKdDE3NTkudGVzdIIKdDE3NjAudGVzdIIK\ndDE3NjEudGVzdIIKdDE3NjIudGVzdIIKdDE3NjMudGVzdIIKdDE3NjQudGVzdIIK\ndDE3NjUudGVzdIIKdDE3NjYudGVzdIIKdDE3NjcudGVzdIIKdDE3NjgudGVzdIIK\ndDE3NjkudGVzdIIKdDE3NzAudGVzdIIKdDE3NzEudGVzdIIKdDE3NzIudGVzdIIK\ndDE3NzMudGVzdIIKdDE3NzQudGVzdIIKdDE3NzUudGVzdIIKdDE3NzYudGVzdIIK\ndDE3NzcudGVzdIIKdDE3NzgudGVzdIIKdDE3NzkudGVzdIIKdDE3ODAudGVzdIIK\ndDE3ODEudGVzdIIKdDE3ODIudGVzdIIKdDE3ODMudGVzdIIKdDE3ODQudGVzdIIK\ndDE3ODUudGVzdIIKdDE3ODYudGVzdIIKdDE3ODcudGVzdIIKdDE3ODgudGVzdIIK\ndDE3ODkudGVzdIIKdDE3OTAudGVzdIIKdDE3OTEudGVzdIIKdDE3OTIudGVzdIIK\ndDE3OTMudGVzdIIKdDE3OTQudGVzdIIKdDE3OTUudGVzdIIKdDE3OTYudGVzdIIK\ndDE3OTcudGVzdIIKdDE3OTgudGVzdIIKdDE3OTkudGVzdIIKdDE4MDAudGVzdIIK\ndDE4MDEudGVzdIIKdDE4MDIudGVzdIIKdDE4MDMudGVzdIIKdDE4MDQudGVzdIIK\ndDE4MDUudGVzdIIKdDE4MDYudGVzdIIKdDE4MDcudGVzdIIKdDE4MDgudGVzdIIK\ndDE4MDkudGVzdIIKdDE4MTAudGVzdIIKdDE4MTEudGVzdIIKdDE4MTIudGVzdIIK\ndDE4MTMudGVzdIIKdDE4MTQudGVzdIIKdDE4MTUudGVzdIIKdDE4MTYudGVzdIIK\ndDE4MTcudGVzdIIKdDE4MTgudGVzdIIKdDE4MTkudGVzdIIKdDE4MjAudGVzdIIK\ndDE4MjEudGVzdIIKdDE4MjIudGVzdIIKdDE4MjMudGVzdIIKdDE4MjQudGVzdIIK\ndDE4MjUudGVzdIIKdDE4MjYudGVzdIIKdDE4MjcudGVzdIIKdDE4MjgudGVzdIIK\ndDE4MjkudGVzdIIKdDE4MzAudGVzdIIKdDE4MzEudGVzdIIKdDE4MzIudGVzdIIK\ndDE4MzMudGVzdIIKdDE4MzQudGVzdIIKdDE4MzUudGVzdIIKdDE4MzYudGVzdIIK\ndDE4MzcudGVzdIIKdDE4MzgudGVzdIIKdDE4MzkudGVzdIIKdDE4NDAudGVzdIIK\ndDE4NDEudGVzdIIKdDE4NDIudGVzdIIKdDE4NDMudGVzdIIKdDE4NDQudGVzdIIK\ndDE4NDUudGVzdIIKdDE4NDYudGVzdIIKdDE4NDcudGVzdIIKdDE4NDgudGVzdIIK\ndDE4NDkudGVzdIIKdDE4NTAudGVzdIIKdDE4NTEudGVzdIIKdDE4NTIudGVzdIIK\ndDE4NTMudGVzdIIKdDE4NTQudGVzdIIKdDE4NTUudGVzdIIKdDE4NTYudGVzdIIK\ndDE4NTcudGVzdIIKdDE4NTgudGVzdIIKdDE4NTkudGVzdIIKdDE4NjAudGVzdIIK\ndDE4NjEudGVzdIIKdDE4NjIudGVzdIIKdDE4NjMudGVzdIIKdDE4NjQudGVzdIIK\ndDE4NjUudGVzdIIKdDE4NjYudGVzdIIKdDE4NjcudGVzdIIKdDE4NjgudGVzdIIK\ndDE4NjkudGVzdIIKdDE4NzAudGVzdIIKdDE4NzEudGVzdIIKdDE4NzIudGVzdIIK\ndDE4NzMudGVzdIIKdDE4NzQudGVzdIIKdDE4NzUudGVzdIIKdDE4NzYudGVzdIIK\ndDE4NzcudGVzdIIKdDE4NzgudGVzdIIKdDE4NzkudGVzdIIKdDE4ODAudGVzdIIK\ndDE4ODEudGVzdIIKdDE4ODIudGVzdIIKdDE4ODMudGVzdIIKdDE4ODQudGVzdIIK\ndDE4ODUudGVzdIIKdDE4ODYudGVzdIIKdDE4ODcudGVzdIIKdDE4ODgudGVzdIIK\ndDE4ODkudGVzdIIKdDE4OTAudGVzdIIKdDE4OTEudGVzdIIKdDE4OTIudGVzdIIK\ndDE4OTMudGVzdIIKdDE4OTQudGVzdIIKdDE4OTUudGVzdIIKdDE4OTYudGVzdIIK\ndDE4OTcudGVzdIIKdDE4OTgudGVzdIIKdDE4OTkudGVzdIIKdDE5MDAudGVzdIIK\ndDE5MDEudGVzdIIKdDE5MDIudGVzdIIKdDE5MDMudGVzdIIKdDE5MDQudGVzdIIK\ndDE5MDUudGVzdIIKdDE5MDYudGVzdIIKdDE5MDcudGVzdIIKdDE5MDgudGVzdIIK\ndDE5MDkudGVzdIIKdDE5MTAudGVzdIIKdDE5MTEudGVzdIIKdDE5MTIudGVzdIIK\ndDE5MTMudGVzdIIKdDE5MTQudGVzdIIKdDE5MTUudGVzdIIKdDE5MTYudGVzdIIK\ndDE5MTcudGVzdIIKdDE5MTgudGVzdIIKdDE5MTkudGVzdIIKdDE5MjAudGVzdIIK\ndDE5MjEudGVzdIIKdDE5MjIudGVzdIIKdDE5MjMudGVzdIIKdDE5MjQudGVzdIIK\ndDE5MjUudGVzdIIKdDE5MjYudGVzdIIKdDE5MjcudGVzdIIKdDE5MjgudGVzdIIK\ndDE5MjkudGVzdIIKdDE5MzAudGVzdIIKdDE5MzEudGVzdIIKdDE5MzIudGVzdIIK\ndDE5MzMudGVzdIIKdDE5MzQudGVzdIIKdDE5MzUudGVzdIIKdDE5MzYudGVzdIIK\ndDE5MzcudGVzdIIKdDE5MzgudGVzdIIKdDE5MzkudGVzdIIKdDE5NDAudGVzdIIK\ndDE5NDEudGVzdIIKdDE5NDIudGVzdIIKdDE5NDMudGVzdIIKdDE5NDQudGVzdIIK\ndDE5NDUudGVzdIIKdDE5NDYudGVzdIIKdDE5NDcudGVzdIIKdDE5NDgudGVzdIIK\ndDE5NDkudGVzdIIKdDE5NTAudGVzdIIKdDE5NTEudGVzdIIKdDE5NTIudGVzdIIK\ndDE5NTMudGVzdIIKdDE5NTQudGVzdIIKdDE5NTUudGVzdIIKdDE5NTYudGVzdIIK\ndDE5NTcudGVzdIIKdDE5NTgudGVzdIIKdDE5NTkudGVzdIIKdDE5NjAudGVzdIIK\ndDE5NjEudGVzdIIKdDE5NjIudGVzdIIKdDE5NjMudGVzdIIKdDE5NjQudGVzdIIK\ndDE5NjUudGVzdIIKdDE5NjYudGVzdIIKdDE5NjcudGVzdIIKdDE5NjgudGVzdIIK\ndDE5NjkudGVzdIIKdDE5NzAudGVzdIIKdDE5NzEudGVzdIIKdDE5NzIudGVzdIIK\ndDE5NzMudGVzdIIKdDE5NzQudGVzdIIKdDE5NzUudGVzdIIKdDE5NzYudGVzdIIK\ndDE5NzcudGVzdIIKdDE5NzgudGVzdIIKdDE5NzkudGVzdIIKdDE5ODAudGVzdIIK\ndDE5ODEudGVzdIIKdDE5ODIudGVzdIIKdDE5ODMudGVzdIIKdDE5ODQudGVzdIIK\ndDE5ODUudGVzdIIKdDE5ODYudGVzdIIKdDE5ODcudGVzdIIKdDE5ODgudGVzdIIK\ndDE5ODkudGVzdIIKdDE5OTAudGVzdIIKdDE5OTEudGVzdIIKdDE5OTIudGVzdIIK\ndDE5OTMudGVzdIIKdDE5OTQudGVzdIIKdDE5OTUudGVzdIIKdDE5OTYudGVzdIIK\ndDE5OTcudGVzdIIKdDE5OTgudGVzdIIKdDE5OTkudGVzdIIKdDIwMDAudGVzdIIK\ndDIwMDEudGVzdIIKdDIwMDIudGVzdIIKdDIwMDMudGVzdIIKdDIwMDQudGVzdIIK\ndDIwMDUudGVzdIIKdDIwMDYudGVzdIIKdDIwMDcudGVzdIIKdDIwMDgudGVzdIIK\ndDIwMDkudGVzdIIKdDIwMTAudGVzdIIKdDIwMTEudGVzdIIKdDIwMTIudGVzdIIK\ndDIwMTMudGVzdIIKdDIwMTQudGVzdIIKdDIwMTUudGVzdIIKdDIwMTYudGVzdIIK\ndDIwMTcudGVzdIIKdDIwMTgudGVzdIIKdDIwMTkudGVzdIIKdDIwMjAudGVzdIIK\ndDIwMjEudGVzdIIKdDIwMjIudGVzdIIKdDIwMjMudGVzdIIKdDIwMjQudGVzdIIK\ndDIwMjUudGVzdIIKdDIwMjYudGVzdIIKdDIwMjcudGVzdIIKdDIwMjgudGVzdIIK\ndDIwMjkudGVzdIIKdDIwMzAudGVzdIIKdDIwMzEudGVzdIIKdDIwMzIudGVzdIIK\ndDIwMzMudGVzdIIKdDIwMzQudGVzdIIKdDIwMzUudGVzdIIKdDIwMzYudGVzdIIK\ndDIwMzcudGVzdIIKdDIwMzgudGVzdIIKdDIwMzkudGVzdIIKdDIwNDAudGVzdIIK\ndDIwNDEudGVzdIIKdDIwNDIudGVzdIIKdDIwNDMudGVzdIIKdDIwNDQudGVzdIIK\ndDIwNDUudGVzdIIKdDIwNDYudGVzdIIKdDIwNDcudGVzdDAKBggqhkjOPQQDAgNJ\nADBGAiEAqqsDwIqWtbeCq+KVARQ9L04UNx0+cJ+kHtooskpbM34CIQCFtE+LFlhv\nt7GxyQCe/NwwVf78w1Up7UnFodRSWrgoIw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIH/WvtHTFQSOhSj4WpKB5gwzWMkeXS491B1JVSzYMhi+oAoGCCqGSM49\nAwEHoUQDQgAEPoVHSSHFdp4lIX7yMQ0sg/X7swsiPVYhGfuMXVNMShxiTHiPeAq+\ny0wCBCJeUCZ/hFLxZiw9wDefQdfYLbCugw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIJdRDCCXOqgAwIBAgIUfATeHi9W+dTjRdhnSM8YB2x3hI4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEpP7Ih4cq\nT85FHjjihpZ4xfvYQSlRhwhxOD6LEtEbZas/z/dxlnoIaNhginOwwQCK2oPqdGt7\nw9JMocqoTxsfdKOCXCQwglwgMB0GA1UdDgQWBBT6/m+4R6pwtazsZ2irU8i+6Cin\nxzAfBgNVHSMEGDAWgBTx5DrayjkgrEbfAphavDBVv5KXZjALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwglu6BgNVHREBAf8EgluuMIJbqoIHdDAudGVz\ndIIHdDEudGVzdIIHdDIudGVzdIIHdDMudGVzdIIHdDQudGVzdIIHdDUudGVzdIIH\ndDYudGVzdIIHdDcudGVzdIIHdDgudGVzdIIHdDkudGVzdIIIdDEwLnRlc3SCCHQx\nMS50ZXN0ggh0MTIudGVzdIIIdDEzLnRlc3SCCHQxNC50ZXN0ggh0MTUudGVzdIII\ndDE2LnRlc3SCCHQxNy50ZXN0ggh0MTgudGVzdIIIdDE5LnRlc3SCCHQyMC50ZXN0\nggh0MjEudGVzdIIIdDIyLnRlc3SCCHQyMy50ZXN0ggh0MjQudGVzdIIIdDI1LnRl\nc3SCCHQyNi50ZXN0ggh0MjcudGVzdIIIdDI4LnRlc3SCCHQyOS50ZXN0ggh0MzAu\ndGVzdIIIdDMxLnRlc3SCCHQzMi50ZXN0ggh0MzMudGVzdIIIdDM0LnRlc3SCCHQz\nNS50ZXN0ggh0MzYudGVzdIIIdDM3LnRlc3SCCHQzOC50ZXN0ggh0MzkudGVzdIII\ndDQwLnRlc3SCCHQ0MS50ZXN0ggh0NDIudGVzdIIIdDQzLnRlc3SCCHQ0NC50ZXN0\nggh0NDUudGVzdIIIdDQ2LnRlc3SCCHQ0Ny50ZXN0ggh0NDgudGVzdIIIdDQ5LnRl\nc3SCCHQ1MC50ZXN0ggh0NTEudGVzdIIIdDUyLnRlc3SCCHQ1My50ZXN0ggh0NTQu\ndGVzdIIIdDU1LnRlc3SCCHQ1Ni50ZXN0ggh0NTcudGVzdIIIdDU4LnRlc3SCCHQ1\nOS50ZXN0ggh0NjAudGVzdIIIdDYxLnRlc3SCCHQ2Mi50ZXN0ggh0NjMudGVzdIII\ndDY0LnRlc3SCCHQ2NS50ZXN0ggh0NjYudGVzdIIIdDY3LnRlc3SCCHQ2OC50ZXN0\nggh0NjkudGVzdIIIdDcwLnRlc3SCCHQ3MS50ZXN0ggh0NzIudGVzdIIIdDczLnRl\nc3SCCHQ3NC50ZXN0ggh0NzUudGVzdIIIdDc2LnRlc3SCCHQ3Ny50ZXN0ggh0Nzgu\ndGVzdIIIdDc5LnRlc3SCCHQ4MC50ZXN0ggh0ODEudGVzdIIIdDgyLnRlc3SCCHQ4\nMy50ZXN0ggh0ODQudGVzdIIIdDg1LnRlc3SCCHQ4Ni50ZXN0ggh0ODcudGVzdIII\ndDg4LnRlc3SCCHQ4OS50ZXN0ggh0OTAudGVzdIIIdDkxLnRlc3SCCHQ5Mi50ZXN0\nggh0OTMudGVzdIIIdDk0LnRlc3SCCHQ5NS50ZXN0ggh0OTYudGVzdIIIdDk3LnRl\nc3SCCHQ5OC50ZXN0ggh0OTkudGVzdIIJdDEwMC50ZXN0ggl0MTAxLnRlc3SCCXQx\nMDIudGVzdIIJdDEwMy50ZXN0ggl0MTA0LnRlc3SCCXQxMDUudGVzdIIJdDEwNi50\nZXN0ggl0MTA3LnRlc3SCCXQxMDgudGVzdIIJdDEwOS50ZXN0ggl0MTEwLnRlc3SC\nCXQxMTEudGVzdIIJdDExMi50ZXN0ggl0MTEzLnRlc3SCCXQxMTQudGVzdIIJdDEx\nNS50ZXN0ggl0MTE2LnRlc3SCCXQxMTcudGVzdIIJdDExOC50ZXN0ggl0MTE5LnRl\nc3SCCXQxMjAudGVzdIIJdDEyMS50ZXN0ggl0MTIyLnRlc3SCCXQxMjMudGVzdIIJ\ndDEyNC50ZXN0ggl0MTI1LnRlc3SCCXQxMjYudGVzdIIJdDEyNy50ZXN0ggl0MTI4\nLnRlc3SCCXQxMjkudGVzdIIJdDEzMC50ZXN0ggl0MTMxLnRlc3SCCXQxMzIudGVz\ndIIJdDEzMy50ZXN0ggl0MTM0LnRlc3SCCXQxMzUudGVzdIIJdDEzNi50ZXN0ggl0\nMTM3LnRlc3SCCXQxMzgudGVzdIIJdDEzOS50ZXN0ggl0MTQwLnRlc3SCCXQxNDEu\ndGVzdIIJdDE0Mi50ZXN0ggl0MTQzLnRlc3SCCXQxNDQudGVzdIIJdDE0NS50ZXN0\nggl0MTQ2LnRlc3SCCXQxNDcudGVzdIIJdDE0OC50ZXN0ggl0MTQ5LnRlc3SCCXQx\nNTAudGVzdIIJdDE1MS50ZXN0ggl0MTUyLnRlc3SCCXQxNTMudGVzdIIJdDE1NC50\nZXN0ggl0MTU1LnRlc3SCCXQxNTYudGVzdIIJdDE1Ny50ZXN0ggl0MTU4LnRlc3SC\nCXQxNTkudGVzdIIJdDE2MC50ZXN0ggl0MTYxLnRlc3SCCXQxNjIudGVzdIIJdDE2\nMy50ZXN0ggl0MTY0LnRlc3SCCXQxNjUudGVzdIIJdDE2Ni50ZXN0ggl0MTY3LnRl\nc3SCCXQxNjgudGVzdIIJdDE2OS50ZXN0ggl0MTcwLnRlc3SCCXQxNzEudGVzdIIJ\ndDE3Mi50ZXN0ggl0MTczLnRlc3SCCXQxNzQudGVzdIIJdDE3NS50ZXN0ggl0MTc2\nLnRlc3SCCXQxNzcudGVzdIIJdDE3OC50ZXN0ggl0MTc5LnRlc3SCCXQxODAudGVz\ndIIJdDE4MS50ZXN0ggl0MTgyLnRlc3SCCXQxODMudGVzdIIJdDE4NC50ZXN0ggl0\nMTg1LnRlc3SCCXQxODYudGVzdIIJdDE4Ny50ZXN0ggl0MTg4LnRlc3SCCXQxODku\ndGVzdIIJdDE5MC50ZXN0ggl0MTkxLnRlc3SCCXQxOTIudGVzdIIJdDE5My50ZXN0\nggl0MTk0LnRlc3SCCXQxOTUudGVzdIIJdDE5Ni50ZXN0ggl0MTk3LnRlc3SCCXQx\nOTgudGVzdIIJdDE5OS50ZXN0ggl0MjAwLnRlc3SCCXQyMDEudGVzdIIJdDIwMi50\nZXN0ggl0MjAzLnRlc3SCCXQyMDQudGVzdIIJdDIwNS50ZXN0ggl0MjA2LnRlc3SC\nCXQyMDcudGVzdIIJdDIwOC50ZXN0ggl0MjA5LnRlc3SCCXQyMTAudGVzdIIJdDIx\nMS50ZXN0ggl0MjEyLnRlc3SCCXQyMTMudGVzdIIJdDIxNC50ZXN0ggl0MjE1LnRl\nc3SCCXQyMTYudGVzdIIJdDIxNy50ZXN0ggl0MjE4LnRlc3SCCXQyMTkudGVzdIIJ\ndDIyMC50ZXN0ggl0MjIxLnRlc3SCCXQyMjIudGVzdIIJdDIyMy50ZXN0ggl0MjI0\nLnRlc3SCCXQyMjUudGVzdIIJdDIyNi50ZXN0ggl0MjI3LnRlc3SCCXQyMjgudGVz\ndIIJdDIyOS50ZXN0ggl0MjMwLnRlc3SCCXQyMzEudGVzdIIJdDIzMi50ZXN0ggl0\nMjMzLnRlc3SCCXQyMzQudGVzdIIJdDIzNS50ZXN0ggl0MjM2LnRlc3SCCXQyMzcu\ndGVzdIIJdDIzOC50ZXN0ggl0MjM5LnRlc3SCCXQyNDAudGVzdIIJdDI0MS50ZXN0\nggl0MjQyLnRlc3SCCXQyNDMudGVzdIIJdDI0NC50ZXN0ggl0MjQ1LnRlc3SCCXQy\nNDYudGVzdIIJdDI0Ny50ZXN0ggl0MjQ4LnRlc3SCCXQyNDkudGVzdIIJdDI1MC50\nZXN0ggl0MjUxLnRlc3SCCXQyNTIudGVzdIIJdDI1My50ZXN0ggl0MjU0LnRlc3SC\nCXQyNTUudGVzdIIJdDI1Ni50ZXN0ggl0MjU3LnRlc3SCCXQyNTgudGVzdIIJdDI1\nOS50ZXN0ggl0MjYwLnRlc3SCCXQyNjEudGVzdIIJdDI2Mi50ZXN0ggl0MjYzLnRl\nc3SCCXQyNjQudGVzdIIJdDI2NS50ZXN0ggl0MjY2LnRlc3SCCXQyNjcudGVzdIIJ\ndDI2OC50ZXN0ggl0MjY5LnRlc3SCCXQyNzAudGVzdIIJdDI3MS50ZXN0ggl0Mjcy\nLnRlc3SCCXQyNzMudGVzdIIJdDI3NC50ZXN0ggl0Mjc1LnRlc3SCCXQyNzYudGVz\ndIIJdDI3Ny50ZXN0ggl0Mjc4LnRlc3SCCXQyNzkudGVzdIIJdDI4MC50ZXN0ggl0\nMjgxLnRlc3SCCXQyODIudGVzdIIJdDI4My50ZXN0ggl0Mjg0LnRlc3SCCXQyODUu\ndGVzdIIJdDI4Ni50ZXN0ggl0Mjg3LnRlc3SCCXQyODgudGVzdIIJdDI4OS50ZXN0\nggl0MjkwLnRlc3SCCXQyOTEudGVzdIIJdDI5Mi50ZXN0ggl0MjkzLnRlc3SCCXQy\nOTQudGVzdIIJdDI5NS50ZXN0ggl0Mjk2LnRlc3SCCXQyOTcudGVzdIIJdDI5OC50\nZXN0ggl0Mjk5LnRlc3SCCXQzMDAudGVzdIIJdDMwMS50ZXN0ggl0MzAyLnRlc3SC\nCXQzMDMudGVzdIIJdDMwNC50ZXN0ggl0MzA1LnRlc3SCCXQzMDYudGVzdIIJdDMw\nNy50ZXN0ggl0MzA4LnRlc3SCCXQzMDkudGVzdIIJdDMxMC50ZXN0ggl0MzExLnRl\nc3SCCXQzMTIudGVzdIIJdDMxMy50ZXN0ggl0MzE0LnRlc3SCCXQzMTUudGVzdIIJ\ndDMxNi50ZXN0ggl0MzE3LnRlc3SCCXQzMTgudGVzdIIJdDMxOS50ZXN0ggl0MzIw\nLnRlc3SCCXQzMjEudGVzdIIJdDMyMi50ZXN0ggl0MzIzLnRlc3SCCXQzMjQudGVz\ndIIJdDMyNS50ZXN0ggl0MzI2LnRlc3SCCXQzMjcudGVzdIIJdDMyOC50ZXN0ggl0\nMzI5LnRlc3SCCXQzMzAudGVzdIIJdDMzMS50ZXN0ggl0MzMyLnRlc3SCCXQzMzMu\ndGVzdIIJdDMzNC50ZXN0ggl0MzM1LnRlc3SCCXQzMzYudGVzdIIJdDMzNy50ZXN0\nggl0MzM4LnRlc3SCCXQzMzkudGVzdIIJdDM0MC50ZXN0ggl0MzQxLnRlc3SCCXQz\nNDIudGVzdIIJdDM0My50ZXN0ggl0MzQ0LnRlc3SCCXQzNDUudGVzdIIJdDM0Ni50\nZXN0ggl0MzQ3LnRlc3SCCXQzNDgudGVzdIIJdDM0OS50ZXN0ggl0MzUwLnRlc3SC\nCXQzNTEudGVzdIIJdDM1Mi50ZXN0ggl0MzUzLnRlc3SCCXQzNTQudGVzdIIJdDM1\nNS50ZXN0ggl0MzU2LnRlc3SCCXQzNTcudGVzdIIJdDM1OC50ZXN0ggl0MzU5LnRl\nc3SCCXQzNjAudGVzdIIJdDM2MS50ZXN0ggl0MzYyLnRlc3SCCXQzNjMudGVzdIIJ\ndDM2NC50ZXN0ggl0MzY1LnRlc3SCCXQzNjYudGVzdIIJdDM2Ny50ZXN0ggl0MzY4\nLnRlc3SCCXQzNjkudGVzdIIJdDM3MC50ZXN0ggl0MzcxLnRlc3SCCXQzNzIudGVz\ndIIJdDM3My50ZXN0ggl0Mzc0LnRlc3SCCXQzNzUudGVzdIIJdDM3Ni50ZXN0ggl0\nMzc3LnRlc3SCCXQzNzgudGVzdIIJdDM3OS50ZXN0ggl0MzgwLnRlc3SCCXQzODEu\ndGVzdIIJdDM4Mi50ZXN0ggl0MzgzLnRlc3SCCXQzODQudGVzdIIJdDM4NS50ZXN0\nggl0Mzg2LnRlc3SCCXQzODcudGVzdIIJdDM4OC50ZXN0ggl0Mzg5LnRlc3SCCXQz\nOTAudGVzdIIJdDM5MS50ZXN0ggl0MzkyLnRlc3SCCXQzOTMudGVzdIIJdDM5NC50\nZXN0ggl0Mzk1LnRlc3SCCXQzOTYudGVzdIIJdDM5Ny50ZXN0ggl0Mzk4LnRlc3SC\nCXQzOTkudGVzdIIJdDQwMC50ZXN0ggl0NDAxLnRlc3SCCXQ0MDIudGVzdIIJdDQw\nMy50ZXN0ggl0NDA0LnRlc3SCCXQ0MDUudGVzdIIJdDQwNi50ZXN0ggl0NDA3LnRl\nc3SCCXQ0MDgudGVzdIIJdDQwOS50ZXN0ggl0NDEwLnRlc3SCCXQ0MTEudGVzdIIJ\ndDQxMi50ZXN0ggl0NDEzLnRlc3SCCXQ0MTQudGVzdIIJdDQxNS50ZXN0ggl0NDE2\nLnRlc3SCCXQ0MTcudGVzdIIJdDQxOC50ZXN0ggl0NDE5LnRlc3SCCXQ0MjAudGVz\ndIIJdDQyMS50ZXN0ggl0NDIyLnRlc3SCCXQ0MjMudGVzdIIJdDQyNC50ZXN0ggl0\nNDI1LnRlc3SCCXQ0MjYudGVzdIIJdDQyNy50ZXN0ggl0NDI4LnRlc3SCCXQ0Mjku\ndGVzdIIJdDQzMC50ZXN0ggl0NDMxLnRlc3SCCXQ0MzIudGVzdIIJdDQzMy50ZXN0\nggl0NDM0LnRlc3SCCXQ0MzUudGVzdIIJdDQzNi50ZXN0ggl0NDM3LnRlc3SCCXQ0\nMzgudGVzdIIJdDQzOS50ZXN0ggl0NDQwLnRlc3SCCXQ0NDEudGVzdIIJdDQ0Mi50\nZXN0ggl0NDQzLnRlc3SCCXQ0NDQudGVzdIIJdDQ0NS50ZXN0ggl0NDQ2LnRlc3SC\nCXQ0NDcudGVzdIIJdDQ0OC50ZXN0ggl0NDQ5LnRlc3SCCXQ0NTAudGVzdIIJdDQ1\nMS50ZXN0ggl0NDUyLnRlc3SCCXQ0NTMudGVzdIIJdDQ1NC50ZXN0ggl0NDU1LnRl\nc3SCCXQ0NTYudGVzdIIJdDQ1Ny50ZXN0ggl0NDU4LnRlc3SCCXQ0NTkudGVzdIIJ\ndDQ2MC50ZXN0ggl0NDYxLnRlc3SCCXQ0NjIudGVzdIIJdDQ2My50ZXN0ggl0NDY0\nLnRlc3SCCXQ0NjUudGVzdIIJdDQ2Ni50ZXN0ggl0NDY3LnRlc3SCCXQ0NjgudGVz\ndIIJdDQ2OS50ZXN0ggl0NDcwLnRlc3SCCXQ0NzEudGVzdIIJdDQ3Mi50ZXN0ggl0\nNDczLnRlc3SCCXQ0NzQudGVzdIIJdDQ3NS50ZXN0ggl0NDc2LnRlc3SCCXQ0Nzcu\ndGVzdIIJdDQ3OC50ZXN0ggl0NDc5LnRlc3SCCXQ0ODAudGVzdIIJdDQ4MS50ZXN0\nggl0NDgyLnRlc3SCCXQ0ODMudGVzdIIJdDQ4NC50ZXN0ggl0NDg1LnRlc3SCCXQ0\nODYudGVzdIIJdDQ4Ny50ZXN0ggl0NDg4LnRlc3SCCXQ0ODkudGVzdIIJdDQ5MC50\nZXN0ggl0NDkxLnRlc3SCCXQ0OTIudGVzdIIJdDQ5My50ZXN0ggl0NDk0LnRlc3SC\nCXQ0OTUudGVzdIIJdDQ5Ni50ZXN0ggl0NDk3LnRlc3SCCXQ0OTgudGVzdIIJdDQ5\nOS50ZXN0ggl0NTAwLnRlc3SCCXQ1MDEudGVzdIIJdDUwMi50ZXN0ggl0NTAzLnRl\nc3SCCXQ1MDQudGVzdIIJdDUwNS50ZXN0ggl0NTA2LnRlc3SCCXQ1MDcudGVzdIIJ\ndDUwOC50ZXN0ggl0NTA5LnRlc3SCCXQ1MTAudGVzdIIJdDUxMS50ZXN0ggl0NTEy\nLnRlc3SCCXQ1MTMudGVzdIIJdDUxNC50ZXN0ggl0NTE1LnRlc3SCCXQ1MTYudGVz\ndIIJdDUxNy50ZXN0ggl0NTE4LnRlc3SCCXQ1MTkudGVzdIIJdDUyMC50ZXN0ggl0\nNTIxLnRlc3SCCXQ1MjIudGVzdIIJdDUyMy50ZXN0ggl0NTI0LnRlc3SCCXQ1MjUu\ndGVzdIIJdDUyNi50ZXN0ggl0NTI3LnRlc3SCCXQ1MjgudGVzdIIJdDUyOS50ZXN0\nggl0NTMwLnRlc3SCCXQ1MzEudGVzdIIJdDUzMi50ZXN0ggl0NTMzLnRlc3SCCXQ1\nMzQudGVzdIIJdDUzNS50ZXN0ggl0NTM2LnRlc3SCCXQ1MzcudGVzdIIJdDUzOC50\nZXN0ggl0NTM5LnRlc3SCCXQ1NDAudGVzdIIJdDU0MS50ZXN0ggl0NTQyLnRlc3SC\nCXQ1NDMudGVzdIIJdDU0NC50ZXN0ggl0NTQ1LnRlc3SCCXQ1NDYudGVzdIIJdDU0\nNy50ZXN0ggl0NTQ4LnRlc3SCCXQ1NDkudGVzdIIJdDU1MC50ZXN0ggl0NTUxLnRl\nc3SCCXQ1NTIudGVzdIIJdDU1My50ZXN0ggl0NTU0LnRlc3SCCXQ1NTUudGVzdIIJ\ndDU1Ni50ZXN0ggl0NTU3LnRlc3SCCXQ1NTgudGVzdIIJdDU1OS50ZXN0ggl0NTYw\nLnRlc3SCCXQ1NjEudGVzdIIJdDU2Mi50ZXN0ggl0NTYzLnRlc3SCCXQ1NjQudGVz\ndIIJdDU2NS50ZXN0ggl0NTY2LnRlc3SCCXQ1NjcudGVzdIIJdDU2OC50ZXN0ggl0\nNTY5LnRlc3SCCXQ1NzAudGVzdIIJdDU3MS50ZXN0ggl0NTcyLnRlc3SCCXQ1NzMu\ndGVzdIIJdDU3NC50ZXN0ggl0NTc1LnRlc3SCCXQ1NzYudGVzdIIJdDU3Ny50ZXN0\nggl0NTc4LnRlc3SCCXQ1NzkudGVzdIIJdDU4MC50ZXN0ggl0NTgxLnRlc3SCCXQ1\nODIudGVzdIIJdDU4My50ZXN0ggl0NTg0LnRlc3SCCXQ1ODUudGVzdIIJdDU4Ni50\nZXN0ggl0NTg3LnRlc3SCCXQ1ODgudGVzdIIJdDU4OS50ZXN0ggl0NTkwLnRlc3SC\nCXQ1OTEudGVzdIIJdDU5Mi50ZXN0ggl0NTkzLnRlc3SCCXQ1OTQudGVzdIIJdDU5\nNS50ZXN0ggl0NTk2LnRlc3SCCXQ1OTcudGVzdIIJdDU5OC50ZXN0ggl0NTk5LnRl\nc3SCCXQ2MDAudGVzdIIJdDYwMS50ZXN0ggl0NjAyLnRlc3SCCXQ2MDMudGVzdIIJ\ndDYwNC50ZXN0ggl0NjA1LnRlc3SCCXQ2MDYudGVzdIIJdDYwNy50ZXN0ggl0NjA4\nLnRlc3SCCXQ2MDkudGVzdIIJdDYxMC50ZXN0ggl0NjExLnRlc3SCCXQ2MTIudGVz\ndIIJdDYxMy50ZXN0ggl0NjE0LnRlc3SCCXQ2MTUudGVzdIIJdDYxNi50ZXN0ggl0\nNjE3LnRlc3SCCXQ2MTgudGVzdIIJdDYxOS50ZXN0ggl0NjIwLnRlc3SCCXQ2MjEu\ndGVzdIIJdDYyMi50ZXN0ggl0NjIzLnRlc3SCCXQ2MjQudGVzdIIJdDYyNS50ZXN0\nggl0NjI2LnRlc3SCCXQ2MjcudGVzdIIJdDYyOC50ZXN0ggl0NjI5LnRlc3SCCXQ2\nMzAudGVzdIIJdDYzMS50ZXN0ggl0NjMyLnRlc3SCCXQ2MzMudGVzdIIJdDYzNC50\nZXN0ggl0NjM1LnRlc3SCCXQ2MzYudGVzdIIJdDYzNy50ZXN0ggl0NjM4LnRlc3SC\nCXQ2MzkudGVzdIIJdDY0MC50ZXN0ggl0NjQxLnRlc3SCCXQ2NDIudGVzdIIJdDY0\nMy50ZXN0ggl0NjQ0LnRlc3SCCXQ2NDUudGVzdIIJdDY0Ni50ZXN0ggl0NjQ3LnRl\nc3SCCXQ2NDgudGVzdIIJdDY0OS50ZXN0ggl0NjUwLnRlc3SCCXQ2NTEudGVzdIIJ\ndDY1Mi50ZXN0ggl0NjUzLnRlc3SCCXQ2NTQudGVzdIIJdDY1NS50ZXN0ggl0NjU2\nLnRlc3SCCXQ2NTcudGVzdIIJdDY1OC50ZXN0ggl0NjU5LnRlc3SCCXQ2NjAudGVz\ndIIJdDY2MS50ZXN0ggl0NjYyLnRlc3SCCXQ2NjMudGVzdIIJdDY2NC50ZXN0ggl0\nNjY1LnRlc3SCCXQ2NjYudGVzdIIJdDY2Ny50ZXN0ggl0NjY4LnRlc3SCCXQ2Njku\ndGVzdIIJdDY3MC50ZXN0ggl0NjcxLnRlc3SCCXQ2NzIudGVzdIIJdDY3My50ZXN0\nggl0Njc0LnRlc3SCCXQ2NzUudGVzdIIJdDY3Ni50ZXN0ggl0Njc3LnRlc3SCCXQ2\nNzgudGVzdIIJdDY3OS50ZXN0ggl0NjgwLnRlc3SCCXQ2ODEudGVzdIIJdDY4Mi50\nZXN0ggl0NjgzLnRlc3SCCXQ2ODQudGVzdIIJdDY4NS50ZXN0ggl0Njg2LnRlc3SC\nCXQ2ODcudGVzdIIJdDY4OC50ZXN0ggl0Njg5LnRlc3SCCXQ2OTAudGVzdIIJdDY5\nMS50ZXN0ggl0NjkyLnRlc3SCCXQ2OTMudGVzdIIJdDY5NC50ZXN0ggl0Njk1LnRl\nc3SCCXQ2OTYudGVzdIIJdDY5Ny50ZXN0ggl0Njk4LnRlc3SCCXQ2OTkudGVzdIIJ\ndDcwMC50ZXN0ggl0NzAxLnRlc3SCCXQ3MDIudGVzdIIJdDcwMy50ZXN0ggl0NzA0\nLnRlc3SCCXQ3MDUudGVzdIIJdDcwNi50ZXN0ggl0NzA3LnRlc3SCCXQ3MDgudGVz\ndIIJdDcwOS50ZXN0ggl0NzEwLnRlc3SCCXQ3MTEudGVzdIIJdDcxMi50ZXN0ggl0\nNzEzLnRlc3SCCXQ3MTQudGVzdIIJdDcxNS50ZXN0ggl0NzE2LnRlc3SCCXQ3MTcu\ndGVzdIIJdDcxOC50ZXN0ggl0NzE5LnRlc3SCCXQ3MjAudGVzdIIJdDcyMS50ZXN0\nggl0NzIyLnRlc3SCCXQ3MjMudGVzdIIJdDcyNC50ZXN0ggl0NzI1LnRlc3SCCXQ3\nMjYudGVzdIIJdDcyNy50ZXN0ggl0NzI4LnRlc3SCCXQ3MjkudGVzdIIJdDczMC50\nZXN0ggl0NzMxLnRlc3SCCXQ3MzIudGVzdIIJdDczMy50ZXN0ggl0NzM0LnRlc3SC\nCXQ3MzUudGVzdIIJdDczNi50ZXN0ggl0NzM3LnRlc3SCCXQ3MzgudGVzdIIJdDcz\nOS50ZXN0ggl0NzQwLnRlc3SCCXQ3NDEudGVzdIIJdDc0Mi50ZXN0ggl0NzQzLnRl\nc3SCCXQ3NDQudGVzdIIJdDc0NS50ZXN0ggl0NzQ2LnRlc3SCCXQ3NDcudGVzdIIJ\ndDc0OC50ZXN0ggl0NzQ5LnRlc3SCCXQ3NTAudGVzdIIJdDc1MS50ZXN0ggl0NzUy\nLnRlc3SCCXQ3NTMudGVzdIIJdDc1NC50ZXN0ggl0NzU1LnRlc3SCCXQ3NTYudGVz\ndIIJdDc1Ny50ZXN0ggl0NzU4LnRlc3SCCXQ3NTkudGVzdIIJdDc2MC50ZXN0ggl0\nNzYxLnRlc3SCCXQ3NjIudGVzdIIJdDc2My50ZXN0ggl0NzY0LnRlc3SCCXQ3NjUu\ndGVzdIIJdDc2Ni50ZXN0ggl0NzY3LnRlc3SCCXQ3NjgudGVzdIIJdDc2OS50ZXN0\nggl0NzcwLnRlc3SCCXQ3NzEudGVzdIIJdDc3Mi50ZXN0ggl0NzczLnRlc3SCCXQ3\nNzQudGVzdIIJdDc3NS50ZXN0ggl0Nzc2LnRlc3SCCXQ3NzcudGVzdIIJdDc3OC50\nZXN0ggl0Nzc5LnRlc3SCCXQ3ODAudGVzdIIJdDc4MS50ZXN0ggl0NzgyLnRlc3SC\nCXQ3ODMudGVzdIIJdDc4NC50ZXN0ggl0Nzg1LnRlc3SCCXQ3ODYudGVzdIIJdDc4\nNy50ZXN0ggl0Nzg4LnRlc3SCCXQ3ODkudGVzdIIJdDc5MC50ZXN0ggl0NzkxLnRl\nc3SCCXQ3OTIudGVzdIIJdDc5My50ZXN0ggl0Nzk0LnRlc3SCCXQ3OTUudGVzdIIJ\ndDc5Ni50ZXN0ggl0Nzk3LnRlc3SCCXQ3OTgudGVzdIIJdDc5OS50ZXN0ggl0ODAw\nLnRlc3SCCXQ4MDEudGVzdIIJdDgwMi50ZXN0ggl0ODAzLnRlc3SCCXQ4MDQudGVz\ndIIJdDgwNS50ZXN0ggl0ODA2LnRlc3SCCXQ4MDcudGVzdIIJdDgwOC50ZXN0ggl0\nODA5LnRlc3SCCXQ4MTAudGVzdIIJdDgxMS50ZXN0ggl0ODEyLnRlc3SCCXQ4MTMu\ndGVzdIIJdDgxNC50ZXN0ggl0ODE1LnRlc3SCCXQ4MTYudGVzdIIJdDgxNy50ZXN0\nggl0ODE4LnRlc3SCCXQ4MTkudGVzdIIJdDgyMC50ZXN0ggl0ODIxLnRlc3SCCXQ4\nMjIudGVzdIIJdDgyMy50ZXN0ggl0ODI0LnRlc3SCCXQ4MjUudGVzdIIJdDgyNi50\nZXN0ggl0ODI3LnRlc3SCCXQ4MjgudGVzdIIJdDgyOS50ZXN0ggl0ODMwLnRlc3SC\nCXQ4MzEudGVzdIIJdDgzMi50ZXN0ggl0ODMzLnRlc3SCCXQ4MzQudGVzdIIJdDgz\nNS50ZXN0ggl0ODM2LnRlc3SCCXQ4MzcudGVzdIIJdDgzOC50ZXN0ggl0ODM5LnRl\nc3SCCXQ4NDAudGVzdIIJdDg0MS50ZXN0ggl0ODQyLnRlc3SCCXQ4NDMudGVzdIIJ\ndDg0NC50ZXN0ggl0ODQ1LnRlc3SCCXQ4NDYudGVzdIIJdDg0Ny50ZXN0ggl0ODQ4\nLnRlc3SCCXQ4NDkudGVzdIIJdDg1MC50ZXN0ggl0ODUxLnRlc3SCCXQ4NTIudGVz\ndIIJdDg1My50ZXN0ggl0ODU0LnRlc3SCCXQ4NTUudGVzdIIJdDg1Ni50ZXN0ggl0\nODU3LnRlc3SCCXQ4NTgudGVzdIIJdDg1OS50ZXN0ggl0ODYwLnRlc3SCCXQ4NjEu\ndGVzdIIJdDg2Mi50ZXN0ggl0ODYzLnRlc3SCCXQ4NjQudGVzdIIJdDg2NS50ZXN0\nggl0ODY2LnRlc3SCCXQ4NjcudGVzdIIJdDg2OC50ZXN0ggl0ODY5LnRlc3SCCXQ4\nNzAudGVzdIIJdDg3MS50ZXN0ggl0ODcyLnRlc3SCCXQ4NzMudGVzdIIJdDg3NC50\nZXN0ggl0ODc1LnRlc3SCCXQ4NzYudGVzdIIJdDg3Ny50ZXN0ggl0ODc4LnRlc3SC\nCXQ4NzkudGVzdIIJdDg4MC50ZXN0ggl0ODgxLnRlc3SCCXQ4ODIudGVzdIIJdDg4\nMy50ZXN0ggl0ODg0LnRlc3SCCXQ4ODUudGVzdIIJdDg4Ni50ZXN0ggl0ODg3LnRl\nc3SCCXQ4ODgudGVzdIIJdDg4OS50ZXN0ggl0ODkwLnRlc3SCCXQ4OTEudGVzdIIJ\ndDg5Mi50ZXN0ggl0ODkzLnRlc3SCCXQ4OTQudGVzdIIJdDg5NS50ZXN0ggl0ODk2\nLnRlc3SCCXQ4OTcudGVzdIIJdDg5OC50ZXN0ggl0ODk5LnRlc3SCCXQ5MDAudGVz\ndIIJdDkwMS50ZXN0ggl0OTAyLnRlc3SCCXQ5MDMudGVzdIIJdDkwNC50ZXN0ggl0\nOTA1LnRlc3SCCXQ5MDYudGVzdIIJdDkwNy50ZXN0ggl0OTA4LnRlc3SCCXQ5MDku\ndGVzdIIJdDkxMC50ZXN0ggl0OTExLnRlc3SCCXQ5MTIudGVzdIIJdDkxMy50ZXN0\nggl0OTE0LnRlc3SCCXQ5MTUudGVzdIIJdDkxNi50ZXN0ggl0OTE3LnRlc3SCCXQ5\nMTgudGVzdIIJdDkxOS50ZXN0ggl0OTIwLnRlc3SCCXQ5MjEudGVzdIIJdDkyMi50\nZXN0ggl0OTIzLnRlc3SCCXQ5MjQudGVzdIIJdDkyNS50ZXN0ggl0OTI2LnRlc3SC\nCXQ5MjcudGVzdIIJdDkyOC50ZXN0ggl0OTI5LnRlc3SCCXQ5MzAudGVzdIIJdDkz\nMS50ZXN0ggl0OTMyLnRlc3SCCXQ5MzMudGVzdIIJdDkzNC50ZXN0ggl0OTM1LnRl\nc3SCCXQ5MzYudGVzdIIJdDkzNy50ZXN0ggl0OTM4LnRlc3SCCXQ5MzkudGVzdIIJ\ndDk0MC50ZXN0ggl0OTQxLnRlc3SCCXQ5NDIudGVzdIIJdDk0My50ZXN0ggl0OTQ0\nLnRlc3SCCXQ5NDUudGVzdIIJdDk0Ni50ZXN0ggl0OTQ3LnRlc3SCCXQ5NDgudGVz\ndIIJdDk0OS50ZXN0ggl0OTUwLnRlc3SCCXQ5NTEudGVzdIIJdDk1Mi50ZXN0ggl0\nOTUzLnRlc3SCCXQ5NTQudGVzdIIJdDk1NS50ZXN0ggl0OTU2LnRlc3SCCXQ5NTcu\ndGVzdIIJdDk1OC50ZXN0ggl0OTU5LnRlc3SCCXQ5NjAudGVzdIIJdDk2MS50ZXN0\nggl0OTYyLnRlc3SCCXQ5NjMudGVzdIIJdDk2NC50ZXN0ggl0OTY1LnRlc3SCCXQ5\nNjYudGVzdIIJdDk2Ny50ZXN0ggl0OTY4LnRlc3SCCXQ5NjkudGVzdIIJdDk3MC50\nZXN0ggl0OTcxLnRlc3SCCXQ5NzIudGVzdIIJdDk3My50ZXN0ggl0OTc0LnRlc3SC\nCXQ5NzUudGVzdIIJdDk3Ni50ZXN0ggl0OTc3LnRlc3SCCXQ5NzgudGVzdIIJdDk3\nOS50ZXN0ggl0OTgwLnRlc3SCCXQ5ODEudGVzdIIJdDk4Mi50ZXN0ggl0OTgzLnRl\nc3SCCXQ5ODQudGVzdIIJdDk4NS50ZXN0ggl0OTg2LnRlc3SCCXQ5ODcudGVzdIIJ\ndDk4OC50ZXN0ggl0OTg5LnRlc3SCCXQ5OTAudGVzdIIJdDk5MS50ZXN0ggl0OTky\nLnRlc3SCCXQ5OTMudGVzdIIJdDk5NC50ZXN0ggl0OTk1LnRlc3SCCXQ5OTYudGVz\ndIIJdDk5Ny50ZXN0ggl0OTk4LnRlc3SCCXQ5OTkudGVzdIIKdDEwMDAudGVzdIIK\ndDEwMDEudGVzdIIKdDEwMDIudGVzdIIKdDEwMDMudGVzdIIKdDEwMDQudGVzdIIK\ndDEwMDUudGVzdIIKdDEwMDYudGVzdIIKdDEwMDcudGVzdIIKdDEwMDgudGVzdIIK\ndDEwMDkudGVzdIIKdDEwMTAudGVzdIIKdDEwMTEudGVzdIIKdDEwMTIudGVzdIIK\ndDEwMTMudGVzdIIKdDEwMTQudGVzdIIKdDEwMTUudGVzdIIKdDEwMTYudGVzdIIK\ndDEwMTcudGVzdIIKdDEwMTgudGVzdIIKdDEwMTkudGVzdIIKdDEwMjAudGVzdIIK\ndDEwMjEudGVzdIIKdDEwMjIudGVzdIIKdDEwMjMudGVzdIIKdDEwMjQudGVzdIIK\ndDEwMjUudGVzdIIKdDEwMjYudGVzdIIKdDEwMjcudGVzdIIKdDEwMjgudGVzdIIK\ndDEwMjkudGVzdIIKdDEwMzAudGVzdIIKdDEwMzEudGVzdIIKdDEwMzIudGVzdIIK\ndDEwMzMudGVzdIIKdDEwMzQudGVzdIIKdDEwMzUudGVzdIIKdDEwMzYudGVzdIIK\ndDEwMzcudGVzdIIKdDEwMzgudGVzdIIKdDEwMzkudGVzdIIKdDEwNDAudGVzdIIK\ndDEwNDEudGVzdIIKdDEwNDIudGVzdIIKdDEwNDMudGVzdIIKdDEwNDQudGVzdIIK\ndDEwNDUudGVzdIIKdDEwNDYudGVzdIIKdDEwNDcudGVzdIIKdDEwNDgudGVzdIIK\ndDEwNDkudGVzdIIKdDEwNTAudGVzdIIKdDEwNTEudGVzdIIKdDEwNTIudGVzdIIK\ndDEwNTMudGVzdIIKdDEwNTQudGVzdIIKdDEwNTUudGVzdIIKdDEwNTYudGVzdIIK\ndDEwNTcudGVzdIIKdDEwNTgudGVzdIIKdDEwNTkudGVzdIIKdDEwNjAudGVzdIIK\ndDEwNjEudGVzdIIKdDEwNjIudGVzdIIKdDEwNjMudGVzdIIKdDEwNjQudGVzdIIK\ndDEwNjUudGVzdIIKdDEwNjYudGVzdIIKdDEwNjcudGVzdIIKdDEwNjgudGVzdIIK\ndDEwNjkudGVzdIIKdDEwNzAudGVzdIIKdDEwNzEudGVzdIIKdDEwNzIudGVzdIIK\ndDEwNzMudGVzdIIKdDEwNzQudGVzdIIKdDEwNzUudGVzdIIKdDEwNzYudGVzdIIK\ndDEwNzcudGVzdIIKdDEwNzgudGVzdIIKdDEwNzkudGVzdIIKdDEwODAudGVzdIIK\ndDEwODEudGVzdIIKdDEwODIudGVzdIIKdDEwODMudGVzdIIKdDEwODQudGVzdIIK\ndDEwODUudGVzdIIKdDEwODYudGVzdIIKdDEwODcudGVzdIIKdDEwODgudGVzdIIK\ndDEwODkudGVzdIIKdDEwOTAudGVzdIIKdDEwOTEudGVzdIIKdDEwOTIudGVzdIIK\ndDEwOTMudGVzdIIKdDEwOTQudGVzdIIKdDEwOTUudGVzdIIKdDEwOTYudGVzdIIK\ndDEwOTcudGVzdIIKdDEwOTgudGVzdIIKdDEwOTkudGVzdIIKdDExMDAudGVzdIIK\ndDExMDEudGVzdIIKdDExMDIudGVzdIIKdDExMDMudGVzdIIKdDExMDQudGVzdIIK\ndDExMDUudGVzdIIKdDExMDYudGVzdIIKdDExMDcudGVzdIIKdDExMDgudGVzdIIK\ndDExMDkudGVzdIIKdDExMTAudGVzdIIKdDExMTEudGVzdIIKdDExMTIudGVzdIIK\ndDExMTMudGVzdIIKdDExMTQudGVzdIIKdDExMTUudGVzdIIKdDExMTYudGVzdIIK\ndDExMTcudGVzdIIKdDExMTgudGVzdIIKdDExMTkudGVzdIIKdDExMjAudGVzdIIK\ndDExMjEudGVzdIIKdDExMjIudGVzdIIKdDExMjMudGVzdIIKdDExMjQudGVzdIIK\ndDExMjUudGVzdIIKdDExMjYudGVzdIIKdDExMjcudGVzdIIKdDExMjgudGVzdIIK\ndDExMjkudGVzdIIKdDExMzAudGVzdIIKdDExMzEudGVzdIIKdDExMzIudGVzdIIK\ndDExMzMudGVzdIIKdDExMzQudGVzdIIKdDExMzUudGVzdIIKdDExMzYudGVzdIIK\ndDExMzcudGVzdIIKdDExMzgudGVzdIIKdDExMzkudGVzdIIKdDExNDAudGVzdIIK\ndDExNDEudGVzdIIKdDExNDIudGVzdIIKdDExNDMudGVzdIIKdDExNDQudGVzdIIK\ndDExNDUudGVzdIIKdDExNDYudGVzdIIKdDExNDcudGVzdIIKdDExNDgudGVzdIIK\ndDExNDkudGVzdIIKdDExNTAudGVzdIIKdDExNTEudGVzdIIKdDExNTIudGVzdIIK\ndDExNTMudGVzdIIKdDExNTQudGVzdIIKdDExNTUudGVzdIIKdDExNTYudGVzdIIK\ndDExNTcudGVzdIIKdDExNTgudGVzdIIKdDExNTkudGVzdIIKdDExNjAudGVzdIIK\ndDExNjEudGVzdIIKdDExNjIudGVzdIIKdDExNjMudGVzdIIKdDExNjQudGVzdIIK\ndDExNjUudGVzdIIKdDExNjYudGVzdIIKdDExNjcudGVzdIIKdDExNjgudGVzdIIK\ndDExNjkudGVzdIIKdDExNzAudGVzdIIKdDExNzEudGVzdIIKdDExNzIudGVzdIIK\ndDExNzMudGVzdIIKdDExNzQudGVzdIIKdDExNzUudGVzdIIKdDExNzYudGVzdIIK\ndDExNzcudGVzdIIKdDExNzgudGVzdIIKdDExNzkudGVzdIIKdDExODAudGVzdIIK\ndDExODEudGVzdIIKdDExODIudGVzdIIKdDExODMudGVzdIIKdDExODQudGVzdIIK\ndDExODUudGVzdIIKdDExODYudGVzdIIKdDExODcudGVzdIIKdDExODgudGVzdIIK\ndDExODkudGVzdIIKdDExOTAudGVzdIIKdDExOTEudGVzdIIKdDExOTIudGVzdIIK\ndDExOTMudGVzdIIKdDExOTQudGVzdIIKdDExOTUudGVzdIIKdDExOTYudGVzdIIK\ndDExOTcudGVzdIIKdDExOTgudGVzdIIKdDExOTkudGVzdIIKdDEyMDAudGVzdIIK\ndDEyMDEudGVzdIIKdDEyMDIudGVzdIIKdDEyMDMudGVzdIIKdDEyMDQudGVzdIIK\ndDEyMDUudGVzdIIKdDEyMDYudGVzdIIKdDEyMDcudGVzdIIKdDEyMDgudGVzdIIK\ndDEyMDkudGVzdIIKdDEyMTAudGVzdIIKdDEyMTEudGVzdIIKdDEyMTIudGVzdIIK\ndDEyMTMudGVzdIIKdDEyMTQudGVzdIIKdDEyMTUudGVzdIIKdDEyMTYudGVzdIIK\ndDEyMTcudGVzdIIKdDEyMTgudGVzdIIKdDEyMTkudGVzdIIKdDEyMjAudGVzdIIK\ndDEyMjEudGVzdIIKdDEyMjIudGVzdIIKdDEyMjMudGVzdIIKdDEyMjQudGVzdIIK\ndDEyMjUudGVzdIIKdDEyMjYudGVzdIIKdDEyMjcudGVzdIIKdDEyMjgudGVzdIIK\ndDEyMjkudGVzdIIKdDEyMzAudGVzdIIKdDEyMzEudGVzdIIKdDEyMzIudGVzdIIK\ndDEyMzMudGVzdIIKdDEyMzQudGVzdIIKdDEyMzUudGVzdIIKdDEyMzYudGVzdIIK\ndDEyMzcudGVzdIIKdDEyMzgudGVzdIIKdDEyMzkudGVzdIIKdDEyNDAudGVzdIIK\ndDEyNDEudGVzdIIKdDEyNDIudGVzdIIKdDEyNDMudGVzdIIKdDEyNDQudGVzdIIK\ndDEyNDUudGVzdIIKdDEyNDYudGVzdIIKdDEyNDcudGVzdIIKdDEyNDgudGVzdIIK\ndDEyNDkudGVzdIIKdDEyNTAudGVzdIIKdDEyNTEudGVzdIIKdDEyNTIudGVzdIIK\ndDEyNTMudGVzdIIKdDEyNTQudGVzdIIKdDEyNTUudGVzdIIKdDEyNTYudGVzdIIK\ndDEyNTcudGVzdIIKdDEyNTgudGVzdIIKdDEyNTkudGVzdIIKdDEyNjAudGVzdIIK\ndDEyNjEudGVzdIIKdDEyNjIudGVzdIIKdDEyNjMudGVzdIIKdDEyNjQudGVzdIIK\ndDEyNjUudGVzdIIKdDEyNjYudGVzdIIKdDEyNjcudGVzdIIKdDEyNjgudGVzdIIK\ndDEyNjkudGVzdIIKdDEyNzAudGVzdIIKdDEyNzEudGVzdIIKdDEyNzIudGVzdIIK\ndDEyNzMudGVzdIIKdDEyNzQudGVzdIIKdDEyNzUudGVzdIIKdDEyNzYudGVzdIIK\ndDEyNzcudGVzdIIKdDEyNzgudGVzdIIKdDEyNzkudGVzdIIKdDEyODAudGVzdIIK\ndDEyODEudGVzdIIKdDEyODIudGVzdIIKdDEyODMudGVzdIIKdDEyODQudGVzdIIK\ndDEyODUudGVzdIIKdDEyODYudGVzdIIKdDEyODcudGVzdIIKdDEyODgudGVzdIIK\ndDEyODkudGVzdIIKdDEyOTAudGVzdIIKdDEyOTEudGVzdIIKdDEyOTIudGVzdIIK\ndDEyOTMudGVzdIIKdDEyOTQudGVzdIIKdDEyOTUudGVzdIIKdDEyOTYudGVzdIIK\ndDEyOTcudGVzdIIKdDEyOTgudGVzdIIKdDEyOTkudGVzdIIKdDEzMDAudGVzdIIK\ndDEzMDEudGVzdIIKdDEzMDIudGVzdIIKdDEzMDMudGVzdIIKdDEzMDQudGVzdIIK\ndDEzMDUudGVzdIIKdDEzMDYudGVzdIIKdDEzMDcudGVzdIIKdDEzMDgudGVzdIIK\ndDEzMDkudGVzdIIKdDEzMTAudGVzdIIKdDEzMTEudGVzdIIKdDEzMTIudGVzdIIK\ndDEzMTMudGVzdIIKdDEzMTQudGVzdIIKdDEzMTUudGVzdIIKdDEzMTYudGVzdIIK\ndDEzMTcudGVzdIIKdDEzMTgudGVzdIIKdDEzMTkudGVzdIIKdDEzMjAudGVzdIIK\ndDEzMjEudGVzdIIKdDEzMjIudGVzdIIKdDEzMjMudGVzdIIKdDEzMjQudGVzdIIK\ndDEzMjUudGVzdIIKdDEzMjYudGVzdIIKdDEzMjcudGVzdIIKdDEzMjgudGVzdIIK\ndDEzMjkudGVzdIIKdDEzMzAudGVzdIIKdDEzMzEudGVzdIIKdDEzMzIudGVzdIIK\ndDEzMzMudGVzdIIKdDEzMzQudGVzdIIKdDEzMzUudGVzdIIKdDEzMzYudGVzdIIK\ndDEzMzcudGVzdIIKdDEzMzgudGVzdIIKdDEzMzkudGVzdIIKdDEzNDAudGVzdIIK\ndDEzNDEudGVzdIIKdDEzNDIudGVzdIIKdDEzNDMudGVzdIIKdDEzNDQudGVzdIIK\ndDEzNDUudGVzdIIKdDEzNDYudGVzdIIKdDEzNDcudGVzdIIKdDEzNDgudGVzdIIK\ndDEzNDkudGVzdIIKdDEzNTAudGVzdIIKdDEzNTEudGVzdIIKdDEzNTIudGVzdIIK\ndDEzNTMudGVzdIIKdDEzNTQudGVzdIIKdDEzNTUudGVzdIIKdDEzNTYudGVzdIIK\ndDEzNTcudGVzdIIKdDEzNTgudGVzdIIKdDEzNTkudGVzdIIKdDEzNjAudGVzdIIK\ndDEzNjEudGVzdIIKdDEzNjIudGVzdIIKdDEzNjMudGVzdIIKdDEzNjQudGVzdIIK\ndDEzNjUudGVzdIIKdDEzNjYudGVzdIIKdDEzNjcudGVzdIIKdDEzNjgudGVzdIIK\ndDEzNjkudGVzdIIKdDEzNzAudGVzdIIKdDEzNzEudGVzdIIKdDEzNzIudGVzdIIK\ndDEzNzMudGVzdIIKdDEzNzQudGVzdIIKdDEzNzUudGVzdIIKdDEzNzYudGVzdIIK\ndDEzNzcudGVzdIIKdDEzNzgudGVzdIIKdDEzNzkudGVzdIIKdDEzODAudGVzdIIK\ndDEzODEudGVzdIIKdDEzODIudGVzdIIKdDEzODMudGVzdIIKdDEzODQudGVzdIIK\ndDEzODUudGVzdIIKdDEzODYudGVzdIIKdDEzODcudGVzdIIKdDEzODgudGVzdIIK\ndDEzODkudGVzdIIKdDEzOTAudGVzdIIKdDEzOTEudGVzdIIKdDEzOTIudGVzdIIK\ndDEzOTMudGVzdIIKdDEzOTQudGVzdIIKdDEzOTUudGVzdIIKdDEzOTYudGVzdIIK\ndDEzOTcudGVzdIIKdDEzOTgudGVzdIIKdDEzOTkudGVzdIIKdDE0MDAudGVzdIIK\ndDE0MDEudGVzdIIKdDE0MDIudGVzdIIKdDE0MDMudGVzdIIKdDE0MDQudGVzdIIK\ndDE0MDUudGVzdIIKdDE0MDYudGVzdIIKdDE0MDcudGVzdIIKdDE0MDgudGVzdIIK\ndDE0MDkudGVzdIIKdDE0MTAudGVzdIIKdDE0MTEudGVzdIIKdDE0MTIudGVzdIIK\ndDE0MTMudGVzdIIKdDE0MTQudGVzdIIKdDE0MTUudGVzdIIKdDE0MTYudGVzdIIK\ndDE0MTcudGVzdIIKdDE0MTgudGVzdIIKdDE0MTkudGVzdIIKdDE0MjAudGVzdIIK\ndDE0MjEudGVzdIIKdDE0MjIudGVzdIIKdDE0MjMudGVzdIIKdDE0MjQudGVzdIIK\ndDE0MjUudGVzdIIKdDE0MjYudGVzdIIKdDE0MjcudGVzdIIKdDE0MjgudGVzdIIK\ndDE0MjkudGVzdIIKdDE0MzAudGVzdIIKdDE0MzEudGVzdIIKdDE0MzIudGVzdIIK\ndDE0MzMudGVzdIIKdDE0MzQudGVzdIIKdDE0MzUudGVzdIIKdDE0MzYudGVzdIIK\ndDE0MzcudGVzdIIKdDE0MzgudGVzdIIKdDE0MzkudGVzdIIKdDE0NDAudGVzdIIK\ndDE0NDEudGVzdIIKdDE0NDIudGVzdIIKdDE0NDMudGVzdIIKdDE0NDQudGVzdIIK\ndDE0NDUudGVzdIIKdDE0NDYudGVzdIIKdDE0NDcudGVzdIIKdDE0NDgudGVzdIIK\ndDE0NDkudGVzdIIKdDE0NTAudGVzdIIKdDE0NTEudGVzdIIKdDE0NTIudGVzdIIK\ndDE0NTMudGVzdIIKdDE0NTQudGVzdIIKdDE0NTUudGVzdIIKdDE0NTYudGVzdIIK\ndDE0NTcudGVzdIIKdDE0NTgudGVzdIIKdDE0NTkudGVzdIIKdDE0NjAudGVzdIIK\ndDE0NjEudGVzdIIKdDE0NjIudGVzdIIKdDE0NjMudGVzdIIKdDE0NjQudGVzdIIK\ndDE0NjUudGVzdIIKdDE0NjYudGVzdIIKdDE0NjcudGVzdIIKdDE0NjgudGVzdIIK\ndDE0NjkudGVzdIIKdDE0NzAudGVzdIIKdDE0NzEudGVzdIIKdDE0NzIudGVzdIIK\ndDE0NzMudGVzdIIKdDE0NzQudGVzdIIKdDE0NzUudGVzdIIKdDE0NzYudGVzdIIK\ndDE0NzcudGVzdIIKdDE0NzgudGVzdIIKdDE0NzkudGVzdIIKdDE0ODAudGVzdIIK\ndDE0ODEudGVzdIIKdDE0ODIudGVzdIIKdDE0ODMudGVzdIIKdDE0ODQudGVzdIIK\ndDE0ODUudGVzdIIKdDE0ODYudGVzdIIKdDE0ODcudGVzdIIKdDE0ODgudGVzdIIK\ndDE0ODkudGVzdIIKdDE0OTAudGVzdIIKdDE0OTEudGVzdIIKdDE0OTIudGVzdIIK\ndDE0OTMudGVzdIIKdDE0OTQudGVzdIIKdDE0OTUudGVzdIIKdDE0OTYudGVzdIIK\ndDE0OTcudGVzdIIKdDE0OTgudGVzdIIKdDE0OTkudGVzdIIKdDE1MDAudGVzdIIK\ndDE1MDEudGVzdIIKdDE1MDIudGVzdIIKdDE1MDMudGVzdIIKdDE1MDQudGVzdIIK\ndDE1MDUudGVzdIIKdDE1MDYudGVzdIIKdDE1MDcudGVzdIIKdDE1MDgudGVzdIIK\ndDE1MDkudGVzdIIKdDE1MTAudGVzdIIKdDE1MTEudGVzdIIKdDE1MTIudGVzdIIK\ndDE1MTMudGVzdIIKdDE1MTQudGVzdIIKdDE1MTUudGVzdIIKdDE1MTYudGVzdIIK\ndDE1MTcudGVzdIIKdDE1MTgudGVzdIIKdDE1MTkudGVzdIIKdDE1MjAudGVzdIIK\ndDE1MjEudGVzdIIKdDE1MjIudGVzdIIKdDE1MjMudGVzdIIKdDE1MjQudGVzdIIK\ndDE1MjUudGVzdIIKdDE1MjYudGVzdIIKdDE1MjcudGVzdIIKdDE1MjgudGVzdIIK\ndDE1MjkudGVzdIIKdDE1MzAudGVzdIIKdDE1MzEudGVzdIIKdDE1MzIudGVzdIIK\ndDE1MzMudGVzdIIKdDE1MzQudGVzdIIKdDE1MzUudGVzdIIKdDE1MzYudGVzdIIK\ndDE1MzcudGVzdIIKdDE1MzgudGVzdIIKdDE1MzkudGVzdIIKdDE1NDAudGVzdIIK\ndDE1NDEudGVzdIIKdDE1NDIudGVzdIIKdDE1NDMudGVzdIIKdDE1NDQudGVzdIIK\ndDE1NDUudGVzdIIKdDE1NDYudGVzdIIKdDE1NDcudGVzdIIKdDE1NDgudGVzdIIK\ndDE1NDkudGVzdIIKdDE1NTAudGVzdIIKdDE1NTEudGVzdIIKdDE1NTIudGVzdIIK\ndDE1NTMudGVzdIIKdDE1NTQudGVzdIIKdDE1NTUudGVzdIIKdDE1NTYudGVzdIIK\ndDE1NTcudGVzdIIKdDE1NTgudGVzdIIKdDE1NTkudGVzdIIKdDE1NjAudGVzdIIK\ndDE1NjEudGVzdIIKdDE1NjIudGVzdIIKdDE1NjMudGVzdIIKdDE1NjQudGVzdIIK\ndDE1NjUudGVzdIIKdDE1NjYudGVzdIIKdDE1NjcudGVzdIIKdDE1NjgudGVzdIIK\ndDE1NjkudGVzdIIKdDE1NzAudGVzdIIKdDE1NzEudGVzdIIKdDE1NzIudGVzdIIK\ndDE1NzMudGVzdIIKdDE1NzQudGVzdIIKdDE1NzUudGVzdIIKdDE1NzYudGVzdIIK\ndDE1NzcudGVzdIIKdDE1NzgudGVzdIIKdDE1NzkudGVzdIIKdDE1ODAudGVzdIIK\ndDE1ODEudGVzdIIKdDE1ODIudGVzdIIKdDE1ODMudGVzdIIKdDE1ODQudGVzdIIK\ndDE1ODUudGVzdIIKdDE1ODYudGVzdIIKdDE1ODcudGVzdIIKdDE1ODgudGVzdIIK\ndDE1ODkudGVzdIIKdDE1OTAudGVzdIIKdDE1OTEudGVzdIIKdDE1OTIudGVzdIIK\ndDE1OTMudGVzdIIKdDE1OTQudGVzdIIKdDE1OTUudGVzdIIKdDE1OTYudGVzdIIK\ndDE1OTcudGVzdIIKdDE1OTgudGVzdIIKdDE1OTkudGVzdIIKdDE2MDAudGVzdIIK\ndDE2MDEudGVzdIIKdDE2MDIudGVzdIIKdDE2MDMudGVzdIIKdDE2MDQudGVzdIIK\ndDE2MDUudGVzdIIKdDE2MDYudGVzdIIKdDE2MDcudGVzdIIKdDE2MDgudGVzdIIK\ndDE2MDkudGVzdIIKdDE2MTAudGVzdIIKdDE2MTEudGVzdIIKdDE2MTIudGVzdIIK\ndDE2MTMudGVzdIIKdDE2MTQudGVzdIIKdDE2MTUudGVzdIIKdDE2MTYudGVzdIIK\ndDE2MTcudGVzdIIKdDE2MTgudGVzdIIKdDE2MTkudGVzdIIKdDE2MjAudGVzdIIK\ndDE2MjEudGVzdIIKdDE2MjIudGVzdIIKdDE2MjMudGVzdIIKdDE2MjQudGVzdIIK\ndDE2MjUudGVzdIIKdDE2MjYudGVzdIIKdDE2MjcudGVzdIIKdDE2MjgudGVzdIIK\ndDE2MjkudGVzdIIKdDE2MzAudGVzdIIKdDE2MzEudGVzdIIKdDE2MzIudGVzdIIK\ndDE2MzMudGVzdIIKdDE2MzQudGVzdIIKdDE2MzUudGVzdIIKdDE2MzYudGVzdIIK\ndDE2MzcudGVzdIIKdDE2MzgudGVzdIIKdDE2MzkudGVzdIIKdDE2NDAudGVzdIIK\ndDE2NDEudGVzdIIKdDE2NDIudGVzdIIKdDE2NDMudGVzdIIKdDE2NDQudGVzdIIK\ndDE2NDUudGVzdIIKdDE2NDYudGVzdIIKdDE2NDcudGVzdIIKdDE2NDgudGVzdIIK\ndDE2NDkudGVzdIIKdDE2NTAudGVzdIIKdDE2NTEudGVzdIIKdDE2NTIudGVzdIIK\ndDE2NTMudGVzdIIKdDE2NTQudGVzdIIKdDE2NTUudGVzdIIKdDE2NTYudGVzdIIK\ndDE2NTcudGVzdIIKdDE2NTgudGVzdIIKdDE2NTkudGVzdIIKdDE2NjAudGVzdIIK\ndDE2NjEudGVzdIIKdDE2NjIudGVzdIIKdDE2NjMudGVzdIIKdDE2NjQudGVzdIIK\ndDE2NjUudGVzdIIKdDE2NjYudGVzdIIKdDE2NjcudGVzdIIKdDE2NjgudGVzdIIK\ndDE2NjkudGVzdIIKdDE2NzAudGVzdIIKdDE2NzEudGVzdIIKdDE2NzIudGVzdIIK\ndDE2NzMudGVzdIIKdDE2NzQudGVzdIIKdDE2NzUudGVzdIIKdDE2NzYudGVzdIIK\ndDE2NzcudGVzdIIKdDE2NzgudGVzdIIKdDE2NzkudGVzdIIKdDE2ODAudGVzdIIK\ndDE2ODEudGVzdIIKdDE2ODIudGVzdIIKdDE2ODMudGVzdIIKdDE2ODQudGVzdIIK\ndDE2ODUudGVzdIIKdDE2ODYudGVzdIIKdDE2ODcudGVzdIIKdDE2ODgudGVzdIIK\ndDE2ODkudGVzdIIKdDE2OTAudGVzdIIKdDE2OTEudGVzdIIKdDE2OTIudGVzdIIK\ndDE2OTMudGVzdIIKdDE2OTQudGVzdIIKdDE2OTUudGVzdIIKdDE2OTYudGVzdIIK\ndDE2OTcudGVzdIIKdDE2OTgudGVzdIIKdDE2OTkudGVzdIIKdDE3MDAudGVzdIIK\ndDE3MDEudGVzdIIKdDE3MDIudGVzdIIKdDE3MDMudGVzdIIKdDE3MDQudGVzdIIK\ndDE3MDUudGVzdIIKdDE3MDYudGVzdIIKdDE3MDcudGVzdIIKdDE3MDgudGVzdIIK\ndDE3MDkudGVzdIIKdDE3MTAudGVzdIIKdDE3MTEudGVzdIIKdDE3MTIudGVzdIIK\ndDE3MTMudGVzdIIKdDE3MTQudGVzdIIKdDE3MTUudGVzdIIKdDE3MTYudGVzdIIK\ndDE3MTcudGVzdIIKdDE3MTgudGVzdIIKdDE3MTkudGVzdIIKdDE3MjAudGVzdIIK\ndDE3MjEudGVzdIIKdDE3MjIudGVzdIIKdDE3MjMudGVzdIIKdDE3MjQudGVzdIIK\ndDE3MjUudGVzdIIKdDE3MjYudGVzdIIKdDE3MjcudGVzdIIKdDE3MjgudGVzdIIK\ndDE3MjkudGVzdIIKdDE3MzAudGVzdIIKdDE3MzEudGVzdIIKdDE3MzIudGVzdIIK\ndDE3MzMudGVzdIIKdDE3MzQudGVzdIIKdDE3MzUudGVzdIIKdDE3MzYudGVzdIIK\ndDE3MzcudGVzdIIKdDE3MzgudGVzdIIKdDE3MzkudGVzdIIKdDE3NDAudGVzdIIK\ndDE3NDEudGVzdIIKdDE3NDIudGVzdIIKdDE3NDMudGVzdIIKdDE3NDQudGVzdIIK\ndDE3NDUudGVzdIIKdDE3NDYudGVzdIIKdDE3NDcudGVzdIIKdDE3NDgudGVzdIIK\ndDE3NDkudGVzdIIKdDE3NTAudGVzdIIKdDE3NTEudGVzdIIKdDE3NTIudGVzdIIK\ndDE3NTMudGVzdIIKdDE3NTQudGVzdIIKdDE3NTUudGVzdIIKdDE3NTYudGVzdIIK\ndDE3NTcudGVzdIIKdDE3NTgudGVzdIIKdDE3NTkudGVzdIIKdDE3NjAudGVzdIIK\ndDE3NjEudGVzdIIKdDE3NjIudGVzdIIKdDE3NjMudGVzdIIKdDE3NjQudGVzdIIK\ndDE3NjUudGVzdIIKdDE3NjYudGVzdIIKdDE3NjcudGVzdIIKdDE3NjgudGVzdIIK\ndDE3NjkudGVzdIIKdDE3NzAudGVzdIIKdDE3NzEudGVzdIIKdDE3NzIudGVzdIIK\ndDE3NzMudGVzdIIKdDE3NzQudGVzdIIKdDE3NzUudGVzdIIKdDE3NzYudGVzdIIK\ndDE3NzcudGVzdIIKdDE3NzgudGVzdIIKdDE3NzkudGVzdIIKdDE3ODAudGVzdIIK\ndDE3ODEudGVzdIIKdDE3ODIudGVzdIIKdDE3ODMudGVzdIIKdDE3ODQudGVzdIIK\ndDE3ODUudGVzdIIKdDE3ODYudGVzdIIKdDE3ODcudGVzdIIKdDE3ODgudGVzdIIK\ndDE3ODkudGVzdIIKdDE3OTAudGVzdIIKdDE3OTEudGVzdIIKdDE3OTIudGVzdIIK\ndDE3OTMudGVzdIIKdDE3OTQudGVzdIIKdDE3OTUudGVzdIIKdDE3OTYudGVzdIIK\ndDE3OTcudGVzdIIKdDE3OTgudGVzdIIKdDE3OTkudGVzdIIKdDE4MDAudGVzdIIK\ndDE4MDEudGVzdIIKdDE4MDIudGVzdIIKdDE4MDMudGVzdIIKdDE4MDQudGVzdIIK\ndDE4MDUudGVzdIIKdDE4MDYudGVzdIIKdDE4MDcudGVzdIIKdDE4MDgudGVzdIIK\ndDE4MDkudGVzdIIKdDE4MTAudGVzdIIKdDE4MTEudGVzdIIKdDE4MTIudGVzdIIK\ndDE4MTMudGVzdIIKdDE4MTQudGVzdIIKdDE4MTUudGVzdIIKdDE4MTYudGVzdIIK\ndDE4MTcudGVzdIIKdDE4MTgudGVzdIIKdDE4MTkudGVzdIIKdDE4MjAudGVzdIIK\ndDE4MjEudGVzdIIKdDE4MjIudGVzdIIKdDE4MjMudGVzdIIKdDE4MjQudGVzdIIK\ndDE4MjUudGVzdIIKdDE4MjYudGVzdIIKdDE4MjcudGVzdIIKdDE4MjgudGVzdIIK\ndDE4MjkudGVzdIIKdDE4MzAudGVzdIIKdDE4MzEudGVzdIIKdDE4MzIudGVzdIIK\ndDE4MzMudGVzdIIKdDE4MzQudGVzdIIKdDE4MzUudGVzdIIKdDE4MzYudGVzdIIK\ndDE4MzcudGVzdIIKdDE4MzgudGVzdIIKdDE4MzkudGVzdIIKdDE4NDAudGVzdIIK\ndDE4NDEudGVzdIIKdDE4NDIudGVzdIIKdDE4NDMudGVzdIIKdDE4NDQudGVzdIIK\ndDE4NDUudGVzdIIKdDE4NDYudGVzdIIKdDE4NDcudGVzdIIKdDE4NDgudGVzdIIK\ndDE4NDkudGVzdIIKdDE4NTAudGVzdIIKdDE4NTEudGVzdIIKdDE4NTIudGVzdIIK\ndDE4NTMudGVzdIIKdDE4NTQudGVzdIIKdDE4NTUudGVzdIIKdDE4NTYudGVzdIIK\ndDE4NTcudGVzdIIKdDE4NTgudGVzdIIKdDE4NTkudGVzdIIKdDE4NjAudGVzdIIK\ndDE4NjEudGVzdIIKdDE4NjIudGVzdIIKdDE4NjMudGVzdIIKdDE4NjQudGVzdIIK\ndDE4NjUudGVzdIIKdDE4NjYudGVzdIIKdDE4NjcudGVzdIIKdDE4NjgudGVzdIIK\ndDE4NjkudGVzdIIKdDE4NzAudGVzdIIKdDE4NzEudGVzdIIKdDE4NzIudGVzdIIK\ndDE4NzMudGVzdIIKdDE4NzQudGVzdIIKdDE4NzUudGVzdIIKdDE4NzYudGVzdIIK\ndDE4NzcudGVzdIIKdDE4NzgudGVzdIIKdDE4NzkudGVzdIIKdDE4ODAudGVzdIIK\ndDE4ODEudGVzdIIKdDE4ODIudGVzdIIKdDE4ODMudGVzdIIKdDE4ODQudGVzdIIK\ndDE4ODUudGVzdIIKdDE4ODYudGVzdIIKdDE4ODcudGVzdIIKdDE4ODgudGVzdIIK\ndDE4ODkudGVzdIIKdDE4OTAudGVzdIIKdDE4OTEudGVzdIIKdDE4OTIudGVzdIIK\ndDE4OTMudGVzdIIKdDE4OTQudGVzdIIKdDE4OTUudGVzdIIKdDE4OTYudGVzdIIK\ndDE4OTcudGVzdIIKdDE4OTgudGVzdIIKdDE4OTkudGVzdIIKdDE5MDAudGVzdIIK\ndDE5MDEudGVzdIIKdDE5MDIudGVzdIIKdDE5MDMudGVzdIIKdDE5MDQudGVzdIIK\ndDE5MDUudGVzdIIKdDE5MDYudGVzdIIKdDE5MDcudGVzdIIKdDE5MDgudGVzdIIK\ndDE5MDkudGVzdIIKdDE5MTAudGVzdIIKdDE5MTEudGVzdIIKdDE5MTIudGVzdIIK\ndDE5MTMudGVzdIIKdDE5MTQudGVzdIIKdDE5MTUudGVzdIIKdDE5MTYudGVzdIIK\ndDE5MTcudGVzdIIKdDE5MTgudGVzdIIKdDE5MTkudGVzdIIKdDE5MjAudGVzdIIK\ndDE5MjEudGVzdIIKdDE5MjIudGVzdIIKdDE5MjMudGVzdIIKdDE5MjQudGVzdIIK\ndDE5MjUudGVzdIIKdDE5MjYudGVzdIIKdDE5MjcudGVzdIIKdDE5MjgudGVzdIIK\ndDE5MjkudGVzdIIKdDE5MzAudGVzdIIKdDE5MzEudGVzdIIKdDE5MzIudGVzdIIK\ndDE5MzMudGVzdIIKdDE5MzQudGVzdIIKdDE5MzUudGVzdIIKdDE5MzYudGVzdIIK\ndDE5MzcudGVzdIIKdDE5MzgudGVzdIIKdDE5MzkudGVzdIIKdDE5NDAudGVzdIIK\ndDE5NDEudGVzdIIKdDE5NDIudGVzdIIKdDE5NDMudGVzdIIKdDE5NDQudGVzdIIK\ndDE5NDUudGVzdIIKdDE5NDYudGVzdIIKdDE5NDcudGVzdIIKdDE5NDgudGVzdIIK\ndDE5NDkudGVzdIIKdDE5NTAudGVzdIIKdDE5NTEudGVzdIIKdDE5NTIudGVzdIIK\ndDE5NTMudGVzdIIKdDE5NTQudGVzdIIKdDE5NTUudGVzdIIKdDE5NTYudGVzdIIK\ndDE5NTcudGVzdIIKdDE5NTgudGVzdIIKdDE5NTkudGVzdIIKdDE5NjAudGVzdIIK\ndDE5NjEudGVzdIIKdDE5NjIudGVzdIIKdDE5NjMudGVzdIIKdDE5NjQudGVzdIIK\ndDE5NjUudGVzdIIKdDE5NjYudGVzdIIKdDE5NjcudGVzdIIKdDE5NjgudGVzdIIK\ndDE5NjkudGVzdIIKdDE5NzAudGVzdIIKdDE5NzEudGVzdIIKdDE5NzIudGVzdIIK\ndDE5NzMudGVzdIIKdDE5NzQudGVzdIIKdDE5NzUudGVzdIIKdDE5NzYudGVzdIIK\ndDE5NzcudGVzdIIKdDE5NzgudGVzdIIKdDE5NzkudGVzdIIKdDE5ODAudGVzdIIK\ndDE5ODEudGVzdIIKdDE5ODIudGVzdIIKdDE5ODMudGVzdIIKdDE5ODQudGVzdIIK\ndDE5ODUudGVzdIIKdDE5ODYudGVzdIIKdDE5ODcudGVzdIIKdDE5ODgudGVzdIIK\ndDE5ODkudGVzdIIKdDE5OTAudGVzdIIKdDE5OTEudGVzdIIKdDE5OTIudGVzdIIK\ndDE5OTMudGVzdIIKdDE5OTQudGVzdIIKdDE5OTUudGVzdIIKdDE5OTYudGVzdIIK\ndDE5OTcudGVzdIIKdDE5OTgudGVzdIIKdDE5OTkudGVzdIIKdDIwMDAudGVzdIIK\ndDIwMDEudGVzdIIKdDIwMDIudGVzdIIKdDIwMDMudGVzdIIKdDIwMDQudGVzdIIK\ndDIwMDUudGVzdIIKdDIwMDYudGVzdIIKdDIwMDcudGVzdIIKdDIwMDgudGVzdIIK\ndDIwMDkudGVzdIIKdDIwMTAudGVzdIIKdDIwMTEudGVzdIIKdDIwMTIudGVzdIIK\ndDIwMTMudGVzdIIKdDIwMTQudGVzdIIKdDIwMTUudGVzdIIKdDIwMTYudGVzdIIK\ndDIwMTcudGVzdIIKdDIwMTgudGVzdIIKdDIwMTkudGVzdIIKdDIwMjAudGVzdIIK\ndDIwMjEudGVzdIIKdDIwMjIudGVzdIIKdDIwMjMudGVzdIIKdDIwMjQudGVzdIIK\ndDIwMjUudGVzdIIKdDIwMjYudGVzdIIKdDIwMjcudGVzdIIKdDIwMjgudGVzdIIK\ndDIwMjkudGVzdIIKdDIwMzAudGVzdIIKdDIwMzEudGVzdIIKdDIwMzIudGVzdIIK\ndDIwMzMudGVzdIIKdDIwMzQudGVzdIIKdDIwMzUudGVzdIIKdDIwMzYudGVzdIIK\ndDIwMzcudGVzdIIKdDIwMzgudGVzdIIKdDIwMzkudGVzdIIKdDIwNDAudGVzdIIK\ndDIwNDEudGVzdIIKdDIwNDIudGVzdIIKdDIwNDMudGVzdIIKdDIwNDQudGVzdIIK\ndDIwNDUudGVzdIIKdDIwNDYudGVzdIIKdDIwNDcudGVzdDAKBggqhkjOPQQDAgNI\nADBFAiEA6F7vWErtxEm3SB1ZvXuVMKThuV9R8p6dJTgLBau9eYYCIB15/aLHiSov\n3ze5ETMSyeenxBuKUR2wHgXWn09o58cj\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILPrQNkp37PgOGVZenAnclip4spPMUKfXqcoTHyutpfBoAoGCCqGSM49\nAwEHoUQDQgAEpP7Ih4cqT85FHjjihpZ4xfvYQSlRhwhxOD6LEtEbZas/z/dxlnoI\naNhginOwwQCK2oPqdGt7w9JMocqoTxsfdA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -555,14 +575,15 @@ "features": [ "denial-of-service" ], + "importance": "undetermined", "description": "Produces the following pathological chain:\n\n```\nroot [many constraints] -> EE [many names]\n```\n\nThe root CA contains over 2048 permits and excludes name constraints, which\nare checked against the EE's 2048 subjects (**not** SANS). This is typically\nrejected by implementations due to quadratic blowup, but is technically valid.\n\nThis testcase is a reproduction of OpenSSL's `(many-names3.pem, many-constraints.pem)`\ntestcase, via .", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMILZCzCC2LGgAwIBAgIUS+FW+vAlPbf7aoE48wgxsBuwOLEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT3Pk24RPq0v/LBjZvAFxZysRmm6zYq4xEOmSJ1\nZsR11hm/e1HXCjuo8ZLfItxLh+P3d6pz3SXIDcYaEGbRO0HEo4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFMgzAZLuqbpI3Ed4EqwBG3QyG0T1MILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDSAAwRQIhAPO41vNA7D/9PfQtGFKMo7nZEAmH1dQrseoqa5psorMHAiBs\nGv/Ay6cYOtwJl3YT0jCpDh1syemf0T5oPka53+VRtg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMILZCzCC2LGgAwIBAgIUOqjkyyvdo0Hi1D/vB7r6IJX2EVEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS/l01PHUPQ0Jjj/ZBKH6AQzupHvuTYhivCBNx6\niHrf/yh6Yl6vASRPuBUqsPnPtHU9bs56V2qUvRb24Y0CwizAo4LX0TCC180wDwYD\nVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFAbXaGQ3re1wYiHsu4T9CVaUV3pMMILXdAYDVR0eAQH/BILX\naDCC12SggmuyMAmCB3QwLnRlc3QwCYIHdDEudGVzdDAJggd0Mi50ZXN0MAmCB3Qz\nLnRlc3QwCYIHdDQudGVzdDAJggd0NS50ZXN0MAmCB3Q2LnRlc3QwCYIHdDcudGVz\ndDAJggd0OC50ZXN0MAmCB3Q5LnRlc3QwCoIIdDEwLnRlc3QwCoIIdDExLnRlc3Qw\nCoIIdDEyLnRlc3QwCoIIdDEzLnRlc3QwCoIIdDE0LnRlc3QwCoIIdDE1LnRlc3Qw\nCoIIdDE2LnRlc3QwCoIIdDE3LnRlc3QwCoIIdDE4LnRlc3QwCoIIdDE5LnRlc3Qw\nCoIIdDIwLnRlc3QwCoIIdDIxLnRlc3QwCoIIdDIyLnRlc3QwCoIIdDIzLnRlc3Qw\nCoIIdDI0LnRlc3QwCoIIdDI1LnRlc3QwCoIIdDI2LnRlc3QwCoIIdDI3LnRlc3Qw\nCoIIdDI4LnRlc3QwCoIIdDI5LnRlc3QwCoIIdDMwLnRlc3QwCoIIdDMxLnRlc3Qw\nCoIIdDMyLnRlc3QwCoIIdDMzLnRlc3QwCoIIdDM0LnRlc3QwCoIIdDM1LnRlc3Qw\nCoIIdDM2LnRlc3QwCoIIdDM3LnRlc3QwCoIIdDM4LnRlc3QwCoIIdDM5LnRlc3Qw\nCoIIdDQwLnRlc3QwCoIIdDQxLnRlc3QwCoIIdDQyLnRlc3QwCoIIdDQzLnRlc3Qw\nCoIIdDQ0LnRlc3QwCoIIdDQ1LnRlc3QwCoIIdDQ2LnRlc3QwCoIIdDQ3LnRlc3Qw\nCoIIdDQ4LnRlc3QwCoIIdDQ5LnRlc3QwCoIIdDUwLnRlc3QwCoIIdDUxLnRlc3Qw\nCoIIdDUyLnRlc3QwCoIIdDUzLnRlc3QwCoIIdDU0LnRlc3QwCoIIdDU1LnRlc3Qw\nCoIIdDU2LnRlc3QwCoIIdDU3LnRlc3QwCoIIdDU4LnRlc3QwCoIIdDU5LnRlc3Qw\nCoIIdDYwLnRlc3QwCoIIdDYxLnRlc3QwCoIIdDYyLnRlc3QwCoIIdDYzLnRlc3Qw\nCoIIdDY0LnRlc3QwCoIIdDY1LnRlc3QwCoIIdDY2LnRlc3QwCoIIdDY3LnRlc3Qw\nCoIIdDY4LnRlc3QwCoIIdDY5LnRlc3QwCoIIdDcwLnRlc3QwCoIIdDcxLnRlc3Qw\nCoIIdDcyLnRlc3QwCoIIdDczLnRlc3QwCoIIdDc0LnRlc3QwCoIIdDc1LnRlc3Qw\nCoIIdDc2LnRlc3QwCoIIdDc3LnRlc3QwCoIIdDc4LnRlc3QwCoIIdDc5LnRlc3Qw\nCoIIdDgwLnRlc3QwCoIIdDgxLnRlc3QwCoIIdDgyLnRlc3QwCoIIdDgzLnRlc3Qw\nCoIIdDg0LnRlc3QwCoIIdDg1LnRlc3QwCoIIdDg2LnRlc3QwCoIIdDg3LnRlc3Qw\nCoIIdDg4LnRlc3QwCoIIdDg5LnRlc3QwCoIIdDkwLnRlc3QwCoIIdDkxLnRlc3Qw\nCoIIdDkyLnRlc3QwCoIIdDkzLnRlc3QwCoIIdDk0LnRlc3QwCoIIdDk1LnRlc3Qw\nCoIIdDk2LnRlc3QwCoIIdDk3LnRlc3QwCoIIdDk4LnRlc3QwCoIIdDk5LnRlc3Qw\nC4IJdDEwMC50ZXN0MAuCCXQxMDEudGVzdDALggl0MTAyLnRlc3QwC4IJdDEwMy50\nZXN0MAuCCXQxMDQudGVzdDALggl0MTA1LnRlc3QwC4IJdDEwNi50ZXN0MAuCCXQx\nMDcudGVzdDALggl0MTA4LnRlc3QwC4IJdDEwOS50ZXN0MAuCCXQxMTAudGVzdDAL\nggl0MTExLnRlc3QwC4IJdDExMi50ZXN0MAuCCXQxMTMudGVzdDALggl0MTE0LnRl\nc3QwC4IJdDExNS50ZXN0MAuCCXQxMTYudGVzdDALggl0MTE3LnRlc3QwC4IJdDEx\nOC50ZXN0MAuCCXQxMTkudGVzdDALggl0MTIwLnRlc3QwC4IJdDEyMS50ZXN0MAuC\nCXQxMjIudGVzdDALggl0MTIzLnRlc3QwC4IJdDEyNC50ZXN0MAuCCXQxMjUudGVz\ndDALggl0MTI2LnRlc3QwC4IJdDEyNy50ZXN0MAuCCXQxMjgudGVzdDALggl0MTI5\nLnRlc3QwC4IJdDEzMC50ZXN0MAuCCXQxMzEudGVzdDALggl0MTMyLnRlc3QwC4IJ\ndDEzMy50ZXN0MAuCCXQxMzQudGVzdDALggl0MTM1LnRlc3QwC4IJdDEzNi50ZXN0\nMAuCCXQxMzcudGVzdDALggl0MTM4LnRlc3QwC4IJdDEzOS50ZXN0MAuCCXQxNDAu\ndGVzdDALggl0MTQxLnRlc3QwC4IJdDE0Mi50ZXN0MAuCCXQxNDMudGVzdDALggl0\nMTQ0LnRlc3QwC4IJdDE0NS50ZXN0MAuCCXQxNDYudGVzdDALggl0MTQ3LnRlc3Qw\nC4IJdDE0OC50ZXN0MAuCCXQxNDkudGVzdDALggl0MTUwLnRlc3QwC4IJdDE1MS50\nZXN0MAuCCXQxNTIudGVzdDALggl0MTUzLnRlc3QwC4IJdDE1NC50ZXN0MAuCCXQx\nNTUudGVzdDALggl0MTU2LnRlc3QwC4IJdDE1Ny50ZXN0MAuCCXQxNTgudGVzdDAL\nggl0MTU5LnRlc3QwC4IJdDE2MC50ZXN0MAuCCXQxNjEudGVzdDALggl0MTYyLnRl\nc3QwC4IJdDE2My50ZXN0MAuCCXQxNjQudGVzdDALggl0MTY1LnRlc3QwC4IJdDE2\nNi50ZXN0MAuCCXQxNjcudGVzdDALggl0MTY4LnRlc3QwC4IJdDE2OS50ZXN0MAuC\nCXQxNzAudGVzdDALggl0MTcxLnRlc3QwC4IJdDE3Mi50ZXN0MAuCCXQxNzMudGVz\ndDALggl0MTc0LnRlc3QwC4IJdDE3NS50ZXN0MAuCCXQxNzYudGVzdDALggl0MTc3\nLnRlc3QwC4IJdDE3OC50ZXN0MAuCCXQxNzkudGVzdDALggl0MTgwLnRlc3QwC4IJ\ndDE4MS50ZXN0MAuCCXQxODIudGVzdDALggl0MTgzLnRlc3QwC4IJdDE4NC50ZXN0\nMAuCCXQxODUudGVzdDALggl0MTg2LnRlc3QwC4IJdDE4Ny50ZXN0MAuCCXQxODgu\ndGVzdDALggl0MTg5LnRlc3QwC4IJdDE5MC50ZXN0MAuCCXQxOTEudGVzdDALggl0\nMTkyLnRlc3QwC4IJdDE5My50ZXN0MAuCCXQxOTQudGVzdDALggl0MTk1LnRlc3Qw\nC4IJdDE5Ni50ZXN0MAuCCXQxOTcudGVzdDALggl0MTk4LnRlc3QwC4IJdDE5OS50\nZXN0MAuCCXQyMDAudGVzdDALggl0MjAxLnRlc3QwC4IJdDIwMi50ZXN0MAuCCXQy\nMDMudGVzdDALggl0MjA0LnRlc3QwC4IJdDIwNS50ZXN0MAuCCXQyMDYudGVzdDAL\nggl0MjA3LnRlc3QwC4IJdDIwOC50ZXN0MAuCCXQyMDkudGVzdDALggl0MjEwLnRl\nc3QwC4IJdDIxMS50ZXN0MAuCCXQyMTIudGVzdDALggl0MjEzLnRlc3QwC4IJdDIx\nNC50ZXN0MAuCCXQyMTUudGVzdDALggl0MjE2LnRlc3QwC4IJdDIxNy50ZXN0MAuC\nCXQyMTgudGVzdDALggl0MjE5LnRlc3QwC4IJdDIyMC50ZXN0MAuCCXQyMjEudGVz\ndDALggl0MjIyLnRlc3QwC4IJdDIyMy50ZXN0MAuCCXQyMjQudGVzdDALggl0MjI1\nLnRlc3QwC4IJdDIyNi50ZXN0MAuCCXQyMjcudGVzdDALggl0MjI4LnRlc3QwC4IJ\ndDIyOS50ZXN0MAuCCXQyMzAudGVzdDALggl0MjMxLnRlc3QwC4IJdDIzMi50ZXN0\nMAuCCXQyMzMudGVzdDALggl0MjM0LnRlc3QwC4IJdDIzNS50ZXN0MAuCCXQyMzYu\ndGVzdDALggl0MjM3LnRlc3QwC4IJdDIzOC50ZXN0MAuCCXQyMzkudGVzdDALggl0\nMjQwLnRlc3QwC4IJdDI0MS50ZXN0MAuCCXQyNDIudGVzdDALggl0MjQzLnRlc3Qw\nC4IJdDI0NC50ZXN0MAuCCXQyNDUudGVzdDALggl0MjQ2LnRlc3QwC4IJdDI0Ny50\nZXN0MAuCCXQyNDgudGVzdDALggl0MjQ5LnRlc3QwC4IJdDI1MC50ZXN0MAuCCXQy\nNTEudGVzdDALggl0MjUyLnRlc3QwC4IJdDI1My50ZXN0MAuCCXQyNTQudGVzdDAL\nggl0MjU1LnRlc3QwC4IJdDI1Ni50ZXN0MAuCCXQyNTcudGVzdDALggl0MjU4LnRl\nc3QwC4IJdDI1OS50ZXN0MAuCCXQyNjAudGVzdDALggl0MjYxLnRlc3QwC4IJdDI2\nMi50ZXN0MAuCCXQyNjMudGVzdDALggl0MjY0LnRlc3QwC4IJdDI2NS50ZXN0MAuC\nCXQyNjYudGVzdDALggl0MjY3LnRlc3QwC4IJdDI2OC50ZXN0MAuCCXQyNjkudGVz\ndDALggl0MjcwLnRlc3QwC4IJdDI3MS50ZXN0MAuCCXQyNzIudGVzdDALggl0Mjcz\nLnRlc3QwC4IJdDI3NC50ZXN0MAuCCXQyNzUudGVzdDALggl0Mjc2LnRlc3QwC4IJ\ndDI3Ny50ZXN0MAuCCXQyNzgudGVzdDALggl0Mjc5LnRlc3QwC4IJdDI4MC50ZXN0\nMAuCCXQyODEudGVzdDALggl0MjgyLnRlc3QwC4IJdDI4My50ZXN0MAuCCXQyODQu\ndGVzdDALggl0Mjg1LnRlc3QwC4IJdDI4Ni50ZXN0MAuCCXQyODcudGVzdDALggl0\nMjg4LnRlc3QwC4IJdDI4OS50ZXN0MAuCCXQyOTAudGVzdDALggl0MjkxLnRlc3Qw\nC4IJdDI5Mi50ZXN0MAuCCXQyOTMudGVzdDALggl0Mjk0LnRlc3QwC4IJdDI5NS50\nZXN0MAuCCXQyOTYudGVzdDALggl0Mjk3LnRlc3QwC4IJdDI5OC50ZXN0MAuCCXQy\nOTkudGVzdDALggl0MzAwLnRlc3QwC4IJdDMwMS50ZXN0MAuCCXQzMDIudGVzdDAL\nggl0MzAzLnRlc3QwC4IJdDMwNC50ZXN0MAuCCXQzMDUudGVzdDALggl0MzA2LnRl\nc3QwC4IJdDMwNy50ZXN0MAuCCXQzMDgudGVzdDALggl0MzA5LnRlc3QwC4IJdDMx\nMC50ZXN0MAuCCXQzMTEudGVzdDALggl0MzEyLnRlc3QwC4IJdDMxMy50ZXN0MAuC\nCXQzMTQudGVzdDALggl0MzE1LnRlc3QwC4IJdDMxNi50ZXN0MAuCCXQzMTcudGVz\ndDALggl0MzE4LnRlc3QwC4IJdDMxOS50ZXN0MAuCCXQzMjAudGVzdDALggl0MzIx\nLnRlc3QwC4IJdDMyMi50ZXN0MAuCCXQzMjMudGVzdDALggl0MzI0LnRlc3QwC4IJ\ndDMyNS50ZXN0MAuCCXQzMjYudGVzdDALggl0MzI3LnRlc3QwC4IJdDMyOC50ZXN0\nMAuCCXQzMjkudGVzdDALggl0MzMwLnRlc3QwC4IJdDMzMS50ZXN0MAuCCXQzMzIu\ndGVzdDALggl0MzMzLnRlc3QwC4IJdDMzNC50ZXN0MAuCCXQzMzUudGVzdDALggl0\nMzM2LnRlc3QwC4IJdDMzNy50ZXN0MAuCCXQzMzgudGVzdDALggl0MzM5LnRlc3Qw\nC4IJdDM0MC50ZXN0MAuCCXQzNDEudGVzdDALggl0MzQyLnRlc3QwC4IJdDM0My50\nZXN0MAuCCXQzNDQudGVzdDALggl0MzQ1LnRlc3QwC4IJdDM0Ni50ZXN0MAuCCXQz\nNDcudGVzdDALggl0MzQ4LnRlc3QwC4IJdDM0OS50ZXN0MAuCCXQzNTAudGVzdDAL\nggl0MzUxLnRlc3QwC4IJdDM1Mi50ZXN0MAuCCXQzNTMudGVzdDALggl0MzU0LnRl\nc3QwC4IJdDM1NS50ZXN0MAuCCXQzNTYudGVzdDALggl0MzU3LnRlc3QwC4IJdDM1\nOC50ZXN0MAuCCXQzNTkudGVzdDALggl0MzYwLnRlc3QwC4IJdDM2MS50ZXN0MAuC\nCXQzNjIudGVzdDALggl0MzYzLnRlc3QwC4IJdDM2NC50ZXN0MAuCCXQzNjUudGVz\ndDALggl0MzY2LnRlc3QwC4IJdDM2Ny50ZXN0MAuCCXQzNjgudGVzdDALggl0MzY5\nLnRlc3QwC4IJdDM3MC50ZXN0MAuCCXQzNzEudGVzdDALggl0MzcyLnRlc3QwC4IJ\ndDM3My50ZXN0MAuCCXQzNzQudGVzdDALggl0Mzc1LnRlc3QwC4IJdDM3Ni50ZXN0\nMAuCCXQzNzcudGVzdDALggl0Mzc4LnRlc3QwC4IJdDM3OS50ZXN0MAuCCXQzODAu\ndGVzdDALggl0MzgxLnRlc3QwC4IJdDM4Mi50ZXN0MAuCCXQzODMudGVzdDALggl0\nMzg0LnRlc3QwC4IJdDM4NS50ZXN0MAuCCXQzODYudGVzdDALggl0Mzg3LnRlc3Qw\nC4IJdDM4OC50ZXN0MAuCCXQzODkudGVzdDALggl0MzkwLnRlc3QwC4IJdDM5MS50\nZXN0MAuCCXQzOTIudGVzdDALggl0MzkzLnRlc3QwC4IJdDM5NC50ZXN0MAuCCXQz\nOTUudGVzdDALggl0Mzk2LnRlc3QwC4IJdDM5Ny50ZXN0MAuCCXQzOTgudGVzdDAL\nggl0Mzk5LnRlc3QwC4IJdDQwMC50ZXN0MAuCCXQ0MDEudGVzdDALggl0NDAyLnRl\nc3QwC4IJdDQwMy50ZXN0MAuCCXQ0MDQudGVzdDALggl0NDA1LnRlc3QwC4IJdDQw\nNi50ZXN0MAuCCXQ0MDcudGVzdDALggl0NDA4LnRlc3QwC4IJdDQwOS50ZXN0MAuC\nCXQ0MTAudGVzdDALggl0NDExLnRlc3QwC4IJdDQxMi50ZXN0MAuCCXQ0MTMudGVz\ndDALggl0NDE0LnRlc3QwC4IJdDQxNS50ZXN0MAuCCXQ0MTYudGVzdDALggl0NDE3\nLnRlc3QwC4IJdDQxOC50ZXN0MAuCCXQ0MTkudGVzdDALggl0NDIwLnRlc3QwC4IJ\ndDQyMS50ZXN0MAuCCXQ0MjIudGVzdDALggl0NDIzLnRlc3QwC4IJdDQyNC50ZXN0\nMAuCCXQ0MjUudGVzdDALggl0NDI2LnRlc3QwC4IJdDQyNy50ZXN0MAuCCXQ0Mjgu\ndGVzdDALggl0NDI5LnRlc3QwC4IJdDQzMC50ZXN0MAuCCXQ0MzEudGVzdDALggl0\nNDMyLnRlc3QwC4IJdDQzMy50ZXN0MAuCCXQ0MzQudGVzdDALggl0NDM1LnRlc3Qw\nC4IJdDQzNi50ZXN0MAuCCXQ0MzcudGVzdDALggl0NDM4LnRlc3QwC4IJdDQzOS50\nZXN0MAuCCXQ0NDAudGVzdDALggl0NDQxLnRlc3QwC4IJdDQ0Mi50ZXN0MAuCCXQ0\nNDMudGVzdDALggl0NDQ0LnRlc3QwC4IJdDQ0NS50ZXN0MAuCCXQ0NDYudGVzdDAL\nggl0NDQ3LnRlc3QwC4IJdDQ0OC50ZXN0MAuCCXQ0NDkudGVzdDALggl0NDUwLnRl\nc3QwC4IJdDQ1MS50ZXN0MAuCCXQ0NTIudGVzdDALggl0NDUzLnRlc3QwC4IJdDQ1\nNC50ZXN0MAuCCXQ0NTUudGVzdDALggl0NDU2LnRlc3QwC4IJdDQ1Ny50ZXN0MAuC\nCXQ0NTgudGVzdDALggl0NDU5LnRlc3QwC4IJdDQ2MC50ZXN0MAuCCXQ0NjEudGVz\ndDALggl0NDYyLnRlc3QwC4IJdDQ2My50ZXN0MAuCCXQ0NjQudGVzdDALggl0NDY1\nLnRlc3QwC4IJdDQ2Ni50ZXN0MAuCCXQ0NjcudGVzdDALggl0NDY4LnRlc3QwC4IJ\ndDQ2OS50ZXN0MAuCCXQ0NzAudGVzdDALggl0NDcxLnRlc3QwC4IJdDQ3Mi50ZXN0\nMAuCCXQ0NzMudGVzdDALggl0NDc0LnRlc3QwC4IJdDQ3NS50ZXN0MAuCCXQ0NzYu\ndGVzdDALggl0NDc3LnRlc3QwC4IJdDQ3OC50ZXN0MAuCCXQ0NzkudGVzdDALggl0\nNDgwLnRlc3QwC4IJdDQ4MS50ZXN0MAuCCXQ0ODIudGVzdDALggl0NDgzLnRlc3Qw\nC4IJdDQ4NC50ZXN0MAuCCXQ0ODUudGVzdDALggl0NDg2LnRlc3QwC4IJdDQ4Ny50\nZXN0MAuCCXQ0ODgudGVzdDALggl0NDg5LnRlc3QwC4IJdDQ5MC50ZXN0MAuCCXQ0\nOTEudGVzdDALggl0NDkyLnRlc3QwC4IJdDQ5My50ZXN0MAuCCXQ0OTQudGVzdDAL\nggl0NDk1LnRlc3QwC4IJdDQ5Ni50ZXN0MAuCCXQ0OTcudGVzdDALggl0NDk4LnRl\nc3QwC4IJdDQ5OS50ZXN0MAuCCXQ1MDAudGVzdDALggl0NTAxLnRlc3QwC4IJdDUw\nMi50ZXN0MAuCCXQ1MDMudGVzdDALggl0NTA0LnRlc3QwC4IJdDUwNS50ZXN0MAuC\nCXQ1MDYudGVzdDALggl0NTA3LnRlc3QwC4IJdDUwOC50ZXN0MAuCCXQ1MDkudGVz\ndDALggl0NTEwLnRlc3QwC4IJdDUxMS50ZXN0MAuCCXQ1MTIudGVzdDALggl0NTEz\nLnRlc3QwC4IJdDUxNC50ZXN0MAuCCXQ1MTUudGVzdDALggl0NTE2LnRlc3QwC4IJ\ndDUxNy50ZXN0MAuCCXQ1MTgudGVzdDALggl0NTE5LnRlc3QwC4IJdDUyMC50ZXN0\nMAuCCXQ1MjEudGVzdDALggl0NTIyLnRlc3QwC4IJdDUyMy50ZXN0MAuCCXQ1MjQu\ndGVzdDALggl0NTI1LnRlc3QwC4IJdDUyNi50ZXN0MAuCCXQ1MjcudGVzdDALggl0\nNTI4LnRlc3QwC4IJdDUyOS50ZXN0MAuCCXQ1MzAudGVzdDALggl0NTMxLnRlc3Qw\nC4IJdDUzMi50ZXN0MAuCCXQ1MzMudGVzdDALggl0NTM0LnRlc3QwC4IJdDUzNS50\nZXN0MAuCCXQ1MzYudGVzdDALggl0NTM3LnRlc3QwC4IJdDUzOC50ZXN0MAuCCXQ1\nMzkudGVzdDALggl0NTQwLnRlc3QwC4IJdDU0MS50ZXN0MAuCCXQ1NDIudGVzdDAL\nggl0NTQzLnRlc3QwC4IJdDU0NC50ZXN0MAuCCXQ1NDUudGVzdDALggl0NTQ2LnRl\nc3QwC4IJdDU0Ny50ZXN0MAuCCXQ1NDgudGVzdDALggl0NTQ5LnRlc3QwC4IJdDU1\nMC50ZXN0MAuCCXQ1NTEudGVzdDALggl0NTUyLnRlc3QwC4IJdDU1My50ZXN0MAuC\nCXQ1NTQudGVzdDALggl0NTU1LnRlc3QwC4IJdDU1Ni50ZXN0MAuCCXQ1NTcudGVz\ndDALggl0NTU4LnRlc3QwC4IJdDU1OS50ZXN0MAuCCXQ1NjAudGVzdDALggl0NTYx\nLnRlc3QwC4IJdDU2Mi50ZXN0MAuCCXQ1NjMudGVzdDALggl0NTY0LnRlc3QwC4IJ\ndDU2NS50ZXN0MAuCCXQ1NjYudGVzdDALggl0NTY3LnRlc3QwC4IJdDU2OC50ZXN0\nMAuCCXQ1NjkudGVzdDALggl0NTcwLnRlc3QwC4IJdDU3MS50ZXN0MAuCCXQ1NzIu\ndGVzdDALggl0NTczLnRlc3QwC4IJdDU3NC50ZXN0MAuCCXQ1NzUudGVzdDALggl0\nNTc2LnRlc3QwC4IJdDU3Ny50ZXN0MAuCCXQ1NzgudGVzdDALggl0NTc5LnRlc3Qw\nC4IJdDU4MC50ZXN0MAuCCXQ1ODEudGVzdDALggl0NTgyLnRlc3QwC4IJdDU4My50\nZXN0MAuCCXQ1ODQudGVzdDALggl0NTg1LnRlc3QwC4IJdDU4Ni50ZXN0MAuCCXQ1\nODcudGVzdDALggl0NTg4LnRlc3QwC4IJdDU4OS50ZXN0MAuCCXQ1OTAudGVzdDAL\nggl0NTkxLnRlc3QwC4IJdDU5Mi50ZXN0MAuCCXQ1OTMudGVzdDALggl0NTk0LnRl\nc3QwC4IJdDU5NS50ZXN0MAuCCXQ1OTYudGVzdDALggl0NTk3LnRlc3QwC4IJdDU5\nOC50ZXN0MAuCCXQ1OTkudGVzdDALggl0NjAwLnRlc3QwC4IJdDYwMS50ZXN0MAuC\nCXQ2MDIudGVzdDALggl0NjAzLnRlc3QwC4IJdDYwNC50ZXN0MAuCCXQ2MDUudGVz\ndDALggl0NjA2LnRlc3QwC4IJdDYwNy50ZXN0MAuCCXQ2MDgudGVzdDALggl0NjA5\nLnRlc3QwC4IJdDYxMC50ZXN0MAuCCXQ2MTEudGVzdDALggl0NjEyLnRlc3QwC4IJ\ndDYxMy50ZXN0MAuCCXQ2MTQudGVzdDALggl0NjE1LnRlc3QwC4IJdDYxNi50ZXN0\nMAuCCXQ2MTcudGVzdDALggl0NjE4LnRlc3QwC4IJdDYxOS50ZXN0MAuCCXQ2MjAu\ndGVzdDALggl0NjIxLnRlc3QwC4IJdDYyMi50ZXN0MAuCCXQ2MjMudGVzdDALggl0\nNjI0LnRlc3QwC4IJdDYyNS50ZXN0MAuCCXQ2MjYudGVzdDALggl0NjI3LnRlc3Qw\nC4IJdDYyOC50ZXN0MAuCCXQ2MjkudGVzdDALggl0NjMwLnRlc3QwC4IJdDYzMS50\nZXN0MAuCCXQ2MzIudGVzdDALggl0NjMzLnRlc3QwC4IJdDYzNC50ZXN0MAuCCXQ2\nMzUudGVzdDALggl0NjM2LnRlc3QwC4IJdDYzNy50ZXN0MAuCCXQ2MzgudGVzdDAL\nggl0NjM5LnRlc3QwC4IJdDY0MC50ZXN0MAuCCXQ2NDEudGVzdDALggl0NjQyLnRl\nc3QwC4IJdDY0My50ZXN0MAuCCXQ2NDQudGVzdDALggl0NjQ1LnRlc3QwC4IJdDY0\nNi50ZXN0MAuCCXQ2NDcudGVzdDALggl0NjQ4LnRlc3QwC4IJdDY0OS50ZXN0MAuC\nCXQ2NTAudGVzdDALggl0NjUxLnRlc3QwC4IJdDY1Mi50ZXN0MAuCCXQ2NTMudGVz\ndDALggl0NjU0LnRlc3QwC4IJdDY1NS50ZXN0MAuCCXQ2NTYudGVzdDALggl0NjU3\nLnRlc3QwC4IJdDY1OC50ZXN0MAuCCXQ2NTkudGVzdDALggl0NjYwLnRlc3QwC4IJ\ndDY2MS50ZXN0MAuCCXQ2NjIudGVzdDALggl0NjYzLnRlc3QwC4IJdDY2NC50ZXN0\nMAuCCXQ2NjUudGVzdDALggl0NjY2LnRlc3QwC4IJdDY2Ny50ZXN0MAuCCXQ2Njgu\ndGVzdDALggl0NjY5LnRlc3QwC4IJdDY3MC50ZXN0MAuCCXQ2NzEudGVzdDALggl0\nNjcyLnRlc3QwC4IJdDY3My50ZXN0MAuCCXQ2NzQudGVzdDALggl0Njc1LnRlc3Qw\nC4IJdDY3Ni50ZXN0MAuCCXQ2NzcudGVzdDALggl0Njc4LnRlc3QwC4IJdDY3OS50\nZXN0MAuCCXQ2ODAudGVzdDALggl0NjgxLnRlc3QwC4IJdDY4Mi50ZXN0MAuCCXQ2\nODMudGVzdDALggl0Njg0LnRlc3QwC4IJdDY4NS50ZXN0MAuCCXQ2ODYudGVzdDAL\nggl0Njg3LnRlc3QwC4IJdDY4OC50ZXN0MAuCCXQ2ODkudGVzdDALggl0NjkwLnRl\nc3QwC4IJdDY5MS50ZXN0MAuCCXQ2OTIudGVzdDALggl0NjkzLnRlc3QwC4IJdDY5\nNC50ZXN0MAuCCXQ2OTUudGVzdDALggl0Njk2LnRlc3QwC4IJdDY5Ny50ZXN0MAuC\nCXQ2OTgudGVzdDALggl0Njk5LnRlc3QwC4IJdDcwMC50ZXN0MAuCCXQ3MDEudGVz\ndDALggl0NzAyLnRlc3QwC4IJdDcwMy50ZXN0MAuCCXQ3MDQudGVzdDALggl0NzA1\nLnRlc3QwC4IJdDcwNi50ZXN0MAuCCXQ3MDcudGVzdDALggl0NzA4LnRlc3QwC4IJ\ndDcwOS50ZXN0MAuCCXQ3MTAudGVzdDALggl0NzExLnRlc3QwC4IJdDcxMi50ZXN0\nMAuCCXQ3MTMudGVzdDALggl0NzE0LnRlc3QwC4IJdDcxNS50ZXN0MAuCCXQ3MTYu\ndGVzdDALggl0NzE3LnRlc3QwC4IJdDcxOC50ZXN0MAuCCXQ3MTkudGVzdDALggl0\nNzIwLnRlc3QwC4IJdDcyMS50ZXN0MAuCCXQ3MjIudGVzdDALggl0NzIzLnRlc3Qw\nC4IJdDcyNC50ZXN0MAuCCXQ3MjUudGVzdDALggl0NzI2LnRlc3QwC4IJdDcyNy50\nZXN0MAuCCXQ3MjgudGVzdDALggl0NzI5LnRlc3QwC4IJdDczMC50ZXN0MAuCCXQ3\nMzEudGVzdDALggl0NzMyLnRlc3QwC4IJdDczMy50ZXN0MAuCCXQ3MzQudGVzdDAL\nggl0NzM1LnRlc3QwC4IJdDczNi50ZXN0MAuCCXQ3MzcudGVzdDALggl0NzM4LnRl\nc3QwC4IJdDczOS50ZXN0MAuCCXQ3NDAudGVzdDALggl0NzQxLnRlc3QwC4IJdDc0\nMi50ZXN0MAuCCXQ3NDMudGVzdDALggl0NzQ0LnRlc3QwC4IJdDc0NS50ZXN0MAuC\nCXQ3NDYudGVzdDALggl0NzQ3LnRlc3QwC4IJdDc0OC50ZXN0MAuCCXQ3NDkudGVz\ndDALggl0NzUwLnRlc3QwC4IJdDc1MS50ZXN0MAuCCXQ3NTIudGVzdDALggl0NzUz\nLnRlc3QwC4IJdDc1NC50ZXN0MAuCCXQ3NTUudGVzdDALggl0NzU2LnRlc3QwC4IJ\ndDc1Ny50ZXN0MAuCCXQ3NTgudGVzdDALggl0NzU5LnRlc3QwC4IJdDc2MC50ZXN0\nMAuCCXQ3NjEudGVzdDALggl0NzYyLnRlc3QwC4IJdDc2My50ZXN0MAuCCXQ3NjQu\ndGVzdDALggl0NzY1LnRlc3QwC4IJdDc2Ni50ZXN0MAuCCXQ3NjcudGVzdDALggl0\nNzY4LnRlc3QwC4IJdDc2OS50ZXN0MAuCCXQ3NzAudGVzdDALggl0NzcxLnRlc3Qw\nC4IJdDc3Mi50ZXN0MAuCCXQ3NzMudGVzdDALggl0Nzc0LnRlc3QwC4IJdDc3NS50\nZXN0MAuCCXQ3NzYudGVzdDALggl0Nzc3LnRlc3QwC4IJdDc3OC50ZXN0MAuCCXQ3\nNzkudGVzdDALggl0NzgwLnRlc3QwC4IJdDc4MS50ZXN0MAuCCXQ3ODIudGVzdDAL\nggl0NzgzLnRlc3QwC4IJdDc4NC50ZXN0MAuCCXQ3ODUudGVzdDALggl0Nzg2LnRl\nc3QwC4IJdDc4Ny50ZXN0MAuCCXQ3ODgudGVzdDALggl0Nzg5LnRlc3QwC4IJdDc5\nMC50ZXN0MAuCCXQ3OTEudGVzdDALggl0NzkyLnRlc3QwC4IJdDc5My50ZXN0MAuC\nCXQ3OTQudGVzdDALggl0Nzk1LnRlc3QwC4IJdDc5Ni50ZXN0MAuCCXQ3OTcudGVz\ndDALggl0Nzk4LnRlc3QwC4IJdDc5OS50ZXN0MAuCCXQ4MDAudGVzdDALggl0ODAx\nLnRlc3QwC4IJdDgwMi50ZXN0MAuCCXQ4MDMudGVzdDALggl0ODA0LnRlc3QwC4IJ\ndDgwNS50ZXN0MAuCCXQ4MDYudGVzdDALggl0ODA3LnRlc3QwC4IJdDgwOC50ZXN0\nMAuCCXQ4MDkudGVzdDALggl0ODEwLnRlc3QwC4IJdDgxMS50ZXN0MAuCCXQ4MTIu\ndGVzdDALggl0ODEzLnRlc3QwC4IJdDgxNC50ZXN0MAuCCXQ4MTUudGVzdDALggl0\nODE2LnRlc3QwC4IJdDgxNy50ZXN0MAuCCXQ4MTgudGVzdDALggl0ODE5LnRlc3Qw\nC4IJdDgyMC50ZXN0MAuCCXQ4MjEudGVzdDALggl0ODIyLnRlc3QwC4IJdDgyMy50\nZXN0MAuCCXQ4MjQudGVzdDALggl0ODI1LnRlc3QwC4IJdDgyNi50ZXN0MAuCCXQ4\nMjcudGVzdDALggl0ODI4LnRlc3QwC4IJdDgyOS50ZXN0MAuCCXQ4MzAudGVzdDAL\nggl0ODMxLnRlc3QwC4IJdDgzMi50ZXN0MAuCCXQ4MzMudGVzdDALggl0ODM0LnRl\nc3QwC4IJdDgzNS50ZXN0MAuCCXQ4MzYudGVzdDALggl0ODM3LnRlc3QwC4IJdDgz\nOC50ZXN0MAuCCXQ4MzkudGVzdDALggl0ODQwLnRlc3QwC4IJdDg0MS50ZXN0MAuC\nCXQ4NDIudGVzdDALggl0ODQzLnRlc3QwC4IJdDg0NC50ZXN0MAuCCXQ4NDUudGVz\ndDALggl0ODQ2LnRlc3QwC4IJdDg0Ny50ZXN0MAuCCXQ4NDgudGVzdDALggl0ODQ5\nLnRlc3QwC4IJdDg1MC50ZXN0MAuCCXQ4NTEudGVzdDALggl0ODUyLnRlc3QwC4IJ\ndDg1My50ZXN0MAuCCXQ4NTQudGVzdDALggl0ODU1LnRlc3QwC4IJdDg1Ni50ZXN0\nMAuCCXQ4NTcudGVzdDALggl0ODU4LnRlc3QwC4IJdDg1OS50ZXN0MAuCCXQ4NjAu\ndGVzdDALggl0ODYxLnRlc3QwC4IJdDg2Mi50ZXN0MAuCCXQ4NjMudGVzdDALggl0\nODY0LnRlc3QwC4IJdDg2NS50ZXN0MAuCCXQ4NjYudGVzdDALggl0ODY3LnRlc3Qw\nC4IJdDg2OC50ZXN0MAuCCXQ4NjkudGVzdDALggl0ODcwLnRlc3QwC4IJdDg3MS50\nZXN0MAuCCXQ4NzIudGVzdDALggl0ODczLnRlc3QwC4IJdDg3NC50ZXN0MAuCCXQ4\nNzUudGVzdDALggl0ODc2LnRlc3QwC4IJdDg3Ny50ZXN0MAuCCXQ4NzgudGVzdDAL\nggl0ODc5LnRlc3QwC4IJdDg4MC50ZXN0MAuCCXQ4ODEudGVzdDALggl0ODgyLnRl\nc3QwC4IJdDg4My50ZXN0MAuCCXQ4ODQudGVzdDALggl0ODg1LnRlc3QwC4IJdDg4\nNi50ZXN0MAuCCXQ4ODcudGVzdDALggl0ODg4LnRlc3QwC4IJdDg4OS50ZXN0MAuC\nCXQ4OTAudGVzdDALggl0ODkxLnRlc3QwC4IJdDg5Mi50ZXN0MAuCCXQ4OTMudGVz\ndDALggl0ODk0LnRlc3QwC4IJdDg5NS50ZXN0MAuCCXQ4OTYudGVzdDALggl0ODk3\nLnRlc3QwC4IJdDg5OC50ZXN0MAuCCXQ4OTkudGVzdDALggl0OTAwLnRlc3QwC4IJ\ndDkwMS50ZXN0MAuCCXQ5MDIudGVzdDALggl0OTAzLnRlc3QwC4IJdDkwNC50ZXN0\nMAuCCXQ5MDUudGVzdDALggl0OTA2LnRlc3QwC4IJdDkwNy50ZXN0MAuCCXQ5MDgu\ndGVzdDALggl0OTA5LnRlc3QwC4IJdDkxMC50ZXN0MAuCCXQ5MTEudGVzdDALggl0\nOTEyLnRlc3QwC4IJdDkxMy50ZXN0MAuCCXQ5MTQudGVzdDALggl0OTE1LnRlc3Qw\nC4IJdDkxNi50ZXN0MAuCCXQ5MTcudGVzdDALggl0OTE4LnRlc3QwC4IJdDkxOS50\nZXN0MAuCCXQ5MjAudGVzdDALggl0OTIxLnRlc3QwC4IJdDkyMi50ZXN0MAuCCXQ5\nMjMudGVzdDALggl0OTI0LnRlc3QwC4IJdDkyNS50ZXN0MAuCCXQ5MjYudGVzdDAL\nggl0OTI3LnRlc3QwC4IJdDkyOC50ZXN0MAuCCXQ5MjkudGVzdDALggl0OTMwLnRl\nc3QwC4IJdDkzMS50ZXN0MAuCCXQ5MzIudGVzdDALggl0OTMzLnRlc3QwC4IJdDkz\nNC50ZXN0MAuCCXQ5MzUudGVzdDALggl0OTM2LnRlc3QwC4IJdDkzNy50ZXN0MAuC\nCXQ5MzgudGVzdDALggl0OTM5LnRlc3QwC4IJdDk0MC50ZXN0MAuCCXQ5NDEudGVz\ndDALggl0OTQyLnRlc3QwC4IJdDk0My50ZXN0MAuCCXQ5NDQudGVzdDALggl0OTQ1\nLnRlc3QwC4IJdDk0Ni50ZXN0MAuCCXQ5NDcudGVzdDALggl0OTQ4LnRlc3QwC4IJ\ndDk0OS50ZXN0MAuCCXQ5NTAudGVzdDALggl0OTUxLnRlc3QwC4IJdDk1Mi50ZXN0\nMAuCCXQ5NTMudGVzdDALggl0OTU0LnRlc3QwC4IJdDk1NS50ZXN0MAuCCXQ5NTYu\ndGVzdDALggl0OTU3LnRlc3QwC4IJdDk1OC50ZXN0MAuCCXQ5NTkudGVzdDALggl0\nOTYwLnRlc3QwC4IJdDk2MS50ZXN0MAuCCXQ5NjIudGVzdDALggl0OTYzLnRlc3Qw\nC4IJdDk2NC50ZXN0MAuCCXQ5NjUudGVzdDALggl0OTY2LnRlc3QwC4IJdDk2Ny50\nZXN0MAuCCXQ5NjgudGVzdDALggl0OTY5LnRlc3QwC4IJdDk3MC50ZXN0MAuCCXQ5\nNzEudGVzdDALggl0OTcyLnRlc3QwC4IJdDk3My50ZXN0MAuCCXQ5NzQudGVzdDAL\nggl0OTc1LnRlc3QwC4IJdDk3Ni50ZXN0MAuCCXQ5NzcudGVzdDALggl0OTc4LnRl\nc3QwC4IJdDk3OS50ZXN0MAuCCXQ5ODAudGVzdDALggl0OTgxLnRlc3QwC4IJdDk4\nMi50ZXN0MAuCCXQ5ODMudGVzdDALggl0OTg0LnRlc3QwC4IJdDk4NS50ZXN0MAuC\nCXQ5ODYudGVzdDALggl0OTg3LnRlc3QwC4IJdDk4OC50ZXN0MAuCCXQ5ODkudGVz\ndDALggl0OTkwLnRlc3QwC4IJdDk5MS50ZXN0MAuCCXQ5OTIudGVzdDALggl0OTkz\nLnRlc3QwC4IJdDk5NC50ZXN0MAuCCXQ5OTUudGVzdDALggl0OTk2LnRlc3QwC4IJ\ndDk5Ny50ZXN0MAuCCXQ5OTgudGVzdDALggl0OTk5LnRlc3QwDIIKdDEwMDAudGVz\ndDAMggp0MTAwMS50ZXN0MAyCCnQxMDAyLnRlc3QwDIIKdDEwMDMudGVzdDAMggp0\nMTAwNC50ZXN0MAyCCnQxMDA1LnRlc3QwDIIKdDEwMDYudGVzdDAMggp0MTAwNy50\nZXN0MAyCCnQxMDA4LnRlc3QwDIIKdDEwMDkudGVzdDAMggp0MTAxMC50ZXN0MAyC\nCnQxMDExLnRlc3QwDIIKdDEwMTIudGVzdDAMggp0MTAxMy50ZXN0MAyCCnQxMDE0\nLnRlc3QwDIIKdDEwMTUudGVzdDAMggp0MTAxNi50ZXN0MAyCCnQxMDE3LnRlc3Qw\nDIIKdDEwMTgudGVzdDAMggp0MTAxOS50ZXN0MAyCCnQxMDIwLnRlc3QwDIIKdDEw\nMjEudGVzdDAMggp0MTAyMi50ZXN0MAyCCnQxMDIzLnRlc3QwDIIKdDEwMjQudGVz\ndDAMggp0MTAyNS50ZXN0MAyCCnQxMDI2LnRlc3QwDIIKdDEwMjcudGVzdDAMggp0\nMTAyOC50ZXN0MAyCCnQxMDI5LnRlc3QwDIIKdDEwMzAudGVzdDAMggp0MTAzMS50\nZXN0MAyCCnQxMDMyLnRlc3QwDIIKdDEwMzMudGVzdDAMggp0MTAzNC50ZXN0MAyC\nCnQxMDM1LnRlc3QwDIIKdDEwMzYudGVzdDAMggp0MTAzNy50ZXN0MAyCCnQxMDM4\nLnRlc3QwDIIKdDEwMzkudGVzdDAMggp0MTA0MC50ZXN0MAyCCnQxMDQxLnRlc3Qw\nDIIKdDEwNDIudGVzdDAMggp0MTA0My50ZXN0MAyCCnQxMDQ0LnRlc3QwDIIKdDEw\nNDUudGVzdDAMggp0MTA0Ni50ZXN0MAyCCnQxMDQ3LnRlc3QwDIIKdDEwNDgudGVz\ndDAMggp0MTA0OS50ZXN0MAyCCnQxMDUwLnRlc3QwDIIKdDEwNTEudGVzdDAMggp0\nMTA1Mi50ZXN0MAyCCnQxMDUzLnRlc3QwDIIKdDEwNTQudGVzdDAMggp0MTA1NS50\nZXN0MAyCCnQxMDU2LnRlc3QwDIIKdDEwNTcudGVzdDAMggp0MTA1OC50ZXN0MAyC\nCnQxMDU5LnRlc3QwDIIKdDEwNjAudGVzdDAMggp0MTA2MS50ZXN0MAyCCnQxMDYy\nLnRlc3QwDIIKdDEwNjMudGVzdDAMggp0MTA2NC50ZXN0MAyCCnQxMDY1LnRlc3Qw\nDIIKdDEwNjYudGVzdDAMggp0MTA2Ny50ZXN0MAyCCnQxMDY4LnRlc3QwDIIKdDEw\nNjkudGVzdDAMggp0MTA3MC50ZXN0MAyCCnQxMDcxLnRlc3QwDIIKdDEwNzIudGVz\ndDAMggp0MTA3My50ZXN0MAyCCnQxMDc0LnRlc3QwDIIKdDEwNzUudGVzdDAMggp0\nMTA3Ni50ZXN0MAyCCnQxMDc3LnRlc3QwDIIKdDEwNzgudGVzdDAMggp0MTA3OS50\nZXN0MAyCCnQxMDgwLnRlc3QwDIIKdDEwODEudGVzdDAMggp0MTA4Mi50ZXN0MAyC\nCnQxMDgzLnRlc3QwDIIKdDEwODQudGVzdDAMggp0MTA4NS50ZXN0MAyCCnQxMDg2\nLnRlc3QwDIIKdDEwODcudGVzdDAMggp0MTA4OC50ZXN0MAyCCnQxMDg5LnRlc3Qw\nDIIKdDEwOTAudGVzdDAMggp0MTA5MS50ZXN0MAyCCnQxMDkyLnRlc3QwDIIKdDEw\nOTMudGVzdDAMggp0MTA5NC50ZXN0MAyCCnQxMDk1LnRlc3QwDIIKdDEwOTYudGVz\ndDAMggp0MTA5Ny50ZXN0MAyCCnQxMDk4LnRlc3QwDIIKdDEwOTkudGVzdDAMggp0\nMTEwMC50ZXN0MAyCCnQxMTAxLnRlc3QwDIIKdDExMDIudGVzdDAMggp0MTEwMy50\nZXN0MAyCCnQxMTA0LnRlc3QwDIIKdDExMDUudGVzdDAMggp0MTEwNi50ZXN0MAyC\nCnQxMTA3LnRlc3QwDIIKdDExMDgudGVzdDAMggp0MTEwOS50ZXN0MAyCCnQxMTEw\nLnRlc3QwDIIKdDExMTEudGVzdDAMggp0MTExMi50ZXN0MAyCCnQxMTEzLnRlc3Qw\nDIIKdDExMTQudGVzdDAMggp0MTExNS50ZXN0MAyCCnQxMTE2LnRlc3QwDIIKdDEx\nMTcudGVzdDAMggp0MTExOC50ZXN0MAyCCnQxMTE5LnRlc3QwDIIKdDExMjAudGVz\ndDAMggp0MTEyMS50ZXN0MAyCCnQxMTIyLnRlc3QwDIIKdDExMjMudGVzdDAMggp0\nMTEyNC50ZXN0MAyCCnQxMTI1LnRlc3QwDIIKdDExMjYudGVzdDAMggp0MTEyNy50\nZXN0MAyCCnQxMTI4LnRlc3QwDIIKdDExMjkudGVzdDAMggp0MTEzMC50ZXN0MAyC\nCnQxMTMxLnRlc3QwDIIKdDExMzIudGVzdDAMggp0MTEzMy50ZXN0MAyCCnQxMTM0\nLnRlc3QwDIIKdDExMzUudGVzdDAMggp0MTEzNi50ZXN0MAyCCnQxMTM3LnRlc3Qw\nDIIKdDExMzgudGVzdDAMggp0MTEzOS50ZXN0MAyCCnQxMTQwLnRlc3QwDIIKdDEx\nNDEudGVzdDAMggp0MTE0Mi50ZXN0MAyCCnQxMTQzLnRlc3QwDIIKdDExNDQudGVz\ndDAMggp0MTE0NS50ZXN0MAyCCnQxMTQ2LnRlc3QwDIIKdDExNDcudGVzdDAMggp0\nMTE0OC50ZXN0MAyCCnQxMTQ5LnRlc3QwDIIKdDExNTAudGVzdDAMggp0MTE1MS50\nZXN0MAyCCnQxMTUyLnRlc3QwDIIKdDExNTMudGVzdDAMggp0MTE1NC50ZXN0MAyC\nCnQxMTU1LnRlc3QwDIIKdDExNTYudGVzdDAMggp0MTE1Ny50ZXN0MAyCCnQxMTU4\nLnRlc3QwDIIKdDExNTkudGVzdDAMggp0MTE2MC50ZXN0MAyCCnQxMTYxLnRlc3Qw\nDIIKdDExNjIudGVzdDAMggp0MTE2My50ZXN0MAyCCnQxMTY0LnRlc3QwDIIKdDEx\nNjUudGVzdDAMggp0MTE2Ni50ZXN0MAyCCnQxMTY3LnRlc3QwDIIKdDExNjgudGVz\ndDAMggp0MTE2OS50ZXN0MAyCCnQxMTcwLnRlc3QwDIIKdDExNzEudGVzdDAMggp0\nMTE3Mi50ZXN0MAyCCnQxMTczLnRlc3QwDIIKdDExNzQudGVzdDAMggp0MTE3NS50\nZXN0MAyCCnQxMTc2LnRlc3QwDIIKdDExNzcudGVzdDAMggp0MTE3OC50ZXN0MAyC\nCnQxMTc5LnRlc3QwDIIKdDExODAudGVzdDAMggp0MTE4MS50ZXN0MAyCCnQxMTgy\nLnRlc3QwDIIKdDExODMudGVzdDAMggp0MTE4NC50ZXN0MAyCCnQxMTg1LnRlc3Qw\nDIIKdDExODYudGVzdDAMggp0MTE4Ny50ZXN0MAyCCnQxMTg4LnRlc3QwDIIKdDEx\nODkudGVzdDAMggp0MTE5MC50ZXN0MAyCCnQxMTkxLnRlc3QwDIIKdDExOTIudGVz\ndDAMggp0MTE5My50ZXN0MAyCCnQxMTk0LnRlc3QwDIIKdDExOTUudGVzdDAMggp0\nMTE5Ni50ZXN0MAyCCnQxMTk3LnRlc3QwDIIKdDExOTgudGVzdDAMggp0MTE5OS50\nZXN0MAyCCnQxMjAwLnRlc3QwDIIKdDEyMDEudGVzdDAMggp0MTIwMi50ZXN0MAyC\nCnQxMjAzLnRlc3QwDIIKdDEyMDQudGVzdDAMggp0MTIwNS50ZXN0MAyCCnQxMjA2\nLnRlc3QwDIIKdDEyMDcudGVzdDAMggp0MTIwOC50ZXN0MAyCCnQxMjA5LnRlc3Qw\nDIIKdDEyMTAudGVzdDAMggp0MTIxMS50ZXN0MAyCCnQxMjEyLnRlc3QwDIIKdDEy\nMTMudGVzdDAMggp0MTIxNC50ZXN0MAyCCnQxMjE1LnRlc3QwDIIKdDEyMTYudGVz\ndDAMggp0MTIxNy50ZXN0MAyCCnQxMjE4LnRlc3QwDIIKdDEyMTkudGVzdDAMggp0\nMTIyMC50ZXN0MAyCCnQxMjIxLnRlc3QwDIIKdDEyMjIudGVzdDAMggp0MTIyMy50\nZXN0MAyCCnQxMjI0LnRlc3QwDIIKdDEyMjUudGVzdDAMggp0MTIyNi50ZXN0MAyC\nCnQxMjI3LnRlc3QwDIIKdDEyMjgudGVzdDAMggp0MTIyOS50ZXN0MAyCCnQxMjMw\nLnRlc3QwDIIKdDEyMzEudGVzdDAMggp0MTIzMi50ZXN0MAyCCnQxMjMzLnRlc3Qw\nDIIKdDEyMzQudGVzdDAMggp0MTIzNS50ZXN0MAyCCnQxMjM2LnRlc3QwDIIKdDEy\nMzcudGVzdDAMggp0MTIzOC50ZXN0MAyCCnQxMjM5LnRlc3QwDIIKdDEyNDAudGVz\ndDAMggp0MTI0MS50ZXN0MAyCCnQxMjQyLnRlc3QwDIIKdDEyNDMudGVzdDAMggp0\nMTI0NC50ZXN0MAyCCnQxMjQ1LnRlc3QwDIIKdDEyNDYudGVzdDAMggp0MTI0Ny50\nZXN0MAyCCnQxMjQ4LnRlc3QwDIIKdDEyNDkudGVzdDAMggp0MTI1MC50ZXN0MAyC\nCnQxMjUxLnRlc3QwDIIKdDEyNTIudGVzdDAMggp0MTI1My50ZXN0MAyCCnQxMjU0\nLnRlc3QwDIIKdDEyNTUudGVzdDAMggp0MTI1Ni50ZXN0MAyCCnQxMjU3LnRlc3Qw\nDIIKdDEyNTgudGVzdDAMggp0MTI1OS50ZXN0MAyCCnQxMjYwLnRlc3QwDIIKdDEy\nNjEudGVzdDAMggp0MTI2Mi50ZXN0MAyCCnQxMjYzLnRlc3QwDIIKdDEyNjQudGVz\ndDAMggp0MTI2NS50ZXN0MAyCCnQxMjY2LnRlc3QwDIIKdDEyNjcudGVzdDAMggp0\nMTI2OC50ZXN0MAyCCnQxMjY5LnRlc3QwDIIKdDEyNzAudGVzdDAMggp0MTI3MS50\nZXN0MAyCCnQxMjcyLnRlc3QwDIIKdDEyNzMudGVzdDAMggp0MTI3NC50ZXN0MAyC\nCnQxMjc1LnRlc3QwDIIKdDEyNzYudGVzdDAMggp0MTI3Ny50ZXN0MAyCCnQxMjc4\nLnRlc3QwDIIKdDEyNzkudGVzdDAMggp0MTI4MC50ZXN0MAyCCnQxMjgxLnRlc3Qw\nDIIKdDEyODIudGVzdDAMggp0MTI4My50ZXN0MAyCCnQxMjg0LnRlc3QwDIIKdDEy\nODUudGVzdDAMggp0MTI4Ni50ZXN0MAyCCnQxMjg3LnRlc3QwDIIKdDEyODgudGVz\ndDAMggp0MTI4OS50ZXN0MAyCCnQxMjkwLnRlc3QwDIIKdDEyOTEudGVzdDAMggp0\nMTI5Mi50ZXN0MAyCCnQxMjkzLnRlc3QwDIIKdDEyOTQudGVzdDAMggp0MTI5NS50\nZXN0MAyCCnQxMjk2LnRlc3QwDIIKdDEyOTcudGVzdDAMggp0MTI5OC50ZXN0MAyC\nCnQxMjk5LnRlc3QwDIIKdDEzMDAudGVzdDAMggp0MTMwMS50ZXN0MAyCCnQxMzAy\nLnRlc3QwDIIKdDEzMDMudGVzdDAMggp0MTMwNC50ZXN0MAyCCnQxMzA1LnRlc3Qw\nDIIKdDEzMDYudGVzdDAMggp0MTMwNy50ZXN0MAyCCnQxMzA4LnRlc3QwDIIKdDEz\nMDkudGVzdDAMggp0MTMxMC50ZXN0MAyCCnQxMzExLnRlc3QwDIIKdDEzMTIudGVz\ndDAMggp0MTMxMy50ZXN0MAyCCnQxMzE0LnRlc3QwDIIKdDEzMTUudGVzdDAMggp0\nMTMxNi50ZXN0MAyCCnQxMzE3LnRlc3QwDIIKdDEzMTgudGVzdDAMggp0MTMxOS50\nZXN0MAyCCnQxMzIwLnRlc3QwDIIKdDEzMjEudGVzdDAMggp0MTMyMi50ZXN0MAyC\nCnQxMzIzLnRlc3QwDIIKdDEzMjQudGVzdDAMggp0MTMyNS50ZXN0MAyCCnQxMzI2\nLnRlc3QwDIIKdDEzMjcudGVzdDAMggp0MTMyOC50ZXN0MAyCCnQxMzI5LnRlc3Qw\nDIIKdDEzMzAudGVzdDAMggp0MTMzMS50ZXN0MAyCCnQxMzMyLnRlc3QwDIIKdDEz\nMzMudGVzdDAMggp0MTMzNC50ZXN0MAyCCnQxMzM1LnRlc3QwDIIKdDEzMzYudGVz\ndDAMggp0MTMzNy50ZXN0MAyCCnQxMzM4LnRlc3QwDIIKdDEzMzkudGVzdDAMggp0\nMTM0MC50ZXN0MAyCCnQxMzQxLnRlc3QwDIIKdDEzNDIudGVzdDAMggp0MTM0My50\nZXN0MAyCCnQxMzQ0LnRlc3QwDIIKdDEzNDUudGVzdDAMggp0MTM0Ni50ZXN0MAyC\nCnQxMzQ3LnRlc3QwDIIKdDEzNDgudGVzdDAMggp0MTM0OS50ZXN0MAyCCnQxMzUw\nLnRlc3QwDIIKdDEzNTEudGVzdDAMggp0MTM1Mi50ZXN0MAyCCnQxMzUzLnRlc3Qw\nDIIKdDEzNTQudGVzdDAMggp0MTM1NS50ZXN0MAyCCnQxMzU2LnRlc3QwDIIKdDEz\nNTcudGVzdDAMggp0MTM1OC50ZXN0MAyCCnQxMzU5LnRlc3QwDIIKdDEzNjAudGVz\ndDAMggp0MTM2MS50ZXN0MAyCCnQxMzYyLnRlc3QwDIIKdDEzNjMudGVzdDAMggp0\nMTM2NC50ZXN0MAyCCnQxMzY1LnRlc3QwDIIKdDEzNjYudGVzdDAMggp0MTM2Ny50\nZXN0MAyCCnQxMzY4LnRlc3QwDIIKdDEzNjkudGVzdDAMggp0MTM3MC50ZXN0MAyC\nCnQxMzcxLnRlc3QwDIIKdDEzNzIudGVzdDAMggp0MTM3My50ZXN0MAyCCnQxMzc0\nLnRlc3QwDIIKdDEzNzUudGVzdDAMggp0MTM3Ni50ZXN0MAyCCnQxMzc3LnRlc3Qw\nDIIKdDEzNzgudGVzdDAMggp0MTM3OS50ZXN0MAyCCnQxMzgwLnRlc3QwDIIKdDEz\nODEudGVzdDAMggp0MTM4Mi50ZXN0MAyCCnQxMzgzLnRlc3QwDIIKdDEzODQudGVz\ndDAMggp0MTM4NS50ZXN0MAyCCnQxMzg2LnRlc3QwDIIKdDEzODcudGVzdDAMggp0\nMTM4OC50ZXN0MAyCCnQxMzg5LnRlc3QwDIIKdDEzOTAudGVzdDAMggp0MTM5MS50\nZXN0MAyCCnQxMzkyLnRlc3QwDIIKdDEzOTMudGVzdDAMggp0MTM5NC50ZXN0MAyC\nCnQxMzk1LnRlc3QwDIIKdDEzOTYudGVzdDAMggp0MTM5Ny50ZXN0MAyCCnQxMzk4\nLnRlc3QwDIIKdDEzOTkudGVzdDAMggp0MTQwMC50ZXN0MAyCCnQxNDAxLnRlc3Qw\nDIIKdDE0MDIudGVzdDAMggp0MTQwMy50ZXN0MAyCCnQxNDA0LnRlc3QwDIIKdDE0\nMDUudGVzdDAMggp0MTQwNi50ZXN0MAyCCnQxNDA3LnRlc3QwDIIKdDE0MDgudGVz\ndDAMggp0MTQwOS50ZXN0MAyCCnQxNDEwLnRlc3QwDIIKdDE0MTEudGVzdDAMggp0\nMTQxMi50ZXN0MAyCCnQxNDEzLnRlc3QwDIIKdDE0MTQudGVzdDAMggp0MTQxNS50\nZXN0MAyCCnQxNDE2LnRlc3QwDIIKdDE0MTcudGVzdDAMggp0MTQxOC50ZXN0MAyC\nCnQxNDE5LnRlc3QwDIIKdDE0MjAudGVzdDAMggp0MTQyMS50ZXN0MAyCCnQxNDIy\nLnRlc3QwDIIKdDE0MjMudGVzdDAMggp0MTQyNC50ZXN0MAyCCnQxNDI1LnRlc3Qw\nDIIKdDE0MjYudGVzdDAMggp0MTQyNy50ZXN0MAyCCnQxNDI4LnRlc3QwDIIKdDE0\nMjkudGVzdDAMggp0MTQzMC50ZXN0MAyCCnQxNDMxLnRlc3QwDIIKdDE0MzIudGVz\ndDAMggp0MTQzMy50ZXN0MAyCCnQxNDM0LnRlc3QwDIIKdDE0MzUudGVzdDAMggp0\nMTQzNi50ZXN0MAyCCnQxNDM3LnRlc3QwDIIKdDE0MzgudGVzdDAMggp0MTQzOS50\nZXN0MAyCCnQxNDQwLnRlc3QwDIIKdDE0NDEudGVzdDAMggp0MTQ0Mi50ZXN0MAyC\nCnQxNDQzLnRlc3QwDIIKdDE0NDQudGVzdDAMggp0MTQ0NS50ZXN0MAyCCnQxNDQ2\nLnRlc3QwDIIKdDE0NDcudGVzdDAMggp0MTQ0OC50ZXN0MAyCCnQxNDQ5LnRlc3Qw\nDIIKdDE0NTAudGVzdDAMggp0MTQ1MS50ZXN0MAyCCnQxNDUyLnRlc3QwDIIKdDE0\nNTMudGVzdDAMggp0MTQ1NC50ZXN0MAyCCnQxNDU1LnRlc3QwDIIKdDE0NTYudGVz\ndDAMggp0MTQ1Ny50ZXN0MAyCCnQxNDU4LnRlc3QwDIIKdDE0NTkudGVzdDAMggp0\nMTQ2MC50ZXN0MAyCCnQxNDYxLnRlc3QwDIIKdDE0NjIudGVzdDAMggp0MTQ2My50\nZXN0MAyCCnQxNDY0LnRlc3QwDIIKdDE0NjUudGVzdDAMggp0MTQ2Ni50ZXN0MAyC\nCnQxNDY3LnRlc3QwDIIKdDE0NjgudGVzdDAMggp0MTQ2OS50ZXN0MAyCCnQxNDcw\nLnRlc3QwDIIKdDE0NzEudGVzdDAMggp0MTQ3Mi50ZXN0MAyCCnQxNDczLnRlc3Qw\nDIIKdDE0NzQudGVzdDAMggp0MTQ3NS50ZXN0MAyCCnQxNDc2LnRlc3QwDIIKdDE0\nNzcudGVzdDAMggp0MTQ3OC50ZXN0MAyCCnQxNDc5LnRlc3QwDIIKdDE0ODAudGVz\ndDAMggp0MTQ4MS50ZXN0MAyCCnQxNDgyLnRlc3QwDIIKdDE0ODMudGVzdDAMggp0\nMTQ4NC50ZXN0MAyCCnQxNDg1LnRlc3QwDIIKdDE0ODYudGVzdDAMggp0MTQ4Ny50\nZXN0MAyCCnQxNDg4LnRlc3QwDIIKdDE0ODkudGVzdDAMggp0MTQ5MC50ZXN0MAyC\nCnQxNDkxLnRlc3QwDIIKdDE0OTIudGVzdDAMggp0MTQ5My50ZXN0MAyCCnQxNDk0\nLnRlc3QwDIIKdDE0OTUudGVzdDAMggp0MTQ5Ni50ZXN0MAyCCnQxNDk3LnRlc3Qw\nDIIKdDE0OTgudGVzdDAMggp0MTQ5OS50ZXN0MAyCCnQxNTAwLnRlc3QwDIIKdDE1\nMDEudGVzdDAMggp0MTUwMi50ZXN0MAyCCnQxNTAzLnRlc3QwDIIKdDE1MDQudGVz\ndDAMggp0MTUwNS50ZXN0MAyCCnQxNTA2LnRlc3QwDIIKdDE1MDcudGVzdDAMggp0\nMTUwOC50ZXN0MAyCCnQxNTA5LnRlc3QwDIIKdDE1MTAudGVzdDAMggp0MTUxMS50\nZXN0MAyCCnQxNTEyLnRlc3QwDIIKdDE1MTMudGVzdDAMggp0MTUxNC50ZXN0MAyC\nCnQxNTE1LnRlc3QwDIIKdDE1MTYudGVzdDAMggp0MTUxNy50ZXN0MAyCCnQxNTE4\nLnRlc3QwDIIKdDE1MTkudGVzdDAMggp0MTUyMC50ZXN0MAyCCnQxNTIxLnRlc3Qw\nDIIKdDE1MjIudGVzdDAMggp0MTUyMy50ZXN0MAyCCnQxNTI0LnRlc3QwDIIKdDE1\nMjUudGVzdDAMggp0MTUyNi50ZXN0MAyCCnQxNTI3LnRlc3QwDIIKdDE1MjgudGVz\ndDAMggp0MTUyOS50ZXN0MAyCCnQxNTMwLnRlc3QwDIIKdDE1MzEudGVzdDAMggp0\nMTUzMi50ZXN0MAyCCnQxNTMzLnRlc3QwDIIKdDE1MzQudGVzdDAMggp0MTUzNS50\nZXN0MAyCCnQxNTM2LnRlc3QwDIIKdDE1MzcudGVzdDAMggp0MTUzOC50ZXN0MAyC\nCnQxNTM5LnRlc3QwDIIKdDE1NDAudGVzdDAMggp0MTU0MS50ZXN0MAyCCnQxNTQy\nLnRlc3QwDIIKdDE1NDMudGVzdDAMggp0MTU0NC50ZXN0MAyCCnQxNTQ1LnRlc3Qw\nDIIKdDE1NDYudGVzdDAMggp0MTU0Ny50ZXN0MAyCCnQxNTQ4LnRlc3QwDIIKdDE1\nNDkudGVzdDAMggp0MTU1MC50ZXN0MAyCCnQxNTUxLnRlc3QwDIIKdDE1NTIudGVz\ndDAMggp0MTU1My50ZXN0MAyCCnQxNTU0LnRlc3QwDIIKdDE1NTUudGVzdDAMggp0\nMTU1Ni50ZXN0MAyCCnQxNTU3LnRlc3QwDIIKdDE1NTgudGVzdDAMggp0MTU1OS50\nZXN0MAyCCnQxNTYwLnRlc3QwDIIKdDE1NjEudGVzdDAMggp0MTU2Mi50ZXN0MAyC\nCnQxNTYzLnRlc3QwDIIKdDE1NjQudGVzdDAMggp0MTU2NS50ZXN0MAyCCnQxNTY2\nLnRlc3QwDIIKdDE1NjcudGVzdDAMggp0MTU2OC50ZXN0MAyCCnQxNTY5LnRlc3Qw\nDIIKdDE1NzAudGVzdDAMggp0MTU3MS50ZXN0MAyCCnQxNTcyLnRlc3QwDIIKdDE1\nNzMudGVzdDAMggp0MTU3NC50ZXN0MAyCCnQxNTc1LnRlc3QwDIIKdDE1NzYudGVz\ndDAMggp0MTU3Ny50ZXN0MAyCCnQxNTc4LnRlc3QwDIIKdDE1NzkudGVzdDAMggp0\nMTU4MC50ZXN0MAyCCnQxNTgxLnRlc3QwDIIKdDE1ODIudGVzdDAMggp0MTU4My50\nZXN0MAyCCnQxNTg0LnRlc3QwDIIKdDE1ODUudGVzdDAMggp0MTU4Ni50ZXN0MAyC\nCnQxNTg3LnRlc3QwDIIKdDE1ODgudGVzdDAMggp0MTU4OS50ZXN0MAyCCnQxNTkw\nLnRlc3QwDIIKdDE1OTEudGVzdDAMggp0MTU5Mi50ZXN0MAyCCnQxNTkzLnRlc3Qw\nDIIKdDE1OTQudGVzdDAMggp0MTU5NS50ZXN0MAyCCnQxNTk2LnRlc3QwDIIKdDE1\nOTcudGVzdDAMggp0MTU5OC50ZXN0MAyCCnQxNTk5LnRlc3QwDIIKdDE2MDAudGVz\ndDAMggp0MTYwMS50ZXN0MAyCCnQxNjAyLnRlc3QwDIIKdDE2MDMudGVzdDAMggp0\nMTYwNC50ZXN0MAyCCnQxNjA1LnRlc3QwDIIKdDE2MDYudGVzdDAMggp0MTYwNy50\nZXN0MAyCCnQxNjA4LnRlc3QwDIIKdDE2MDkudGVzdDAMggp0MTYxMC50ZXN0MAyC\nCnQxNjExLnRlc3QwDIIKdDE2MTIudGVzdDAMggp0MTYxMy50ZXN0MAyCCnQxNjE0\nLnRlc3QwDIIKdDE2MTUudGVzdDAMggp0MTYxNi50ZXN0MAyCCnQxNjE3LnRlc3Qw\nDIIKdDE2MTgudGVzdDAMggp0MTYxOS50ZXN0MAyCCnQxNjIwLnRlc3QwDIIKdDE2\nMjEudGVzdDAMggp0MTYyMi50ZXN0MAyCCnQxNjIzLnRlc3QwDIIKdDE2MjQudGVz\ndDAMggp0MTYyNS50ZXN0MAyCCnQxNjI2LnRlc3QwDIIKdDE2MjcudGVzdDAMggp0\nMTYyOC50ZXN0MAyCCnQxNjI5LnRlc3QwDIIKdDE2MzAudGVzdDAMggp0MTYzMS50\nZXN0MAyCCnQxNjMyLnRlc3QwDIIKdDE2MzMudGVzdDAMggp0MTYzNC50ZXN0MAyC\nCnQxNjM1LnRlc3QwDIIKdDE2MzYudGVzdDAMggp0MTYzNy50ZXN0MAyCCnQxNjM4\nLnRlc3QwDIIKdDE2MzkudGVzdDAMggp0MTY0MC50ZXN0MAyCCnQxNjQxLnRlc3Qw\nDIIKdDE2NDIudGVzdDAMggp0MTY0My50ZXN0MAyCCnQxNjQ0LnRlc3QwDIIKdDE2\nNDUudGVzdDAMggp0MTY0Ni50ZXN0MAyCCnQxNjQ3LnRlc3QwDIIKdDE2NDgudGVz\ndDAMggp0MTY0OS50ZXN0MAyCCnQxNjUwLnRlc3QwDIIKdDE2NTEudGVzdDAMggp0\nMTY1Mi50ZXN0MAyCCnQxNjUzLnRlc3QwDIIKdDE2NTQudGVzdDAMggp0MTY1NS50\nZXN0MAyCCnQxNjU2LnRlc3QwDIIKdDE2NTcudGVzdDAMggp0MTY1OC50ZXN0MAyC\nCnQxNjU5LnRlc3QwDIIKdDE2NjAudGVzdDAMggp0MTY2MS50ZXN0MAyCCnQxNjYy\nLnRlc3QwDIIKdDE2NjMudGVzdDAMggp0MTY2NC50ZXN0MAyCCnQxNjY1LnRlc3Qw\nDIIKdDE2NjYudGVzdDAMggp0MTY2Ny50ZXN0MAyCCnQxNjY4LnRlc3QwDIIKdDE2\nNjkudGVzdDAMggp0MTY3MC50ZXN0MAyCCnQxNjcxLnRlc3QwDIIKdDE2NzIudGVz\ndDAMggp0MTY3My50ZXN0MAyCCnQxNjc0LnRlc3QwDIIKdDE2NzUudGVzdDAMggp0\nMTY3Ni50ZXN0MAyCCnQxNjc3LnRlc3QwDIIKdDE2NzgudGVzdDAMggp0MTY3OS50\nZXN0MAyCCnQxNjgwLnRlc3QwDIIKdDE2ODEudGVzdDAMggp0MTY4Mi50ZXN0MAyC\nCnQxNjgzLnRlc3QwDIIKdDE2ODQudGVzdDAMggp0MTY4NS50ZXN0MAyCCnQxNjg2\nLnRlc3QwDIIKdDE2ODcudGVzdDAMggp0MTY4OC50ZXN0MAyCCnQxNjg5LnRlc3Qw\nDIIKdDE2OTAudGVzdDAMggp0MTY5MS50ZXN0MAyCCnQxNjkyLnRlc3QwDIIKdDE2\nOTMudGVzdDAMggp0MTY5NC50ZXN0MAyCCnQxNjk1LnRlc3QwDIIKdDE2OTYudGVz\ndDAMggp0MTY5Ny50ZXN0MAyCCnQxNjk4LnRlc3QwDIIKdDE2OTkudGVzdDAMggp0\nMTcwMC50ZXN0MAyCCnQxNzAxLnRlc3QwDIIKdDE3MDIudGVzdDAMggp0MTcwMy50\nZXN0MAyCCnQxNzA0LnRlc3QwDIIKdDE3MDUudGVzdDAMggp0MTcwNi50ZXN0MAyC\nCnQxNzA3LnRlc3QwDIIKdDE3MDgudGVzdDAMggp0MTcwOS50ZXN0MAyCCnQxNzEw\nLnRlc3QwDIIKdDE3MTEudGVzdDAMggp0MTcxMi50ZXN0MAyCCnQxNzEzLnRlc3Qw\nDIIKdDE3MTQudGVzdDAMggp0MTcxNS50ZXN0MAyCCnQxNzE2LnRlc3QwDIIKdDE3\nMTcudGVzdDAMggp0MTcxOC50ZXN0MAyCCnQxNzE5LnRlc3QwDIIKdDE3MjAudGVz\ndDAMggp0MTcyMS50ZXN0MAyCCnQxNzIyLnRlc3QwDIIKdDE3MjMudGVzdDAMggp0\nMTcyNC50ZXN0MAyCCnQxNzI1LnRlc3QwDIIKdDE3MjYudGVzdDAMggp0MTcyNy50\nZXN0MAyCCnQxNzI4LnRlc3QwDIIKdDE3MjkudGVzdDAMggp0MTczMC50ZXN0MAyC\nCnQxNzMxLnRlc3QwDIIKdDE3MzIudGVzdDAMggp0MTczMy50ZXN0MAyCCnQxNzM0\nLnRlc3QwDIIKdDE3MzUudGVzdDAMggp0MTczNi50ZXN0MAyCCnQxNzM3LnRlc3Qw\nDIIKdDE3MzgudGVzdDAMggp0MTczOS50ZXN0MAyCCnQxNzQwLnRlc3QwDIIKdDE3\nNDEudGVzdDAMggp0MTc0Mi50ZXN0MAyCCnQxNzQzLnRlc3QwDIIKdDE3NDQudGVz\ndDAMggp0MTc0NS50ZXN0MAyCCnQxNzQ2LnRlc3QwDIIKdDE3NDcudGVzdDAMggp0\nMTc0OC50ZXN0MAyCCnQxNzQ5LnRlc3QwDIIKdDE3NTAudGVzdDAMggp0MTc1MS50\nZXN0MAyCCnQxNzUyLnRlc3QwDIIKdDE3NTMudGVzdDAMggp0MTc1NC50ZXN0MAyC\nCnQxNzU1LnRlc3QwDIIKdDE3NTYudGVzdDAMggp0MTc1Ny50ZXN0MAyCCnQxNzU4\nLnRlc3QwDIIKdDE3NTkudGVzdDAMggp0MTc2MC50ZXN0MAyCCnQxNzYxLnRlc3Qw\nDIIKdDE3NjIudGVzdDAMggp0MTc2My50ZXN0MAyCCnQxNzY0LnRlc3QwDIIKdDE3\nNjUudGVzdDAMggp0MTc2Ni50ZXN0MAyCCnQxNzY3LnRlc3QwDIIKdDE3NjgudGVz\ndDAMggp0MTc2OS50ZXN0MAyCCnQxNzcwLnRlc3QwDIIKdDE3NzEudGVzdDAMggp0\nMTc3Mi50ZXN0MAyCCnQxNzczLnRlc3QwDIIKdDE3NzQudGVzdDAMggp0MTc3NS50\nZXN0MAyCCnQxNzc2LnRlc3QwDIIKdDE3NzcudGVzdDAMggp0MTc3OC50ZXN0MAyC\nCnQxNzc5LnRlc3QwDIIKdDE3ODAudGVzdDAMggp0MTc4MS50ZXN0MAyCCnQxNzgy\nLnRlc3QwDIIKdDE3ODMudGVzdDAMggp0MTc4NC50ZXN0MAyCCnQxNzg1LnRlc3Qw\nDIIKdDE3ODYudGVzdDAMggp0MTc4Ny50ZXN0MAyCCnQxNzg4LnRlc3QwDIIKdDE3\nODkudGVzdDAMggp0MTc5MC50ZXN0MAyCCnQxNzkxLnRlc3QwDIIKdDE3OTIudGVz\ndDAMggp0MTc5My50ZXN0MAyCCnQxNzk0LnRlc3QwDIIKdDE3OTUudGVzdDAMggp0\nMTc5Ni50ZXN0MAyCCnQxNzk3LnRlc3QwDIIKdDE3OTgudGVzdDAMggp0MTc5OS50\nZXN0MAyCCnQxODAwLnRlc3QwDIIKdDE4MDEudGVzdDAMggp0MTgwMi50ZXN0MAyC\nCnQxODAzLnRlc3QwDIIKdDE4MDQudGVzdDAMggp0MTgwNS50ZXN0MAyCCnQxODA2\nLnRlc3QwDIIKdDE4MDcudGVzdDAMggp0MTgwOC50ZXN0MAyCCnQxODA5LnRlc3Qw\nDIIKdDE4MTAudGVzdDAMggp0MTgxMS50ZXN0MAyCCnQxODEyLnRlc3QwDIIKdDE4\nMTMudGVzdDAMggp0MTgxNC50ZXN0MAyCCnQxODE1LnRlc3QwDIIKdDE4MTYudGVz\ndDAMggp0MTgxNy50ZXN0MAyCCnQxODE4LnRlc3QwDIIKdDE4MTkudGVzdDAMggp0\nMTgyMC50ZXN0MAyCCnQxODIxLnRlc3QwDIIKdDE4MjIudGVzdDAMggp0MTgyMy50\nZXN0MAyCCnQxODI0LnRlc3QwDIIKdDE4MjUudGVzdDAMggp0MTgyNi50ZXN0MAyC\nCnQxODI3LnRlc3QwDIIKdDE4MjgudGVzdDAMggp0MTgyOS50ZXN0MAyCCnQxODMw\nLnRlc3QwDIIKdDE4MzEudGVzdDAMggp0MTgzMi50ZXN0MAyCCnQxODMzLnRlc3Qw\nDIIKdDE4MzQudGVzdDAMggp0MTgzNS50ZXN0MAyCCnQxODM2LnRlc3QwDIIKdDE4\nMzcudGVzdDAMggp0MTgzOC50ZXN0MAyCCnQxODM5LnRlc3QwDIIKdDE4NDAudGVz\ndDAMggp0MTg0MS50ZXN0MAyCCnQxODQyLnRlc3QwDIIKdDE4NDMudGVzdDAMggp0\nMTg0NC50ZXN0MAyCCnQxODQ1LnRlc3QwDIIKdDE4NDYudGVzdDAMggp0MTg0Ny50\nZXN0MAyCCnQxODQ4LnRlc3QwDIIKdDE4NDkudGVzdDAMggp0MTg1MC50ZXN0MAyC\nCnQxODUxLnRlc3QwDIIKdDE4NTIudGVzdDAMggp0MTg1My50ZXN0MAyCCnQxODU0\nLnRlc3QwDIIKdDE4NTUudGVzdDAMggp0MTg1Ni50ZXN0MAyCCnQxODU3LnRlc3Qw\nDIIKdDE4NTgudGVzdDAMggp0MTg1OS50ZXN0MAyCCnQxODYwLnRlc3QwDIIKdDE4\nNjEudGVzdDAMggp0MTg2Mi50ZXN0MAyCCnQxODYzLnRlc3QwDIIKdDE4NjQudGVz\ndDAMggp0MTg2NS50ZXN0MAyCCnQxODY2LnRlc3QwDIIKdDE4NjcudGVzdDAMggp0\nMTg2OC50ZXN0MAyCCnQxODY5LnRlc3QwDIIKdDE4NzAudGVzdDAMggp0MTg3MS50\nZXN0MAyCCnQxODcyLnRlc3QwDIIKdDE4NzMudGVzdDAMggp0MTg3NC50ZXN0MAyC\nCnQxODc1LnRlc3QwDIIKdDE4NzYudGVzdDAMggp0MTg3Ny50ZXN0MAyCCnQxODc4\nLnRlc3QwDIIKdDE4NzkudGVzdDAMggp0MTg4MC50ZXN0MAyCCnQxODgxLnRlc3Qw\nDIIKdDE4ODIudGVzdDAMggp0MTg4My50ZXN0MAyCCnQxODg0LnRlc3QwDIIKdDE4\nODUudGVzdDAMggp0MTg4Ni50ZXN0MAyCCnQxODg3LnRlc3QwDIIKdDE4ODgudGVz\ndDAMggp0MTg4OS50ZXN0MAyCCnQxODkwLnRlc3QwDIIKdDE4OTEudGVzdDAMggp0\nMTg5Mi50ZXN0MAyCCnQxODkzLnRlc3QwDIIKdDE4OTQudGVzdDAMggp0MTg5NS50\nZXN0MAyCCnQxODk2LnRlc3QwDIIKdDE4OTcudGVzdDAMggp0MTg5OC50ZXN0MAyC\nCnQxODk5LnRlc3QwDIIKdDE5MDAudGVzdDAMggp0MTkwMS50ZXN0MAyCCnQxOTAy\nLnRlc3QwDIIKdDE5MDMudGVzdDAMggp0MTkwNC50ZXN0MAyCCnQxOTA1LnRlc3Qw\nDIIKdDE5MDYudGVzdDAMggp0MTkwNy50ZXN0MAyCCnQxOTA4LnRlc3QwDIIKdDE5\nMDkudGVzdDAMggp0MTkxMC50ZXN0MAyCCnQxOTExLnRlc3QwDIIKdDE5MTIudGVz\ndDAMggp0MTkxMy50ZXN0MAyCCnQxOTE0LnRlc3QwDIIKdDE5MTUudGVzdDAMggp0\nMTkxNi50ZXN0MAyCCnQxOTE3LnRlc3QwDIIKdDE5MTgudGVzdDAMggp0MTkxOS50\nZXN0MAyCCnQxOTIwLnRlc3QwDIIKdDE5MjEudGVzdDAMggp0MTkyMi50ZXN0MAyC\nCnQxOTIzLnRlc3QwDIIKdDE5MjQudGVzdDAMggp0MTkyNS50ZXN0MAyCCnQxOTI2\nLnRlc3QwDIIKdDE5MjcudGVzdDAMggp0MTkyOC50ZXN0MAyCCnQxOTI5LnRlc3Qw\nDIIKdDE5MzAudGVzdDAMggp0MTkzMS50ZXN0MAyCCnQxOTMyLnRlc3QwDIIKdDE5\nMzMudGVzdDAMggp0MTkzNC50ZXN0MAyCCnQxOTM1LnRlc3QwDIIKdDE5MzYudGVz\ndDAMggp0MTkzNy50ZXN0MAyCCnQxOTM4LnRlc3QwDIIKdDE5MzkudGVzdDAMggp0\nMTk0MC50ZXN0MAyCCnQxOTQxLnRlc3QwDIIKdDE5NDIudGVzdDAMggp0MTk0My50\nZXN0MAyCCnQxOTQ0LnRlc3QwDIIKdDE5NDUudGVzdDAMggp0MTk0Ni50ZXN0MAyC\nCnQxOTQ3LnRlc3QwDIIKdDE5NDgudGVzdDAMggp0MTk0OS50ZXN0MAyCCnQxOTUw\nLnRlc3QwDIIKdDE5NTEudGVzdDAMggp0MTk1Mi50ZXN0MAyCCnQxOTUzLnRlc3Qw\nDIIKdDE5NTQudGVzdDAMggp0MTk1NS50ZXN0MAyCCnQxOTU2LnRlc3QwDIIKdDE5\nNTcudGVzdDAMggp0MTk1OC50ZXN0MAyCCnQxOTU5LnRlc3QwDIIKdDE5NjAudGVz\ndDAMggp0MTk2MS50ZXN0MAyCCnQxOTYyLnRlc3QwDIIKdDE5NjMudGVzdDAMggp0\nMTk2NC50ZXN0MAyCCnQxOTY1LnRlc3QwDIIKdDE5NjYudGVzdDAMggp0MTk2Ny50\nZXN0MAyCCnQxOTY4LnRlc3QwDIIKdDE5NjkudGVzdDAMggp0MTk3MC50ZXN0MAyC\nCnQxOTcxLnRlc3QwDIIKdDE5NzIudGVzdDAMggp0MTk3My50ZXN0MAyCCnQxOTc0\nLnRlc3QwDIIKdDE5NzUudGVzdDAMggp0MTk3Ni50ZXN0MAyCCnQxOTc3LnRlc3Qw\nDIIKdDE5NzgudGVzdDAMggp0MTk3OS50ZXN0MAyCCnQxOTgwLnRlc3QwDIIKdDE5\nODEudGVzdDAMggp0MTk4Mi50ZXN0MAyCCnQxOTgzLnRlc3QwDIIKdDE5ODQudGVz\ndDAMggp0MTk4NS50ZXN0MAyCCnQxOTg2LnRlc3QwDIIKdDE5ODcudGVzdDAMggp0\nMTk4OC50ZXN0MAyCCnQxOTg5LnRlc3QwDIIKdDE5OTAudGVzdDAMggp0MTk5MS50\nZXN0MAyCCnQxOTkyLnRlc3QwDIIKdDE5OTMudGVzdDAMggp0MTk5NC50ZXN0MAyC\nCnQxOTk1LnRlc3QwDIIKdDE5OTYudGVzdDAMggp0MTk5Ny50ZXN0MAyCCnQxOTk4\nLnRlc3QwDIIKdDE5OTkudGVzdDAMggp0MjAwMC50ZXN0MAyCCnQyMDAxLnRlc3Qw\nDIIKdDIwMDIudGVzdDAMggp0MjAwMy50ZXN0MAyCCnQyMDA0LnRlc3QwDIIKdDIw\nMDUudGVzdDAMggp0MjAwNi50ZXN0MAyCCnQyMDA3LnRlc3QwDIIKdDIwMDgudGVz\ndDAMggp0MjAwOS50ZXN0MAyCCnQyMDEwLnRlc3QwDIIKdDIwMTEudGVzdDAMggp0\nMjAxMi50ZXN0MAyCCnQyMDEzLnRlc3QwDIIKdDIwMTQudGVzdDAMggp0MjAxNS50\nZXN0MAyCCnQyMDE2LnRlc3QwDIIKdDIwMTcudGVzdDAMggp0MjAxOC50ZXN0MAyC\nCnQyMDE5LnRlc3QwDIIKdDIwMjAudGVzdDAMggp0MjAyMS50ZXN0MAyCCnQyMDIy\nLnRlc3QwDIIKdDIwMjMudGVzdDAMggp0MjAyNC50ZXN0MAyCCnQyMDI1LnRlc3Qw\nDIIKdDIwMjYudGVzdDAMggp0MjAyNy50ZXN0MAyCCnQyMDI4LnRlc3QwDIIKdDIw\nMjkudGVzdDAMggp0MjAzMC50ZXN0MAyCCnQyMDMxLnRlc3QwDIIKdDIwMzIudGVz\ndDAMggp0MjAzMy50ZXN0MAyCCnQyMDM0LnRlc3QwDIIKdDIwMzUudGVzdDAMggp0\nMjAzNi50ZXN0MAyCCnQyMDM3LnRlc3QwDIIKdDIwMzgudGVzdDAMggp0MjAzOS50\nZXN0MAyCCnQyMDQwLnRlc3QwDIIKdDIwNDEudGVzdDAMggp0MjA0Mi50ZXN0MAyC\nCnQyMDQzLnRlc3QwDIIKdDIwNDQudGVzdDAMggp0MjA0NS50ZXN0MAyCCnQyMDQ2\nLnRlc3QwDIIKdDIwNDcudGVzdDAGggR0ZXN0oYJrqjAJggd4MC50ZXN0MAmCB3gx\nLnRlc3QwCYIHeDIudGVzdDAJggd4My50ZXN0MAmCB3g0LnRlc3QwCYIHeDUudGVz\ndDAJggd4Ni50ZXN0MAmCB3g3LnRlc3QwCYIHeDgudGVzdDAJggd4OS50ZXN0MAqC\nCHgxMC50ZXN0MAqCCHgxMS50ZXN0MAqCCHgxMi50ZXN0MAqCCHgxMy50ZXN0MAqC\nCHgxNC50ZXN0MAqCCHgxNS50ZXN0MAqCCHgxNi50ZXN0MAqCCHgxNy50ZXN0MAqC\nCHgxOC50ZXN0MAqCCHgxOS50ZXN0MAqCCHgyMC50ZXN0MAqCCHgyMS50ZXN0MAqC\nCHgyMi50ZXN0MAqCCHgyMy50ZXN0MAqCCHgyNC50ZXN0MAqCCHgyNS50ZXN0MAqC\nCHgyNi50ZXN0MAqCCHgyNy50ZXN0MAqCCHgyOC50ZXN0MAqCCHgyOS50ZXN0MAqC\nCHgzMC50ZXN0MAqCCHgzMS50ZXN0MAqCCHgzMi50ZXN0MAqCCHgzMy50ZXN0MAqC\nCHgzNC50ZXN0MAqCCHgzNS50ZXN0MAqCCHgzNi50ZXN0MAqCCHgzNy50ZXN0MAqC\nCHgzOC50ZXN0MAqCCHgzOS50ZXN0MAqCCHg0MC50ZXN0MAqCCHg0MS50ZXN0MAqC\nCHg0Mi50ZXN0MAqCCHg0My50ZXN0MAqCCHg0NC50ZXN0MAqCCHg0NS50ZXN0MAqC\nCHg0Ni50ZXN0MAqCCHg0Ny50ZXN0MAqCCHg0OC50ZXN0MAqCCHg0OS50ZXN0MAqC\nCHg1MC50ZXN0MAqCCHg1MS50ZXN0MAqCCHg1Mi50ZXN0MAqCCHg1My50ZXN0MAqC\nCHg1NC50ZXN0MAqCCHg1NS50ZXN0MAqCCHg1Ni50ZXN0MAqCCHg1Ny50ZXN0MAqC\nCHg1OC50ZXN0MAqCCHg1OS50ZXN0MAqCCHg2MC50ZXN0MAqCCHg2MS50ZXN0MAqC\nCHg2Mi50ZXN0MAqCCHg2My50ZXN0MAqCCHg2NC50ZXN0MAqCCHg2NS50ZXN0MAqC\nCHg2Ni50ZXN0MAqCCHg2Ny50ZXN0MAqCCHg2OC50ZXN0MAqCCHg2OS50ZXN0MAqC\nCHg3MC50ZXN0MAqCCHg3MS50ZXN0MAqCCHg3Mi50ZXN0MAqCCHg3My50ZXN0MAqC\nCHg3NC50ZXN0MAqCCHg3NS50ZXN0MAqCCHg3Ni50ZXN0MAqCCHg3Ny50ZXN0MAqC\nCHg3OC50ZXN0MAqCCHg3OS50ZXN0MAqCCHg4MC50ZXN0MAqCCHg4MS50ZXN0MAqC\nCHg4Mi50ZXN0MAqCCHg4My50ZXN0MAqCCHg4NC50ZXN0MAqCCHg4NS50ZXN0MAqC\nCHg4Ni50ZXN0MAqCCHg4Ny50ZXN0MAqCCHg4OC50ZXN0MAqCCHg4OS50ZXN0MAqC\nCHg5MC50ZXN0MAqCCHg5MS50ZXN0MAqCCHg5Mi50ZXN0MAqCCHg5My50ZXN0MAqC\nCHg5NC50ZXN0MAqCCHg5NS50ZXN0MAqCCHg5Ni50ZXN0MAqCCHg5Ny50ZXN0MAqC\nCHg5OC50ZXN0MAqCCHg5OS50ZXN0MAuCCXgxMDAudGVzdDALggl4MTAxLnRlc3Qw\nC4IJeDEwMi50ZXN0MAuCCXgxMDMudGVzdDALggl4MTA0LnRlc3QwC4IJeDEwNS50\nZXN0MAuCCXgxMDYudGVzdDALggl4MTA3LnRlc3QwC4IJeDEwOC50ZXN0MAuCCXgx\nMDkudGVzdDALggl4MTEwLnRlc3QwC4IJeDExMS50ZXN0MAuCCXgxMTIudGVzdDAL\nggl4MTEzLnRlc3QwC4IJeDExNC50ZXN0MAuCCXgxMTUudGVzdDALggl4MTE2LnRl\nc3QwC4IJeDExNy50ZXN0MAuCCXgxMTgudGVzdDALggl4MTE5LnRlc3QwC4IJeDEy\nMC50ZXN0MAuCCXgxMjEudGVzdDALggl4MTIyLnRlc3QwC4IJeDEyMy50ZXN0MAuC\nCXgxMjQudGVzdDALggl4MTI1LnRlc3QwC4IJeDEyNi50ZXN0MAuCCXgxMjcudGVz\ndDALggl4MTI4LnRlc3QwC4IJeDEyOS50ZXN0MAuCCXgxMzAudGVzdDALggl4MTMx\nLnRlc3QwC4IJeDEzMi50ZXN0MAuCCXgxMzMudGVzdDALggl4MTM0LnRlc3QwC4IJ\neDEzNS50ZXN0MAuCCXgxMzYudGVzdDALggl4MTM3LnRlc3QwC4IJeDEzOC50ZXN0\nMAuCCXgxMzkudGVzdDALggl4MTQwLnRlc3QwC4IJeDE0MS50ZXN0MAuCCXgxNDIu\ndGVzdDALggl4MTQzLnRlc3QwC4IJeDE0NC50ZXN0MAuCCXgxNDUudGVzdDALggl4\nMTQ2LnRlc3QwC4IJeDE0Ny50ZXN0MAuCCXgxNDgudGVzdDALggl4MTQ5LnRlc3Qw\nC4IJeDE1MC50ZXN0MAuCCXgxNTEudGVzdDALggl4MTUyLnRlc3QwC4IJeDE1My50\nZXN0MAuCCXgxNTQudGVzdDALggl4MTU1LnRlc3QwC4IJeDE1Ni50ZXN0MAuCCXgx\nNTcudGVzdDALggl4MTU4LnRlc3QwC4IJeDE1OS50ZXN0MAuCCXgxNjAudGVzdDAL\nggl4MTYxLnRlc3QwC4IJeDE2Mi50ZXN0MAuCCXgxNjMudGVzdDALggl4MTY0LnRl\nc3QwC4IJeDE2NS50ZXN0MAuCCXgxNjYudGVzdDALggl4MTY3LnRlc3QwC4IJeDE2\nOC50ZXN0MAuCCXgxNjkudGVzdDALggl4MTcwLnRlc3QwC4IJeDE3MS50ZXN0MAuC\nCXgxNzIudGVzdDALggl4MTczLnRlc3QwC4IJeDE3NC50ZXN0MAuCCXgxNzUudGVz\ndDALggl4MTc2LnRlc3QwC4IJeDE3Ny50ZXN0MAuCCXgxNzgudGVzdDALggl4MTc5\nLnRlc3QwC4IJeDE4MC50ZXN0MAuCCXgxODEudGVzdDALggl4MTgyLnRlc3QwC4IJ\neDE4My50ZXN0MAuCCXgxODQudGVzdDALggl4MTg1LnRlc3QwC4IJeDE4Ni50ZXN0\nMAuCCXgxODcudGVzdDALggl4MTg4LnRlc3QwC4IJeDE4OS50ZXN0MAuCCXgxOTAu\ndGVzdDALggl4MTkxLnRlc3QwC4IJeDE5Mi50ZXN0MAuCCXgxOTMudGVzdDALggl4\nMTk0LnRlc3QwC4IJeDE5NS50ZXN0MAuCCXgxOTYudGVzdDALggl4MTk3LnRlc3Qw\nC4IJeDE5OC50ZXN0MAuCCXgxOTkudGVzdDALggl4MjAwLnRlc3QwC4IJeDIwMS50\nZXN0MAuCCXgyMDIudGVzdDALggl4MjAzLnRlc3QwC4IJeDIwNC50ZXN0MAuCCXgy\nMDUudGVzdDALggl4MjA2LnRlc3QwC4IJeDIwNy50ZXN0MAuCCXgyMDgudGVzdDAL\nggl4MjA5LnRlc3QwC4IJeDIxMC50ZXN0MAuCCXgyMTEudGVzdDALggl4MjEyLnRl\nc3QwC4IJeDIxMy50ZXN0MAuCCXgyMTQudGVzdDALggl4MjE1LnRlc3QwC4IJeDIx\nNi50ZXN0MAuCCXgyMTcudGVzdDALggl4MjE4LnRlc3QwC4IJeDIxOS50ZXN0MAuC\nCXgyMjAudGVzdDALggl4MjIxLnRlc3QwC4IJeDIyMi50ZXN0MAuCCXgyMjMudGVz\ndDALggl4MjI0LnRlc3QwC4IJeDIyNS50ZXN0MAuCCXgyMjYudGVzdDALggl4MjI3\nLnRlc3QwC4IJeDIyOC50ZXN0MAuCCXgyMjkudGVzdDALggl4MjMwLnRlc3QwC4IJ\neDIzMS50ZXN0MAuCCXgyMzIudGVzdDALggl4MjMzLnRlc3QwC4IJeDIzNC50ZXN0\nMAuCCXgyMzUudGVzdDALggl4MjM2LnRlc3QwC4IJeDIzNy50ZXN0MAuCCXgyMzgu\ndGVzdDALggl4MjM5LnRlc3QwC4IJeDI0MC50ZXN0MAuCCXgyNDEudGVzdDALggl4\nMjQyLnRlc3QwC4IJeDI0My50ZXN0MAuCCXgyNDQudGVzdDALggl4MjQ1LnRlc3Qw\nC4IJeDI0Ni50ZXN0MAuCCXgyNDcudGVzdDALggl4MjQ4LnRlc3QwC4IJeDI0OS50\nZXN0MAuCCXgyNTAudGVzdDALggl4MjUxLnRlc3QwC4IJeDI1Mi50ZXN0MAuCCXgy\nNTMudGVzdDALggl4MjU0LnRlc3QwC4IJeDI1NS50ZXN0MAuCCXgyNTYudGVzdDAL\nggl4MjU3LnRlc3QwC4IJeDI1OC50ZXN0MAuCCXgyNTkudGVzdDALggl4MjYwLnRl\nc3QwC4IJeDI2MS50ZXN0MAuCCXgyNjIudGVzdDALggl4MjYzLnRlc3QwC4IJeDI2\nNC50ZXN0MAuCCXgyNjUudGVzdDALggl4MjY2LnRlc3QwC4IJeDI2Ny50ZXN0MAuC\nCXgyNjgudGVzdDALggl4MjY5LnRlc3QwC4IJeDI3MC50ZXN0MAuCCXgyNzEudGVz\ndDALggl4MjcyLnRlc3QwC4IJeDI3My50ZXN0MAuCCXgyNzQudGVzdDALggl4Mjc1\nLnRlc3QwC4IJeDI3Ni50ZXN0MAuCCXgyNzcudGVzdDALggl4Mjc4LnRlc3QwC4IJ\neDI3OS50ZXN0MAuCCXgyODAudGVzdDALggl4MjgxLnRlc3QwC4IJeDI4Mi50ZXN0\nMAuCCXgyODMudGVzdDALggl4Mjg0LnRlc3QwC4IJeDI4NS50ZXN0MAuCCXgyODYu\ndGVzdDALggl4Mjg3LnRlc3QwC4IJeDI4OC50ZXN0MAuCCXgyODkudGVzdDALggl4\nMjkwLnRlc3QwC4IJeDI5MS50ZXN0MAuCCXgyOTIudGVzdDALggl4MjkzLnRlc3Qw\nC4IJeDI5NC50ZXN0MAuCCXgyOTUudGVzdDALggl4Mjk2LnRlc3QwC4IJeDI5Ny50\nZXN0MAuCCXgyOTgudGVzdDALggl4Mjk5LnRlc3QwC4IJeDMwMC50ZXN0MAuCCXgz\nMDEudGVzdDALggl4MzAyLnRlc3QwC4IJeDMwMy50ZXN0MAuCCXgzMDQudGVzdDAL\nggl4MzA1LnRlc3QwC4IJeDMwNi50ZXN0MAuCCXgzMDcudGVzdDALggl4MzA4LnRl\nc3QwC4IJeDMwOS50ZXN0MAuCCXgzMTAudGVzdDALggl4MzExLnRlc3QwC4IJeDMx\nMi50ZXN0MAuCCXgzMTMudGVzdDALggl4MzE0LnRlc3QwC4IJeDMxNS50ZXN0MAuC\nCXgzMTYudGVzdDALggl4MzE3LnRlc3QwC4IJeDMxOC50ZXN0MAuCCXgzMTkudGVz\ndDALggl4MzIwLnRlc3QwC4IJeDMyMS50ZXN0MAuCCXgzMjIudGVzdDALggl4MzIz\nLnRlc3QwC4IJeDMyNC50ZXN0MAuCCXgzMjUudGVzdDALggl4MzI2LnRlc3QwC4IJ\neDMyNy50ZXN0MAuCCXgzMjgudGVzdDALggl4MzI5LnRlc3QwC4IJeDMzMC50ZXN0\nMAuCCXgzMzEudGVzdDALggl4MzMyLnRlc3QwC4IJeDMzMy50ZXN0MAuCCXgzMzQu\ndGVzdDALggl4MzM1LnRlc3QwC4IJeDMzNi50ZXN0MAuCCXgzMzcudGVzdDALggl4\nMzM4LnRlc3QwC4IJeDMzOS50ZXN0MAuCCXgzNDAudGVzdDALggl4MzQxLnRlc3Qw\nC4IJeDM0Mi50ZXN0MAuCCXgzNDMudGVzdDALggl4MzQ0LnRlc3QwC4IJeDM0NS50\nZXN0MAuCCXgzNDYudGVzdDALggl4MzQ3LnRlc3QwC4IJeDM0OC50ZXN0MAuCCXgz\nNDkudGVzdDALggl4MzUwLnRlc3QwC4IJeDM1MS50ZXN0MAuCCXgzNTIudGVzdDAL\nggl4MzUzLnRlc3QwC4IJeDM1NC50ZXN0MAuCCXgzNTUudGVzdDALggl4MzU2LnRl\nc3QwC4IJeDM1Ny50ZXN0MAuCCXgzNTgudGVzdDALggl4MzU5LnRlc3QwC4IJeDM2\nMC50ZXN0MAuCCXgzNjEudGVzdDALggl4MzYyLnRlc3QwC4IJeDM2My50ZXN0MAuC\nCXgzNjQudGVzdDALggl4MzY1LnRlc3QwC4IJeDM2Ni50ZXN0MAuCCXgzNjcudGVz\ndDALggl4MzY4LnRlc3QwC4IJeDM2OS50ZXN0MAuCCXgzNzAudGVzdDALggl4Mzcx\nLnRlc3QwC4IJeDM3Mi50ZXN0MAuCCXgzNzMudGVzdDALggl4Mzc0LnRlc3QwC4IJ\neDM3NS50ZXN0MAuCCXgzNzYudGVzdDALggl4Mzc3LnRlc3QwC4IJeDM3OC50ZXN0\nMAuCCXgzNzkudGVzdDALggl4MzgwLnRlc3QwC4IJeDM4MS50ZXN0MAuCCXgzODIu\ndGVzdDALggl4MzgzLnRlc3QwC4IJeDM4NC50ZXN0MAuCCXgzODUudGVzdDALggl4\nMzg2LnRlc3QwC4IJeDM4Ny50ZXN0MAuCCXgzODgudGVzdDALggl4Mzg5LnRlc3Qw\nC4IJeDM5MC50ZXN0MAuCCXgzOTEudGVzdDALggl4MzkyLnRlc3QwC4IJeDM5My50\nZXN0MAuCCXgzOTQudGVzdDALggl4Mzk1LnRlc3QwC4IJeDM5Ni50ZXN0MAuCCXgz\nOTcudGVzdDALggl4Mzk4LnRlc3QwC4IJeDM5OS50ZXN0MAuCCXg0MDAudGVzdDAL\nggl4NDAxLnRlc3QwC4IJeDQwMi50ZXN0MAuCCXg0MDMudGVzdDALggl4NDA0LnRl\nc3QwC4IJeDQwNS50ZXN0MAuCCXg0MDYudGVzdDALggl4NDA3LnRlc3QwC4IJeDQw\nOC50ZXN0MAuCCXg0MDkudGVzdDALggl4NDEwLnRlc3QwC4IJeDQxMS50ZXN0MAuC\nCXg0MTIudGVzdDALggl4NDEzLnRlc3QwC4IJeDQxNC50ZXN0MAuCCXg0MTUudGVz\ndDALggl4NDE2LnRlc3QwC4IJeDQxNy50ZXN0MAuCCXg0MTgudGVzdDALggl4NDE5\nLnRlc3QwC4IJeDQyMC50ZXN0MAuCCXg0MjEudGVzdDALggl4NDIyLnRlc3QwC4IJ\neDQyMy50ZXN0MAuCCXg0MjQudGVzdDALggl4NDI1LnRlc3QwC4IJeDQyNi50ZXN0\nMAuCCXg0MjcudGVzdDALggl4NDI4LnRlc3QwC4IJeDQyOS50ZXN0MAuCCXg0MzAu\ndGVzdDALggl4NDMxLnRlc3QwC4IJeDQzMi50ZXN0MAuCCXg0MzMudGVzdDALggl4\nNDM0LnRlc3QwC4IJeDQzNS50ZXN0MAuCCXg0MzYudGVzdDALggl4NDM3LnRlc3Qw\nC4IJeDQzOC50ZXN0MAuCCXg0MzkudGVzdDALggl4NDQwLnRlc3QwC4IJeDQ0MS50\nZXN0MAuCCXg0NDIudGVzdDALggl4NDQzLnRlc3QwC4IJeDQ0NC50ZXN0MAuCCXg0\nNDUudGVzdDALggl4NDQ2LnRlc3QwC4IJeDQ0Ny50ZXN0MAuCCXg0NDgudGVzdDAL\nggl4NDQ5LnRlc3QwC4IJeDQ1MC50ZXN0MAuCCXg0NTEudGVzdDALggl4NDUyLnRl\nc3QwC4IJeDQ1My50ZXN0MAuCCXg0NTQudGVzdDALggl4NDU1LnRlc3QwC4IJeDQ1\nNi50ZXN0MAuCCXg0NTcudGVzdDALggl4NDU4LnRlc3QwC4IJeDQ1OS50ZXN0MAuC\nCXg0NjAudGVzdDALggl4NDYxLnRlc3QwC4IJeDQ2Mi50ZXN0MAuCCXg0NjMudGVz\ndDALggl4NDY0LnRlc3QwC4IJeDQ2NS50ZXN0MAuCCXg0NjYudGVzdDALggl4NDY3\nLnRlc3QwC4IJeDQ2OC50ZXN0MAuCCXg0NjkudGVzdDALggl4NDcwLnRlc3QwC4IJ\neDQ3MS50ZXN0MAuCCXg0NzIudGVzdDALggl4NDczLnRlc3QwC4IJeDQ3NC50ZXN0\nMAuCCXg0NzUudGVzdDALggl4NDc2LnRlc3QwC4IJeDQ3Ny50ZXN0MAuCCXg0Nzgu\ndGVzdDALggl4NDc5LnRlc3QwC4IJeDQ4MC50ZXN0MAuCCXg0ODEudGVzdDALggl4\nNDgyLnRlc3QwC4IJeDQ4My50ZXN0MAuCCXg0ODQudGVzdDALggl4NDg1LnRlc3Qw\nC4IJeDQ4Ni50ZXN0MAuCCXg0ODcudGVzdDALggl4NDg4LnRlc3QwC4IJeDQ4OS50\nZXN0MAuCCXg0OTAudGVzdDALggl4NDkxLnRlc3QwC4IJeDQ5Mi50ZXN0MAuCCXg0\nOTMudGVzdDALggl4NDk0LnRlc3QwC4IJeDQ5NS50ZXN0MAuCCXg0OTYudGVzdDAL\nggl4NDk3LnRlc3QwC4IJeDQ5OC50ZXN0MAuCCXg0OTkudGVzdDALggl4NTAwLnRl\nc3QwC4IJeDUwMS50ZXN0MAuCCXg1MDIudGVzdDALggl4NTAzLnRlc3QwC4IJeDUw\nNC50ZXN0MAuCCXg1MDUudGVzdDALggl4NTA2LnRlc3QwC4IJeDUwNy50ZXN0MAuC\nCXg1MDgudGVzdDALggl4NTA5LnRlc3QwC4IJeDUxMC50ZXN0MAuCCXg1MTEudGVz\ndDALggl4NTEyLnRlc3QwC4IJeDUxMy50ZXN0MAuCCXg1MTQudGVzdDALggl4NTE1\nLnRlc3QwC4IJeDUxNi50ZXN0MAuCCXg1MTcudGVzdDALggl4NTE4LnRlc3QwC4IJ\neDUxOS50ZXN0MAuCCXg1MjAudGVzdDALggl4NTIxLnRlc3QwC4IJeDUyMi50ZXN0\nMAuCCXg1MjMudGVzdDALggl4NTI0LnRlc3QwC4IJeDUyNS50ZXN0MAuCCXg1MjYu\ndGVzdDALggl4NTI3LnRlc3QwC4IJeDUyOC50ZXN0MAuCCXg1MjkudGVzdDALggl4\nNTMwLnRlc3QwC4IJeDUzMS50ZXN0MAuCCXg1MzIudGVzdDALggl4NTMzLnRlc3Qw\nC4IJeDUzNC50ZXN0MAuCCXg1MzUudGVzdDALggl4NTM2LnRlc3QwC4IJeDUzNy50\nZXN0MAuCCXg1MzgudGVzdDALggl4NTM5LnRlc3QwC4IJeDU0MC50ZXN0MAuCCXg1\nNDEudGVzdDALggl4NTQyLnRlc3QwC4IJeDU0My50ZXN0MAuCCXg1NDQudGVzdDAL\nggl4NTQ1LnRlc3QwC4IJeDU0Ni50ZXN0MAuCCXg1NDcudGVzdDALggl4NTQ4LnRl\nc3QwC4IJeDU0OS50ZXN0MAuCCXg1NTAudGVzdDALggl4NTUxLnRlc3QwC4IJeDU1\nMi50ZXN0MAuCCXg1NTMudGVzdDALggl4NTU0LnRlc3QwC4IJeDU1NS50ZXN0MAuC\nCXg1NTYudGVzdDALggl4NTU3LnRlc3QwC4IJeDU1OC50ZXN0MAuCCXg1NTkudGVz\ndDALggl4NTYwLnRlc3QwC4IJeDU2MS50ZXN0MAuCCXg1NjIudGVzdDALggl4NTYz\nLnRlc3QwC4IJeDU2NC50ZXN0MAuCCXg1NjUudGVzdDALggl4NTY2LnRlc3QwC4IJ\neDU2Ny50ZXN0MAuCCXg1NjgudGVzdDALggl4NTY5LnRlc3QwC4IJeDU3MC50ZXN0\nMAuCCXg1NzEudGVzdDALggl4NTcyLnRlc3QwC4IJeDU3My50ZXN0MAuCCXg1NzQu\ndGVzdDALggl4NTc1LnRlc3QwC4IJeDU3Ni50ZXN0MAuCCXg1NzcudGVzdDALggl4\nNTc4LnRlc3QwC4IJeDU3OS50ZXN0MAuCCXg1ODAudGVzdDALggl4NTgxLnRlc3Qw\nC4IJeDU4Mi50ZXN0MAuCCXg1ODMudGVzdDALggl4NTg0LnRlc3QwC4IJeDU4NS50\nZXN0MAuCCXg1ODYudGVzdDALggl4NTg3LnRlc3QwC4IJeDU4OC50ZXN0MAuCCXg1\nODkudGVzdDALggl4NTkwLnRlc3QwC4IJeDU5MS50ZXN0MAuCCXg1OTIudGVzdDAL\nggl4NTkzLnRlc3QwC4IJeDU5NC50ZXN0MAuCCXg1OTUudGVzdDALggl4NTk2LnRl\nc3QwC4IJeDU5Ny50ZXN0MAuCCXg1OTgudGVzdDALggl4NTk5LnRlc3QwC4IJeDYw\nMC50ZXN0MAuCCXg2MDEudGVzdDALggl4NjAyLnRlc3QwC4IJeDYwMy50ZXN0MAuC\nCXg2MDQudGVzdDALggl4NjA1LnRlc3QwC4IJeDYwNi50ZXN0MAuCCXg2MDcudGVz\ndDALggl4NjA4LnRlc3QwC4IJeDYwOS50ZXN0MAuCCXg2MTAudGVzdDALggl4NjEx\nLnRlc3QwC4IJeDYxMi50ZXN0MAuCCXg2MTMudGVzdDALggl4NjE0LnRlc3QwC4IJ\neDYxNS50ZXN0MAuCCXg2MTYudGVzdDALggl4NjE3LnRlc3QwC4IJeDYxOC50ZXN0\nMAuCCXg2MTkudGVzdDALggl4NjIwLnRlc3QwC4IJeDYyMS50ZXN0MAuCCXg2MjIu\ndGVzdDALggl4NjIzLnRlc3QwC4IJeDYyNC50ZXN0MAuCCXg2MjUudGVzdDALggl4\nNjI2LnRlc3QwC4IJeDYyNy50ZXN0MAuCCXg2MjgudGVzdDALggl4NjI5LnRlc3Qw\nC4IJeDYzMC50ZXN0MAuCCXg2MzEudGVzdDALggl4NjMyLnRlc3QwC4IJeDYzMy50\nZXN0MAuCCXg2MzQudGVzdDALggl4NjM1LnRlc3QwC4IJeDYzNi50ZXN0MAuCCXg2\nMzcudGVzdDALggl4NjM4LnRlc3QwC4IJeDYzOS50ZXN0MAuCCXg2NDAudGVzdDAL\nggl4NjQxLnRlc3QwC4IJeDY0Mi50ZXN0MAuCCXg2NDMudGVzdDALggl4NjQ0LnRl\nc3QwC4IJeDY0NS50ZXN0MAuCCXg2NDYudGVzdDALggl4NjQ3LnRlc3QwC4IJeDY0\nOC50ZXN0MAuCCXg2NDkudGVzdDALggl4NjUwLnRlc3QwC4IJeDY1MS50ZXN0MAuC\nCXg2NTIudGVzdDALggl4NjUzLnRlc3QwC4IJeDY1NC50ZXN0MAuCCXg2NTUudGVz\ndDALggl4NjU2LnRlc3QwC4IJeDY1Ny50ZXN0MAuCCXg2NTgudGVzdDALggl4NjU5\nLnRlc3QwC4IJeDY2MC50ZXN0MAuCCXg2NjEudGVzdDALggl4NjYyLnRlc3QwC4IJ\neDY2My50ZXN0MAuCCXg2NjQudGVzdDALggl4NjY1LnRlc3QwC4IJeDY2Ni50ZXN0\nMAuCCXg2NjcudGVzdDALggl4NjY4LnRlc3QwC4IJeDY2OS50ZXN0MAuCCXg2NzAu\ndGVzdDALggl4NjcxLnRlc3QwC4IJeDY3Mi50ZXN0MAuCCXg2NzMudGVzdDALggl4\nNjc0LnRlc3QwC4IJeDY3NS50ZXN0MAuCCXg2NzYudGVzdDALggl4Njc3LnRlc3Qw\nC4IJeDY3OC50ZXN0MAuCCXg2NzkudGVzdDALggl4NjgwLnRlc3QwC4IJeDY4MS50\nZXN0MAuCCXg2ODIudGVzdDALggl4NjgzLnRlc3QwC4IJeDY4NC50ZXN0MAuCCXg2\nODUudGVzdDALggl4Njg2LnRlc3QwC4IJeDY4Ny50ZXN0MAuCCXg2ODgudGVzdDAL\nggl4Njg5LnRlc3QwC4IJeDY5MC50ZXN0MAuCCXg2OTEudGVzdDALggl4NjkyLnRl\nc3QwC4IJeDY5My50ZXN0MAuCCXg2OTQudGVzdDALggl4Njk1LnRlc3QwC4IJeDY5\nNi50ZXN0MAuCCXg2OTcudGVzdDALggl4Njk4LnRlc3QwC4IJeDY5OS50ZXN0MAuC\nCXg3MDAudGVzdDALggl4NzAxLnRlc3QwC4IJeDcwMi50ZXN0MAuCCXg3MDMudGVz\ndDALggl4NzA0LnRlc3QwC4IJeDcwNS50ZXN0MAuCCXg3MDYudGVzdDALggl4NzA3\nLnRlc3QwC4IJeDcwOC50ZXN0MAuCCXg3MDkudGVzdDALggl4NzEwLnRlc3QwC4IJ\neDcxMS50ZXN0MAuCCXg3MTIudGVzdDALggl4NzEzLnRlc3QwC4IJeDcxNC50ZXN0\nMAuCCXg3MTUudGVzdDALggl4NzE2LnRlc3QwC4IJeDcxNy50ZXN0MAuCCXg3MTgu\ndGVzdDALggl4NzE5LnRlc3QwC4IJeDcyMC50ZXN0MAuCCXg3MjEudGVzdDALggl4\nNzIyLnRlc3QwC4IJeDcyMy50ZXN0MAuCCXg3MjQudGVzdDALggl4NzI1LnRlc3Qw\nC4IJeDcyNi50ZXN0MAuCCXg3MjcudGVzdDALggl4NzI4LnRlc3QwC4IJeDcyOS50\nZXN0MAuCCXg3MzAudGVzdDALggl4NzMxLnRlc3QwC4IJeDczMi50ZXN0MAuCCXg3\nMzMudGVzdDALggl4NzM0LnRlc3QwC4IJeDczNS50ZXN0MAuCCXg3MzYudGVzdDAL\nggl4NzM3LnRlc3QwC4IJeDczOC50ZXN0MAuCCXg3MzkudGVzdDALggl4NzQwLnRl\nc3QwC4IJeDc0MS50ZXN0MAuCCXg3NDIudGVzdDALggl4NzQzLnRlc3QwC4IJeDc0\nNC50ZXN0MAuCCXg3NDUudGVzdDALggl4NzQ2LnRlc3QwC4IJeDc0Ny50ZXN0MAuC\nCXg3NDgudGVzdDALggl4NzQ5LnRlc3QwC4IJeDc1MC50ZXN0MAuCCXg3NTEudGVz\ndDALggl4NzUyLnRlc3QwC4IJeDc1My50ZXN0MAuCCXg3NTQudGVzdDALggl4NzU1\nLnRlc3QwC4IJeDc1Ni50ZXN0MAuCCXg3NTcudGVzdDALggl4NzU4LnRlc3QwC4IJ\neDc1OS50ZXN0MAuCCXg3NjAudGVzdDALggl4NzYxLnRlc3QwC4IJeDc2Mi50ZXN0\nMAuCCXg3NjMudGVzdDALggl4NzY0LnRlc3QwC4IJeDc2NS50ZXN0MAuCCXg3NjYu\ndGVzdDALggl4NzY3LnRlc3QwC4IJeDc2OC50ZXN0MAuCCXg3NjkudGVzdDALggl4\nNzcwLnRlc3QwC4IJeDc3MS50ZXN0MAuCCXg3NzIudGVzdDALggl4NzczLnRlc3Qw\nC4IJeDc3NC50ZXN0MAuCCXg3NzUudGVzdDALggl4Nzc2LnRlc3QwC4IJeDc3Ny50\nZXN0MAuCCXg3NzgudGVzdDALggl4Nzc5LnRlc3QwC4IJeDc4MC50ZXN0MAuCCXg3\nODEudGVzdDALggl4NzgyLnRlc3QwC4IJeDc4My50ZXN0MAuCCXg3ODQudGVzdDAL\nggl4Nzg1LnRlc3QwC4IJeDc4Ni50ZXN0MAuCCXg3ODcudGVzdDALggl4Nzg4LnRl\nc3QwC4IJeDc4OS50ZXN0MAuCCXg3OTAudGVzdDALggl4NzkxLnRlc3QwC4IJeDc5\nMi50ZXN0MAuCCXg3OTMudGVzdDALggl4Nzk0LnRlc3QwC4IJeDc5NS50ZXN0MAuC\nCXg3OTYudGVzdDALggl4Nzk3LnRlc3QwC4IJeDc5OC50ZXN0MAuCCXg3OTkudGVz\ndDALggl4ODAwLnRlc3QwC4IJeDgwMS50ZXN0MAuCCXg4MDIudGVzdDALggl4ODAz\nLnRlc3QwC4IJeDgwNC50ZXN0MAuCCXg4MDUudGVzdDALggl4ODA2LnRlc3QwC4IJ\neDgwNy50ZXN0MAuCCXg4MDgudGVzdDALggl4ODA5LnRlc3QwC4IJeDgxMC50ZXN0\nMAuCCXg4MTEudGVzdDALggl4ODEyLnRlc3QwC4IJeDgxMy50ZXN0MAuCCXg4MTQu\ndGVzdDALggl4ODE1LnRlc3QwC4IJeDgxNi50ZXN0MAuCCXg4MTcudGVzdDALggl4\nODE4LnRlc3QwC4IJeDgxOS50ZXN0MAuCCXg4MjAudGVzdDALggl4ODIxLnRlc3Qw\nC4IJeDgyMi50ZXN0MAuCCXg4MjMudGVzdDALggl4ODI0LnRlc3QwC4IJeDgyNS50\nZXN0MAuCCXg4MjYudGVzdDALggl4ODI3LnRlc3QwC4IJeDgyOC50ZXN0MAuCCXg4\nMjkudGVzdDALggl4ODMwLnRlc3QwC4IJeDgzMS50ZXN0MAuCCXg4MzIudGVzdDAL\nggl4ODMzLnRlc3QwC4IJeDgzNC50ZXN0MAuCCXg4MzUudGVzdDALggl4ODM2LnRl\nc3QwC4IJeDgzNy50ZXN0MAuCCXg4MzgudGVzdDALggl4ODM5LnRlc3QwC4IJeDg0\nMC50ZXN0MAuCCXg4NDEudGVzdDALggl4ODQyLnRlc3QwC4IJeDg0My50ZXN0MAuC\nCXg4NDQudGVzdDALggl4ODQ1LnRlc3QwC4IJeDg0Ni50ZXN0MAuCCXg4NDcudGVz\ndDALggl4ODQ4LnRlc3QwC4IJeDg0OS50ZXN0MAuCCXg4NTAudGVzdDALggl4ODUx\nLnRlc3QwC4IJeDg1Mi50ZXN0MAuCCXg4NTMudGVzdDALggl4ODU0LnRlc3QwC4IJ\neDg1NS50ZXN0MAuCCXg4NTYudGVzdDALggl4ODU3LnRlc3QwC4IJeDg1OC50ZXN0\nMAuCCXg4NTkudGVzdDALggl4ODYwLnRlc3QwC4IJeDg2MS50ZXN0MAuCCXg4NjIu\ndGVzdDALggl4ODYzLnRlc3QwC4IJeDg2NC50ZXN0MAuCCXg4NjUudGVzdDALggl4\nODY2LnRlc3QwC4IJeDg2Ny50ZXN0MAuCCXg4NjgudGVzdDALggl4ODY5LnRlc3Qw\nC4IJeDg3MC50ZXN0MAuCCXg4NzEudGVzdDALggl4ODcyLnRlc3QwC4IJeDg3My50\nZXN0MAuCCXg4NzQudGVzdDALggl4ODc1LnRlc3QwC4IJeDg3Ni50ZXN0MAuCCXg4\nNzcudGVzdDALggl4ODc4LnRlc3QwC4IJeDg3OS50ZXN0MAuCCXg4ODAudGVzdDAL\nggl4ODgxLnRlc3QwC4IJeDg4Mi50ZXN0MAuCCXg4ODMudGVzdDALggl4ODg0LnRl\nc3QwC4IJeDg4NS50ZXN0MAuCCXg4ODYudGVzdDALggl4ODg3LnRlc3QwC4IJeDg4\nOC50ZXN0MAuCCXg4ODkudGVzdDALggl4ODkwLnRlc3QwC4IJeDg5MS50ZXN0MAuC\nCXg4OTIudGVzdDALggl4ODkzLnRlc3QwC4IJeDg5NC50ZXN0MAuCCXg4OTUudGVz\ndDALggl4ODk2LnRlc3QwC4IJeDg5Ny50ZXN0MAuCCXg4OTgudGVzdDALggl4ODk5\nLnRlc3QwC4IJeDkwMC50ZXN0MAuCCXg5MDEudGVzdDALggl4OTAyLnRlc3QwC4IJ\neDkwMy50ZXN0MAuCCXg5MDQudGVzdDALggl4OTA1LnRlc3QwC4IJeDkwNi50ZXN0\nMAuCCXg5MDcudGVzdDALggl4OTA4LnRlc3QwC4IJeDkwOS50ZXN0MAuCCXg5MTAu\ndGVzdDALggl4OTExLnRlc3QwC4IJeDkxMi50ZXN0MAuCCXg5MTMudGVzdDALggl4\nOTE0LnRlc3QwC4IJeDkxNS50ZXN0MAuCCXg5MTYudGVzdDALggl4OTE3LnRlc3Qw\nC4IJeDkxOC50ZXN0MAuCCXg5MTkudGVzdDALggl4OTIwLnRlc3QwC4IJeDkyMS50\nZXN0MAuCCXg5MjIudGVzdDALggl4OTIzLnRlc3QwC4IJeDkyNC50ZXN0MAuCCXg5\nMjUudGVzdDALggl4OTI2LnRlc3QwC4IJeDkyNy50ZXN0MAuCCXg5MjgudGVzdDAL\nggl4OTI5LnRlc3QwC4IJeDkzMC50ZXN0MAuCCXg5MzEudGVzdDALggl4OTMyLnRl\nc3QwC4IJeDkzMy50ZXN0MAuCCXg5MzQudGVzdDALggl4OTM1LnRlc3QwC4IJeDkz\nNi50ZXN0MAuCCXg5MzcudGVzdDALggl4OTM4LnRlc3QwC4IJeDkzOS50ZXN0MAuC\nCXg5NDAudGVzdDALggl4OTQxLnRlc3QwC4IJeDk0Mi50ZXN0MAuCCXg5NDMudGVz\ndDALggl4OTQ0LnRlc3QwC4IJeDk0NS50ZXN0MAuCCXg5NDYudGVzdDALggl4OTQ3\nLnRlc3QwC4IJeDk0OC50ZXN0MAuCCXg5NDkudGVzdDALggl4OTUwLnRlc3QwC4IJ\neDk1MS50ZXN0MAuCCXg5NTIudGVzdDALggl4OTUzLnRlc3QwC4IJeDk1NC50ZXN0\nMAuCCXg5NTUudGVzdDALggl4OTU2LnRlc3QwC4IJeDk1Ny50ZXN0MAuCCXg5NTgu\ndGVzdDALggl4OTU5LnRlc3QwC4IJeDk2MC50ZXN0MAuCCXg5NjEudGVzdDALggl4\nOTYyLnRlc3QwC4IJeDk2My50ZXN0MAuCCXg5NjQudGVzdDALggl4OTY1LnRlc3Qw\nC4IJeDk2Ni50ZXN0MAuCCXg5NjcudGVzdDALggl4OTY4LnRlc3QwC4IJeDk2OS50\nZXN0MAuCCXg5NzAudGVzdDALggl4OTcxLnRlc3QwC4IJeDk3Mi50ZXN0MAuCCXg5\nNzMudGVzdDALggl4OTc0LnRlc3QwC4IJeDk3NS50ZXN0MAuCCXg5NzYudGVzdDAL\nggl4OTc3LnRlc3QwC4IJeDk3OC50ZXN0MAuCCXg5NzkudGVzdDALggl4OTgwLnRl\nc3QwC4IJeDk4MS50ZXN0MAuCCXg5ODIudGVzdDALggl4OTgzLnRlc3QwC4IJeDk4\nNC50ZXN0MAuCCXg5ODUudGVzdDALggl4OTg2LnRlc3QwC4IJeDk4Ny50ZXN0MAuC\nCXg5ODgudGVzdDALggl4OTg5LnRlc3QwC4IJeDk5MC50ZXN0MAuCCXg5OTEudGVz\ndDALggl4OTkyLnRlc3QwC4IJeDk5My50ZXN0MAuCCXg5OTQudGVzdDALggl4OTk1\nLnRlc3QwC4IJeDk5Ni50ZXN0MAuCCXg5OTcudGVzdDALggl4OTk4LnRlc3QwC4IJ\neDk5OS50ZXN0MAyCCngxMDAwLnRlc3QwDIIKeDEwMDEudGVzdDAMggp4MTAwMi50\nZXN0MAyCCngxMDAzLnRlc3QwDIIKeDEwMDQudGVzdDAMggp4MTAwNS50ZXN0MAyC\nCngxMDA2LnRlc3QwDIIKeDEwMDcudGVzdDAMggp4MTAwOC50ZXN0MAyCCngxMDA5\nLnRlc3QwDIIKeDEwMTAudGVzdDAMggp4MTAxMS50ZXN0MAyCCngxMDEyLnRlc3Qw\nDIIKeDEwMTMudGVzdDAMggp4MTAxNC50ZXN0MAyCCngxMDE1LnRlc3QwDIIKeDEw\nMTYudGVzdDAMggp4MTAxNy50ZXN0MAyCCngxMDE4LnRlc3QwDIIKeDEwMTkudGVz\ndDAMggp4MTAyMC50ZXN0MAyCCngxMDIxLnRlc3QwDIIKeDEwMjIudGVzdDAMggp4\nMTAyMy50ZXN0MAyCCngxMDI0LnRlc3QwDIIKeDEwMjUudGVzdDAMggp4MTAyNi50\nZXN0MAyCCngxMDI3LnRlc3QwDIIKeDEwMjgudGVzdDAMggp4MTAyOS50ZXN0MAyC\nCngxMDMwLnRlc3QwDIIKeDEwMzEudGVzdDAMggp4MTAzMi50ZXN0MAyCCngxMDMz\nLnRlc3QwDIIKeDEwMzQudGVzdDAMggp4MTAzNS50ZXN0MAyCCngxMDM2LnRlc3Qw\nDIIKeDEwMzcudGVzdDAMggp4MTAzOC50ZXN0MAyCCngxMDM5LnRlc3QwDIIKeDEw\nNDAudGVzdDAMggp4MTA0MS50ZXN0MAyCCngxMDQyLnRlc3QwDIIKeDEwNDMudGVz\ndDAMggp4MTA0NC50ZXN0MAyCCngxMDQ1LnRlc3QwDIIKeDEwNDYudGVzdDAMggp4\nMTA0Ny50ZXN0MAyCCngxMDQ4LnRlc3QwDIIKeDEwNDkudGVzdDAMggp4MTA1MC50\nZXN0MAyCCngxMDUxLnRlc3QwDIIKeDEwNTIudGVzdDAMggp4MTA1My50ZXN0MAyC\nCngxMDU0LnRlc3QwDIIKeDEwNTUudGVzdDAMggp4MTA1Ni50ZXN0MAyCCngxMDU3\nLnRlc3QwDIIKeDEwNTgudGVzdDAMggp4MTA1OS50ZXN0MAyCCngxMDYwLnRlc3Qw\nDIIKeDEwNjEudGVzdDAMggp4MTA2Mi50ZXN0MAyCCngxMDYzLnRlc3QwDIIKeDEw\nNjQudGVzdDAMggp4MTA2NS50ZXN0MAyCCngxMDY2LnRlc3QwDIIKeDEwNjcudGVz\ndDAMggp4MTA2OC50ZXN0MAyCCngxMDY5LnRlc3QwDIIKeDEwNzAudGVzdDAMggp4\nMTA3MS50ZXN0MAyCCngxMDcyLnRlc3QwDIIKeDEwNzMudGVzdDAMggp4MTA3NC50\nZXN0MAyCCngxMDc1LnRlc3QwDIIKeDEwNzYudGVzdDAMggp4MTA3Ny50ZXN0MAyC\nCngxMDc4LnRlc3QwDIIKeDEwNzkudGVzdDAMggp4MTA4MC50ZXN0MAyCCngxMDgx\nLnRlc3QwDIIKeDEwODIudGVzdDAMggp4MTA4My50ZXN0MAyCCngxMDg0LnRlc3Qw\nDIIKeDEwODUudGVzdDAMggp4MTA4Ni50ZXN0MAyCCngxMDg3LnRlc3QwDIIKeDEw\nODgudGVzdDAMggp4MTA4OS50ZXN0MAyCCngxMDkwLnRlc3QwDIIKeDEwOTEudGVz\ndDAMggp4MTA5Mi50ZXN0MAyCCngxMDkzLnRlc3QwDIIKeDEwOTQudGVzdDAMggp4\nMTA5NS50ZXN0MAyCCngxMDk2LnRlc3QwDIIKeDEwOTcudGVzdDAMggp4MTA5OC50\nZXN0MAyCCngxMDk5LnRlc3QwDIIKeDExMDAudGVzdDAMggp4MTEwMS50ZXN0MAyC\nCngxMTAyLnRlc3QwDIIKeDExMDMudGVzdDAMggp4MTEwNC50ZXN0MAyCCngxMTA1\nLnRlc3QwDIIKeDExMDYudGVzdDAMggp4MTEwNy50ZXN0MAyCCngxMTA4LnRlc3Qw\nDIIKeDExMDkudGVzdDAMggp4MTExMC50ZXN0MAyCCngxMTExLnRlc3QwDIIKeDEx\nMTIudGVzdDAMggp4MTExMy50ZXN0MAyCCngxMTE0LnRlc3QwDIIKeDExMTUudGVz\ndDAMggp4MTExNi50ZXN0MAyCCngxMTE3LnRlc3QwDIIKeDExMTgudGVzdDAMggp4\nMTExOS50ZXN0MAyCCngxMTIwLnRlc3QwDIIKeDExMjEudGVzdDAMggp4MTEyMi50\nZXN0MAyCCngxMTIzLnRlc3QwDIIKeDExMjQudGVzdDAMggp4MTEyNS50ZXN0MAyC\nCngxMTI2LnRlc3QwDIIKeDExMjcudGVzdDAMggp4MTEyOC50ZXN0MAyCCngxMTI5\nLnRlc3QwDIIKeDExMzAudGVzdDAMggp4MTEzMS50ZXN0MAyCCngxMTMyLnRlc3Qw\nDIIKeDExMzMudGVzdDAMggp4MTEzNC50ZXN0MAyCCngxMTM1LnRlc3QwDIIKeDEx\nMzYudGVzdDAMggp4MTEzNy50ZXN0MAyCCngxMTM4LnRlc3QwDIIKeDExMzkudGVz\ndDAMggp4MTE0MC50ZXN0MAyCCngxMTQxLnRlc3QwDIIKeDExNDIudGVzdDAMggp4\nMTE0My50ZXN0MAyCCngxMTQ0LnRlc3QwDIIKeDExNDUudGVzdDAMggp4MTE0Ni50\nZXN0MAyCCngxMTQ3LnRlc3QwDIIKeDExNDgudGVzdDAMggp4MTE0OS50ZXN0MAyC\nCngxMTUwLnRlc3QwDIIKeDExNTEudGVzdDAMggp4MTE1Mi50ZXN0MAyCCngxMTUz\nLnRlc3QwDIIKeDExNTQudGVzdDAMggp4MTE1NS50ZXN0MAyCCngxMTU2LnRlc3Qw\nDIIKeDExNTcudGVzdDAMggp4MTE1OC50ZXN0MAyCCngxMTU5LnRlc3QwDIIKeDEx\nNjAudGVzdDAMggp4MTE2MS50ZXN0MAyCCngxMTYyLnRlc3QwDIIKeDExNjMudGVz\ndDAMggp4MTE2NC50ZXN0MAyCCngxMTY1LnRlc3QwDIIKeDExNjYudGVzdDAMggp4\nMTE2Ny50ZXN0MAyCCngxMTY4LnRlc3QwDIIKeDExNjkudGVzdDAMggp4MTE3MC50\nZXN0MAyCCngxMTcxLnRlc3QwDIIKeDExNzIudGVzdDAMggp4MTE3My50ZXN0MAyC\nCngxMTc0LnRlc3QwDIIKeDExNzUudGVzdDAMggp4MTE3Ni50ZXN0MAyCCngxMTc3\nLnRlc3QwDIIKeDExNzgudGVzdDAMggp4MTE3OS50ZXN0MAyCCngxMTgwLnRlc3Qw\nDIIKeDExODEudGVzdDAMggp4MTE4Mi50ZXN0MAyCCngxMTgzLnRlc3QwDIIKeDEx\nODQudGVzdDAMggp4MTE4NS50ZXN0MAyCCngxMTg2LnRlc3QwDIIKeDExODcudGVz\ndDAMggp4MTE4OC50ZXN0MAyCCngxMTg5LnRlc3QwDIIKeDExOTAudGVzdDAMggp4\nMTE5MS50ZXN0MAyCCngxMTkyLnRlc3QwDIIKeDExOTMudGVzdDAMggp4MTE5NC50\nZXN0MAyCCngxMTk1LnRlc3QwDIIKeDExOTYudGVzdDAMggp4MTE5Ny50ZXN0MAyC\nCngxMTk4LnRlc3QwDIIKeDExOTkudGVzdDAMggp4MTIwMC50ZXN0MAyCCngxMjAx\nLnRlc3QwDIIKeDEyMDIudGVzdDAMggp4MTIwMy50ZXN0MAyCCngxMjA0LnRlc3Qw\nDIIKeDEyMDUudGVzdDAMggp4MTIwNi50ZXN0MAyCCngxMjA3LnRlc3QwDIIKeDEy\nMDgudGVzdDAMggp4MTIwOS50ZXN0MAyCCngxMjEwLnRlc3QwDIIKeDEyMTEudGVz\ndDAMggp4MTIxMi50ZXN0MAyCCngxMjEzLnRlc3QwDIIKeDEyMTQudGVzdDAMggp4\nMTIxNS50ZXN0MAyCCngxMjE2LnRlc3QwDIIKeDEyMTcudGVzdDAMggp4MTIxOC50\nZXN0MAyCCngxMjE5LnRlc3QwDIIKeDEyMjAudGVzdDAMggp4MTIyMS50ZXN0MAyC\nCngxMjIyLnRlc3QwDIIKeDEyMjMudGVzdDAMggp4MTIyNC50ZXN0MAyCCngxMjI1\nLnRlc3QwDIIKeDEyMjYudGVzdDAMggp4MTIyNy50ZXN0MAyCCngxMjI4LnRlc3Qw\nDIIKeDEyMjkudGVzdDAMggp4MTIzMC50ZXN0MAyCCngxMjMxLnRlc3QwDIIKeDEy\nMzIudGVzdDAMggp4MTIzMy50ZXN0MAyCCngxMjM0LnRlc3QwDIIKeDEyMzUudGVz\ndDAMggp4MTIzNi50ZXN0MAyCCngxMjM3LnRlc3QwDIIKeDEyMzgudGVzdDAMggp4\nMTIzOS50ZXN0MAyCCngxMjQwLnRlc3QwDIIKeDEyNDEudGVzdDAMggp4MTI0Mi50\nZXN0MAyCCngxMjQzLnRlc3QwDIIKeDEyNDQudGVzdDAMggp4MTI0NS50ZXN0MAyC\nCngxMjQ2LnRlc3QwDIIKeDEyNDcudGVzdDAMggp4MTI0OC50ZXN0MAyCCngxMjQ5\nLnRlc3QwDIIKeDEyNTAudGVzdDAMggp4MTI1MS50ZXN0MAyCCngxMjUyLnRlc3Qw\nDIIKeDEyNTMudGVzdDAMggp4MTI1NC50ZXN0MAyCCngxMjU1LnRlc3QwDIIKeDEy\nNTYudGVzdDAMggp4MTI1Ny50ZXN0MAyCCngxMjU4LnRlc3QwDIIKeDEyNTkudGVz\ndDAMggp4MTI2MC50ZXN0MAyCCngxMjYxLnRlc3QwDIIKeDEyNjIudGVzdDAMggp4\nMTI2My50ZXN0MAyCCngxMjY0LnRlc3QwDIIKeDEyNjUudGVzdDAMggp4MTI2Ni50\nZXN0MAyCCngxMjY3LnRlc3QwDIIKeDEyNjgudGVzdDAMggp4MTI2OS50ZXN0MAyC\nCngxMjcwLnRlc3QwDIIKeDEyNzEudGVzdDAMggp4MTI3Mi50ZXN0MAyCCngxMjcz\nLnRlc3QwDIIKeDEyNzQudGVzdDAMggp4MTI3NS50ZXN0MAyCCngxMjc2LnRlc3Qw\nDIIKeDEyNzcudGVzdDAMggp4MTI3OC50ZXN0MAyCCngxMjc5LnRlc3QwDIIKeDEy\nODAudGVzdDAMggp4MTI4MS50ZXN0MAyCCngxMjgyLnRlc3QwDIIKeDEyODMudGVz\ndDAMggp4MTI4NC50ZXN0MAyCCngxMjg1LnRlc3QwDIIKeDEyODYudGVzdDAMggp4\nMTI4Ny50ZXN0MAyCCngxMjg4LnRlc3QwDIIKeDEyODkudGVzdDAMggp4MTI5MC50\nZXN0MAyCCngxMjkxLnRlc3QwDIIKeDEyOTIudGVzdDAMggp4MTI5My50ZXN0MAyC\nCngxMjk0LnRlc3QwDIIKeDEyOTUudGVzdDAMggp4MTI5Ni50ZXN0MAyCCngxMjk3\nLnRlc3QwDIIKeDEyOTgudGVzdDAMggp4MTI5OS50ZXN0MAyCCngxMzAwLnRlc3Qw\nDIIKeDEzMDEudGVzdDAMggp4MTMwMi50ZXN0MAyCCngxMzAzLnRlc3QwDIIKeDEz\nMDQudGVzdDAMggp4MTMwNS50ZXN0MAyCCngxMzA2LnRlc3QwDIIKeDEzMDcudGVz\ndDAMggp4MTMwOC50ZXN0MAyCCngxMzA5LnRlc3QwDIIKeDEzMTAudGVzdDAMggp4\nMTMxMS50ZXN0MAyCCngxMzEyLnRlc3QwDIIKeDEzMTMudGVzdDAMggp4MTMxNC50\nZXN0MAyCCngxMzE1LnRlc3QwDIIKeDEzMTYudGVzdDAMggp4MTMxNy50ZXN0MAyC\nCngxMzE4LnRlc3QwDIIKeDEzMTkudGVzdDAMggp4MTMyMC50ZXN0MAyCCngxMzIx\nLnRlc3QwDIIKeDEzMjIudGVzdDAMggp4MTMyMy50ZXN0MAyCCngxMzI0LnRlc3Qw\nDIIKeDEzMjUudGVzdDAMggp4MTMyNi50ZXN0MAyCCngxMzI3LnRlc3QwDIIKeDEz\nMjgudGVzdDAMggp4MTMyOS50ZXN0MAyCCngxMzMwLnRlc3QwDIIKeDEzMzEudGVz\ndDAMggp4MTMzMi50ZXN0MAyCCngxMzMzLnRlc3QwDIIKeDEzMzQudGVzdDAMggp4\nMTMzNS50ZXN0MAyCCngxMzM2LnRlc3QwDIIKeDEzMzcudGVzdDAMggp4MTMzOC50\nZXN0MAyCCngxMzM5LnRlc3QwDIIKeDEzNDAudGVzdDAMggp4MTM0MS50ZXN0MAyC\nCngxMzQyLnRlc3QwDIIKeDEzNDMudGVzdDAMggp4MTM0NC50ZXN0MAyCCngxMzQ1\nLnRlc3QwDIIKeDEzNDYudGVzdDAMggp4MTM0Ny50ZXN0MAyCCngxMzQ4LnRlc3Qw\nDIIKeDEzNDkudGVzdDAMggp4MTM1MC50ZXN0MAyCCngxMzUxLnRlc3QwDIIKeDEz\nNTIudGVzdDAMggp4MTM1My50ZXN0MAyCCngxMzU0LnRlc3QwDIIKeDEzNTUudGVz\ndDAMggp4MTM1Ni50ZXN0MAyCCngxMzU3LnRlc3QwDIIKeDEzNTgudGVzdDAMggp4\nMTM1OS50ZXN0MAyCCngxMzYwLnRlc3QwDIIKeDEzNjEudGVzdDAMggp4MTM2Mi50\nZXN0MAyCCngxMzYzLnRlc3QwDIIKeDEzNjQudGVzdDAMggp4MTM2NS50ZXN0MAyC\nCngxMzY2LnRlc3QwDIIKeDEzNjcudGVzdDAMggp4MTM2OC50ZXN0MAyCCngxMzY5\nLnRlc3QwDIIKeDEzNzAudGVzdDAMggp4MTM3MS50ZXN0MAyCCngxMzcyLnRlc3Qw\nDIIKeDEzNzMudGVzdDAMggp4MTM3NC50ZXN0MAyCCngxMzc1LnRlc3QwDIIKeDEz\nNzYudGVzdDAMggp4MTM3Ny50ZXN0MAyCCngxMzc4LnRlc3QwDIIKeDEzNzkudGVz\ndDAMggp4MTM4MC50ZXN0MAyCCngxMzgxLnRlc3QwDIIKeDEzODIudGVzdDAMggp4\nMTM4My50ZXN0MAyCCngxMzg0LnRlc3QwDIIKeDEzODUudGVzdDAMggp4MTM4Ni50\nZXN0MAyCCngxMzg3LnRlc3QwDIIKeDEzODgudGVzdDAMggp4MTM4OS50ZXN0MAyC\nCngxMzkwLnRlc3QwDIIKeDEzOTEudGVzdDAMggp4MTM5Mi50ZXN0MAyCCngxMzkz\nLnRlc3QwDIIKeDEzOTQudGVzdDAMggp4MTM5NS50ZXN0MAyCCngxMzk2LnRlc3Qw\nDIIKeDEzOTcudGVzdDAMggp4MTM5OC50ZXN0MAyCCngxMzk5LnRlc3QwDIIKeDE0\nMDAudGVzdDAMggp4MTQwMS50ZXN0MAyCCngxNDAyLnRlc3QwDIIKeDE0MDMudGVz\ndDAMggp4MTQwNC50ZXN0MAyCCngxNDA1LnRlc3QwDIIKeDE0MDYudGVzdDAMggp4\nMTQwNy50ZXN0MAyCCngxNDA4LnRlc3QwDIIKeDE0MDkudGVzdDAMggp4MTQxMC50\nZXN0MAyCCngxNDExLnRlc3QwDIIKeDE0MTIudGVzdDAMggp4MTQxMy50ZXN0MAyC\nCngxNDE0LnRlc3QwDIIKeDE0MTUudGVzdDAMggp4MTQxNi50ZXN0MAyCCngxNDE3\nLnRlc3QwDIIKeDE0MTgudGVzdDAMggp4MTQxOS50ZXN0MAyCCngxNDIwLnRlc3Qw\nDIIKeDE0MjEudGVzdDAMggp4MTQyMi50ZXN0MAyCCngxNDIzLnRlc3QwDIIKeDE0\nMjQudGVzdDAMggp4MTQyNS50ZXN0MAyCCngxNDI2LnRlc3QwDIIKeDE0MjcudGVz\ndDAMggp4MTQyOC50ZXN0MAyCCngxNDI5LnRlc3QwDIIKeDE0MzAudGVzdDAMggp4\nMTQzMS50ZXN0MAyCCngxNDMyLnRlc3QwDIIKeDE0MzMudGVzdDAMggp4MTQzNC50\nZXN0MAyCCngxNDM1LnRlc3QwDIIKeDE0MzYudGVzdDAMggp4MTQzNy50ZXN0MAyC\nCngxNDM4LnRlc3QwDIIKeDE0MzkudGVzdDAMggp4MTQ0MC50ZXN0MAyCCngxNDQx\nLnRlc3QwDIIKeDE0NDIudGVzdDAMggp4MTQ0My50ZXN0MAyCCngxNDQ0LnRlc3Qw\nDIIKeDE0NDUudGVzdDAMggp4MTQ0Ni50ZXN0MAyCCngxNDQ3LnRlc3QwDIIKeDE0\nNDgudGVzdDAMggp4MTQ0OS50ZXN0MAyCCngxNDUwLnRlc3QwDIIKeDE0NTEudGVz\ndDAMggp4MTQ1Mi50ZXN0MAyCCngxNDUzLnRlc3QwDIIKeDE0NTQudGVzdDAMggp4\nMTQ1NS50ZXN0MAyCCngxNDU2LnRlc3QwDIIKeDE0NTcudGVzdDAMggp4MTQ1OC50\nZXN0MAyCCngxNDU5LnRlc3QwDIIKeDE0NjAudGVzdDAMggp4MTQ2MS50ZXN0MAyC\nCngxNDYyLnRlc3QwDIIKeDE0NjMudGVzdDAMggp4MTQ2NC50ZXN0MAyCCngxNDY1\nLnRlc3QwDIIKeDE0NjYudGVzdDAMggp4MTQ2Ny50ZXN0MAyCCngxNDY4LnRlc3Qw\nDIIKeDE0NjkudGVzdDAMggp4MTQ3MC50ZXN0MAyCCngxNDcxLnRlc3QwDIIKeDE0\nNzIudGVzdDAMggp4MTQ3My50ZXN0MAyCCngxNDc0LnRlc3QwDIIKeDE0NzUudGVz\ndDAMggp4MTQ3Ni50ZXN0MAyCCngxNDc3LnRlc3QwDIIKeDE0NzgudGVzdDAMggp4\nMTQ3OS50ZXN0MAyCCngxNDgwLnRlc3QwDIIKeDE0ODEudGVzdDAMggp4MTQ4Mi50\nZXN0MAyCCngxNDgzLnRlc3QwDIIKeDE0ODQudGVzdDAMggp4MTQ4NS50ZXN0MAyC\nCngxNDg2LnRlc3QwDIIKeDE0ODcudGVzdDAMggp4MTQ4OC50ZXN0MAyCCngxNDg5\nLnRlc3QwDIIKeDE0OTAudGVzdDAMggp4MTQ5MS50ZXN0MAyCCngxNDkyLnRlc3Qw\nDIIKeDE0OTMudGVzdDAMggp4MTQ5NC50ZXN0MAyCCngxNDk1LnRlc3QwDIIKeDE0\nOTYudGVzdDAMggp4MTQ5Ny50ZXN0MAyCCngxNDk4LnRlc3QwDIIKeDE0OTkudGVz\ndDAMggp4MTUwMC50ZXN0MAyCCngxNTAxLnRlc3QwDIIKeDE1MDIudGVzdDAMggp4\nMTUwMy50ZXN0MAyCCngxNTA0LnRlc3QwDIIKeDE1MDUudGVzdDAMggp4MTUwNi50\nZXN0MAyCCngxNTA3LnRlc3QwDIIKeDE1MDgudGVzdDAMggp4MTUwOS50ZXN0MAyC\nCngxNTEwLnRlc3QwDIIKeDE1MTEudGVzdDAMggp4MTUxMi50ZXN0MAyCCngxNTEz\nLnRlc3QwDIIKeDE1MTQudGVzdDAMggp4MTUxNS50ZXN0MAyCCngxNTE2LnRlc3Qw\nDIIKeDE1MTcudGVzdDAMggp4MTUxOC50ZXN0MAyCCngxNTE5LnRlc3QwDIIKeDE1\nMjAudGVzdDAMggp4MTUyMS50ZXN0MAyCCngxNTIyLnRlc3QwDIIKeDE1MjMudGVz\ndDAMggp4MTUyNC50ZXN0MAyCCngxNTI1LnRlc3QwDIIKeDE1MjYudGVzdDAMggp4\nMTUyNy50ZXN0MAyCCngxNTI4LnRlc3QwDIIKeDE1MjkudGVzdDAMggp4MTUzMC50\nZXN0MAyCCngxNTMxLnRlc3QwDIIKeDE1MzIudGVzdDAMggp4MTUzMy50ZXN0MAyC\nCngxNTM0LnRlc3QwDIIKeDE1MzUudGVzdDAMggp4MTUzNi50ZXN0MAyCCngxNTM3\nLnRlc3QwDIIKeDE1MzgudGVzdDAMggp4MTUzOS50ZXN0MAyCCngxNTQwLnRlc3Qw\nDIIKeDE1NDEudGVzdDAMggp4MTU0Mi50ZXN0MAyCCngxNTQzLnRlc3QwDIIKeDE1\nNDQudGVzdDAMggp4MTU0NS50ZXN0MAyCCngxNTQ2LnRlc3QwDIIKeDE1NDcudGVz\ndDAMggp4MTU0OC50ZXN0MAyCCngxNTQ5LnRlc3QwDIIKeDE1NTAudGVzdDAMggp4\nMTU1MS50ZXN0MAyCCngxNTUyLnRlc3QwDIIKeDE1NTMudGVzdDAMggp4MTU1NC50\nZXN0MAyCCngxNTU1LnRlc3QwDIIKeDE1NTYudGVzdDAMggp4MTU1Ny50ZXN0MAyC\nCngxNTU4LnRlc3QwDIIKeDE1NTkudGVzdDAMggp4MTU2MC50ZXN0MAyCCngxNTYx\nLnRlc3QwDIIKeDE1NjIudGVzdDAMggp4MTU2My50ZXN0MAyCCngxNTY0LnRlc3Qw\nDIIKeDE1NjUudGVzdDAMggp4MTU2Ni50ZXN0MAyCCngxNTY3LnRlc3QwDIIKeDE1\nNjgudGVzdDAMggp4MTU2OS50ZXN0MAyCCngxNTcwLnRlc3QwDIIKeDE1NzEudGVz\ndDAMggp4MTU3Mi50ZXN0MAyCCngxNTczLnRlc3QwDIIKeDE1NzQudGVzdDAMggp4\nMTU3NS50ZXN0MAyCCngxNTc2LnRlc3QwDIIKeDE1NzcudGVzdDAMggp4MTU3OC50\nZXN0MAyCCngxNTc5LnRlc3QwDIIKeDE1ODAudGVzdDAMggp4MTU4MS50ZXN0MAyC\nCngxNTgyLnRlc3QwDIIKeDE1ODMudGVzdDAMggp4MTU4NC50ZXN0MAyCCngxNTg1\nLnRlc3QwDIIKeDE1ODYudGVzdDAMggp4MTU4Ny50ZXN0MAyCCngxNTg4LnRlc3Qw\nDIIKeDE1ODkudGVzdDAMggp4MTU5MC50ZXN0MAyCCngxNTkxLnRlc3QwDIIKeDE1\nOTIudGVzdDAMggp4MTU5My50ZXN0MAyCCngxNTk0LnRlc3QwDIIKeDE1OTUudGVz\ndDAMggp4MTU5Ni50ZXN0MAyCCngxNTk3LnRlc3QwDIIKeDE1OTgudGVzdDAMggp4\nMTU5OS50ZXN0MAyCCngxNjAwLnRlc3QwDIIKeDE2MDEudGVzdDAMggp4MTYwMi50\nZXN0MAyCCngxNjAzLnRlc3QwDIIKeDE2MDQudGVzdDAMggp4MTYwNS50ZXN0MAyC\nCngxNjA2LnRlc3QwDIIKeDE2MDcudGVzdDAMggp4MTYwOC50ZXN0MAyCCngxNjA5\nLnRlc3QwDIIKeDE2MTAudGVzdDAMggp4MTYxMS50ZXN0MAyCCngxNjEyLnRlc3Qw\nDIIKeDE2MTMudGVzdDAMggp4MTYxNC50ZXN0MAyCCngxNjE1LnRlc3QwDIIKeDE2\nMTYudGVzdDAMggp4MTYxNy50ZXN0MAyCCngxNjE4LnRlc3QwDIIKeDE2MTkudGVz\ndDAMggp4MTYyMC50ZXN0MAyCCngxNjIxLnRlc3QwDIIKeDE2MjIudGVzdDAMggp4\nMTYyMy50ZXN0MAyCCngxNjI0LnRlc3QwDIIKeDE2MjUudGVzdDAMggp4MTYyNi50\nZXN0MAyCCngxNjI3LnRlc3QwDIIKeDE2MjgudGVzdDAMggp4MTYyOS50ZXN0MAyC\nCngxNjMwLnRlc3QwDIIKeDE2MzEudGVzdDAMggp4MTYzMi50ZXN0MAyCCngxNjMz\nLnRlc3QwDIIKeDE2MzQudGVzdDAMggp4MTYzNS50ZXN0MAyCCngxNjM2LnRlc3Qw\nDIIKeDE2MzcudGVzdDAMggp4MTYzOC50ZXN0MAyCCngxNjM5LnRlc3QwDIIKeDE2\nNDAudGVzdDAMggp4MTY0MS50ZXN0MAyCCngxNjQyLnRlc3QwDIIKeDE2NDMudGVz\ndDAMggp4MTY0NC50ZXN0MAyCCngxNjQ1LnRlc3QwDIIKeDE2NDYudGVzdDAMggp4\nMTY0Ny50ZXN0MAyCCngxNjQ4LnRlc3QwDIIKeDE2NDkudGVzdDAMggp4MTY1MC50\nZXN0MAyCCngxNjUxLnRlc3QwDIIKeDE2NTIudGVzdDAMggp4MTY1My50ZXN0MAyC\nCngxNjU0LnRlc3QwDIIKeDE2NTUudGVzdDAMggp4MTY1Ni50ZXN0MAyCCngxNjU3\nLnRlc3QwDIIKeDE2NTgudGVzdDAMggp4MTY1OS50ZXN0MAyCCngxNjYwLnRlc3Qw\nDIIKeDE2NjEudGVzdDAMggp4MTY2Mi50ZXN0MAyCCngxNjYzLnRlc3QwDIIKeDE2\nNjQudGVzdDAMggp4MTY2NS50ZXN0MAyCCngxNjY2LnRlc3QwDIIKeDE2NjcudGVz\ndDAMggp4MTY2OC50ZXN0MAyCCngxNjY5LnRlc3QwDIIKeDE2NzAudGVzdDAMggp4\nMTY3MS50ZXN0MAyCCngxNjcyLnRlc3QwDIIKeDE2NzMudGVzdDAMggp4MTY3NC50\nZXN0MAyCCngxNjc1LnRlc3QwDIIKeDE2NzYudGVzdDAMggp4MTY3Ny50ZXN0MAyC\nCngxNjc4LnRlc3QwDIIKeDE2NzkudGVzdDAMggp4MTY4MC50ZXN0MAyCCngxNjgx\nLnRlc3QwDIIKeDE2ODIudGVzdDAMggp4MTY4My50ZXN0MAyCCngxNjg0LnRlc3Qw\nDIIKeDE2ODUudGVzdDAMggp4MTY4Ni50ZXN0MAyCCngxNjg3LnRlc3QwDIIKeDE2\nODgudGVzdDAMggp4MTY4OS50ZXN0MAyCCngxNjkwLnRlc3QwDIIKeDE2OTEudGVz\ndDAMggp4MTY5Mi50ZXN0MAyCCngxNjkzLnRlc3QwDIIKeDE2OTQudGVzdDAMggp4\nMTY5NS50ZXN0MAyCCngxNjk2LnRlc3QwDIIKeDE2OTcudGVzdDAMggp4MTY5OC50\nZXN0MAyCCngxNjk5LnRlc3QwDIIKeDE3MDAudGVzdDAMggp4MTcwMS50ZXN0MAyC\nCngxNzAyLnRlc3QwDIIKeDE3MDMudGVzdDAMggp4MTcwNC50ZXN0MAyCCngxNzA1\nLnRlc3QwDIIKeDE3MDYudGVzdDAMggp4MTcwNy50ZXN0MAyCCngxNzA4LnRlc3Qw\nDIIKeDE3MDkudGVzdDAMggp4MTcxMC50ZXN0MAyCCngxNzExLnRlc3QwDIIKeDE3\nMTIudGVzdDAMggp4MTcxMy50ZXN0MAyCCngxNzE0LnRlc3QwDIIKeDE3MTUudGVz\ndDAMggp4MTcxNi50ZXN0MAyCCngxNzE3LnRlc3QwDIIKeDE3MTgudGVzdDAMggp4\nMTcxOS50ZXN0MAyCCngxNzIwLnRlc3QwDIIKeDE3MjEudGVzdDAMggp4MTcyMi50\nZXN0MAyCCngxNzIzLnRlc3QwDIIKeDE3MjQudGVzdDAMggp4MTcyNS50ZXN0MAyC\nCngxNzI2LnRlc3QwDIIKeDE3MjcudGVzdDAMggp4MTcyOC50ZXN0MAyCCngxNzI5\nLnRlc3QwDIIKeDE3MzAudGVzdDAMggp4MTczMS50ZXN0MAyCCngxNzMyLnRlc3Qw\nDIIKeDE3MzMudGVzdDAMggp4MTczNC50ZXN0MAyCCngxNzM1LnRlc3QwDIIKeDE3\nMzYudGVzdDAMggp4MTczNy50ZXN0MAyCCngxNzM4LnRlc3QwDIIKeDE3MzkudGVz\ndDAMggp4MTc0MC50ZXN0MAyCCngxNzQxLnRlc3QwDIIKeDE3NDIudGVzdDAMggp4\nMTc0My50ZXN0MAyCCngxNzQ0LnRlc3QwDIIKeDE3NDUudGVzdDAMggp4MTc0Ni50\nZXN0MAyCCngxNzQ3LnRlc3QwDIIKeDE3NDgudGVzdDAMggp4MTc0OS50ZXN0MAyC\nCngxNzUwLnRlc3QwDIIKeDE3NTEudGVzdDAMggp4MTc1Mi50ZXN0MAyCCngxNzUz\nLnRlc3QwDIIKeDE3NTQudGVzdDAMggp4MTc1NS50ZXN0MAyCCngxNzU2LnRlc3Qw\nDIIKeDE3NTcudGVzdDAMggp4MTc1OC50ZXN0MAyCCngxNzU5LnRlc3QwDIIKeDE3\nNjAudGVzdDAMggp4MTc2MS50ZXN0MAyCCngxNzYyLnRlc3QwDIIKeDE3NjMudGVz\ndDAMggp4MTc2NC50ZXN0MAyCCngxNzY1LnRlc3QwDIIKeDE3NjYudGVzdDAMggp4\nMTc2Ny50ZXN0MAyCCngxNzY4LnRlc3QwDIIKeDE3NjkudGVzdDAMggp4MTc3MC50\nZXN0MAyCCngxNzcxLnRlc3QwDIIKeDE3NzIudGVzdDAMggp4MTc3My50ZXN0MAyC\nCngxNzc0LnRlc3QwDIIKeDE3NzUudGVzdDAMggp4MTc3Ni50ZXN0MAyCCngxNzc3\nLnRlc3QwDIIKeDE3NzgudGVzdDAMggp4MTc3OS50ZXN0MAyCCngxNzgwLnRlc3Qw\nDIIKeDE3ODEudGVzdDAMggp4MTc4Mi50ZXN0MAyCCngxNzgzLnRlc3QwDIIKeDE3\nODQudGVzdDAMggp4MTc4NS50ZXN0MAyCCngxNzg2LnRlc3QwDIIKeDE3ODcudGVz\ndDAMggp4MTc4OC50ZXN0MAyCCngxNzg5LnRlc3QwDIIKeDE3OTAudGVzdDAMggp4\nMTc5MS50ZXN0MAyCCngxNzkyLnRlc3QwDIIKeDE3OTMudGVzdDAMggp4MTc5NC50\nZXN0MAyCCngxNzk1LnRlc3QwDIIKeDE3OTYudGVzdDAMggp4MTc5Ny50ZXN0MAyC\nCngxNzk4LnRlc3QwDIIKeDE3OTkudGVzdDAMggp4MTgwMC50ZXN0MAyCCngxODAx\nLnRlc3QwDIIKeDE4MDIudGVzdDAMggp4MTgwMy50ZXN0MAyCCngxODA0LnRlc3Qw\nDIIKeDE4MDUudGVzdDAMggp4MTgwNi50ZXN0MAyCCngxODA3LnRlc3QwDIIKeDE4\nMDgudGVzdDAMggp4MTgwOS50ZXN0MAyCCngxODEwLnRlc3QwDIIKeDE4MTEudGVz\ndDAMggp4MTgxMi50ZXN0MAyCCngxODEzLnRlc3QwDIIKeDE4MTQudGVzdDAMggp4\nMTgxNS50ZXN0MAyCCngxODE2LnRlc3QwDIIKeDE4MTcudGVzdDAMggp4MTgxOC50\nZXN0MAyCCngxODE5LnRlc3QwDIIKeDE4MjAudGVzdDAMggp4MTgyMS50ZXN0MAyC\nCngxODIyLnRlc3QwDIIKeDE4MjMudGVzdDAMggp4MTgyNC50ZXN0MAyCCngxODI1\nLnRlc3QwDIIKeDE4MjYudGVzdDAMggp4MTgyNy50ZXN0MAyCCngxODI4LnRlc3Qw\nDIIKeDE4MjkudGVzdDAMggp4MTgzMC50ZXN0MAyCCngxODMxLnRlc3QwDIIKeDE4\nMzIudGVzdDAMggp4MTgzMy50ZXN0MAyCCngxODM0LnRlc3QwDIIKeDE4MzUudGVz\ndDAMggp4MTgzNi50ZXN0MAyCCngxODM3LnRlc3QwDIIKeDE4MzgudGVzdDAMggp4\nMTgzOS50ZXN0MAyCCngxODQwLnRlc3QwDIIKeDE4NDEudGVzdDAMggp4MTg0Mi50\nZXN0MAyCCngxODQzLnRlc3QwDIIKeDE4NDQudGVzdDAMggp4MTg0NS50ZXN0MAyC\nCngxODQ2LnRlc3QwDIIKeDE4NDcudGVzdDAMggp4MTg0OC50ZXN0MAyCCngxODQ5\nLnRlc3QwDIIKeDE4NTAudGVzdDAMggp4MTg1MS50ZXN0MAyCCngxODUyLnRlc3Qw\nDIIKeDE4NTMudGVzdDAMggp4MTg1NC50ZXN0MAyCCngxODU1LnRlc3QwDIIKeDE4\nNTYudGVzdDAMggp4MTg1Ny50ZXN0MAyCCngxODU4LnRlc3QwDIIKeDE4NTkudGVz\ndDAMggp4MTg2MC50ZXN0MAyCCngxODYxLnRlc3QwDIIKeDE4NjIudGVzdDAMggp4\nMTg2My50ZXN0MAyCCngxODY0LnRlc3QwDIIKeDE4NjUudGVzdDAMggp4MTg2Ni50\nZXN0MAyCCngxODY3LnRlc3QwDIIKeDE4NjgudGVzdDAMggp4MTg2OS50ZXN0MAyC\nCngxODcwLnRlc3QwDIIKeDE4NzEudGVzdDAMggp4MTg3Mi50ZXN0MAyCCngxODcz\nLnRlc3QwDIIKeDE4NzQudGVzdDAMggp4MTg3NS50ZXN0MAyCCngxODc2LnRlc3Qw\nDIIKeDE4NzcudGVzdDAMggp4MTg3OC50ZXN0MAyCCngxODc5LnRlc3QwDIIKeDE4\nODAudGVzdDAMggp4MTg4MS50ZXN0MAyCCngxODgyLnRlc3QwDIIKeDE4ODMudGVz\ndDAMggp4MTg4NC50ZXN0MAyCCngxODg1LnRlc3QwDIIKeDE4ODYudGVzdDAMggp4\nMTg4Ny50ZXN0MAyCCngxODg4LnRlc3QwDIIKeDE4ODkudGVzdDAMggp4MTg5MC50\nZXN0MAyCCngxODkxLnRlc3QwDIIKeDE4OTIudGVzdDAMggp4MTg5My50ZXN0MAyC\nCngxODk0LnRlc3QwDIIKeDE4OTUudGVzdDAMggp4MTg5Ni50ZXN0MAyCCngxODk3\nLnRlc3QwDIIKeDE4OTgudGVzdDAMggp4MTg5OS50ZXN0MAyCCngxOTAwLnRlc3Qw\nDIIKeDE5MDEudGVzdDAMggp4MTkwMi50ZXN0MAyCCngxOTAzLnRlc3QwDIIKeDE5\nMDQudGVzdDAMggp4MTkwNS50ZXN0MAyCCngxOTA2LnRlc3QwDIIKeDE5MDcudGVz\ndDAMggp4MTkwOC50ZXN0MAyCCngxOTA5LnRlc3QwDIIKeDE5MTAudGVzdDAMggp4\nMTkxMS50ZXN0MAyCCngxOTEyLnRlc3QwDIIKeDE5MTMudGVzdDAMggp4MTkxNC50\nZXN0MAyCCngxOTE1LnRlc3QwDIIKeDE5MTYudGVzdDAMggp4MTkxNy50ZXN0MAyC\nCngxOTE4LnRlc3QwDIIKeDE5MTkudGVzdDAMggp4MTkyMC50ZXN0MAyCCngxOTIx\nLnRlc3QwDIIKeDE5MjIudGVzdDAMggp4MTkyMy50ZXN0MAyCCngxOTI0LnRlc3Qw\nDIIKeDE5MjUudGVzdDAMggp4MTkyNi50ZXN0MAyCCngxOTI3LnRlc3QwDIIKeDE5\nMjgudGVzdDAMggp4MTkyOS50ZXN0MAyCCngxOTMwLnRlc3QwDIIKeDE5MzEudGVz\ndDAMggp4MTkzMi50ZXN0MAyCCngxOTMzLnRlc3QwDIIKeDE5MzQudGVzdDAMggp4\nMTkzNS50ZXN0MAyCCngxOTM2LnRlc3QwDIIKeDE5MzcudGVzdDAMggp4MTkzOC50\nZXN0MAyCCngxOTM5LnRlc3QwDIIKeDE5NDAudGVzdDAMggp4MTk0MS50ZXN0MAyC\nCngxOTQyLnRlc3QwDIIKeDE5NDMudGVzdDAMggp4MTk0NC50ZXN0MAyCCngxOTQ1\nLnRlc3QwDIIKeDE5NDYudGVzdDAMggp4MTk0Ny50ZXN0MAyCCngxOTQ4LnRlc3Qw\nDIIKeDE5NDkudGVzdDAMggp4MTk1MC50ZXN0MAyCCngxOTUxLnRlc3QwDIIKeDE5\nNTIudGVzdDAMggp4MTk1My50ZXN0MAyCCngxOTU0LnRlc3QwDIIKeDE5NTUudGVz\ndDAMggp4MTk1Ni50ZXN0MAyCCngxOTU3LnRlc3QwDIIKeDE5NTgudGVzdDAMggp4\nMTk1OS50ZXN0MAyCCngxOTYwLnRlc3QwDIIKeDE5NjEudGVzdDAMggp4MTk2Mi50\nZXN0MAyCCngxOTYzLnRlc3QwDIIKeDE5NjQudGVzdDAMggp4MTk2NS50ZXN0MAyC\nCngxOTY2LnRlc3QwDIIKeDE5NjcudGVzdDAMggp4MTk2OC50ZXN0MAyCCngxOTY5\nLnRlc3QwDIIKeDE5NzAudGVzdDAMggp4MTk3MS50ZXN0MAyCCngxOTcyLnRlc3Qw\nDIIKeDE5NzMudGVzdDAMggp4MTk3NC50ZXN0MAyCCngxOTc1LnRlc3QwDIIKeDE5\nNzYudGVzdDAMggp4MTk3Ny50ZXN0MAyCCngxOTc4LnRlc3QwDIIKeDE5NzkudGVz\ndDAMggp4MTk4MC50ZXN0MAyCCngxOTgxLnRlc3QwDIIKeDE5ODIudGVzdDAMggp4\nMTk4My50ZXN0MAyCCngxOTg0LnRlc3QwDIIKeDE5ODUudGVzdDAMggp4MTk4Ni50\nZXN0MAyCCngxOTg3LnRlc3QwDIIKeDE5ODgudGVzdDAMggp4MTk4OS50ZXN0MAyC\nCngxOTkwLnRlc3QwDIIKeDE5OTEudGVzdDAMggp4MTk5Mi50ZXN0MAyCCngxOTkz\nLnRlc3QwDIIKeDE5OTQudGVzdDAMggp4MTk5NS50ZXN0MAyCCngxOTk2LnRlc3Qw\nDIIKeDE5OTcudGVzdDAMggp4MTk5OC50ZXN0MAyCCngxOTk5LnRlc3QwDIIKeDIw\nMDAudGVzdDAMggp4MjAwMS50ZXN0MAyCCngyMDAyLnRlc3QwDIIKeDIwMDMudGVz\ndDAMggp4MjAwNC50ZXN0MAyCCngyMDA1LnRlc3QwDIIKeDIwMDYudGVzdDAMggp4\nMjAwNy50ZXN0MAyCCngyMDA4LnRlc3QwDIIKeDIwMDkudGVzdDAMggp4MjAxMC50\nZXN0MAyCCngyMDExLnRlc3QwDIIKeDIwMTIudGVzdDAMggp4MjAxMy50ZXN0MAyC\nCngyMDE0LnRlc3QwDIIKeDIwMTUudGVzdDAMggp4MjAxNi50ZXN0MAyCCngyMDE3\nLnRlc3QwDIIKeDIwMTgudGVzdDAMggp4MjAxOS50ZXN0MAyCCngyMDIwLnRlc3Qw\nDIIKeDIwMjEudGVzdDAMggp4MjAyMi50ZXN0MAyCCngyMDIzLnRlc3QwDIIKeDIw\nMjQudGVzdDAMggp4MjAyNS50ZXN0MAyCCngyMDI2LnRlc3QwDIIKeDIwMjcudGVz\ndDAMggp4MjAyOC50ZXN0MAyCCngyMDI5LnRlc3QwDIIKeDIwMzAudGVzdDAMggp4\nMjAzMS50ZXN0MAyCCngyMDMyLnRlc3QwDIIKeDIwMzMudGVzdDAMggp4MjAzNC50\nZXN0MAyCCngyMDM1LnRlc3QwDIIKeDIwMzYudGVzdDAMggp4MjAzNy50ZXN0MAyC\nCngyMDM4LnRlc3QwDIIKeDIwMzkudGVzdDAMggp4MjA0MC50ZXN0MAyCCngyMDQx\nLnRlc3QwDIIKeDIwNDIudGVzdDAMggp4MjA0My50ZXN0MAyCCngyMDQ0LnRlc3Qw\nDIIKeDIwNDUudGVzdDAMggp4MjA0Ni50ZXN0MAyCCngyMDQ3LnRlc3QwCgYIKoZI\nzj0EAwIDSAAwRQIhAPLlchMRf5zyznK78EBAIyMFiddjFqMPkh6asGC+IlD5AiB5\nlVJvDHqhyL3Ubwkv85mdtVZjFXORd3/Tex70zbzJRg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMILVPzCC1OagAwIBAgIUWJCqTNl9ANqIVZAwQakxYlKIy2kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjCC07wxFjAUBgkqhkiG9w0BCQEWB3QwQHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3QxQHRlc3QxFjAUBgkqhkiG9w0BCQEWB3QyQHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3QzQHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q0QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q1QHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q2QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q3QHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q4QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxMEB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0MTFAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDEyQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQxM0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MTRAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDE1QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxNkB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0MTdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDE4QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQxOUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjBA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDIxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQy\nMkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjNAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDI0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyNUB0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0MjZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDI3QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQyOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjlAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDMwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzMUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0MzJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDMzQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQzNEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzVAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDM2QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzN0B0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0MzhAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDM5QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ0MEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDFAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDQyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0M0B0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ1\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nNDdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ4QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ0OUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTBAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDUxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1MkB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0NTNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDU0QHRlc3QxFzAVBgkqhkiG\n9w0BCQEWCHQ1NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTZAdGVzdDEXMBUGCSqG\nSIb3DQEJARYIdDU3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1OEB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0NTlAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDYwQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQ2MUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjJAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDYzQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2NEB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0NjVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDY2QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQ2N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjhA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDY5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3\nMEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzFAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDcyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3M0B0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0NzRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDc1QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQ3NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzdAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDc4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3OUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0ODBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDgxQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQ4MkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODNAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDg0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4NUB0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0ODZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDg3QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ4OEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODlAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDkwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5MUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDkz\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nOTVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDk2QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ5N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0OThAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTAyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDEwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDExMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTExQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDExNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTE3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTI2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDEzMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTMy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDEzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTM1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTUwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTgw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTgzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTg5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxOTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTk4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxOTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjEzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjIyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjMxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjM3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQ2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjUy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjU1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjYxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjcwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyOTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Mjk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzAw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzAzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzA5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzE4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzMzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzUxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzU3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzY2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzcy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzc1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Mzc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzgxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzkwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzOTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwMUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwN0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxMEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDExQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxNkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDIw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQyMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDIzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDI5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDM1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDM4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ0NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDUzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDU5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDYyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ3MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDcxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDc3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDgzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDg2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0ODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDky\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ5NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDk1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0OTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUwMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTAxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwM0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTA0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwNkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUwOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTEwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxMkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTEzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUxNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUxOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyMUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTIyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUyNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyN0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzMEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUzM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzNkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTM3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUzOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTQ2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU0OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQ5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTUyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU1N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTU4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTYxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU2M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTcwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU3MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTczQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU4MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTgyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1ODNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTg1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU4N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTkxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1OTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTk0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU5NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTk3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1OThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjAwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYwNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjA2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjA5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYxMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjEy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjE1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjE4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYyMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjIxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyM0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjI0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyNkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYyOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjMwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzMkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjMzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYzNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjQyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY0NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY1M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjU3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY1OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjYw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjYzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjY2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY2OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjY5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjcyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY3N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njc4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjgxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY4M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2ODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjkwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY5MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjkzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2OTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzAyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDcwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDcxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzExQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcxNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzE3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzI2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDczMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzMy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDczNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzM1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzUwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Nzc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzgw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzgzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3ODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Nzg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzg5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3OTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Nzk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzk4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODEzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODIyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODMxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODM3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQ2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODUy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODU1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODYxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODcwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4ODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4ODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4OTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTAw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTAzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTA5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTE4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTMzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTUxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTU3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTY2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTcy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTc1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTgxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5ODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTkwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5OTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjYx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjYyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjcxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjczQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjgwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjgyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjkxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjkz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzEwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzEyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzIxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzIzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzUxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzUzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzYwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzYyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzcxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzcz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzkwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzkyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjYx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjYyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjcxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjczQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjgwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjgyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjkxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjkz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzEwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzEyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzIxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzIzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzUxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzUzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzYwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzYyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzcxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzcz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzkwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzkyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDQ3QHRlc3QxEDAOBgNVBAMMB3QwLnRlc3QwWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAATUgzE9QIntnppSaYM0CwUNTmyqjiHW6R540OWGprkG323g1F7Gmvq/\nSIpPrYPct1gb7mldhbxEfpRfMVvTwa4Xo2QwYjAdBgNVHQ4EFgQUiReA557zNLiG\nJf/o4EGqnVEZj7wwHwYDVR0jBBgwFoAUyDMBku6pukjcR3gSrAEbdDIbRPUwCwYD\nVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAoGCCqGSM49BAMCA0cAMEQC\nIAnjr6Bf+SmnHiJYsU6QGVNeCcCcwU08J15NHTkpU9hFAiABaxEt3VoMNgGCMIn7\nKSa+26jwdOybRCdsLLkXS08d/Q==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGciN8KE09CA2Nhpz6TjiAVv0xEmbfbXLEtLwYViRS4WoAoGCCqGSM49\nAwEHoUQDQgAE1IMxPUCJ7Z6aUmmDNAsFDU5sqo4h1ukeeNDlhqa5Bt9t4NRexpr6\nv0iKT62D3LdYG+5pXYW8RH6UXzFb08GuFw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMILVQTCC1OagAwIBAgIUJjMF4XDuJ0q9GPTSALQXgLCy8wUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjCC07wxFjAUBgkqhkiG9w0BCQEWB3QwQHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3QxQHRlc3QxFjAUBgkqhkiG9w0BCQEWB3QyQHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3QzQHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q0QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q1QHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q2QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q3QHRlc3QxFjAUBgkqhkiG9w0BCQEWB3Q4QHRlc3QxFjAUBgkq\nhkiG9w0BCQEWB3Q5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxMEB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0MTFAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDEyQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQxM0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MTRAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDE1QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQxNkB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0MTdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDE4QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQxOUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjBA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDIxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQy\nMkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjNAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDI0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQyNUB0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0MjZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDI3QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQyOEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MjlAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDMwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzMUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0MzJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDMzQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQzNEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0MzVAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDM2QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQzN0B0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0MzhAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDM5QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ0MEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDFAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDQyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0M0B0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0NDRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ1\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ0NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nNDdAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDQ4QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ0OUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTBAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDUxQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1MkB0ZXN0MRcwFQYJKoZIhvcN\nAQkBFgh0NTNAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDU0QHRlc3QxFzAVBgkqhkiG\n9w0BCQEWCHQ1NUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NTZAdGVzdDEXMBUGCSqG\nSIb3DQEJARYIdDU3QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ1OEB0ZXN0MRcwFQYJ\nKoZIhvcNAQkBFgh0NTlAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDYwQHRlc3QxFzAV\nBgkqhkiG9w0BCQEWCHQ2MUB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjJAdGVzdDEX\nMBUGCSqGSIb3DQEJARYIdDYzQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ2NEB0ZXN0\nMRcwFQYJKoZIhvcNAQkBFgh0NjVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDY2QHRl\nc3QxFzAVBgkqhkiG9w0BCQEWCHQ2N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NjhA\ndGVzdDEXMBUGCSqGSIb3DQEJARYIdDY5QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3\nMEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzFAdGVzdDEXMBUGCSqGSIb3DQEJARYI\ndDcyQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3M0B0ZXN0MRcwFQYJKoZIhvcNAQkB\nFgh0NzRAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDc1QHRlc3QxFzAVBgkqhkiG9w0B\nCQEWCHQ3NkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0NzdAdGVzdDEXMBUGCSqGSIb3\nDQEJARYIdDc4QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ3OUB0ZXN0MRcwFQYJKoZI\nhvcNAQkBFgh0ODBAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDgxQHRlc3QxFzAVBgkq\nhkiG9w0BCQEWCHQ4MkB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODNAdGVzdDEXMBUG\nCSqGSIb3DQEJARYIdDg0QHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ4NUB0ZXN0MRcw\nFQYJKoZIhvcNAQkBFgh0ODZAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDg3QHRlc3Qx\nFzAVBgkqhkiG9w0BCQEWCHQ4OEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0ODlAdGVz\ndDEXMBUGCSqGSIb3DQEJARYIdDkwQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5MUB0\nZXN0MRcwFQYJKoZIhvcNAQkBFgh0OTJAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDkz\nQHRlc3QxFzAVBgkqhkiG9w0BCQEWCHQ5NEB0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0\nOTVAdGVzdDEXMBUGCSqGSIb3DQEJARYIdDk2QHRlc3QxFzAVBgkqhkiG9w0BCQEW\nCHQ5N0B0ZXN0MRcwFQYJKoZIhvcNAQkBFgh0OThAdGVzdDEXMBUGCSqGSIb3DQEJ\nARYIdDk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTAyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEwNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDEwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTA4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDExMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTExQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDExNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTE3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxMThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDExOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDEyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTI2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxMjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEyOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDEzMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTMy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDEzNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTM1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxMzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDEzN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxMzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE0NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTUwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE1MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTU5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxNjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxNjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE2N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTc0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxNzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE3NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MTc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxNzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDE3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTgw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDE4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTgzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQxODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE4NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MTg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxODdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDE4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTg5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQxOTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQx\nOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDE5NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MTk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQxOTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDE5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MTk4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQxOTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjA3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIwOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjEzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nMTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIxOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDIyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjIyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyMjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIyNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDIyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjI4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDIzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjMxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyMzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyMzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDIzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjM3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyMzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDIzOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjQ2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI0OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjUy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjU1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyNTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI1N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjYxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyNjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nNjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI2NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MjcwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyNzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI3MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MjczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDI3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjc5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQyODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MjgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyODNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDI4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQyODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI4N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQy\nODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MjkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDI5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mjk0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQyOTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDI5NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Mjk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQyOThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDI5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzAw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzAzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMwNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzA5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMxNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDMxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzE4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzMTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDMyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDMyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzI3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzMjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMyOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzMzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDMzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzMzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzMzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nMzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDMzOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM0NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzQ4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzUxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0MzU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzU3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzNThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM1OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nNjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0MzYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzY2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzNjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM2OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzcy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzc1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQzNzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM3N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Mzc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzNzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDM4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzgxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQzODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQz\nODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM4NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Mzg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzODhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDM4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0MzkwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQzOTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDM5MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0MzkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDM5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQzOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDM5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Mzk5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwMUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDAyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MDNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQwNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQwN0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDA4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxMEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDExQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQxM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDE0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQxNkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDE3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQxOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDIw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQyMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDIzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0MjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQyNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDI2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MjdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQyOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDI5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0MzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDMyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nMzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQzNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDM1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0MzZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQzN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDM4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0MzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDQxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ0M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ0NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDQ3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ0OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDUwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ1MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDUzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDU2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nNTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ1OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDU5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ2MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDYyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0NjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ2NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDY1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ2N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDY4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ3MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDcxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0NzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDc0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0NzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDQ3NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDc3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ0NzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ3OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDgwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0\nODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NDgzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0ODRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDQ4NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDg2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ0ODdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ4OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NDg5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDQ5MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDky\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDQ5NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NDk1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ0OTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDQ5N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NDk4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ0OTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUwMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTAxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwM0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTA0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUwNkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTA3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUwOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTEwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUxMkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTEzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUxNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDUxOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTE5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1MjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyMUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTIyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDUyNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1MjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUyN0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTI4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nMjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzMEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTMxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDUzM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTM0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1MzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDUzNkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTM3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1MzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDUzOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU0MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU0NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTQ2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU0OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTQ5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTUyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU1NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTU1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU1N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTU4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1NTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTYxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU2M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU2NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTY3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1NjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU2OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTcwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1NzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU3MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTczQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1NzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTc2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1\nNzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU3OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NTc5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDU4MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTgyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ1ODNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU4NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NTg1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDU4N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTg4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1ODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDU5MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTkxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ1OTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NTk0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ1OTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDU5NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NTk3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ1OThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDU5OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjAwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjAzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYwNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjA2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYwOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjA5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYxMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjEy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYxNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjE1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2MTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYxN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjE4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDYyMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjIxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2MjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyM0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjI0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nMjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYyNkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjI3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDYyOUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjMwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2MzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDYzMkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjMzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDYzNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2MzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDYzOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjM5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NDBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjQyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NDNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY0NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NDZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY0N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjQ4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NjUxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY1M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjU0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY1NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjU3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY1OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjYw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY2MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjYzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2NjRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY2NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjY2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NjdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY2OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjY5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2NzBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjcyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nNzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY3NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njc1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2NzZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDY3N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njc4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ2NzlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4MEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NjgxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDY4M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2ODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDY4NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njg3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ2ODhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY4OUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NjkwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2OTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDY5MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NjkzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ2OTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5NUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0Njk2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ2\nOTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDY5OEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Njk5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcwMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzAyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcwNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzA1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDcwN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzA4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDcxMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzExQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzE0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDcxNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzE3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3MThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcxOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzIwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nMjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyMkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzIzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDcyNUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzI2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3MjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDcyOEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzI5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDczMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzMy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDczNEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzM1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3MzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDczN0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzM4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3MzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc0MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NDJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzQ0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc0NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzQ3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NDhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc0OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzUwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc1MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0NzUzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc1NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc1OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzU5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3NjBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0NzYyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NjNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc2NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3NjZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc2N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzY4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nNjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0NzcxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc3M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzc0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3NzVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc3NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0Nzc3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3NzhAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDc3OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzgw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDc4MkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzgzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ3ODRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc4NUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0Nzg2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3ODdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDc4OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzg5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ3OTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5MUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0NzkyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3\nOTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDc5NEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0Nzk1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ3OTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDc5N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0Nzk4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ3OTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODAxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgwM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MDVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgwNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODA3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MDhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgwOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODEwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MTFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgxMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODEzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MTRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODE2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nMTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgxOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODE5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDgyMUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODIyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4MjNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgyNEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODI1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDgyN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODI4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MjlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDgzMEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODMxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4MzJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzM0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODM0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4MzVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDgzNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODM3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4MzhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDgzOUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODQzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NDRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg0NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODQ2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NDdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg0OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODQ5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg1MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODUy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg1NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODU1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4NTZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg1N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODU4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NTlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg2MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODYxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4NjJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODY0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nNjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg2NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODY3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NjhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg2OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODcwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4NzFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg3MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODczQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg3NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4NzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDg3OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODc5QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ4ODBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4MUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0ODgyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4ODNAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDg4NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg1QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ4ODZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg4N0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODg4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4\nODlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5MEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0ODkxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OTJAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDg5M0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0ODk0QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ4OTVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDg5NkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0ODk3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ4OThAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDg5OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTAw\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDFAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkwMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTAzQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MDRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkwNUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTA2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MDdAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkwOEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTA5QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MTBAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxMUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTEyQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMTNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkxNEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTE1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MTZAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDkxN0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTE4QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5MTlAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyMEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTIxQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjJAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDkyM0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI0\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MjVAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDkyNkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTI3QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5MjhAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkyOUB0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTMwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5MzFAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDkzMkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTMzQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5MzRAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzNUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTM2QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nMzdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDkzOEB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTM5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDBAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk0MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQyQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NDNAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk0NEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTQ1QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDZAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk0N0B0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTQ4\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NDlAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk1MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTUxQHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NTJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1M0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTU0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NTVAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk1NkB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTU3QHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5NThAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk1OUB0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTYwQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nNjFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2MkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTYzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NjRAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk2NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTY2QHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5NjdAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk2OEB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTY5QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzBAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk3MUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTcy\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzNAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk3NEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTc1QHRlc3QxGDAWBgkqhkiG9w0B\nCQEWCXQ5NzZAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk3N0B0ZXN0MRgwFgYJKoZI\nhvcNAQkBFgl0OTc4QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5NzlAdGVzdDEYMBYG\nCSqGSIb3DQEJARYJdDk4MEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTgxQHRlc3Qx\nGDAWBgkqhkiG9w0BCQEWCXQ5ODJAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4M0B0\nZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTg0QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5\nODVAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk4NkB0ZXN0MRgwFgYJKoZIhvcNAQkB\nFgl0OTg3QHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5ODhAdGVzdDEYMBYGCSqGSIb3\nDQEJARYJdDk4OUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTkwQHRlc3QxGDAWBgkq\nhkiG9w0BCQEWCXQ5OTFAdGVzdDEYMBYGCSqGSIb3DQEJARYJdDk5MkB0ZXN0MRgw\nFgYJKoZIhvcNAQkBFgl0OTkzQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTRAdGVz\ndDEYMBYGCSqGSIb3DQEJARYJdDk5NUB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk2\nQHRlc3QxGDAWBgkqhkiG9w0BCQEWCXQ5OTdAdGVzdDEYMBYGCSqGSIb3DQEJARYJ\ndDk5OEB0ZXN0MRgwFgYJKoZIhvcNAQkBFgl0OTk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMDg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMDg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMDg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMDkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMDk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMDk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMDk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMDk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjQ4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjU5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjYx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjYyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjcxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjczQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjc4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjgwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjgyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMjg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMjg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjg5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMjkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjkxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMjkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjkz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMjk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMjk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMjk4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMjk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzAzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzA5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzEwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzEyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzE5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzIxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzIzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzI4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzM5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzUxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzUzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzU4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzYwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzYyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzY5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzcxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzcz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzc4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzgzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxMzg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxMzg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxMzg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzg5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzkwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxMzkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzkyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxMzkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxMzk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nMzk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxMzk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNDg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNDg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNDg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNDkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNDk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNDk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNDk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNDk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjQ4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjU5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjYx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjYyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjcxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjczQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjc4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjgwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjgyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNjg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNjg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjg5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNjkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjkxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNjkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjkz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNjk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNjk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNjk4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNjk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzAzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzA5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzEwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzEyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzE5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzIxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzIzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzI4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzM5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzQ3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzQ5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzUxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzUzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzU0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzU2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzU4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzYwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzYyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzYzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzY5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzcwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzcxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzcyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzcz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzc4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzc5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzgzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxNzg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxNzg2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxNzg4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzg5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzkwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxNzkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzkyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxNzkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxNzk1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nNzk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxNzk5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODAxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODAyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODAzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODA0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODA4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODExQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODEzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODE4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODE5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODIwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODIx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODIyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODI3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODI5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODMxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODMzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODM0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODM2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODM4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODQzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODQ5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODUwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODUxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODUyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODUz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODU4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODU5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODYzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODY2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODY4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODY5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODcwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODcyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODc1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODc5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODgxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODgyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODgzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxODg0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxODg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODg4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxODg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxODkxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxODkzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nODk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxODk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxODk4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxODk5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTAwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTAx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTAyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTA3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTA5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTExQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTEzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTE0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTE2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTE4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTIwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTIyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTIzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTI5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTMwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTMxQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTMyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTMz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTM4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTM5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTQ4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTQ5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTUwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTUxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTUyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTUzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTU1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTU4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTU5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTYwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTYxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTYyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTYzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTY0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTY3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTY4QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTY5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTcwQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTcxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTcyQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTczQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTc0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc1QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTc2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc3QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTc4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTc5QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTgwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTgx\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTgyQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTgzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg0QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQxOTg1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg2QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQxOTg3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg4QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTg5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQx\nOTkwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTkxQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQxOTkyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTkzQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQxOTk0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk1QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQxOTk2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk3\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQxOTk4QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQxOTk5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDAwQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDAxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDAyQHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDAzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA0QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDA2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA3QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDA4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDA5QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDEwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDExQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDEyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDEz\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE0QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDE1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE2QHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDE3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDE4QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDE5QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIwQHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDIyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDIzQHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDI0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI1QHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDI2QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI3QHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDI4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDI5\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDMwQHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDMxQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDMyQHRlc3QxGTAXBgkqhkiG\n9w0BCQEWCnQyMDMzQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM0QHRlc3QxGTAX\nBgkqhkiG9w0BCQEWCnQyMDM1QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM2QHRl\nc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM3QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQy\nMDM4QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDM5QHRlc3QxGTAXBgkqhkiG9w0B\nCQEWCnQyMDQwQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQxQHRlc3QxGTAXBgkq\nhkiG9w0BCQEWCnQyMDQyQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQzQHRlc3Qx\nGTAXBgkqhkiG9w0BCQEWCnQyMDQ0QHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQ1\nQHRlc3QxGTAXBgkqhkiG9w0BCQEWCnQyMDQ2QHRlc3QxGTAXBgkqhkiG9w0BCQEW\nCnQyMDQ3QHRlc3QxEDAOBgNVBAMMB3QwLnRlc3QwWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAARivJcGYiHZDGDh4lpFLCkceb8kaV427Oh+S3lNnHc2aay45W7mgZCI\ncVPzZkYzXRBcIfbUR6jqU96sN7VvwZ2So2QwYjAdBgNVHQ4EFgQUebdiiFGTpPdr\ncNib0jtKAsBfC34wHwYDVR0jBBgwFoAUBtdoZDet7XBiIey7hP0JVpRXekwwCwYD\nVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAoGCCqGSM49BAMCA0kAMEYC\nIQDayGu1O08NuJlZAkl2m21ddLV5+6KDAAm7YEHVlQ926AIhALvFJMKvS+GK4wx5\nszzJ1HQDt9PYANIl6F/JKt5zPirn\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEkZsiPoTfGkotyhNkGneoP4rsJgA/cPIPee4k4uk1qYoAoGCCqGSM49\nAwEHoUQDQgAEYryXBmIh2Qxg4eJaRSwpHHm/JGleNuzofkt5TZx3NmmsuOVu5oGQ\niHFT82ZGM10QXCH21Eeo6lPerDe1b8Gdkg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -579,14 +600,15 @@ "id": "rfc5280::aki::critical-aki", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert has an AKI extension marked as critical, which is disallowed\nunder RFC 5280 4.2.1.1:\n\n> Conforming CAs MUST mark this extension as non-critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIULCWqzkTVRZ7kBjJ6jUNhJsHUvLowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQhLb1LnBj1egSHFfPrI2FwZOQCnXuzl7utwK7E\nKDG+sFhqXVibyq/0jw1npe7ohz9wIqnTjoEFf3MafOeqNb8do3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAi\nBgNVHSMBAf8EGDAWgBSWfETThnveyNIekQ7eeFGzjUQBKjAdBgNVHQ4EFgQUlnxE\n04Z73sjSHpEO3nhRs41EASowCgYIKoZIzj0EAwIDSAAwRQIhANMTFHRhHnLVnJSv\n+ax/1kUwHcraHis9+Vr7fOdJcRrKAiBwCt366SIf2Q1l2B56OVVAuIVmPYIvqVkF\nsXbVtvZDpQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUYEJTOBaRxKV4l8YcVDPPirJLbR0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASlL7NtHHPiJiIKMldimW0iAluYifR30CI+YtLo\nR5zvlup+O9VB8qcL7q3mpvEmTKnB5KLaYFe7nbQuoyBhbXavo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAi\nBgNVHSMBAf8EGDAWgBQGMpy1h2RxGWl2sb5gQkZWYEtvCzAdBgNVHQ4EFgQUBjKc\ntYdkcRlpdrG+YEJGVmBLbwswCgYIKoZIzj0EAwIDSAAwRQIgZWRk0IxklaAm/dVi\neHNRw7sTgH64ZpKrxNM/0uhSnskCIQDwOrVy6XPtb3U/kb1IuttSIGN+YnnjH1Uc\nN7QZlGaj7w==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUP+3VMDMQM/4g8AxMCA4SQ9mclNIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABLZvaBcp3OylqylZIzV9B5vf0JDq0utmzVkrWuzRjaYR\nzbBx3qKSOGn3aWZ5UQ/6u6KdF8tQuGVrO3u2aVCYTmajfDB6MB0GA1UdDgQWBBRN\nRBv5hHERjKKoWIt4DfIdRm8zwTAfBgNVHSMEGDAWgBSWfETThnveyNIekQ7eeFGz\njUQBKjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgTD3JqpsNkLcrju0NRxxi\nESFNFwNgwhMx4VcGEb0eSwgCIBYfAl3sH1trHeAC78NvNQxEI8kPXpxdVc3wg0pc\nxELx\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILefTNYSUo3f7V41nRwViIaNLFOYDbA/O+zEgoj35JDdoAoGCCqGSM49\nAwEHoUQDQgAEtm9oFync7KWrKVkjNX0Hm9/QkOrS62bNWSta7NGNphHNsHHeopI4\nafdpZnlRD/q7op0Xy1C4ZWs7e7ZpUJhOZg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUYtVakItNu7Y9Lf/Ui7nAheTA2hcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABN/gve8WUN/uPZjeU3S7c4D6rTs7C6nCDA9rwdT2OXn1\nNPPss9mQUaQT/iHHLsAgngjJcJAhjWGDQiv2hgzUcyyjfDB6MB0GA1UdDgQWBBTY\n5eYA20eB+bV4resnxYrQ4RM8gTAfBgNVHSMEGDAWgBQGMpy1h2RxGWl2sb5gQkZW\nYEtvCzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgIfKhr10CP/ure9VD23cl\nwZlNLgMuuIi1JLhVXPhnlVoCIFCq+0xRCuoDq4NtMjQyLuNuU19w73/o3unXIdob\nCfZg\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBcH41tK5TW6csZihPCCG7Yz7/9sBs7w3Yj/xPTRntA0oAoGCCqGSM49\nAwEHoUQDQgAE3+C97xZQ3+49mN5TdLtzgPqtOzsLqcIMD2vB1PY5efU08+yz2ZBR\npBP+IccuwCCeCMlwkCGNYYNCK/aGDNRzLA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -603,14 +625,15 @@ "id": "rfc5280::aki::leaf-missing-aki", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert is signed by the root but missing the AKI extension, which is\nforbidden under RFC 5280 4.2.1.1.\n\n> The keyIdentifier field of the authorityKeyIdentifier extension MUST\n> be included in all certificates generated by conforming CAs to\n> facilitate certification path construction.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUEBe9AIuUkmmbYKx8Zvo+215cJREwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQAYhD/1ByhYJIuMiBI836eqB5HQdzPjDnAO7NG\nKIVA0sFDHN36UlVLGbX2qvObmIFEgiBwF1kFOeDEyRVj0tmgo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUx2t5dQNcf+kI4CBuGkfMWYcuBAgwCgYIKoZIzj0EAwIDRwAwRAIg\nZreCOw2ZZ+0huPwK+HoigXnWfIOZS32XSl06Q+VqWcMCIEF+8ce6Scoe5xd1I/W1\nPnO07+53nZ3DhTHL5Ik4HmBD\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUU2Nat2gMIbNtY2jMlU701e6e3rEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASNly4f3g7fmEXUqMmZQfjKZIk8AjloXNJM9hYN\nT2IWH+Orky5ifupW6HTnnlAqLUN8ca3vEJLGexrNPaBQJDcLo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUts5xgunsCRmTTatsyrgxq0PTyH0wCgYIKoZIzj0EAwIDSQAwRgIh\nAJmpanbCXzIHKw9M3hq1eVVspzqK9N/xXA/AJzoNXvFvAiEA6Hh/W8d7VZ3F1Vzr\n9ekr9dlbt5zcJVsIiP1y5OqNGpA=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUORQa+4DGeYVaFKbNMEuMyoB8L4UwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABM+Vpe8ew70LUjmJklOf5YXE/Lv69ODJGL/yBQFXVbjJ\naTst/eE/furAqNblj3TdQ1rQM9v0TMtNhJoTWthoH2OjWzBZMB0GA1UdDgQWBBTE\nGwJ5igUDON09MNLKJ2bYl9z41jALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYB\nBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIh\nALgVyP6/0FVWuh6InFCJLEBi2UBN7F5H33CxjwR5vOVGAiAnmdam/HteeVtclqQi\nyyqMO4Ht9zwiYn40WK7O0WOwAg==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIA28jXUs3U/KY5oHTDPCCW68U0A/BW+4w+foHRdjU5VxoAoGCCqGSM49\nAwEHoUQDQgAEz5Wl7x7DvQtSOYmSU5/lhcT8u/r04MkYv/IFAVdVuMlpOy394T9+\n6sCo1uWPdN1DWtAz2/RMy02EmhNa2GgfYw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUYKyauJbLY9fgE4PGPvFKVaz1/pIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABARYWhXdqme2aQzqOrRdX9mIuGXO60GGYnh5reNHBhaL\n1HY0qKk+TBwqx9RDqaI4Q0qZ/IRBlC9kHpAImkfW/7CjWzBZMB0GA1UdDgQWBBTn\neH6o1AUq/DLvlNaQKkLDo9l4bjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYB\nBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIg\nVU8d244aHFLPdPVIuCI6SmnWx6D1QQfXoaOjjxK7GiwCIHKxPoCAFMS2ne6+yZqW\nU2g4+xyJfHu/iYDAnxIZQpjl\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMoVTOdTQ+Yej/7PyjdAuwLTuTUGZ6y15vKHkKRyxdSPoAoGCCqGSM49\nAwEHoUQDQgAEBFhaFd2qZ7ZpDOo6tF1f2Yi4Zc7rQYZieHmt40cGFovUdjSoqT5M\nHCrH1EOpojhDSpn8hEGUL2QekAiaR9b/sA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -627,16 +650,17 @@ "id": "rfc5280::aki::intermediate-missing-aki", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> EE\n```\n\nThe intermediate is signed by the root but missing the AKI extension, which\nis forbidden under RFC 5280 4.2.1.1.\n\n> The keyIdentifier field of the authorityKeyIdentifier extension MUST\n> be included in all certificates generated by conforming CAs to\n> facilitate certification path construction.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUJaulciIDo/XYs3CieEZLyVl0fvkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARcY9bXd1ImUa3QGB+ax79VHs5vxYz4X+tO0SDP\nGXnHlKiaxJJpoCMb+M7ie7ilR/lBEx91vu5ER0FrfUbPx9tEo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUxadC7vy7DM69G1rrhrPTb/ry5XAwCgYIKoZIzj0EAwIDSQAwRgIh\nAN75TxL/QpIkxV9S0hivIMoxLsA3mtRYvGwjCHvA/ZR1AiEA78A8jdlPgv4QLlTW\nAMqZ1g73nJ48kkGsgGYdQHFjsPw=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUS2MfAecDlbWdYj9VFYbJsNU/U1QwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT4AmoD4l9f+/hbl5oBcaY3EudZG8W1yLyszh7E\nxPmZfxq0tPDr95JFaZ/yWZCPRaJ+SC5pIhgyh8jxGINVEfYUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUxSRIYrui+ai5w3r37kKxk/uK924wCgYIKoZIzj0EAwIDSQAwRgIh\nAOWSWSk6GuLmj3l13AWFWzGh0eYaXq3ksZ34m8npG3LYAiEAhud74peKsWyF34+B\nbEnuH3tMKzBzMb6A5U1qfgt7iHM=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB4DCCAYWgAwIBAgIUAP///Ak/l9IsTIozPgfEadUc5AAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAyMTUwNjA0OTgzMTQwMTIwMjI2Mzk1\nMDQxMDYxOTUxMzUwMzMxNDA4NjI4MTE4OTcxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBFHhwqPc2ifePb8Xz22oi12uLBR3gepkEFDBiFb9ou0niXnmIfyH0os7rmDTDV8i\nuM4rNka4M459wT/PfJO7iuajWjBYMBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBRbjwdZYU80\n2L0/p5aDCVoIdFAM4zAKBggqhkjOPQQDAgNJADBGAiEAxTp2VMWdoONVSjjzaTRD\nZ0Osis+28imYZZpOozoXH84CIQDRLoFKgq2SMxtje7Pd7mtxs+DNrRODbH5SFX3T\nMrF11g==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB3jCCAYWgAwIBAgIUSiou49VJOxt224/RgRNZ5mZXEFkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA0MzAzODQ3ODI3MTQ2NTkwMjc4ODIw\nMDk3ODY0MDMzODk0MzUwMTg3MzEyNzkxODgxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBCjY19S/g/H+OmHfv30DtcTT+3XtpoRtyeUjHGbqaRnT4BczsJOOVjTM4hVgwoun\nGN0hDTrLpjcYEN0ioDdklFSjWjBYMBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBRAuhcawjec\nBxdhPCy5XJtQMt9v9jAKBggqhkjOPQQDAgNHADBEAiA5Td4T6oTVn9d3tLLV6Nqm\nUBvyc11Janyd0tP6wnI3TQIgSmvJzvDgHbcGZMY4FHR4i8eBzlRIhDboGlHdj65+\nbIY=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUFckK1dNH/GO7OLDtxyQ1FaErN+EwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMjE1MDYwNDk4MzE0MDEyMDIyNjM5NTA0MTA2MTk1MTM1MDMz\nMTQwODYyODExODk3MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEpwW0\nye1F5imrmLXxWPgvSsJXwlkhzLAszAmdAhipD4STCBEFPaP9eNrRrkl5jYKPFH+G\nJfMYNNpBcFWzLnQWaaN8MHowHQYDVR0OBBYEFCQLxz03tyrH4jv9ZMlpUgT//y+h\nMB8GA1UdIwQYMBaAFFuPB1lhTzTYvT+nloMJWgh0UAzjMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiB3m7RGFy09i/VUTMcHJj3V3Eh9tukpntutaTalxpwRxQIg\nXJmX6T949RiYXS+tmdNkIgVAf4L7rbwkmQypsoIYK1o=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPnr4IBzq6zKh3PE20FbLvgciTIepguYMEdcNLqBTkx+oAoGCCqGSM49\nAwEHoUQDQgAEpwW0ye1F5imrmLXxWPgvSsJXwlkhzLAszAmdAhipD4STCBEFPaP9\neNrRrkl5jYKPFH+GJfMYNNpBcFWzLnQWaQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUfUcETqfSEFGsUlXyGweQntVDDGwwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNDMwMzg0NzgyNzE0NjU5MDI3ODgyMDA5Nzg2NDAzMzg5NDM1\nMDE4NzMxMjc5MTg4MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHWho\nsUvvpJB08n08q1aLOXVASsp5xdVJpsN7qCc3fKWd39eYptr5tadPbktzX3FCAsSe\nCgpVuamQui7KONWQK6N8MHowHQYDVR0OBBYEFD8qBCy9DxDAoixDMStRReu4S9As\nMB8GA1UdIwQYMBaAFEC6FxrCN5wHF2E8LLlcm1Ay32/2MAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEA3WkUJs9b7Bz0WawcYB6CPuauRrPC03HAkaRj/1UYFF0C\nIQC/M5pEZe0dKxKv5i9CQIJZriwOljrxra9L9xX2yQ09JA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIET9bHtOhhFjcEDRy1/+SeQW4i0JymgqzMqK+e83uv54oAoGCCqGSM49\nAwEHoUQDQgAEHWhosUvvpJB08n08q1aLOXVASsp5xdVJpsN7qCc3fKWd39eYptr5\ntadPbktzX3FCAsSeCgpVuamQui7KONWQKw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -653,14 +677,15 @@ "id": "rfc5280::aki::self-signed-root-missing-aki", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert is missing the AKI extension, which is ordinarily forbidden\nunder RFC 5280 4.2.1.1 **unless** the certificate is self-signed,\nwhich this root is:\n\n> The keyIdentifier field of the authorityKeyIdentifier extension MUST\n> be included in all certificates generated by conforming CAs to\n> facilitate certification path construction. There is one exception;\n> where a CA distributes its public key in the form of a \"self-signed\"\n> certificate, the authority key identifier MAY be omitted.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUcOEK6v/2VrTgkae1VoHIYGEvrccwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATxikMifksLOjqcr1Axxaiaiuye5KR5oi5IjYXb\nmpfuqJZC/ud59wvM6rP0JVc9LIGdJRDoB2qdGM9b8+mAI0cko1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUQO8qGGRxsf28y7P1B6hWn4+fvQ8wCgYIKoZIzj0EAwIDSAAwRQIh\nAMuwv/xd4QfgLKvBiX0nBijfXflOFCHDHTOYaR/eXSeeAiAhIjjjG9VvQ8PVMJLS\nDtNiMQFQXLCF50BigiMIQF3RzA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUPLkrnUb3z53F2S6LCXzQX9S3/GswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATq1aqKBj69shxDHlLtBITNMm5LlWYWhp83htKA\nl1GYFlOr5flIaelGoEuUU1vAf8Nt5pWT41CZVNpY6KUCLGQNo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUFP7uuWfVTuNUu5YGLlIbgdsG3EwwCgYIKoZIzj0EAwIDSQAwRgIh\nAMovc4kSe8CuPSTbTzVGgAYW+GTR9mi/TzBd4J4u0/WZAiEAjGwysN36nfr4c74e\n9mOCyUlCni/natyH2uG7ctLeqIc=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUKmI/7FysxkdZVhja4apd+Q6B9u8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABKJrqARaI3Rkz8txKd1nu6jK4bTNXpuGy7JDnHQEeW02\nOclRd78JPR9FHjXrVZOajvOkPcgRxdSOYqgQdGRtMV+jfDB6MB0GA1UdDgQWBBTL\nbdIlxwzSEYcaul7s1j6HL3fVAzAfBgNVHSMEGDAWgBRA7yoYZHGx/bzLs/UHqFaf\nj5+9DzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAMDVbTdzo0DbVzfffGZV\nodNIkyyt5MSLg+rA2BkBWagJAiEAyC8FSVXYJkrd0AEpClEybgrzw/YMFnSz2UI2\nyXNpCYw=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIMKy6lS9FZzXBAS8JI5n6/qqhyk4zIpgQ8THngMZGxZoAoGCCqGSM49\nAwEHoUQDQgAEomuoBFojdGTPy3Ep3We7qMrhtM1em4bLskOcdAR5bTY5yVF3vwk9\nH0UeNetVk5qO86Q9yBHF1I5iqBB0ZG0xXw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUAkYqtCammvqtWqPJGGWegtqaguIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIsXb0Zpp6902Ho9rJslyu/WAabzA9MJ0zFlIXsgzSoY\nFzMivt1WiUayrU/FPjI9JtsS4sJA7Trh+aIUHayoszGjfDB6MB0GA1UdDgQWBBR/\nhH3fjCESakWSZ0gT4Z+YF5xE7TAfBgNVHSMEGDAWgBQU/u65Z9VO41S7lgYuUhuB\n2wbcTDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJojME3lPEI+ojc9CKoL\ncBzxalGQiuPwuW6Ltc3TFVBuAiAIXU6OjBR8xWtAKTdtYYhQwb/DTcFKyIAd1+wA\nKWMAPQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFauL1YcB+wpwxV+9lTZox6EUnFyeQq+VtDGq6UoWEHgoAoGCCqGSM49\nAwEHoUQDQgAEixdvRmmnr3TYej2smyXK79YBpvMD0wnTMWUheyDNKhgXMyK+3VaJ\nRrKtT8U+Mj0m2xLiwkDtOuH5ohQdrKizMQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -679,14 +704,15 @@ "features": [ "pedantic-rfc5280" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root is cross signed by another root but missing the AKI extension,\nwhich is ambiguous but potentially disallowed under RFC 5280 4.2.1.1.\n\n> The keyIdentifier field of the authorityKeyIdentifier extension MUST\n> be included in all certificates generated by conforming CAs to\n> facilitate certification path construction.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIB3jCCAYWgAwIBAgIUR2lyNXt2QCpq2dqi66Wh49CJP+0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxNjkxODQ5MjA2ODQ3MzI5MTAyMTU4\nMjk0ODYzMzkzMDEzMzAxMDMyNDQ5OTY2OTgxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBGOgOHaS6wFpPdUzV/RtvjiSOMJmM1Yd5rYrjZ1qBftJhPd6ly32POlU4M/C1rn6\nHYQNVq9QyY8qPAGTmjGwYUejWjBYMBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBSnPLyrEUjK\nHr/7YJBoxcjKtxcxVjAKBggqhkjOPQQDAgNHADBEAiA8V+Jwu8nr4ptxUSb6hajb\nxg2DnT7Uuec1+QKtrXlEdQIgDx8b9ugIdqbezo0ov4KVa2o6aIvyuxd3cIqpRWff\n26M=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB4DCCAYWgAwIBAgIULEGVAzSP2JUGrYwBCkYmDQtcIlgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxMTI4MTc0MTM2MDIxNTQ1MjMyODg5\nMzg5NTQ2MDI0MjA4ODI5MDY1NTE1MzY5MzkxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBCb5loSPeuGlkMJ+GYg0jnTL1uxh8xEpz8tleBD4HTUBvgroCQbgnEKKITAqoJZ1\nv8g1kh/2BiA1JsK6Pf025P+jWjBYMBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBR6vN4Hvdqv\nKdr97WDjTkh3WZPncDAKBggqhkjOPQQDAgNJADBGAiEAzUZNmVgsGR2GfVXDj7E1\nHEdlg159T23k9vWsqXeU3oICIQCMb+OHcpZZX4pO27NVnubdEoiVB/5eueF9BEEq\n9O2ubA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUKQCvOFR0OaWLtEexfwvgQRtkiBIwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTY5MTg0OTIwNjg0NzMyOTEwMjE1ODI5NDg2MzM5MzAxMzMw\nMTAzMjQ0OTk2Njk4MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEowRD\nzeWMOeS1OrBoLtJG0HnJ4Tcd60lvJe6asoWlq2t0inqIQx/W2xjhDwwqynT9niBp\nXMTJ95onyrAHqYGxmqN8MHowHQYDVR0OBBYEFAMnYjiMhCbyadSjO3sGkKBiMznl\nMB8GA1UdIwQYMBaAFKc8vKsRSMoev/tgkGjFyMq3FzFWMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiEAxmUPde+Ra8DmbdSS+h/SErnVym1ALEunyOt3jV50vP4C\nIH+/IDB/7AiSolbtMg0LvwwQ6uF9PBbTm5V+/ces8ptz\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIjIF+h4/nYeq0Mu6KRDzG/0o6PF0oaczgAPQ9eKdklAoAoGCCqGSM49\nAwEHoUQDQgAEowRDzeWMOeS1OrBoLtJG0HnJ4Tcd60lvJe6asoWlq2t0inqIQx/W\n2xjhDwwqynT9niBpXMTJ95onyrAHqYGxmg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUMxS1+eO/2Os6hRHDtloiCREgcbcwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTEyODE3NDEzNjAyMTU0NTIzMjg4OTM4OTU0NjAyNDIwODgy\nOTA2NTUxNTM2OTM5MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE/6GN\nOFi6g+wTuSOaU/C/pfnsHxJjXnUlu0Wbcr51EHZxA72JnJ/slGZu0zTrAvT/s8jv\n0mlKPUyPU5aDGQe7LaN8MHowHQYDVR0OBBYEFHKWsmjS0mhrHGdPiA9yk+ikD2pq\nMB8GA1UdIwQYMBaAFHq83ge92q8p2v3tYONOSHdZk+dwMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiA6cytLXg25B/bBUQPzZQU1dsYNSAGH2gqc4nLbSfZSIgIg\nERP12+0miLUxwWKk0MHNymqyp1ef7RImqHPZdQsRHzE=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILrkbi+0BO2gSXVykCmTcLuoPKuaj5JMCwlsJY7/Sk0woAoGCCqGSM49\nAwEHoUQDQgAE/6GNOFi6g+wTuSOaU/C/pfnsHxJjXnUlu0Wbcr51EHZxA72JnJ/s\nlGZu0zTrAvT/s8jv0mlKPUyPU5aDGQe7LQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -703,14 +729,15 @@ "id": "rfc5280::eku::ee-wrong-eku", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe chain is correctly constructed, but the EE cert contains\nan Extended Key Usage extension that contains just `id-kp-clientAuth`\nwhile the validator expects `id-kp-serverAuth`.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUBDTERiDR9p3qyZooeUym9m5Pp0YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQHzbcqpfVKidXzgNQ3RodIpDVrzutzaqVe6Cfy\n1+qsuZXSCLowtfHVKS5TNrFiF6diQWxxbPeMb/+WwCoJw1iAo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUQCS1j5uAB4UwBKQi7yCDEh6nhugwCgYIKoZIzj0EAwIDSAAwRQIg\ncND91yjsYBgC8p/QJk12CbqRymlEpKcb6c45dm6qY9kCIQCvnJXJSFtzHjId1HM0\n59E29gyRST/z9ASVu2SoJIL6Tw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUSmrg60mE03Bv8FEe6aRZHW8fRxYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASrB650xkmd9dweOtXhAXVECz8mlTWnUwjWIHxa\n4A6ud9P9SMl5NWerkTn/6vxc/gaaNF2HUqcd7wVB0jyu4y3go1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUgvRmMI2wwZszcfG6eejUYNiED/wwCgYIKoZIzj0EAwIDSQAwRgIh\nAICrFUmnXFYmc6SZ5MqjDhvsuT02+XNQ8GC0W+YzyeioAiEAudBhIDx0XqgRKjcz\nvA+6TYa3pNxZJszSjY5YvjlicOs=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUWUWxsa5TIC9z1fQ5PQjgfflhhCUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIAX4KloG29l5svy2hcSD8daoejA6DqSdfIkZuaBPVWv\nF1OG2rtwW58q7ryFE6uaYj/BkVLQntf9j6q2uCu4TTajfDB6MB0GA1UdDgQWBBQP\nEBIDZtU9vq005bMBJQEVHkirnjAfBgNVHSMEGDAWgBRAJLWPm4AHhTAEpCLvIIMS\nHqeG6DALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwIwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJ7tG35E4x3aZWPqfi44\n1Nyg22XKMaehJfbSrAGL8XTrAiB7WfLfMOF9YaktsQoQVFz2vrosjf+k2NY3zGbN\nqW/D4w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKsiCVHwdG2ubw+CiY+isGCbe4P75VAgvfLm9t7v/JA/oAoGCCqGSM49\nAwEHoUQDQgAEgBfgqWgbb2Xmy/LaFxIPx1qh6MDoOpJ18iRm5oE9Va8XU4bau3Bb\nnyruvIUTq5piP8GRUtCe1/2Pqra4K7hNNg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUIx7jYpUskKfe0lxsvBG5/60fgGowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABF0/JZZGahCIxzvYKhbOfJdrf2QeHF5gCnGeuzek74D6\nOty2hCzQTjyGHNs83xUgGQ/fLWzCnmJqL8HNykkpbRejfDB6MB0GA1UdDgQWBBQw\ndfkAP+xR73KtJwAcGOwXHc85DDAfBgNVHSMEGDAWgBSC9GYwjbDBmzNx8bp56NRg\n2IQP/DALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwIwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgCkV2X1AcOqtUlqOAVznk\nq5ueshzlWk67ab99lgkDBOQCIQDT7LhZ4yO1eLbWI4qvDbzAt+dODI4LfaQXPQCG\nzZfuhw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINJBnRClFp1JlMn206zPP62mNKhOJGzcgzV30utOBcCgoAoGCCqGSM49\nAwEHoUQDQgAEXT8llkZqEIjHO9gqFs58l2t/ZB4cXmAKcZ67N6TvgPo63LaELNBO\nPIYc2zzfFSAZD98tbMKeYmovwc3KSSltFw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -731,14 +758,15 @@ "webpki::eku::ee-without-eku" ], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> EE\n```\n\nThe EE is missing an extKeyUsage extension, which is permitted under\nRFC 5280 4.2.1.12.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUZFOiWJU4LC8JLA5aIjqOzLnRTsAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARdsoyXY86LX4LGkAtc+z1B66reqASrSbiJ9L4O\nuXsQpQj0GgbHHO/POznvtzxlLieHg7o0OF2kVNLad4H5bSyho1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUDqvdv8a0HFY8J0QXhSkZ9yQQyrQwCgYIKoZIzj0EAwIDSAAwRQIh\nAJtUAuPJH6YFuppEV1kre1mwRGtncs7wHwf2sM7p5zDoAiBlk0gYgWrOfeTq2uje\nF6RRhmDFoBpshwA5KppQqys3eQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNPOrN8mVqV8C/mlJCpTHwmE80B4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATkw6i+A9MKi4AgpkmKTVlNmidEa9X85ShclMOq\nlKdQl+o/pid9ICn/KTs+hIbQXVIvZP31GCoK466O27IhTXa6o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUOk0WyAR/+a/ualDPEkkxmC7XEQAwCgYIKoZIzj0EAwIDSAAwRQIg\nbNAkkOOxps7Gg+gSTM34klt2A41pAzZ4uNWgKhYuiMYCIQCExZQlNmAyMo5YK5pH\nQLaDEMziBSbBEIHAg8/Tw8D4eA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmzCCAUGgAwIBAgIUB5aKdC0fsITzM0taIZSwbUYLsakwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGlX7FQcHbqY0FmNf9KR91kYVaVZoA/JRp2jbV6dxq6c\nqjHvH7CN/QkCV3LUEqDsb/7J+9neEkB89WypCsInVUijZzBlMB0GA1UdDgQWBBSp\nqXQG4LOjYfpOmY4NMXrJPgbWPzAfBgNVHSMEGDAWgBQOq92/xrQcVjwnRBeFKRn3\nJBDKtDALBgNVHQ8EBAMCB4AwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSAAwRQIhAOvi5JHUF3ffYZFQyiDL83GwRHW4oRZp5p8TxOgU7caxAiAE\ncNyYrDInxAyzo6tdJmMmOQ91PIXyKnBzHZWT3S+Q0A==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICwPGOjI3oZxu6mEZ9JaBrNHiXaUuXl2Nc/0JKPTYm/LoAoGCCqGSM49\nAwEHoUQDQgAEaVfsVBwdupjQWY1/0pH3WRhVpVmgD8lGnaNtXp3GrpyqMe8fsI39\nCQJXctQSoOxv/sn72d4SQHz1bKkKwidVSA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmzCCAUGgAwIBAgIUB9DRnalQbnEO3t187xUqYh+dMw8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIRRmrC6C2Jv9C/am0f0LhLfdN8TnpvKQo5eZm3Los/V\ncuACAhs5+hjnNQdwSyMaNkw8yZmSQHmUzry+9zmZQrGjZzBlMB0GA1UdDgQWBBQm\nNwZGrB6oPZW8iSPjOaHSn2M/8zAfBgNVHSMEGDAWgBQ6TRbIBH/5r+5qUM8SSTGY\nLtcRADALBgNVHQ8EBAMCB4AwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSAAwRQIgQYsnm/T26SumkyTVLq9oD/+t3IjFIqqMXQV4ZM9nGzgCIQCN\nSijJP1zVP1Z948CygJA3Zp6ek5MYPSUprV2ZXbwIjQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOxAIXpD1jCHXYZ/Bxzxk5ix1ef0Lv4C/iVUtmmYCCmKoAoGCCqGSM49\nAwEHoUQDQgAEhFGasLoLYm/0L9qbR/QuEt903xOem8pCjl5mbcuiz9Vy4AICGzn6\nGOc1B3BLIxo2TDzJmZJAeZTOvL73OZlCsQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -755,14 +783,15 @@ "id": "rfc5280::nc::permitted-dns-mismatch", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName\n\"example.com\", whereas the leaf certificate has a SubjectAlternativeName with a\ndNSName of \"not-example.com\".", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBrjCCAVSgAwIBAgIUKr+4rTxxedc1ZWd0+r+OrQBSaYkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASGxxAotoBxNFaZW54fWA8U92UDms9l6xFnbaLs\nWC3Tf/BwY/u594PNN7f+hTeAu/RiaZI1LhXDGJ+etitk4sFyo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUhDlgfJGV296KZNGv7YJM62FarnMwHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIBL5JR1VeUU3cnmrqMHvOC7K\nU3lS3SbW/skTFfmN/o9iAiEAhR1uHzfP+Ghl0JIRTQn2/EHjGQ5EMkshHgvJAne+\npWU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVSgAwIBAgIUXQhlgd/G48nz1JV3yTlWor/IPOkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ63H5aKk9dh4v1+gE7GgUUK2VAO3wJ1QB/8n2B\n2/uXzxSX+E8Il1ZAM+ulwQanwBSpPQ0lDuYjTC4BjfzZ0Raxo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQURmugni7ZzNTj40Vbf9J7vQ/vcugwHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIH5ke6pBXxHHLVJZjg+J3eEe\nvzzHr4Pq0ST/Ixc2dTo5AiAL4cV9gTbBNcl/q407N6EfPzyhYUYvjtga/AgoppoW\nkw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVugAwIBAgIUUBpNp1qczMS/I6gogBwl7HkqGvwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIX+MvePRnexVKXYTwiGJ1zeOacCUU9tYpXfWUzrERzm\ndbPOMyx9uoLd42CQi+h4pPEFUHjdjhy+sChYNBCi0zmjgYAwfjAdBgNVHQ4EFgQU\nCFSp2M/yW+LGdtbVjUbgoezx9i0wHwYDVR0jBBgwFoAUhDlgfJGV296KZNGv7YJM\n62FarnMwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD25vdC1leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiAgAuo31hBorDQT\nif+AoWjfwWJ5Dt9JpTHgYU7qVlqhaQIgZRGLomnU8rqA7c6qF3d8+iFPNEsyXKeb\nRwXXTeS3tc4=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBAwB6luOpdZU8LSdXt82eW0EfInL9k77cjPZ94ZU5LGoAoGCCqGSM49\nAwEHoUQDQgAEhf4y949Gd7FUpdhPCIYnXN45pwJRT21ild9ZTOsRHOZ1s84zLH26\ngt3jYJCL6Hik8QVQeN2OHL6wKFg0EKLTOQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUVQhDiL0NtlLWwCGoZ42Cz3Ji+7wwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMZ+I+2vMS/HtAlgQ+YJj4WTaHfNaF7B7cVrH1fMiVwW\nqt2lkz9pJX8sdxg+qXTMpROZyrkMo6XatKhgUwOLpJSjgYAwfjAdBgNVHQ4EFgQU\nYwhIQ3nCrle1X9IvjA6l1pSH60swHwYDVR0jBBgwFoAURmugni7ZzNTj40Vbf9J7\nvQ/vcugwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD25vdC1leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiB8lnBBKi/iNuX6\nNkPtOMxxbJCc/P3TnjcC9OFuiAx7CQIhAMdvasJ96TUqcr3zWjV2eW0MPO3WEuyS\n4of7n/iBrMKu\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFgGZD2SA+vn9k2MtAFFgbyCDru+Fdjl42n+ECXz6xFGoAoGCCqGSM49\nAwEHoUQDQgAExn4j7a8xL8e0CWBD5gmPhZNod81oXsHtxWsfV8yJXBaq3aWTP2kl\nfyx3GD6pdMylE5nKuQyjpdq0qGBTA4uklA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -779,16 +808,17 @@ "id": "rfc5280::nc::excluded-dns-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA -> leaf\n```\n\nThe ICA contains a NameConstraints extension with an excluded dNSName of\n\"example.com\", matching the leaf's SubjectAlternativeName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUcbedizpd6TDT9lfpBlRmFv3YqZAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARWrAzJ0Fz/GboEjNZZoBRZ/LfYUim8WFCpkL8o\nqXQWmD90MtLAP4pXBkXr/4ctAyddppVJUTmhm3y1bTH6pWOho1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUWGj6xa8kdsGT9U9ZMgXG8+UhqKswCgYIKoZIzj0EAwIDSAAwRQIg\nYBzEf7LEfDEZVBwdun0epSKS3KEXOuQXCzTP2nRKZ7cCIQD0Su79B4ql2u75eeAu\nBOfVzkWfXVJavhkSkCePj8Tpvw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUDiQ1Rn664Jy6vH6R9A6S5fVr8VkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATVWuXQzcOFSEDk0nwi4N705Z5bRe97bQfGo3FU\npGbfb5eoYimvwLZmz/Vw0SZAABsExHBgGwfUem1w+sE77uVvo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUqKd68vlhsSf2wvKX0ZRyqKOzGpwwCgYIKoZIzj0EAwIDSQAwRgIh\nAJQ+UCw5Wu2ovIASuQKJFBRJN+qaXzyOry5ZLEwqgGp4AiEA3iv6KmJ/hbaX+8D9\nDL5L964e1cbg6oEOYW2QnMYHmz8=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICITCCAcegAwIBAgIUGJQdGcHTQz1iI30LOILaDMw56sEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2NDkyMTA3MTc0ODAxNDgwOTU2NzU3\nNzM2OTUwODY0OTA0MDExMjE0Mzk4ODU3MTIxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABGcw0bxlrJha7D9brzHM3uiCdj8y9+jzhobZYWmon8iQ0TuOZJiNBzKYR9nD\nqvzIutjkWAYw/ONJ3EXJxtCpSzmjgZgwgZUwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUWGj6\nxa8kdsGT9U9ZMgXG8+UhqKswHQYDVR0OBBYEFOvSHJGhFWqbHcqVhTpFVWhAaFDG\nMB0GA1UdHgEB/wQTMBGhDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiEA9Tsknj5lsIjgANi8i5rRXYa6swMTcDyIajJed8mSVB4CIBIXi9bZ8kg2E4tG\n8tnKNjbmaSuasrqoXbieoE4PnTDM\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICIDCCAcagAwIBAgIUJ3w5PmJNOZ7akmrHfDw5NL4zzZcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBpMTgwNgYDVQQLDC84MDczMzMzODU1ODA1Mzk3Mzg5Mjg0\nNzU0OTM2NTQ3OTgzNDIzODM0NjU4ODUwNTEtMCsGA1UEAwwkeDUwOS1saW1iby1p\nbnRlcm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcD\nQgAEccSrmZK52MhH1HyFEg80zojiXAq2MTmSWW7j8WosJXfyeoOFguDYydp3uQoZ\nVaUkwfazaqrUXMCtnrvhuEByGKOBmDCBlTAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBSop3ry\n+WGxJ/bC8pfRlHKoo7ManDAdBgNVHQ4EFgQU3l2MVsbPd3yGXiRGWW6uajGP4L0w\nHQYDVR0eAQH/BBMwEaEPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUC\nIHciMcUxr090vwaj30JUyJTkmCShH8YruyhSEg7vowu7AiEAuLBY94SXwSk+rdXf\nLLOAcQYV1TvU8Oah7xhJoR12xoA=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUH/MrQVHrRB8gzaNfEWfMKGREN4EwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjQ5MjEwNzE3NDgwMTQ4MDk1Njc1NzczNjk1MDg2NDkwNDAx\nMTIxNDM5ODg1NzEyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nJLnua2vmXu5+Hco6OJH6GsvsEUEG4Bdmv/mCHkt8SUQh57hSZw1mACtqQlsUU3zg\nDFePYPN43JFBqbKBfh8yrqN8MHowHQYDVR0OBBYEFCBILKr41DRaFXY8ioPI98I3\n1pNrMB8GA1UdIwQYMBaAFOvSHJGhFWqbHcqVhTpFVWhAaFDGMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiBE9aBSwlh6Q9N3QExPlOx95lvY0CC4bGB3DhQrCzVm\nVAIhAPc6MgOxXdOt4uPB8aM5WpxkVuHZafe156XRrf/IQ/+O\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIF7BtOqvkGtbvTCtieVJk2K4lwPq/D0oNu2ojeKrotuAoAoGCCqGSM49\nAwEHoUQDQgAEJLnua2vmXu5+Hco6OJH6GsvsEUEG4Bdmv/mCHkt8SUQh57hSZw1m\nACtqQlsUU3zgDFePYPN43JFBqbKBfh8yrg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaWgAwIBAgIUHlHOuSGGSBUYMAk7D8PVh3g8PbEwCgYIKoZIzj0EAwIw\naTE4MDYGA1UECwwvODA3MzMzMzg1NTgwNTM5NzM4OTI4NDc1NDkzNjU0Nzk4MzQy\nMzgzNDY1ODg1MDUxLTArBgNVBAMMJHg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tTm9uZTAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATX\nH/WUvG7RXxBCDIlnNdqlVRLQz+avNEQBcNlxYDE7S3o4pt0lAAT6S5D5LCQWqNA0\nIzPEgF4kTM9HFr7qtpmeo3wwejAdBgNVHQ4EFgQUfrrSSItJaFNKdgoazB+dcGK+\nXVMwHwYDVR0jBBgwFoAU3l2MVsbPd3yGXiRGWW6uajGP4L0wCwYDVR0PBAQDAgeA\nMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoG\nCCqGSM49BAMCA0gAMEUCIQDFLmpker1RkJajYdF4Bw8K/0G1kEFpZa5mWlcNZlXb\nugIgCRUJeSsTDAGOlzIkfHWQ2IhQ/aMN/41acvOYmfgTTfQ=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILK0hStJXYbQkKHn9G/F/QgRjg427Uv++oIB3KtKwFSDoAoGCCqGSM49\nAwEHoUQDQgAE1x/1lLxu0V8QQgyJZzXapVUS0M/mrzREAXDZcWAxO0t6OKbdJQAE\n+kuQ+SwkFqjQNCMzxIBeJEzPRxa+6raZng==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -805,14 +835,15 @@ "id": "rfc5280::nc::permitted-dns-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\", matching the leaf's SubjectAlternativeName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVSgAwIBAgIUHfCzzcmXjxyfTeTBzojn5APR0OIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARpxdEKpIZ+NMV1+FeNxtjFOTQRXih3ypROrB2j\nGk+coDcbVB5yNbdUkAre959EW1GY/XUckHGsx09MbpJFuP2vo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU4MJy0/4bvpxAosg/m25NGk7k1J4wHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIHyG0o4OvWxe9L//H5gqV5ms\na2q7tPbH79ISMgeehD4LAiBGNvBnksvAe9y4BJ8vyHRVpoiU+UkRDoMOeb3FALNx\nZg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrjCCAVSgAwIBAgIUZBSB7DlldIuui8bEZNx2/O07YfAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQm7XKxtNSxQjzYLQm2Y5zhw7/4XgM2Ui+iGjEY\nkvwd9a/XgJDlB7tBMOtc5WS/6Oh5/Oelck9BxufeA/92+B5zo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7cojBTQvRWqb0V1oriGZvQirOiMwHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCICONbIm/OHSg+dC/lzUr4aDd\nFM6nR56f0hQqLdnW6bTyAiEAtIqUWlUbxSZ72nhz0Z31Cfvw+UZNRLWtKR332wK8\naFM=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUDKxGtFPtUUPBvFUrlX7FcsYFsBcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOBtl3C5x8Q8AjBIjEQbnvF6kck3L5IvLp42fQVXhUtu\nbHqH0bJrrMYswQNXW1FqM+r3TTPNuuvK+8pfbozmdM2jfDB6MB0GA1UdDgQWBBSS\nWb0l+rzOGVhowZXZZ08gPtlauzAfBgNVHSMEGDAWgBTgwnLT/hu+nECiyD+bbk0a\nTuTUnjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgbLe0plB1Vu2pH/qcNRSL\nfdc10OH1/TtbdtvhxmqT5/oCIQD/IMvr8ZGBXSaC3UYAm3LUphB2pbl1DlG5SDAP\nZwcbug==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ1pjJITDTy4SyMZKExH0luqisIYW3DqNA3w3m58GfgtoAoGCCqGSM49\nAwEHoUQDQgAE4G2XcLnHxDwCMEiMRBue8XqRyTcvki8unjZ9BVeFS25seofRsmus\nxizBA1dbUWoz6vdNM82668r7yl9ujOZ0zQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUNQg9YGBNCFvCXhHuXT/rTukWcQAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHric44+9RKlnJFMxheVLcYa1SpkjVZa1T1nnOI6Tn71\nepfWKgeYH2zH2gBukff74HfwHDsAZxfo87E102MMkNmjfDB6MB0GA1UdDgQWBBSw\nrpdfqLKVx+BJF/DStp8Sad5CazAfBgNVHSMEGDAWgBTtyiMFNC9FapvRXWiuIZm9\nCKs6IzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAKlEEnvzPrs1HCCWk4MD\nBfovb/j66t1NvuIqsqcy5nLIAiEA8a7uloEJKK0hTg1VhNQHo/Ktugw8avCgOx2O\ni4pgllU=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDvoW4KVStNfq/0zysA5zZO2IbgUXlWzHTONqPWg3/eOoAoGCCqGSM49\nAwEHoUQDQgAEeuJzjj71EqWckUzGF5UtxhrVKmSNVlrVPWec4jpOfvV6l9YqB5gf\nbMfaAG6R9/vgd/AcOwBnF+jzsTXTYwyQ2Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -833,14 +864,15 @@ "features": [ "rfc5280-incompatible-with-webpki" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\", matching the leaf's SubjectAlternativeName. However,\nthe NameConstraints extension is not marked as critical, which is required by\nthe RFC 5280 profile.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUMswut/RQ+aJDICfwtgxejyMYtTMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARyum6Grm/s1FQRtYmQHIEnzFU0hHYf217Q8MEs\nDC7Ng5O1nT50e6a7Jlu+HTxBkqtxbTZ2VU9JRV967sEwF/52o3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUq+jYftL09GJBYpAOnraF7/8hX+EwGgYDVR0eBBMwEaAPMA2CC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQDOnAk5UKeqqPEVEyijcYMzn6gg\nqov1G44mqYKpRXcBIQIgcp7DDdJBXQ3L8jWwuKTtfe5GMtyzhrnk/ROuNpJKaKI=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqjCCAVGgAwIBAgIUOti6yTHHAhNSYiHZW7LrIdzMjQUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASzaVBCHF/33FgayZyUrKOQKX/O4gu7R+rmO2Rq\nUSY0gMv41xS8eFOOPlI91dFmiq7+bQxa9xb00cleXRyrzvyIo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU9a+KeRKw87hzqn2vVLAWgp48wrMwGgYDVR0eBBMwEaAPMA2CC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIGjXpvY9vefKLkVHzCEDaXEOshjZ\njfe3Eq0Zs18fkbfNAiAvB4rakTREc1jdxTm5gAjV4Ngok1NDZb/0FGXABGyjww==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUeMlP+mnwQ597A95w1u2UfHSgwkQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFFuVBnMce+DU59n2XdAAcmdZQg9ULuhb+Re3Xr8goCo\neoOyIJD+GLDFgJ3T6cPlBHtyELnwRY/dl1V5v/cCuUCjfDB6MB0GA1UdDgQWBBRq\nB0vBIhu3e1qILTb+6pLh9FiOIjAfBgNVHSMEGDAWgBSr6Nh+0vT0YkFikA6etoXv\n/yFf4TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhALha/yqrsM5SZ9fbiqW6\nkgjBXVCbfUyirMY59Io852FhAiEAgbzwNiO6knJeGqt72me00yUVtchn9qK4DJs7\nXxKHFl4=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKU2RGp4kOPYyx0lM50ZVTAU2jSYUlO636z7UwTI6z9OoAoGCCqGSM49\nAwEHoUQDQgAEUW5UGcxx74NTn2fZd0AByZ1lCD1Qu6Fv5F7devyCgKh6g7IgkP4Y\nsMWAndPpw+UEe3IQufBFj92XVXm/9wK5QA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUOfug3Ly9GkSGpK5B/1g3VZOlOOswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABPYVfeDfBUPqKzYotJ6zYWcTBLPrirWXM27At4IBtoSk\nW+P40PsGOdXqknUDGfqokeh8sndZXEYsqXOpd8YM5c+jfDB6MB0GA1UdDgQWBBSQ\nXzwCrsqrXHHwot6LZ8AqoilUCjAfBgNVHSMEGDAWgBT1r4p5ErDzuHOqfa9UsBaC\nnjzCszALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAPMBOUSGlg+MeuiRJAt4\nX3QcTpGLZAj4YhrpwEdqAf8xAiBLkheAQS2zIjzq+AKEA2WWCGYAFoSR4L6dHwON\nI5lP1Q==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJd3VmfOiX264uUEMlceT7ptuIWYZh6HeA1lOxQkcbBaoAoGCCqGSM49\nAwEHoUQDQgAE9hV94N8FQ+orNii0nrNhZxMEs+uKtZczbsC3ggG2hKRb4/jQ+wY5\n1eqSdQMZ+qiR6Hyyd1lcRiypc6l3xgzlzw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -857,14 +889,15 @@ "id": "rfc5280::nc::permitted-dns-match-more", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\". The leaf's \"foo.bar.example.com\" satisfies this constraint\nper the RFC 5280 profile:\n\n> DNS name restrictions are expressed as host.example.com. Any DNS\n> name that can be constructed by simply adding zero or more labels to\n> the left-hand side of the name satisfies the name constraint. For\n> example, www.host.example.com would satisfy the constraint but\n> host1.example.com would not.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVSgAwIBAgIUNAgzDAn9Z90M4FrNmh+GTY1p18YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARVXA7tWLjyLC5BDxM/XqGXm6+ZOo2vPNzDTatL\nEdptJatsTWIn4yDeXkiLEzX8/Fln48C9qJ0y03nTAUiC6XYEo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUxQ2YNE28ZcJeZmXusXzwMqKV/QgwHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0kAMEYCIQCbPARyMqaYKhlx4Jt7kQ25\noe62kL3HSu4D8hvsPs6PXAIhAKjE44rpxjJAXm/8DfsM79M6mbBbN7Qh6qROM/1+\n3gAq\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVSgAwIBAgIUZ0/qMIElbY5C3XvJ4kA2Dio7s78wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATY/gQz+0ZTYd5rmQyRxpR8BMPZLBj7kMLY57kF\nSQl04cRmdvMvdWTPPPpwyi7MKghmwWUcxRi9ZwO+41DW+Wv9o3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUsEY3MkuEUSrsBZ6CbR3Q5TtlPw0wHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIDKIWAWGwAN0LNXqml2XmzJl\ntiKU1kvRCMZ9GFnoeeSmAiBq/8YtQSz7ZGnIPJPh764Lz72WpI5dyGPGS/z7CTdP\nDA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBujCCAWCgAwIBAgIUa3XrQNLkBe9VjXE9V/Bl2di1MskwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABD7sM/TXjMi/NV5qTeeBohUgdNT2S2ZqdH+I9dGd5raP\nsmGW7/g+rTRQbwhcwwli3KsBn4tusMTwXWmFCiNUE8+jgYUwgYIwHQYDVR0OBBYE\nFHhKqojK73NFqeSCPWpv7vSP1DkqMB8GA1UdIwQYMBaAFMUNmDRNvGXCXmZl7rF8\n8DKilf0IMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAeBgNVHREE\nFzAVghNmb28uYmFyLmV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQCLH9p7\n1zPBa+HhEX0mHOanuGROd1xBqb/iK6PIuAEbLAIgbKGLeFagQMjfYTtJKlk9tBiW\nCbx/c7LWp4U5NWYMFYM=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINisSZeZ4/RaIUL6sxN3JlEGN/BDS74bctOR/sBVGvNEoAoGCCqGSM49\nAwEHoUQDQgAEPuwz9NeMyL81XmpN54GiFSB01PZLZmp0f4j10Z3mto+yYZbv+D6t\nNFBvCFzDCWLcqwGfi26wxPBdaYUKI1QTzw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuTCCAWCgAwIBAgIUFZ7a9v3Meq/cWF6FSZIaWUGfBPIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABK1+IrCKUSeFjk97kZOqwpqmdNoYCEo2CJf2KPxBaKuK\nzj+b2HwV7uKGK9fIIzGwxglN0QBBPV3jh8kBjT/4f5+jgYUwgYIwHQYDVR0OBBYE\nFOaWd7OVDikCrSGr8Nz5siuDmj+LMB8GA1UdIwQYMBaAFLBGNzJLhFEq7AWegm0d\n0OU7ZT8NMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAeBgNVHREE\nFzAVghNmb28uYmFyLmV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIBUHwVcR\nHrHrDPgIF12PRQa4a4oJHiOsjQGXhu+yMaQvAiB//3+iF0Hd/8tqcfl3SRuBrwQ8\n7jLp8Mm7vVSIj3M9zw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDDNZvtmtul8+sTdPG9bgjDRsnJRRcui7WtoxrU+lGvIoAoGCCqGSM49\nAwEHoUQDQgAErX4isIpRJ4WOT3uRk6rCmqZ02hgISjYIl/Yo/EFoq4rOP5vYfBXu\n4oYr18gjMbDGCU3RAEE9XeOHyQGNP/h/nw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -881,14 +914,15 @@ "id": "rfc5280::nc::excluded-dns-match-second", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded dNSName of\n\"not-allowed.example.com\". This should match the leaf's second\nSubjectAlternativeName entry.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBujCCAWKgAwIBAgIUEWWgHukOlX9mPnHgF6eaQcJ0ELEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASTTcmGClmix2VuVnMKn8uPddXb7u09ABQITPGC\nYWgwbOF7yB1tziRNGUX2io2z4KdtlkeUUH4BMpcYU8hZEyXio4GDMIGAMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBSwduJsMaW3d3g7xZfDuxDh/aqM2TApBgNVHR4BAf8EHzAdoRsw\nGYIXbm90LWFsbG93ZWQuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRgAwQwIfRFUY\nw99mTnDxVYXJoODU7x0QVI0z924LHSN5ztnuhgIgclBc9q7zOsPtLdTbkMIQ3PEY\nUtdAjxgZ/KIu8Q2+Hjg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBvTCCAWKgAwIBAgIUZSTvFHuUcvbCH/LSjg2WxDt0lUcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR/AgW+FaAV77Xc7zaHxSBa0XyiRwDq60fG9vNr\nmYy0H2J7NrUPC0easYM6x/UhT/zOGj2ODvMqCHbfKRMuRdXwo4GDMIGAMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBT0YQOIaFPUt1UFdZzNJMr6QLS0rjApBgNVHR4BAf8EHzAdoRsw\nGYIXbm90LWFsbG93ZWQuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAI74\neVKAEYok2O85YWt34QSuwCZifi3YUmIpa10Da6W4AiEAqZZtqSy9JRDUnfWeNTxh\nDQGglb2vn88tv+LiAOeWIuQ=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIByzCCAXGgAwIBAgIUGzO7xGQfqWaEbLMi8touIP4fokMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABAxbsd1s7O73YoyZtIkvQWuWmVTpNdgwhgBPQQgH46tz\nyiK0ZUJWFRC0YCNL/pq2Njk95o2noy4h8tl3pLJ4PDijgZYwgZMwHQYDVR0OBBYE\nFJW5IglrDHUVQA1m/R372iabFDCJMB8GA1UdIwQYMBaAFLB24mwxpbd3eDvFl8O7\nEOH9qozZMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAvBgNVHREE\nKDAmggtleGFtcGxlLmNvbYIXbm90LWFsbG93ZWQuZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSAAwRQIgHf5oXbE+u8kL/TIB5DxArxwY7XwI6r1OajRpsk1Y5kkCIQDE\nNKJKE3qZZVY5a0CeqGa6sQp5fOzXPPP+cmwXEQ/koA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIA7hIvbsN3U/HOd3Fb0PfAxWVeFq+jSPAuA/20y83SB5oAoGCCqGSM49\nAwEHoUQDQgAEDFux3Wzs7vdijJm0iS9Ba5aZVOk12DCGAE9BCAfjq3PKIrRlQlYV\nELRgI0v+mrY2OT3mjaejLiHy2Xeksng8OA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBzDCCAXGgAwIBAgIUPIPXqy1I/1dMPbzHB6nS4D4SsI4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHMBDlLjLf2M5Abg47DXP9TtwkXmeHdPveeHZtUbuDko\nM3yQCHmrbsio6VNKPlicOZQTR3/27aXGLhre7GExnHijgZYwgZMwHQYDVR0OBBYE\nFB96IByPanJC+guFWxXvm2c44RA3MB8GA1UdIwQYMBaAFPRhA4hoU9S3VQV1nM0k\nyvpAtLSuMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAvBgNVHREE\nKDAmggtleGFtcGxlLmNvbYIXbm90LWFsbG93ZWQuZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSQAwRgIhAN2aW1ulvLczG9Uoc4MWtXvWEtAtSRHq494O3mNSSTs9AiEA\n50oWvGenL3qqz3jt01FJHbAuApJ2MC+Vlel+RNHQUC4=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINSNzZT/hM6FVFL9lEcg1HbjRNJ/Gt5haB/SC/mbzWcloAoGCCqGSM49\nAwEHoUQDQgAEcwEOUuMt/YzkBuDjsNc/1O3CReZ4d0+954dm1Ru4OSgzfJAIeatu\nyKjpU0o+WJw5lBNHf/btpcYuGt7sYTGceA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -905,14 +939,15 @@ "id": "rfc5280::nc::permitted-ip-mismatch", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted iPAddress of\n`192.0.2.0/24`, which does not match the iPAddress in the SubjectAlternativeName\nof the leaf.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUAtvnYUZReweO9R3g9YLgFDq+85wwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARyu7DkC7VHngprq6G6nzS4WGQhX8ig8GOjrpMJ\nCNfUlMuWlQ/Qso2RGYDbfcQMZIB8dpFt71DdMnYlGgS0SZzto3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUuoOUwsVdnwFDR+7efZhhOkLuxqQwGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIQC48n0idSENB81DbjAeab6Feg63\nEN7UXCawWjnbTla08QIgfRg/aifW62shXqi/Xb94pHOfwdngo/LvoA151uicbb8=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqjCCAVGgAwIBAgIUfnIxaT9+/1TmVYAjoPd59kMAMigwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQerMcZRQNscVbjH0wbbzmzsPMT85UyB3SAKY3x\nCorrm1RYZl1S7FOFvh+1hHYaOEuaL8oQ8SsBWR5qf7KxBMD+o3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU8T/dCk9AzdWYEw9XVovMFx/GJKQwGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0cAMEQCIEXKvnWvAnQkk0Ls6iG/i7gwUbvO\nqPZfsjyP/MqiHrIXAiBvMPfzPmX1BMo4I+sgJahJP3Q5pPBJFxvhonGyB9hVsA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqTCCAU+gAwIBAgIUPuhh9OHv0t/VF4UgOjoEpT0C8vUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMNYrruZf8VNOzG81eKXo2+rAR7hKQ/Qreo26PHutj88\n/88cNgXizb0npiCd6gc3yGYD+ooIAVq+zRnMTHE5D9WjdTBzMB0GA1UdDgQWBBRK\nf70iltRuZV94kFzx2voKFmoNRzAfBgNVHSMEGDAWgBS6g5TCxV2fAUNH7t59mGE6\nQu7GpDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAADATAKBggqhkjOPQQDAgNIADBFAiEA8hHu8cP8KJPF/7IjhlTjoX5X72vz\nyKEdJeWXOZCK3WUCIDy6cdTliNc+pTutMTxu4RqoDWs4fBRyBFJ4/EYWyiYH\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIMNDgWiF54smLUou5NjYoYiNPa77Y4EWJrAPpKTUbGVoAoGCCqGSM49\nAwEHoUQDQgAEw1iuu5l/xU07MbzV4pejb6sBHuEpD9Ct6jbo8e62Pzz/zxw2BeLN\nvSemIJ3qBzfIZgP6iggBWr7NGcxMcTkP1Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqDCCAU+gAwIBAgIUGXZ43OVOlSWxaNkZg6qjDr8+hmowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCM3G9We8LPSD5Aub2ulXsgKy90dsesbhIHu+AyjcrJ7\n+UvVOUu8VGmMsd56jV3NJ/HMbgGeFdVJiFscgriU6aKjdTBzMB0GA1UdDgQWBBTo\nR2CbSyMEvHbviJWjA2ZwxYRpLzAfBgNVHSMEGDAWgBTxP90KT0DN1ZgTD1dWi8wX\nH8YkpDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAADATAKBggqhkjOPQQDAgNHADBEAiBCV86Tkij5+Nz5OWokYLXcI1C/T3wj\nT4ahE4paZr4evwIgaJk/eUSvicSujsosZ0kVOl2I15+8NOZYu39e6VV4c5M=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDTn0iqzWCV2ns55keP1pB+JgoL7uLpuOXmIltcHh+aQoAoGCCqGSM49\nAwEHoUQDQgAEIzcb1Z7ws9IPkC5va6VeyArL3R2x6xuEge74DKNysnv5S9U5S7xU\naYyx3nqNXc0n8cxuAZ4V1UmIWxyCuJTpog==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -929,14 +964,15 @@ "id": "rfc5280::nc::excluded-ipv4-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded iPAddress of\n`192.0.2.0/24`, matching the iPAddress in the SubjectAlternativeName of the leaf.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqjCCAVGgAwIBAgIUXqAOyko3j8gq8MiVLedMJmc6ZmUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATVYFhin/kbThfXVk4s3aunqF1IshvrQ+jub3ir\nGCqSSSAvAFxk1ZJdfnZFVSVZD8/alRal/skrqM6FjwE3pTgRo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUoCY8Yj8WOtPCcnum1gWuxPsTaAkwGgYDVR0eAQH/BBAwDqEMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0cAMEQCIAQtgy/Fd6JifpxJfJ13m/5AF7eh\n3PErwPjP9nct1WC4AiBfLL1Huc3zf/bYrLlDnjBaXqdEOEksccIUzxe21ZGZQg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrDCCAVGgAwIBAgIUOOzmmfZpKNGiioGx3aTbwHlG0xIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASQghbbQNNrpAe1OAcKnsUxg1jETP03rw5QsXLu\n6vuoun3f8i5yco5CwLGN5B+3SFGjcTjmp3Jh7CGsOGAM7g4yo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUg3GZYofZWKBaD6WypKS9vhGrSxcwGgYDVR0eAQH/BBAwDqEMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0kAMEYCIQDvCz5/1GCLKMLsUi9Vlc7oS5Gd\n78rJjDYVZhV2fpbo9gIhAMNkB/ldeJjPt7dwiIYODgoFd1DxUAks9Fw8L0hOpcNS\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqTCCAU+gAwIBAgIUfTKI5No4jajNA8rmz8aDx8ujxFQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIQvlmw5nVdI/7DFaT6IpcbrvhntApdsDw5DwDktoBcS\nWzuJCgU6fFvdvgdtgOSwKRVXYCFMqq9iDoIr1Y4tDb2jdTBzMB0GA1UdDgQWBBTA\nNsJeAbpE9HFjbdJj78UkrO/9CDAfBgNVHSMEGDAWgBSgJjxiPxY608Jye6bWBa7E\n+xNoCTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAACATAKBggqhkjOPQQDAgNIADBFAiEA6XNGxg9z8QvOE9Tb8p922EYReL3M\nxlEQxAn0zdYm3nkCIFsYGFJjBUyDOrkvoS6DAVT017oexhZi9Appa3gWzyXN\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGAd2wkxpLj3j80k7QFixMOm5eWHqKiwp0Rw1VrOP/ZkoAoGCCqGSM49\nAwEHoUQDQgAEhC+WbDmdV0j/sMVpPoilxuu+Ge0Cl2wPDkPAOS2gFxJbO4kKBTp8\nW92+B22A5LApFVdgIUyqr2IOgivVji0NvQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqjCCAU+gAwIBAgIUA11enUIx59Q5ep7hpGLXJ5EjXwIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBomikdrPv7EUGbzRFx0krCde3HYJ6OsphaaZqQyzkkq\niV2fIUUdA76RsWJRk6r55vIRgnu/6tHPK7438KKos8GjdTBzMB0GA1UdDgQWBBRG\n6w2TKYbauI9KNVQYIjph4MRN+TAfBgNVHSMEGDAWgBSDcZlih9lYoFoPpbKkpL2+\nEatLFzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAACATAKBggqhkjOPQQDAgNJADBGAiEAglKBED+UtXDAkfhZvke9qt4wnLvP\nyiUe7ujid4yQnEkCIQDu4Ajq/mNbOHmFlnc767T6WhpvBohZqY2/nYcYO9eedw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDk+OAnsvUqDJmUmw1YeyREPN1IvBBZ3cBjWwB9N17AkoAoGCCqGSM49\nAwEHoUQDQgAEGiaKR2s+/sRQZvNEXHSSsJ17cdgno6ymFppmpDLOSSqJXZ8hRR0D\nvpGxYlGTqvnm8hGCe7/q0c8rvjfwoqizwQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -953,14 +989,15 @@ "id": "rfc5280::nc::excluded-ipv6-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded iPAddress of\n`::1/128`, matching the iPAddress in the SubjectAlternativeName of the leaf.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBxDCCAWugAwIBAgIUJRFVRDBASrPIsSj74KW44+ygWZIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATnKfYxBCzRrbZ+cSsHaxZLUoNZRG/4B+Ea2uPQ\nfbvgyzbfOFEShTojMq86HAemQb5sIQM0fGyhr0kF1aDt/P26o4GMMIGJMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBQXNkOmSgfDb1vheivx7ZWWQakpBDAyBgNVHR4BAf8EKDAmoSQw\nIocgAAAAAAAAAAAAAAAAAAAAAf////////////////////8wCgYIKoZIzj0EAwID\nRwAwRAIgdO1cuU2kx41L793qAyeTVKcLhbd/NJ8e+5PK4DiXBzgCIGB7C6uAAM32\nMZ+XX3bIdhInqaJvvfrC4zBzhPXTPbc6\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBxTCCAWugAwIBAgIUMHo39W7vguJXppejt/zgeZQXeeswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARgldIyqzZ5jLstlw1p4z6OAhuFZXnAJkGDy/7s\noDMJh8CsvIdybYxIe6ud1M3tkc8KtcXPenLR2363lEHj/R1jo4GMMIGJMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBS7vXI2FU8JnPnPC2mqqNgLmnFPjzAyBgNVHR4BAf8EKDAmoSQw\nIocgAAAAAAAAAAAAAAAAAAAAAf////////////////////8wCgYIKoZIzj0EAwID\nSAAwRQIgGFiGE5C+Qu1We88m/Y6dy8CY848VnfgUakdZbuhfzPECIQC1ITktNTff\ntAY3wItKbMoGoa8LX6Tj0N/goBvMgvF9/Q==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtzCCAVygAwIBAgIUSWp58B9/PgokFZLPcm/poPP8p2MwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABJj1OT3ZUNmfwNcXsojvCwQETwQnZCbd3K1ts2OrZ/Ay\n9yrFkxDoLuh8QXOuhg9cFVARCi0Vdq6UOvnrznRLVFWjgYEwfzAdBgNVHQ4EFgQU\nzd98c141JYJGGk14/R31bwDqBhkwHwYDVR0jBBgwFoAUFzZDpkoHw29b4Xor8e2V\nlkGpKQQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSQAwRgIhAPzX3bvTAqXS\nh/l31I2KIKVj3KAsxGPh1IvTvHqnOA6gAiEA7tOBAmiCU3dZiliULYrHAH4nMwAM\ntcjcfAuvGYZmVY0=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDykDsi6TfSraCCg0dIjz8PZpC9NJ+evJjthVTGqGQ1IoAoGCCqGSM49\nAwEHoUQDQgAEmPU5PdlQ2Z/A1xeyiO8LBARPBCdkJt3crW2zY6tn8DL3KsWTEOgu\n6HxBc66GD1wVUBEKLRV2rpQ6+evOdEtUVQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVygAwIBAgIUdtFRSvfcxi2dVLMsZIQIIz3O35gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIat2gIvWsjWOUnac2hKbvhcLSpPykfzd5KbPJf+jdgz\nVOK08leuuEO2DMxRsd3Dgpl2MmpngGvLD1EQ7AUO4lqjgYEwfzAdBgNVHQ4EFgQU\nnDT7v/wUuVA57Ywi6Y3hnDWSxWAwHwYDVR0jBBgwFoAUu71yNhVPCZz5zwtpqqjY\nC5pxT48wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSAAwRQIgGQeKAOLwT+aG\nRbQK3A4p1lQS+ATYYW17e2lm4ACla5sCIQDkczJap/5Zv1wWWp6p5rK8RTIN152a\nsoe1+CO63gRAOw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ3W4dV5mZvrhDHsUo21Zh4saRYQUUtz7w4qPyyQCanLoAoGCCqGSM49\nAwEHoUQDQgAEhq3aAi9ayNY5SdpzaEpu+FwtKk/KR/N3kps8l/6N2DNU4rTyV664\nQ7YMzFGx3cOCmXYyameAa8sPURDsBQ7iWg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -977,14 +1014,15 @@ "id": "rfc5280::nc::permitted-ipv4-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted iPAddress of\n`192.0.2.0/24`, which matches the iPAddress in the SubjectAlternativeName\nof the leaf.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIULBDD97Pv0h/EiVkpnv8kYF/ZhKAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQqqjRO3AuW206qmCR7x2SUHbJEW9J/HGLoxqKq\n9s7+Knwzh0xQXNw+gqQVfrvgkDVSU8JNn85J3g11eW9gzkECo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUpJL1/z9YReJVA0p7ucKw8/8nLqIwGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIQCI8bKIpOQH5+s/WjyZh/Y9f5Xx\nZWNso7HtQRNDXAMpGAIga+/VihkEdOKXO0yPhgSc9YZ6F0qyDZ9pzfkSnKdWGuE=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrDCCAVGgAwIBAgIUFDyrg7qn3YW5+CCX0TiaHlhoSwkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASELX4n8wvqLFzTEWpSljLs1Q66HmQ9FuyJB4A5\nCS0dRXNHbeyHq/m8785yk0LD2Vmil1u/USv237Fz+ZITEYJeo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUHN9B7plZ0NBDeLQRuZfYFUnU3aIwGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0kAMEYCIQDX8bbrerlVMeM+4T9wYF++fYgE\n3Vsq+bfZWum1NqlS8gIhAN2qDish7AelErT6fuwkfYsGdqnTIA/iWVIckS8zRpq4\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqTCCAU+gAwIBAgIUYOIvwikx09I28nop+MseljS9Q84wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDeSlwy1bsZjbXyzYeb7DoJxNlXQc4Qvg416lxAWR+Ut\n3xOZCGAs2OUlPkuQBnbqrrwrx+xnIHzb7al1GBSsQMyjdTBzMB0GA1UdDgQWBBTb\nXFR2TM8UjR+5kMrxyMyJ7Uzs4TAfBgNVHSMEGDAWgBSkkvX/P1hF4lUDSnu5wrDz\n/ycuojALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAACATAKBggqhkjOPQQDAgNIADBFAiEAnp3M3P55q2ZEesQDkhS7kevHNh+W\nA6zqGtVHUpiMwIUCIC466opWtfiVnR5LWUq49MolutuuMybAVgPzxWK44/wI\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFIh90vZft/fxiJHLOPNsETf1dKOU2pRcmF9Vf8tKBnWoAoGCCqGSM49\nAwEHoUQDQgAEN5KXDLVuxmNtfLNh5vsOgnE2VdBzhC+DjXqXEBZH5S3fE5kIYCzY\n5SU+S5AGduquvCvH7GcgfNvtqXUYFKxAzA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqTCCAU+gAwIBAgIUNxxeFrxh85+DH9mrtAvdreJD5H8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNlU7FzZDGdCTPViXROWYz1ZSGXNmBgKblsrG6QD/J1a\nUFeus8EHqGjKoGsg7Y50+JExPThZsj4gHQp/kJF+rVGjdTBzMB0GA1UdDgQWBBTa\nhFCVkmtGJYidiOLwzzy4wqixfjAfBgNVHSMEGDAWgBQc30HumVnQ0EN4tBG5l9gV\nSdTdojALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEwAACATAKBggqhkjOPQQDAgNIADBFAiEA4vM6olhqz9pCPIwxkpwuDXkd5QeD\njzGEmVqp7nPzsusCIFJhvb/ZX9brTxCWMsDCM5vATru0tu0IiKTFDQrwqMIr\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILbvaX15+94iKmY5SSnIcz84d44j27z+3kac14CN/eoGoAoGCCqGSM49\nAwEHoUQDQgAE2VTsXNkMZ0JM9WJdE5ZjPVlIZc2YGApuWysbpAP8nVpQV66zwQeo\naMqgayDtjnT4kTE9OFmyPiAdCn+QkX6tUQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1001,14 +1039,15 @@ "id": "rfc5280::nc::permitted-ipv6-match", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted iPAddress of\n`::1/128`, which matches the iPAddress in the SubjectAlternativeName\nof the leaf.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBxDCCAWugAwIBAgIUDAsVcfc5mVKI5/CTZMK696RUYrgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ517jB44HO92AUiQ/j82aSRktkMjyewTsWykyw\n7LaibtZQ+3txUzQwgTpE8JFRcbwcToH7eKWuLmCwTwBtJ0Eco4GMMIGJMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBTU5pZqHqIAJfwHZyGjMU0uihLSvjAyBgNVHR4BAf8EKDAmoCQw\nIocgAAAAAAAAAAAAAAAAAAAAAf////////////////////8wCgYIKoZIzj0EAwID\nRwAwRAIgYeH3PTk/9tg5bG96Qp8woRiO9nnOs9OtnpLPfIHIo/ACIEvzND/yOECA\n58kLH1aoiDeRqX+M8FncV5VfxLLnhILN\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBxDCCAWugAwIBAgIUWiQoWhbGmbLhFo0tWapiu02uwtYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATkeDyt1ClB8kNU8HBmRKj3x/GfoAG/riYtKixC\n0A9iHqiMqebNcp+pBZc+VxJZIQpThICOPvfqokbgphAPH9who4GMMIGJMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBSbzJx1zGmJdt7UURhOeQKIPCsZ3TAyBgNVHR4BAf8EKDAmoCQw\nIocgAAAAAAAAAAAAAAAAAAAAAf////////////////////8wCgYIKoZIzj0EAwID\nRwAwRAIgalOtrfODjEg8Gyodi/CVqkrkH6RqPoN1igU5rHfojloCICMRIyBjwWA8\nRV7zabWQ8olf95/IBf5zPoWKxFAhTROx\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVygAwIBAgIUalzTO+yo8lQomMSFVJ9A4doEMJowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMxIL6WobKAOKcsvuM2RE63bWs5dKWWCsZV5YkVkpgIp\nitIkQvZz/28otWih8GqSwUp95rsp895NMKOczJGQexajgYEwfzAdBgNVHQ4EFgQU\nrRLMvUDEm5KYmzwuEEPkFiOThywwHwYDVR0jBBgwFoAU1OaWah6iACX8B2chozFN\nLooS0r4wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSAAwRQIhAIGeotCfE3Gt\nqXtYNpXZV+KdLxMkYrNtRDhjdMdmiuPyAiBqX0sq5wIxmyN5UfuaBEQ9YZCUzaUY\nzV/phno9E7ZD1Q==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIE7ZlRY29duIXyKhYWMWbLc/jc3zi5s+At0IymqIpOX3oAoGCCqGSM49\nAwEHoUQDQgAEzEgvpahsoA4pyy+4zZETrdtazl0pZYKxlXliRWSmAimK0iRC9nP/\nbyi1aKHwapLBSn3muynz3k0wo5zMkZB7Fg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVygAwIBAgIUReKsdH3URtyf/OPFD/z/u2okGXwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABAeqVxT8iPnO4uCr6GtZJ+4ORo6b5sw5p2zqkA82gkgo\np0aRma+3n1BeN5uKZEN2Qbf1E43sM4tdkpxrnnc8vd6jgYEwfzAdBgNVHQ4EFgQU\nznVLQkmSE9etD5fvaghuMmRnCBAwHwYDVR0jBBgwFoAUm8ycdcxpiXbe1FEYTnkC\niDwrGd0wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDRwAwRAIgRXyRELOaa1Jx\n1z8We1eKpUD3pZkUJKBuCRNPPwh8oCACIGBOkkRI5+fUNcBYIJEQHeIREg+bcxuI\nxMzgJSkjzqij\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICuA6dRHfynTIWtWzusgEw1HnzyCwSUPue+Lg2OeB0keoAoGCCqGSM49\nAwEHoUQDQgAEB6pXFPyI+c7i4Kvoa1kn7g5GjpvmzDmnbOqQDzaCSCinRpGZr7ef\nUF43m4pkQ3ZBt/UTjewzi12SnGuedzy93g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1027,14 +1066,15 @@ "features": [ "name-constraint-dn" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted DirectoryName\nof `CN=foo`. This should not match the child's DirectoryName of `CN=not-foo`.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUPaF6A02NhLOTuDoxvRK4832kRX8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQftgjRTDwZNEMuYfiPNtJE8m899DhBh7nfY17n\nw+CMlPoz93NIIxs1YhTM1rb5ka9iBrpu0VJnWpL8KI5WISo/o3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUraKeTr7nQ+N9uxl1+hz62dyUA8EwIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIhAN5FxIFpaid19Xdv\nOCPstwMiI0gBFmWJp8hn/AhwBt+9AiBa8ibk3yn7F6NBpm/Wr3m9Z/QG0IGbV72c\nrowvCyzpCQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVmgAwIBAgIUXJ9GudpSQ+9LQhCgHStRns8NNd8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARtctgN5/RbxgeTrnTB7lK1zL258S15l0CecqHa\nZdAq/rDH0FTOmUH6uZpiRnpyhBsiOVSLdW8dwDe53RYY5wtio3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQURFEVCYOWS0/GM9A/tM1eiTtyeeUwIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSQAwRgIhAPLzd8ZXVzexgbCz\nfj2e0XopNRe5qjgoIPpCaIx6obFOAiEAv+IwKcyUxdvDdwekukvPOpGSV1wMgGTP\nGblJh4uZM4E=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtzCCAV2gAwIBAgIUYr4lvMuvxNRMiG6rqjauuobvwmswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjASMRAwDgYDVQQDDAdub3QtZm9vMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEaObrEJfhX/qk8TQoM3HZdlA6JCepYcQftpfjv+4VWkgszaGw\nmKIxvCF7K6Mdh43ujoCPveVv8Ck8X+lUkxh59KOBhjCBgzAdBgNVHQ4EFgQUQ2P9\nlL9dnIqkqiC/wVQ78Hmcip0wHwYDVR0jBBgwFoAUraKeTr7nQ+N9uxl1+hz62dyU\nA8EwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMB8GA1UdEQQYMBak\nFDASMRAwDgYDVQQDDAdub3QtZm9vMAoGCCqGSM49BAMCA0gAMEUCIQCkIEYiHB6l\nf5VNqiT2d8p/4N+F75Ip1FtbodwN+oj41gIgYtqEUbmXj73bfvVOGyiOPGRG1Ye4\nAyFsSkvBboLx4XM=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINeo+7UtUeoCyHhI6reO7JzcK/Lg+wIIoteFT8X42aasoAoGCCqGSM49\nAwEHoUQDQgAEaObrEJfhX/qk8TQoM3HZdlA6JCepYcQftpfjv+4VWkgszaGwmKIx\nvCF7K6Mdh43ujoCPveVv8Ck8X+lUkxh59A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAV2gAwIBAgIUOFiI27bSUkbYKQccdr30Pe4zaB4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjASMRAwDgYDVQQDDAdub3QtZm9vMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAE8n5t3raargFxcibo3wZAqSBoYQibTKBaKZzV4qjg/2axv0Py\nDfepqtAim4KZImDCBdC3iHDpDDSIDv2KF10Z2qOBhjCBgzAdBgNVHQ4EFgQU6U/R\nEvfuRLbalpkDehEZdOJa908wHwYDVR0jBBgwFoAURFEVCYOWS0/GM9A/tM1eiTty\neeUwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMB8GA1UdEQQYMBak\nFDASMRAwDgYDVQQDDAdub3QtZm9vMAoGCCqGSM49BAMCA0cAMEQCIBK3t4c0RsiB\nTycBzOGA58+J97UHFzj0Lq+k6SXlxt1xAiBHfTlVS9HSZZKfNw1QXP0PdfEEknBB\n/G1+Aj0ivEAscQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJd0qkiU3lXQPHGGwPp0OL+5ngVeEb3v9tbf65/g33eroAoGCCqGSM49\nAwEHoUQDQgAE8n5t3raargFxcibo3wZAqSBoYQibTKBaKZzV4qjg/2axv0PyDfep\nqtAim4KZImDCBdC3iHDpDDSIDv2KF10Z2g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1053,14 +1093,15 @@ "features": [ "name-constraint-dn" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded DirectoryName\nof `CN=foo`, matching the leaf's SubjectAlternativeName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUFhnDp9bYGpuwoSTTLq9V47UQIGEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQRMLFtGoIuG03axgGNiEPz911gyxA3yyeENeJg\nBdm2BufvmgbMP9jNU41WDOnTM8xQexbcxDO1WIjxqIneuY8fo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUobfPgB6Bmc5XkIiZaTLzTMi51gwwIgYDVR0eAQH/BBgwFqEUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIgRl75hlVTLzXVqZ9p\nDG6sD1Oi7jCyo8vDr4V3VkHGeS0CIQC8rbbjIpSUnyeV7+BFBzE3Es4+b7VXGKMI\n6UQ5Y9IBnQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUJ3ASbrOHXabjFKYi2XtzdUWKHnkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASlHYEwvrsbLRfKtqESC3BgOXqwFweFQ/RMk4Nj\n/PiMrhxoSymtbl9yJDE9s8AaiOuAHn7w3v51UBBgz5ROEPMpo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUhNwnkTLNlCCTnP7IEU5+5YNFWZQwIgYDVR0eAQH/BBgwFqEUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIhAIzOFXU8sowN3Env\ntlo4RIlXroNik7jF7+fwCaNJ+eH4AiBfL0FF35GzF6CwmQXEFafAYeevFkIfdTov\nUmuVtFtjrw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrjCCAVSgAwIBAgIULwrEeU3D0W8pOuDgsDSvay2XItowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAATPGaLzEaf53txOmoBQYONLx6MW1K2Zd8zrF4MLfmBMXyBirk7Nufnr\n+g/HzPAPqdLwRr88mH7evvn6zAVYOhvqo4GBMH8wHQYDVR0OBBYEFIwxanzR7Zp1\n0DEo51oDslRiD7S0MB8GA1UdIwQYMBaAFKG3z4AegZnOV5CImWky80zIudYMMAsG\nA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAbBgNVHREEFDASpBAwDjEM\nMAoGA1UEAwwDZm9vMAoGCCqGSM49BAMCA0gAMEUCIEZUKnPxkQMhsM069Jm2rR4Y\n8fIp0C4+XKVQNUMoC7xTAiEAps7e3/7/1x9YNnUWMJAC6JL5Vu9wXiWUy1+7g97r\nzOc=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILot9ExuWPfgwaDp1CLOvB5NHihpUuvXtjddU1zmcChvoAoGCCqGSM49\nAwEHoUQDQgAEzxmi8xGn+d7cTpqAUGDjS8ejFtStmXfM6xeDC35gTF8gYq5Ozbn5\n6/oPx8zwD6nS8Ea/PJh+3r75+swFWDob6g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVSgAwIBAgIUU+Q6uUFpEa5MtZWXlLhK+osFA30wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAARrNNLnJAnB2FWj/KJG7LaYYvwZPtfRaU+OEMFoOmpyxmpHjiKD7zLH\nM/Y25cWU4FSvug6pChxeySaUv9pQO/TBo4GBMH8wHQYDVR0OBBYEFHW2yfsbH+vt\npdx6faVeuXTwL3grMB8GA1UdIwQYMBaAFITcJ5EyzZQgk5z+yBFOfuWDRVmUMAsG\nA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAbBgNVHREEFDASpBAwDjEM\nMAoGA1UEAwwDZm9vMAoGCCqGSM49BAMCA0kAMEYCIQCSdQEpzH9DCTisx1yvrOVh\nC4dARP+LCzbLla0sVwsftwIhAJ+HttwJ6yNLNJvoaN1xHlZikyD3Hl49DNlMicqs\nlIc4\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIP6pfrHh/xy8r6Z6mEyfX3E6oEA+QRk/w15Fvh58Lc/xoAoGCCqGSM49\nAwEHoUQDQgAEazTS5yQJwdhVo/yiRuy2mGL8GT7X0WlPjhDBaDpqcsZqR44ig+8y\nxzP2NuXFlOBUr7oOqQocXskmlL/aUDv0wQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1079,14 +1120,15 @@ "features": [ "name-constraint-dn" ], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted DirectoryName\nof `CN=foo`, matching the leaf's SubjectAlternativeName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUKB7U3K1l3S3tMzLyggNUMYCDID8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATPurm9aLimSwp2ypqW/xe26DGtHApGhUpUJ0c5\n31+4QkW+6SQwtjoocTE1ts1GdbclK2nZbQbbgJCw9gUz037Fo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUnuZ25Oljryz7K36LRpe0PtVKfbowIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIgFrzLorGIXpO5nsk2\niSqYuM1/ebpK68jb9Pp55lqs7RkCIQDrmSSPTS+BO+aR2jro/UJRUQwSzd4iAzkK\n70Eooa80ZA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUC9T/nxKZM46BfFF8ipbKVeiVhpIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATYrPxDHWoaFpQlUsrgNb5XCnH1gQXDYB5cIxPL\n6SRuhaLP0HtyFPoavNdZ1bQqzOywyKw4w1GFEcZXCHJj4sGFo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUL5Pnku8bv/NPHx7nyyF8H0wcylowIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIgOubOSv4K+F2tJkIe\noUgH+B/1tuZUDj4QdmrNSB7laBwCIQDVzlr6quvqTVk5I4JCbxKRZ6vhKmoj2sIv\ntbNOhbgxwA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrjCCAVSgAwIBAgIUHpNtncBffbYNVv/VJfhVIgu1NjgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAASVWPJDj+G97cg5omoC43hhrF6zpiOoMSZRTQC5gR0zCaS3bo8ocgk6\n2tC2PajHW+gZvwgUtIFHcBGAwMydcFyko4GBMH8wHQYDVR0OBBYEFP+4DBd3gVPR\nvYMfGxkIdjzAJNB0MB8GA1UdIwQYMBaAFJ7mduTpY68s+yt+i0aXtD7VSn26MAsG\nA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAbBgNVHREEFDASpBAwDjEM\nMAoGA1UEAwwDZm9vMAoGCCqGSM49BAMCA0gAMEUCICBgLV0ygc3fuQcjJL6d0XiH\nz3lGWtGP7iWlWF6fP4B7AiEAssBF0UDfQSbBnFU5iefay/zEvyQTaKeyq+2MEVkD\nCRY=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPlMtMsuZg0hrb99HTjaXc3zJlPU8/1xi1ZlSMk25ifloAoGCCqGSM49\nAwEHoUQDQgAElVjyQ4/hve3IOaJqAuN4Yaxes6YjqDEmUU0AuYEdMwmkt26PKHIJ\nOtrQtj2ox1voGb8IFLSBR3ARgMDMnXBcpA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrjCCAVSgAwIBAgIUJRfpRk1iUQS0Rezug5LFdJbHJswwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAASVlx22+h/i1PaJBqqxbHUK9TUKQuV6V1xIN8IrgwbxB9WhVQBT2xW0\n9R+se4WZ7chbDEI/9+NmQx66QVVXnIYgo4GBMH8wHQYDVR0OBBYEFMtvjomHu3WJ\nVo+3Q1g72QeJA9MZMB8GA1UdIwQYMBaAFC+T55LvG7/zTx8e58shfB9MHMpaMAsG\nA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAbBgNVHREEFDASpBAwDjEM\nMAoGA1UEAwwDZm9vMAoGCCqGSM49BAMCA0gAMEUCIARwHMh5NgXqM/04s7PoUiZw\nWchU6+rJnznXCsc6vjHZAiEAgWwJXWChUHMPpx7I3P5293zDPB2LiAV+xMg10vg2\nOMk=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPXB+zhPLpzYMm/uZobxLQXotFFuAYdCZxTaNSgy4yJAoAoGCCqGSM49\nAwEHoUQDQgAElZcdtvof4tT2iQaqsWx1CvU1CkLleldcSDfCK4MG8QfVoVUAU9sV\ntPUfrHuFme3IWwxCP/fjZkMeukFVV5yGIA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1105,14 +1147,15 @@ "features": [ "name-constraint-dn" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted DirectoryName\nof \"CN=foo\", matching the leaf's SubjectAlternativeName but not its subject.\nThe leaf must be rejected per RFC 5280 4.2.1.10 due to this mismatch:\n\n> Restrictions of the form directoryName MUST be applied to the subject\n> field in the certificate (when the certificate includes a non-empty\n> subject field) and to any names of type directoryName in the\n> subjectAltName extension.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVmgAwIBAgIUb9+BfxBa6K9rw+6Js/F2z8tG65AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASicsghMRrv3JvrAE5+vvFBFLE7pxxLUGjYy/9h\nHsFz62A2S21On8dvpfeggkL6oy6pbIn7mWLoxub/Kz47NQpto3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU2mN5f8ddOfMpv6+47l9t9BWD3EQwIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDRwAwRAIgcAV3RbfNfTMiHmog\nYH2IWll/tXuuUELv89VCGZ5I/0oCIB1gVivMaJtWFb4Plu+3DcUsmiW6c8OncvMS\n30Vy8QQm\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUaIkrkDMY+0K7O76KOHc9Jts9macwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS3fbENidXFAB3GonIhLssyW3SPaTICeZjPpZeC\n5CrYU/DuyiAszE1w0DQCtlPEMYgOcxAYS+6LLFaaxhPlEVtuo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUJOBxt8tcZVCk1vnYLyurZXkZ6cQwIgYDVR0eAQH/BBgwFqAUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIgR5em38tlwsQpSONW\nbfzQ8cWsONpoTDCkZkDuqBq1beACIQDrVo4PHWhRSP084iHzBV3BKabYR09NmdCg\ncxXE3YPk3A==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVigAwIBAgIUEc0ucjlSHTmJRCVsV66zvOISf6gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjASMRAwDgYDVQQDDAdub3QtZm9vMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEG36H1bMqNTmhn4+E+sNOCVM9OS4TycN/TYZhdZ06ZgAwmL/9\nZq9Pfpgw3r2geQc+jLTAqu8/Uq/eQN2xV+7Se6OBgTB/MB0GA1UdDgQWBBR9Ijwb\nv4gBIRQHBqpWzhRTGBS2EjAfBgNVHSMEGDAWgBTaY3l/x1058ym/r7juX230FYPc\nRDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGwYDVR0RBBQwEqQQ\nMA4xDDAKBgNVBAMMA2ZvbzAKBggqhkjOPQQDAgNHADBEAiAexsHdOCBGiV+QFolg\nIhiI+WYPtxdQkLY3LmM4OeTjHgIgGdNwSQfusdH9TiwRprlqraKEoDZERlKg8Aod\nanN1YvI=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHJSV1BfEHpG19H4arr3crqYZ8GAsrwBlXgmRVRkdbFzoAoGCCqGSM49\nAwEHoUQDQgAEG36H1bMqNTmhn4+E+sNOCVM9OS4TycN/TYZhdZ06ZgAwmL/9Zq9P\nfpgw3r2geQc+jLTAqu8/Uq/eQN2xV+7Sew==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVigAwIBAgIUGl/t3ObaqqZ5UrKSggh9rUdt1VQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjASMRAwDgYDVQQDDAdub3QtZm9vMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAExFR4m37v3D02wANeGzwYp4EftqEMklLC9Yos1bEeA5t8yVyh\nI0iK4vbnMCtD5U9qNryZ2CsFD6s2g4qT3ltgvaOBgTB/MB0GA1UdDgQWBBRK4dgV\nFk6nCxA5wnfgVdVupNlanjAfBgNVHSMEGDAWgBQk4HG3y1xlUKTW+dgvK6tleRnp\nxDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGwYDVR0RBBQwEqQQ\nMA4xDDAKBgNVBAMMA2ZvbzAKBggqhkjOPQQDAgNIADBFAiEAyWh3zODW7/sjyMdK\nAMgqVe8CsS7KHBz7/m6K87a3LA0CIGEi/ej2x8zb7zAYUTJKCM04oNuorUBBi1WG\ns6An8fTa\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMgexlEqHjstm3dy7aOp/C21KpYyGSoTVak+CbvqAKOloAoGCCqGSM49\nAwEHoUQDQgAExFR4m37v3D02wANeGzwYp4EftqEMklLC9Yos1bEeA5t8yVyhI0iK\n4vbnMCtD5U9qNryZ2CsFD6s2g4qT3ltgvQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1131,14 +1174,15 @@ "features": [ "name-constraint-dn" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded DirectoryName\nof \"CN=foo\", matching the leaf's subject but not its SubjectAlternativeName.\nThe leaf must be rejected per RFC 5280 4.2.1.10 due to this match:\n\n> Restrictions of the form directoryName MUST be applied to the subject\n> field in the certificate (when the certificate includes a non-empty\n> subject field) and to any names of type directoryName in the\n> subjectAltName extension.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVmgAwIBAgIUDd4yyBaJqUZI0+p9BRgwiY9ZRTEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQADuKMsdw6vQ268l1acf+o8xHggYx3zQDoInWf\nZxzBcn9oC4/ND7bFVaS2OrS2EUNDXH+J+f1860D644F3dnoUo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7WwwLh9qm+5vtTrHsuIKs8NnMmkwIgYDVR0eAQH/BBgwFqEUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSQAwRgIhALuSZqarfqyoZdAH\nDbxSnsQlrEiUd2lusoxaXrbwm9lqAiEApZmNo38OQfYGfuCXE4iy24xUwDyyOqAx\noDWdCkHUnR8=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUZQnM8LjaHO1lh4pu3Yv6ciiHnKswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQA6q+BonF1YQ8OKZoh5naPKtZnUfiTmURPGyzp\nvMF7HxocaIovn23YtQpUB+BPVhIiNVLSqvdDmhOUUMV4L5v6o3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUzLb8NTeVFc93kzonngYaFydcIj0wIgYDVR0eAQH/BBgwFqEUMBKk\nEDAOMQwwCgYDVQQDDANmb28wCgYIKoZIzj0EAwIDSAAwRQIgTUnK8ATtEute1L8A\nYUbi+9ixYuWouXjlG69HMF2xOfICIQCphXLYPaHYarr5trbbNZEW57N3sVresDPW\nl0w8DN74eA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUHB8RH1bCwQ/QKe5V+G2CRFhenTMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAAT0LeXW4+c2uX3TyXUA+BE0AV3TcqpwH3D5Lu9ZmxOWLqft+4PEFOUJ\npXHq9c/7Wam+ziBIjZlWj3OT+Yd+Z4Ido4GGMIGDMB0GA1UdDgQWBBSgLbkAPRXx\neEa9rNGU31l/mBWzGDAfBgNVHSMEGDAWgBTtbDAuH2qb7m+1Osey4gqzw2cyaTAL\nBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0RBBgwFqQUMBIx\nEDAOBgNVBAMMB25vdC1mb28wCgYIKoZIzj0EAwIDSAAwRQIhANflM1YxfJH8UY3Q\n7IjxePgzBQgWEPOj98hzS9KDlCDaAiAvkyGAJwRcYAKrBtVnmyKZGwAbuNpfSAHv\n1ADWsDNNiQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBkerD4puvRY4uesAt3kSlaw3d1ehIJftQp3kehP4PeroAoGCCqGSM49\nAwEHoUQDQgAE9C3l1uPnNrl908l1APgRNAFd03KqcB9w+S7vWZsTli6n7fuDxBTl\nCaVx6vXP+1mpvs4gSI2ZVo9zk/mHfmeCHQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUZcZew5WaxNbBsjVB48QuxyqosukwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAOMQwwCgYDVQQDDANmb28wWTATBgcqhkjOPQIBBggqhkjO\nPQMBBwNCAARgpkYJ8HJaABm/GrCzrTUEZd0Se2mF9RyzB4OJ8RuH2086FbWeYsIs\n2HlQR3bnI9otvw3RYi50B/ga25pjG+SRo4GGMIGDMB0GA1UdDgQWBBSF3u7KblsZ\nMHRiJGdXyThm8uFCqzAfBgNVHSMEGDAWgBTMtvw1N5UVz3eTOieeBhoXJ1wiPTAL\nBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0RBBgwFqQUMBIx\nEDAOBgNVBAMMB25vdC1mb28wCgYIKoZIzj0EAwIDSAAwRQIgMvTBVKKY8lETzOYT\nU6ksu+fucnzu0Q9H1Eu/e+IEHU4CIQCJ5slpkPJhBn1sq0i9r6jlw1YFc9Zq5UPX\nRbM4vDO4uw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ01NyX67NwHzzosFRmfQt0W3psoNGZ02R8gfjLFdzUkoAoGCCqGSM49\nAwEHoUQDQgAEYKZGCfByWgAZvxqws601BGXdEntphfUcsweDifEbh9tPOhW1nmLC\nLNh5UEd25yPaLb8N0WIudAf4GtuaYxvkkQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1155,16 +1199,17 @@ "id": "rfc5280::nc::permitted-self-issued", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> intermediate -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\", whereas the intermediate certificate has a\nSubjectAlternativeName with a dNSName of \"not-example.com\".\n\nNormally, this would mean that the chain would be rejected, however the\nintermediate is self-issued so name constraints don't apply to it.\n\n> Name constraints are not applied to self-issued certificates (unless\n> the certificate is the final certificate in the path). (This could\n> prevent CAs that use name constraints from employing self-issued\n> certificates to implement key rollover.)", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVigAwIBAgIUZR+0uFXnnfenjTdkYleeXgYPpL4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR71ZqLWN0ZUtCWj2FlNPrs4UqCWAyGI7jCvCb+\nQC91OiLPInsNXWa63BeWSOvIOAvqQfDqiaojGkOlyLQLU6cUo3oweDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFLeGQNWX5EmyuYoz13k/HT2MRbAcMB0GA1UdHgEB/wQTMBGg\nDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEA0TzmlULGfkxiaXHI\nscuDua1ff5ZGTT7ADlqSx8RWq64CIQDORhz7ihqbhFcQpG/HD/2d8/aeU0s3/z0n\n8eCnswv/ZQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVigAwIBAgIUa1nz4lFmetOTdlxqYTEh8MrFoKcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQRZ19puqkWgeEs7K3oxRFEFOfBHm4egvvokXkM\n+JsRro99LfYInqaOsWtx5zlgUGX4FTR4QtTn+ubN0wzz6Sw6o3oweDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHQYDVR0OBBYEFM+vmnnh+qGa2SFYuAKOXOJGgBjmMB0GA1UdHgEB/wQTMBGg\nDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEA17kSfO7HoQMW3Udz\nmbLdkzIhzSnIgzn0nvHpCA1pxFwCIQDqR4Z6hlmyAlODEyuEaOFvrKXh5C3cQtV6\nn6+0AJ5wtg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVqgAwIBAgIUG0JkPl3Fg65Xn4V1/M84IZGSN4AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASSTOHTXwhppBBOsbBJ4sNp40lXxyM2pfDKZtuq\n/o3APwCIjuxJ0dOpBatQIDpsEmYGPezvK5hNW1sQOitKczxyo3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHwYDVR0jBBgwFoAUt4ZA1ZfkSbK5ijPXeT8dPYxFsBwwHQYDVR0OBBYEFPEP\n0BWKlebvxRe9SNAwKAIpi9pTMAoGCCqGSM49BAMCA0kAMEYCIQC3ooQm3VXGYsCc\n8K1VVZLhHyeAE3ioc9vJaRWLdCBamwIhALn5k2N8/sBtGqWpRPzI6klBE3UFuM5p\nyVbM1AII6rvK\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVqgAwIBAgIUQVByz5r7W8dUezktApN1vC/2lxUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARHMfjcAz+Xwtl2hJ0rFlOZUvZn+nBqPw27vE9U\no3oe5uUNcQ5Z5iwvG5m+mQli+AB+VbbDtkyMk5FfATMq9qh3o3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHwYDVR0jBBgwFoAUz6+aeeH6oZrZIVi4Ao5c4kaAGOYwHQYDVR0OBBYEFD//\nGtEfZNQ+RuvInoFNokkNm678MAoGCCqGSM49BAMCA0cAMEQCIEBEPcw5MMoZ1JXJ\nKXpyg44SYTjswbHzgQUXpq4MqsAKAiBP7rpFgjed+mlnN7N1RuBs80yW7rE++fpR\n150m8LmDfw==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUPME7hdO6dtsFVjYg0qCnkJlTZCswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABApBdaMitnDA2zTauCYK+OZmqxt9o+R1Dyh6nVAIA+sB\nVzLuf6uDy48O5wKP5WyegvsSqCvTmWZ1M4MIN7oBoWmjfDB6MB0GA1UdDgQWBBQb\nXDlWv7t6O7iaZW4Hn2C+JZLrvjAfBgNVHSMEGDAWgBTxD9AVipXm78UXvUjQMCgC\nKYvaUzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAJoYEMjGF8dNBBsI8cgx\nybySYXnxN3sH0T39Rhr/7xp+AiEAt9NXSFB2HPwTf2JEOcI6BdcOGf7QKdx3zcVj\nr9iBP7M=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEII7f8T8CJkW33hBI2hTpiMb1P2+lmPFw7YyQ/S5EHGmyoAoGCCqGSM49\nAwEHoUQDQgAECkF1oyK2cMDbNNq4Jgr45marG32j5HUPKHqdUAgD6wFXMu5/q4PL\njw7nAo/lbJ6C+xKoK9OZZnUzgwg3ugGhaQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUX5KsSNm8Xn5Ih3rBYwIT4Mypr+AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABEH4cn8+Ri+f3ZdtV0FvrxSWdvgBi7Tx1Rer4yzOxVOZ\njDnBD6X2TVR7ykJKMNaM2u74vkS4jLDminxtwxa3FbujfDB6MB0GA1UdDgQWBBTv\neOFIoTHcXCvT03tGmd/IAbKZkjAfBgNVHSMEGDAWgBQ//xrRH2TUPkbryJ6BTaJJ\nDZuu/DALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgBSfO/2Y0URm1PNzo76wo\nu5E8ImbibXpYBo6FGmecxUUCIQDZOfSrSXXU70q55JA9jPhbuBTQtsK5YIcphgBE\nT3n0Ng==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFNf4U7EinryLdVVizJS1GmNKiYOtp1di7VG/GBDvl/loAoGCCqGSM49\nAwEHoUQDQgAEQfhyfz5GL5/dl21XQW+vFJZ2+AGLtPHVF6vjLM7FU5mMOcEPpfZN\nVHvKQkow1oza7vi+RLiMsOaKfG3DFrcVuw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1181,16 +1226,17 @@ "id": "rfc5280::nc::excluded-self-issued-leaf", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\", whereas the leaf certificate has a SubjectAlternativeName\nwith a dNSName of \"not-example.com\".\n\nIn this case, the chain would still be rejected as name constraints do apply\nto self-issued certificates if they are in the leaf position.\n\n> Name constraints are not applied to self-issued certificates (unless\n> the certificate is the final certificate in the path). (This could\n> prevent CAs that use name constraints from employing self-issued\n> certificates to implement key rollover.)", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVSgAwIBAgIUadIS0KlBQ0MvbmjyxQeBKUJy0z4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARXo2OrRLChrWW7vDe6Kd5m3ISJZ8Y52Q9BUxGp\nBkaKOIrQlBPhqr9MKDbhIR5CXz0fr9J+Mi7Ogh7ktbySRMOOo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU25T7nceEtCUnxwiM1K9ppRqcLPIwHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0kAMEYCIQDknE/GIrscbtTL8S7l/jsa\njNu/7QWGT1FIPbJMjDi4+AIhAJVAqt/p80i194F2kHyR7ncirIvmH4p3a1qaqkXU\nv4Wv\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVSgAwIBAgIUFciqe3PvbQpft55lO7s0edPBgD4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS6Wd6YBB0RrfTntJu4t1jB/7nDFkPWFwrXsHKv\nopJvUP3MjUJ+w0ds4YpkRblX+0nggkKKyKUmgT+E8BraXMvYo3YwdDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUbjW+e8jToqoGDbJJvOOxp1WSdqowHQYDVR0eAQH/BBMwEaAPMA2C\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0kAMEYCIQCSC68qHPjtW96WHlVE+Yuk\ndTTO13bm4VZ23+uxcEEXngIhAMJw9rjC8QkIfwpNdrY6lZoxJEgW5FasbuEJfRHS\n9Jz8\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVqgAwIBAgIUfkwgwuB/E9yZScgoGb5wTfwHyfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASKpEqIgbgG9w6qe/GyBTJA5+q6saY8MSjUgZTp\nYGlG43dU9SsOZ1lOa40/9HG94UdJsL07jO3Zk9a76217u1+ro3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHwYDVR0jBBgwFoAU25T7nceEtCUnxwiM1K9ppRqcLPIwHQYDVR0OBBYEFHZy\nTQliUdcKnKd/BlibrYsJpmiJMAoGCCqGSM49BAMCA0cAMEQCIG9WwXlNl4uddIxU\n1XFvck6ZutMIq8VeqLDA1xNXX2CPAiBW8sAqt1lNtQseVLaZ9vslRbNy1uOPxxya\nzFvLPIjbag==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVqgAwIBAgIUJGbOmaMoXTWjCzotE04FpV79A7wwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASvXTgAPdhCcY4pdoedBnLdAe3Kq7Kd7j5cRTDD\nxBagRwVLtcM6A6BRMajd/t1TZqe8KeLiYJQL7ZCmGv7RazrRo3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAaBgNVHREEEzARgg9ub3QtZXhhbXBsZS5j\nb20wHwYDVR0jBBgwFoAUbjW+e8jToqoGDbJJvOOxp1WSdqowHQYDVR0OBBYEFDAq\nty/vIZsv0JLNYZy83j+uENkWMAoGCCqGSM49BAMCA0gAMEUCIAMaRw88OwbaAVbD\nGVjBN72n8fcKqCY1DonMOcRYJ2MLAiEAx3PoY0JtyGVamM7y0ySYLYui7py0Qmiu\n/fMPd5rDx7Q=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV+gAwIBAgIUWc+7w45dhPCO0hoc3cP9L97Z1Q4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARKTO6/99zm/YIn6Hq0m2LoCAq6EwuGyPUu+DQY\ncD95z57uCJDg5EBC60un25qCp3AvtHd8O9En8RfZS8Scj6cao4GAMH4wHQYDVR0O\nBBYEFMxAK6IlWhxDqhtc5dKS0nTKqNlCMB8GA1UdIwQYMBaAFHZyTQliUdcKnKd/\nBlibrYsJpmiJMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAaBgNV\nHREEEzARgg9ub3QtZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgfQvGwZJ6\ntv0cuUSVCFwB+pxu70xoFAY6WvIFzesNutYCIQCH0VCX/3x/nLGiJg7DMnZ4dOAK\n7fAqBiotW2gAGCymTg==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIMzTxogWHeEEFpMnaNLgqeRGxMB7jzfvh7yn5pm+ihwoAoGCCqGSM49\nAwEHoUQDQgAESkzuv/fc5v2CJ+h6tJti6AgKuhMLhsj1Lvg0GHA/ec+e7giQ4ORA\nQutLp9uagqdwL7R3fDvRJ/EX2UvEnI+nGg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV+gAwIBAgIUJGpNppFBzQ1Gjbd95ZEyC5GDnJUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPbm90LWV4YW1wbGUuY29tMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9ub3QtZXhhbXBsZS5jb20wWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASaU48T5mI/E1wwOfkZ9w8O/6bUHBEVDRDHI7S4\nQ6SIeOzqBA0LbduHPePiq8npGNaZwBHANOm5IPDaEqyr5FZko4GAMH4wHQYDVR0O\nBBYEFHwy9lW4vOgAcbzXdXc1AsyBmC8DMB8GA1UdIwQYMBaAFDAqty/vIZsv0JLN\nYZy83j+uENkWMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAaBgNV\nHREEEzARgg9ub3QtZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgWeV+HitM\nYRG0Il7KwBljaxq9lpgC5rlLeid8VBmF2kMCIQC6iqx9W7JaIlqE1OQYXgJeRxnB\nd/ZJGaX5AeV4Ma3Adw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOEV2a1xnlW1hb1+Y2ECFz0y7yt/borieR3eMFxey9UVoAoGCCqGSM49\nAwEHoUQDQgAEmlOPE+ZiPxNcMDn5GfcPDv+m1BwRFQ0QxyO0uEOkiHjs6gQNC23b\nhz3j4qvJ6RjWmcARwDTpuSDw2hKsq+RWZA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1207,14 +1253,15 @@ "id": "rfc5280::nc::excluded-match-permitted-and-excluded", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted and excluded\ndNSName of \"example.com\", both of which match the leaf's\nSubjectAlternativeName.\n\nThe excluded constraint takes precedence over the the permitted so this\nchain should be marked as invalid.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBwjCCAWegAwIBAgIUW2QFzd4ZrEHCswgJdCn1Xe3Hqq0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQNkSYrDV02T5YXVDffF8uQwWOVgYeG2N4Hv6RU\nHFURKJ3EExbNKiCzqqGtAKRpz2JqRNrJC2EICZRLe70nO4NMo4GIMIGFMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBT8xtFAQhACDAAnqFWudyeVgjBX8TAuBgNVHR4BAf8EJDAioA8w\nDYILZXhhbXBsZS5jb22hDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBG\nAiEA+ii/PABoHfqFtflqN8ZRBk6iXmIECUvIviBhr76WDk4CIQCTklPx60O+FxdN\nGMe/4CwbR3BRvrTrltvza6McVKdL9Q==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBwTCCAWegAwIBAgIUcOPB5GCE7eFEkjVLHd1fQoxqP0kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASDPJQu+/k4xICHuEoJRknj3MyU2zrYaLoajnd3\ng0eBz9j6CYlaCAilZWf0yjRass1V1n65PdZYon5nLgD7LZuQo4GIMIGFMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBQ/bhbDPDyt5NXFZC6Kig+URVigizAuBgNVHR4BAf8EJDAioA8w\nDYILZXhhbXBsZS5jb22hDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiEA/+YEzfICjv3XhbF4GlqnpMBSLPGtbhy0MI+xHBrdRfUCIDTRilbJM+aCFbV9\ngRm6t48++8Ofzl4BGQU11rGxx04Y\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUJihWJQowjWKKbwk2DkwlTJjnIdwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFTDAVabW27TtZKtpkpJlCehPGmfQE1LIPzLiPydLk8U\nkxIcnZbwufI6YB3rflwPc/wEloc3C0H5Tb4bLO+5FvujfDB6MB0GA1UdDgQWBBTr\nD5d4wAW1OtQPAt2hN544mI6OtjAfBgNVHSMEGDAWgBT8xtFAQhACDAAnqFWudyeV\ngjBX8TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAP089VHa+o921nnX67jf\nMsn1epGWoo4PSU5FXa6ucajCAiEAtl4T4KTJkwFHtP3byYF0gOLYmgDQ/mRO4fqU\nW2sYVXg=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDB571jhB6kinSB2bWXa0Yqw99zEzep++AticTTrzWSKoAoGCCqGSM49\nAwEHoUQDQgAEVMMBVptbbtO1kq2mSkmUJ6E8aZ9ATUsg/MuI/J0uTxSTEhydlvC5\n8jpgHet+XA9z/ASWhzcLQflNvhss77kW+w==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUfmFKpWmBpu1SbILCYqmV+RF924gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFoYl8y+0i+PKm8I6kaPRX/yOqlvDB4OZwSb05XYw418\nFQGjfk9fUFrRJ408Xn11xzsYfF8l9zXfLtS4OX1AI8ujfDB6MB0GA1UdDgQWBBSL\nwV0d/n31ehSQ04QvXYf6ep59WzAfBgNVHSMEGDAWgBQ/bhbDPDyt5NXFZC6Kig+U\nRVigizALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgAJJrxfQSHX6aY3pHu0h0\nhJa7d8mlz+SidmtK3buhvd4CIQDoYvcO3s//C3YdK1aG2hDaU2jeu7by+ZNBVwp+\nIweY4A==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEeQxeDA1UuQeehs+q6ct1gUFzNfRv2VUM4quCswkx62oAoGCCqGSM49\nAwEHoUQDQgAEWhiXzL7SL48qbwjqRo9Ff/I6qW8MHg5nBJvTldjDjXwVAaN+T19Q\nWtEnjTxefXXHOxh8XyX3Nd8u1Lg5fUAjyw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1231,14 +1278,15 @@ "id": "rfc5280::nc::permitted-different-constraint-type", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted iPAddress of\n`192.0.2.0/24`, while the leaf's SubjectAlternativeName is a dNSName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUTmwVC8jBRSqcjs1fUbnV0Eb712MwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR06OGDkyXTinxORjgYZ+xsO4/B74zpClPQRZ/Z\nV3Qt3rOVXDhNMWUnB/h+HW1VqG9QM7dO05FBrLoEvObN2Tc5o3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUrMQ8dpQzv4cAoLHBBAcZhJe+Js0wGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIGj6vf36S+LcUSYK7+JLbVgTUfPh\n1sZk8FSQIckXFYXuAiEAxB2ObpFFrUYMgoP6a1l2AUKj6gjcKptkvwDyX5lv/Gg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUMz4RDG4ej0hJv333cCD+qw91yHswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASnKQgrnx/NKYXM46wHPDLlcNdX/imXWSIfr9EY\nCB6D50xo8qaAikACmNCAkYLjKnQHBm4r6rdbvTwJno8FURzho3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUbzNcEjLcln8c+ArDPEgXW9y5fmgwGgYDVR0eAQH/BBAwDqAMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIDTb6Q0nks8X1f3R+OOXRtrFBAM2\nTXGur2SO2FdSxmWtAiEAzau0qg1WOAzRyMnlrvA7j0W/VLg8soS/PPF27KGsH+c=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUX//rx3mgKOsCmFAkN1hYyRDXNDQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABP32idktg0HxpPRrmshGPYU3LvGsdwWQOj8jkWZD0MZw\nhphi/8rc2Z4GQpX4yS41iBkETBvUbiIj/kNgfqPhkhujfDB6MB0GA1UdDgQWBBSS\nzmEafTO5Kj61wMbG9YLlFNZXrzAfBgNVHSMEGDAWgBSsxDx2lDO/hwCgscEEBxmE\nl74mzTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgAdtsR5+0rjqayte628Hf\njqT6apAQdoT1ELskJ9DKCCQCIBXqu/0mSQ5e6RCSFVbWiyXD8P5emDL+Ju4bQQXm\n1ANZ\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDgn7CXpTOCBBgZ2jPGZrdd1enkZWdAu18EXJHIZPe/roAoGCCqGSM49\nAwEHoUQDQgAE/faJ2S2DQfGk9GuayEY9hTcu8ax3BZA6PyORZkPQxnCGmGL/ytzZ\nngZClfjJLjWIGQRMG9RuIiP+Q2B+o+GSGw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUFjmKZIs7dQihUq2SPpzYfJJ3AtAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGC4IyDU5R0WK/sZfhD9mFA96uipDAgUTFW4u1ZT8H2G\nzrvvQYr/BTPEY7Ku6jwHIR3DR66wo4m5dY2rLstiqUSjfDB6MB0GA1UdDgQWBBSL\ntUQ3YAccdwez+LD+auMBSSob5TAfBgNVHSMEGDAWgBRvM1wSMtyWfxz4CsM8SBdb\n3Ll+aDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgYldz684nl1WTsHW19GnM\n1lr1QemgTA/GVEpaCA/CacICIDqNKAZtxcPCva+rANn8MEZJdXfSDL9c0cdcMQzs\n9ywW\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIjIwQVM2RC5z6kn/TW9dfG4HKkUMZ2wNZimTq7qYArDoAoGCCqGSM49\nAwEHoUQDQgAEYLgjINTlHRYr+xl+EP2YUD3q6KkMCBRMVbi7VlPwfYbOu+9Biv8F\nM8Rjsq7qPAchHcNHrrCjibl1jasuy2KpRA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1255,14 +1303,15 @@ "id": "rfc5280::nc::excluded-different-constraint-type", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with an excluded iPAddress of\n`192.0.2.0/24`, while the leaf's SubjectAlternativeName is a dNSName.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUW4A7hzCiiBTulsNbgMaraIpDMScwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARthH7GxA0NxSxZRkLpSLF4gBW7mz4tfD3WSbzt\nGiHzTY8I1wsurLlGFHvjWuC1WG+/JOvXhpIzyuwZ/Y4pc/RQo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUPciOCzgJQwMRaOVrHaBXo2bbrPMwGgYDVR0eAQH/BBAwDqEMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIQCE9as5wEmSZSgMZ1UGz3foL3j+\nN/JeiYem52Pud1J+hQIgdMnmV0JieH8N7Tbyi0lMP/EpbTb1O0lgE9MqNHdVRMs=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUP3TgWbAhKsesDA6mwBLGNIqQsF0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARWfzi2OJqISKysJUMbcmkHwIt55PeXsiQbjig0\nGQYKCse4MP4c8e7SO8LAngs+UqetTuWTXTFz33oYAU1AMy8Uo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUwoiZuc7fHliSRXUN9a8d4E22uO0wGgYDVR0eAQH/BBAwDqEMMAqH\nCMAAAgD///8AMAoGCCqGSM49BAMCA0gAMEUCIAE9XnRzOCgpIlTS4XjTWi1kWm0X\nZZS8MsyIDUeMtHhlAiEAt44D9GjlvmPaVl+axcjRmqqKtfm59WeIqanCYNFc/Sg=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUYYJLB4oJOmXIVIpgW9VW+/yNcpswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABKK6d/GK1Slle3cVrj0x+VbhA4u/duBKTAbOEPqVGVqX\nRvnhRXq8njiF39WJhD0ep7bWAP6tNpkA0jEZ3Lq6HiajfDB6MB0GA1UdDgQWBBRE\ni/ld3wern61m9HOT/GxpkmfewjAfBgNVHSMEGDAWgBQ9yI4LOAlDAxFo5WsdoFej\nZtus8zALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgZMQr4cdYFkSyeCnG2wQJ\nBRVEnaY7VE2pXRSCk8mWVdYCIQC4PskpFd3u2F0gf5lH2F0a+VEa1kZH3oMVY9KI\nDWH3RA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDEtxg4lD15HH1G/ovifKQzTqaNq6zpn0kevf3GV/L98oAoGCCqGSM49\nAwEHoUQDQgAEorp38YrVKWV7dxWuPTH5VuEDi7924EpMBs4Q+pUZWpdG+eFFerye\nOIXf1YmEPR6nttYA/q02mQDSMRncuroeJg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUG0pE1TblyNCG8YVNyfoxspbQm2QwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGCJ+uB0TcDRoZd14sAdjf3bwV0+edPTAkCPOR0qMX/M\nYJ8sEQt6ozhc5AveGvvDGs9oEPJ2XuhsuMjPuEuahKGjfDB6MB0GA1UdDgQWBBQP\nz2ud7rWjHYKjEYSS4K1rwY/ipDAfBgNVHSMEGDAWgBTCiJm5zt8eWJJFdQ31rx3g\nTba47TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAK9ajAeIUa5JlplcauwY\nZKkA2OlCSShWvtHpeyIxxh7HAiACypg6peqbYqISHxqDib5fCwwhFtYpU3wjK5Yu\ni3D7sQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIbqxhBaEkdCzDcAIIbu8Vsj3rVWRxdQbsDbnReCZilmoAoGCCqGSM49\nAwEHoUQDQgAEYIn64HRNwNGhl3XiwB2N/dvBXT5509MCQI85HSoxf8xgnywRC3qj\nOFzkC94a+8Maz2gQ8nZe6Gy4yM+4S5qEoQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1279,14 +1328,15 @@ "id": "rfc5280::nc::invalid-dnsname-wildcard", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a Name Constraints extension with a malformed dNSName\n(uses a wildcard pattern, which is not permitted under RFC 5280).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUfNYtuKQcgsjTsjHnUkCAuk7RibowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS2kjUuOOPCWUues1nn9tYNqyAivBh9vbFTy9Zt\n/x7SMaHhRyzve+2JUffFqYAdVhnDPNMDjd4WHhDHIkSMUalio3gwdjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUoCI4mNkDMCZGwGEycbMMwWzszFIwHwYDVR0eAQH/BBUwE6ARMA+C\nDSouZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAJtF1HXNTUIGp11uR8gn\nPEtGgMPxTKC/boZKAhJnwZq6AiEAmbnEdQrj6k+a5tphI2bp155b8ooTrU1yYQVk\nX5heqnk=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUJ4OSGb+nwsoJBnk5c14gtAZCigswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARmPAV8OdocywAYDy/9HLZhjzijB6glK7Q+iRiX\n3KdDySqJV+Lqsk9pZM1MsiQXCJ6Ref6vmSnVMlW7Q5DMJsoFo3gwdjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUDO5/1ZWUxNju3PlN2xcSEGCGF9MwHwYDVR0eAQH/BBUwE6ARMA+C\nDSouZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAKh4te9G8JyQ4CB++64H\nKNi9hQSjnLeFH8dWuR2b0AXNAiEA0pZY1BaOLt0eGqt1Sbb87pI2NTZC5h47dJwx\nnPGSTI4=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVugAwIBAgIUDwPCqS9odgaKcY51CNquFMU0yUAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMe44otWi1fgKcmqOIJW+Oe00G0zI0OCdPPBdPhGyGe/\nHjXnf7D5Fo5eWwQpf7ydcsJxxAtuqO1I7SEx0f4ElJ2jgYAwfjAdBgNVHQ4EFgQU\nOBi3ZqdJz/ROhYZD+xBrOyvlkDIwHwYDVR0jBBgwFoAUoCI4mNkDMCZGwGEycbMM\nwWzszFIwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2Zvby5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiAqt7fA+j9MPTY8\nSDg/ZA+15LpMpalNg5sxrXryQ/C0SgIgdgV1oKzK9ZxeFn9KBwNr2A7SAGaebAdh\nwD63II1PXD0=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPgDfMmPMnXtAUFuoXBT5hOaUUU4Tux57B9WIY4zd5xcoAoGCCqGSM49\nAwEHoUQDQgAEx7jii1aLV+Apyao4glb457TQbTMjQ4J088F0+EbIZ78eNed/sPkW\njl5bBCl/vJ1ywnHEC26o7UjtITHR/gSUnQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUQ5ESc/k2LmrDery3E/T6YI5iYkkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDrkfOA0y1i3ibZjF85hCcH/VheJNkHTkjVcFT82jwEm\nBai7/MytREilAewbcmQF08SSLd2EDsVisiEb5Eax4q+jgYAwfjAdBgNVHQ4EFgQU\nmbqNuiSs8apKxYPSfAev1ermAfYwHwYDVR0jBBgwFoAUDO5/1ZWUxNju3PlN2xcS\nEGCGF9MwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2Zvby5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA4Szv6qfC1GjC\nyhB0n0/WKcJz3R41hHilyAZXhPDyVCsCIHQYPhc3rfbaBdZfHU2VM2ntEOaNFDaS\nMQMdpbJq5Myj\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOmLfdIeIYIgtwZL8sV7PqYMuhrcPwJn91H6cbeps7L3oAoGCCqGSM49\nAwEHoUQDQgAEOuR84DTLWLeJtmMXzmEJwf9WF4k2QdOSNVwVPzaPASYFqLv8zK1E\nSKUB7BtyZAXTxJIt3YQOxWKyIRvkRrHirw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1303,14 +1353,15 @@ "id": "rfc5280::nc::invalid-dnsname-leading-period", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a Name Constraint extension with a malformed DNS name\n(uses a leading period, which is not permitted under RFC 5280 4.2.1.10).\n\nThis is widely (incorrectly) accepted by implementations due to OpenSSL\naccepting it and due to misreadings of RFC 5280, which allows a leading\nperiod in *URI* constraints but not DNS constraints.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVWgAwIBAgIUQML2yvLHujh+dfyqOZXP53fqZNAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARoEfTmKQbtIL+CBVzyJ96fAwLPiCyXqbwxcc6I\nBV7ID9KcELafvx8e59GyCDNAHKt+/DgK6WIm4MSx4P6ad3tGo3cwdTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUA9nxvXLePewHCFPEyt1NM9g/mlowHgYDVR0eAQH/BBQwEqAQMA6C\nDC5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEAtv3hPt1wWMjUZZLwFxdl\n7J1qONI90rA7ccY/AYvflJ8CIFOvf71gVUvYlT46ROfxTk8tKN51Vn44GNtfVCZc\nrPNm\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVWgAwIBAgIUO3erE65r+K3Q9iVpF9YcSzecDNkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQtLuPFR4wSNsKrZxopgXThEx+8qwvQyAFyVoCO\nT3kAhS+h2e2jJnVpZJAJVx9KZTPUOZNzK2lyMpuJ4kgl4l9do3cwdTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUGslmgQBfZDFqtiC68zpAZzuR7iQwHgYDVR0eAQH/BBQwEqAQMA6C\nDC5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiBqBrTRbDI1LH4oQqQ7u0Eu\nmq3zpuIZialoCpUq3R2xOgIhANTk4AZQvWgLAXY/ZTBOmlYnmv1rR2Mh3QMAeUdY\nQ1pl\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUIa1jBdPzJt7HVs/gPFDHMtm/0sUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHqeht3qlBJXDl3tt19WPvNDf0t7LGMecnBkGdWpTvac\nTgFPgJ0IAuZAUFD0qldIZc3MoR5E8ns97+nRLFipQlujgYAwfjAdBgNVHQ4EFgQU\nAgHL5AhugH6kG/iuhDhyXyBkskkwHwYDVR0jBBgwFoAUA9nxvXLePewHCFPEyt1N\nM9g/mlowCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2Zvby5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiAHtlEnguLYkNVj\nzg1RP3/R9Nvr4HlW4Z1m7kWtDhtVXgIhAPpU67Y5lnDK8aQr7ulhjy5fcJgebvPz\n0TkvfUTXeHS2\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGWIJZfhFVh8kyE/q5xZyAqlq6YRBGfTS79eTP/97dNjoAoGCCqGSM49\nAwEHoUQDQgAEep6G3eqUElcOXe23X1Y+80N/S3ssYx5ycGQZ1alO9pxOAU+AnQgC\n5kBQUPSqV0hlzcyhHkTyez3v6dEsWKlCWw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVugAwIBAgIUI+j3jAXhixNfn0538DG4TObQP6gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABImKQmOGhRJgO5ywsMqPgVZR2UP8d9lipyEF58fVgOSa\n57muSa748HPnDCRlXNVTWsUigTnJNWwamLE7HmKgprKjgYAwfjAdBgNVHQ4EFgQU\nGqxc0JtU727H1EnNoehIxoj+Wc0wHwYDVR0jBBgwFoAUGslmgQBfZDFqtiC68zpA\nZzuR7iQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2Zvby5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEA4JkrPLa0ctzU\n3LKHaAmfHKsqGxzx3VGqYycdeDrYRjMCIQDBqt+LDY87oVLT3NEH0MHqA6oQCdLI\n0XCrTQzm+voXpA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINhkqxXmQ8nqYjwrx5ADyPxeHIlWHlPiJ6PuXj+JiE+qoAoGCCqGSM49\nAwEHoUQDQgAEiYpCY4aFEmA7nLCwyo+BVlHZQ/x32WKnIQXnx9WA5Jrnua5Jrvjw\nc+cMJGVc1VNaxSKBOck1bBqYsTseYqCmsg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1327,14 +1378,15 @@ "id": "rfc5280::nc::invalid-ipv4-address", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a malformed IPv4\niPAddress (not in CIDR form).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqDCCAU2gAwIBAgIUQjk0MQBPxTpy+sUWwTjUngYXkXMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASDuMqukJlvwH9Yg1MYpFzqED2iM9VQBEuRLt3K\nYTkmIEwpmocmGQdciEPDk6iyubzlyHoYNcrSERdbZ33z/zy+o28wbTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUz5X07U8+psiDkNv7iKaBXrOXQU0wFgYDVR0eAQH/BAwwCqAIMAaH\nBH8AAAEwCgYIKoZIzj0EAwIDSQAwRgIhAOiNLrbQkvUa0KgkFUZbheBK/vEUVtYh\njcijsTCLH2qWAiEA9YqtPLMTZAXix6u+XhLtGwirOPfR41SegVTq0yEbXd0=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqDCCAU2gAwIBAgIUPu85BbZB+45gSAbA9jeY+CcCcpYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASw3K46fwn585olLVt/Yg1yYoNq5meR4ehMFtk1\nWrf1psaEViHYd/NjhItbAxBXtWOVmQUJBrssbsjzGjyIs5+so28wbTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUUEr7rfYtUIOC3pkuRRp9eJdfDnEwFgYDVR0eAQH/BAwwCqAIMAaH\nBH8AAAEwCgYIKoZIzj0EAwIDSQAwRgIhAOAweJ8iPRMBEdXHyneQTN7pErSYNIxb\ng3AGxOaZtY25AiEA/IiN/qb1lMUEfcv5i0GGXQhYXXZZOOo6Rwgm2zLtFys=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqTCCAU+gAwIBAgIUKvqevkp01u+MhMjQzRv0JF67dyMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABL7l/sTL6PTjcLCCvgt8tPAgS5uU0aiu+dJ6uZwhs0ge\nNU+Wzdd3EKKeq+n+HKrXm/ADryY+lKzkrwog/gMSG6CjdTBzMB0GA1UdDgQWBBR0\nL92tbIoaj/RCdkjsqgd/bLAhGzAfBgNVHSMEGDAWgBTPlfTtTz6myIOQ2/uIpoFe\ns5dBTTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEfwAAATAKBggqhkjOPQQDAgNIADBFAiBJT4550JaeQDZI0DxrQFtEbMjCAM4x\na9kAwnK2MoSRsQIhAPLHl/drkCFDBrXQnsyRnyQZMmDdwO5Qy6zyAL4ZqmfA\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIODhsO4VeCP6DQl1m2pWHvI7BOX7u/LxWUzKG7BjpnY0oAoGCCqGSM49\nAwEHoUQDQgAEvuX+xMvo9ONwsIK+C3y08CBLm5TRqK750nq5nCGzSB41T5bN13cQ\nop6r6f4cqteb8AOvJj6UrOSvCiD+AxIboA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqDCCAU+gAwIBAgIUZvaQkibfpi45oeQmfi+UuK6jcg0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCVBcYsNdH6J0m9o1W3H0mt/s5Mm9yYIDBh7iTUXzKY2\nsOGL7P63wiJxN40JrEwJv1NtO8cX7JX7JYrfiIc89OqjdTBzMB0GA1UdDgQWBBQl\nsCz4CPerlud9htbF/rw8KHJoZTAfBgNVHSMEGDAWgBRQSvut9i1Qg4LemS5FGn14\nl18OcTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEfwAAATAKBggqhkjOPQQDAgNHADBEAiB9rAnzcBhfY9R0Gw0eMF+orzQX5ipj\nPh/vIv8A0gXNHQIgU3j6gurtFYgjtD9komQIMk4Vya5EtWxIDESeV6wLhEk=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIH5eVcR2fgwx7lrbHQnC0XoUDq72f1QR6Nrkzq/O8WHhoAoGCCqGSM49\nAwEHoUQDQgAEJUFxiw10fonSb2jVbcfSa3+zkyb3JggMGHuJNRfMpjaw4Yvs/rfC\nInE3jQmsTAm/U207xxfslfslit+Ihzz06g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1351,14 +1403,15 @@ "id": "rfc5280::nc::invalid-ipv6-address", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a malformed IPv6\niPAddress (not in CIDR form).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUEbqPVjp3MigprqdLgOXiIrxiuwcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQVGWyNlRphnHlFLDd6qLRukE6IiH8gYfbhKGJp\n+U84CXWzrS5pjhyoVXAyfnC81PYzlBqKLnGNma0BVdl3aNTRo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUuSXgEy3xkya+b3wsOf3J7MBsC6EwIgYDVR0eAQH/BBgwFqAUMBKH\nEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSAAwRQIhAL6PF1scTVsIKvhR\n6wHo3RHW7zTYi3stoTF7clDu1w0HAiAe3quKqjmo9oe8+2V2afogi86eqhLwWpWy\nnqK5IHDQSg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVmgAwIBAgIUCLhnTYtjn3jPmaZB/jFSJaYoHzAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATANPX+V7ryxIj0eO6ygrrtmHZRW7YtZjpBng4J\naNfaMW3u4rQmca48AizdDtLDprfzOZ3p8/ZEqt6W+tIPJp4Bo3sweTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUKN5cIkX9G/0gV/yDO4ESPGEnhecwIgYDVR0eAQH/BBgwFqAUMBKH\nEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSAAwRQIgLpjuH5gi7rNMZg5+\nfmOhqhA4KRkRapR1L1iSfYK8p7YCIQCm+2pH/iBIsISjbgLhVvYb4GDMjo6AZ2cx\nD6i8d1PQ1g==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVygAwIBAgIULgi+4LuCl6pLf3rXnWj0X1Zhv8swCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABI5aXcp4Nm8SGc3CBhQ4Jg56L1ER+QvWXSpUWmiJrs9r\n2rXCtk9ituvZROjUAXCj0vLR2XJZx3AgSR30iYAdg9ijgYEwfzAdBgNVHQ4EFgQU\nxfR65M0iRaySLu/e458ak1rqq5gwHwYDVR0jBBgwFoAUuSXgEy3xkya+b3wsOf3J\n7MBsC6EwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDSAAwRQIgXl8/zKhbFiwr\ncB8KtfaS0l5PiIDsueXMgdQrcHfAWoACIQDPZyFxPH8WgFm7CyMyW7PV+qSjOgnX\nfZyBqhRNX7mSlA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGdupkxAcUBKAFJyT2buxokv/InOciGfs7uGATCruI4eoAoGCCqGSM49\nAwEHoUQDQgAEjlpdyng2bxIZzcIGFDgmDnovURH5C9ZdKlRaaImuz2vatcK2T2K2\n69lE6NQBcKPS8tHZclnHcCBJHfSJgB2D2A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVygAwIBAgIUCIpxTsA2tsyHc6dBs7zrJVvo8lUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGqYgMjnPTZ4uiO1eXrgsVUwjEuB1LE3vrqLyHfhT/vR\nXin0ftS9m5STn54IlQHW4IEZwBgRBfoXUusCeFUjIaqjgYEwfzAdBgNVHQ4EFgQU\nKo1VSbXs63tVQGToWZIo9O1n6X4wHwYDVR0jBBgwFoAUKN5cIkX9G/0gV/yDO4ES\nPGEnhecwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKHEAAAAAAAAAAAAAAAAAAAAAEwCgYIKoZIzj0EAwIDRwAwRAIgb2ChkfrOxemV\nbzyLucL4IV6fHgaQPOjEkvsHPwBwuMgCIDbCCpjx9EQHiDCGlqYhLZk/h72H14rp\nO6FZ6kGEkX6Z\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKGpQ2ydhF+huFWOdO0oEKHKXL80aDtDYbXmEtLsgaEboAoGCCqGSM49\nAwEHoUQDQgAEapiAyOc9Nni6I7V5euCxVTCMS4HUsTe+uovId+FP+9FeKfR+1L2b\nlJOfngiVAdbggRnAGBEF+hdS6wJ4VSMhqg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1375,14 +1428,15 @@ "id": "rfc5280::nc::invalid-email-address", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a `NameConstraints` extension with a malformed\nRFC822 name constraint (`invalid@invalid@example.com`, which is not\na valid email address).", "validation_kind": "CLIENT", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBvzCCAWagAwIBAgIUCRyBu/6CfCJCAgt3b7l2jo/EFSswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARHq9bAlo/gIVzDL6CctNvzDolTq3s9QbDRy8OK\nqSmhPGSZaieGDPaGj2PfP7bpummXKpQm/VY03tgz36nfN3mao4GHMIGEMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBR7hgBEBdGYbE9rzjEms8OrO/7IkjAtBgNVHR4BAf8EIzAhoB8w\nHYEbaW52YWxpZEBpbnZhbGlkQGV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQC\nIHMvz03ybiLx4pXcnqo2HMF/D1Mw83UNF2etINWroNSkAiBZtm5OHXgAtaHFFqit\nIokglmCk5oFtgsc3aA0m6R+OvA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBwDCCAWagAwIBAgIUGNtuU0rRQP2D299k3d6I+6dpZ8AwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATfX7vlytaNeunQ8SwhA7r3FNmsfI/oCg+aD72M\n+JmvkQvv5OOVlX4jCpyfI/PXWU+cSiyI0JSZ01f4B1NUM0/Ao4GHMIGEMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBQ1Tjbxb+y6A1y7iDLC490QcjwfLjAtBgNVHR4BAf8EIzAhoB8w\nHYEbaW52YWxpZEBpbnZhbGlkQGV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUC\nIEnatRhJlX4CpeyxJ0Bwq90AmCbou5D5qX8gMXisN9OlAiEAzP+jvI4cZNb0O6TE\nDDmjUxkYYRJNBfDRbqtJoE0iTOs=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBujCCAWCgAwIBAgIUWzj5iyorNnrm+xu8Vhc39DtjgFkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFSJJ4ZDSEvjkOtc65fXDLNrMmvTcTby8GltlkE95AdI\nrDRbrqh6XWlooGU2H6JE9teigXSAD9gHTNGqatyNXWOjgYUwgYIwHQYDVR0OBBYE\nFAICMM8xFj1qkGQAzEyIEMeP0y/CMB8GA1UdIwQYMBaAFHuGAEQF0ZhsT2vOMSaz\nw6s7/siSMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAjAeBgNVHREE\nFzAVgRNleGFtcGxlQGV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQDzPyH5\nn7SJnjAw86iyFsc9vgVlyI80EeuTVPPo6LfCcQIgBE9S4ERRcAhd/K58AwS/o68I\nN3hgKWTFJ9HrqVeC9OY=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOQ2fZSPzdFREwKAesv5w6ATtI+7F/80hyDGpz7tfa2zoAoGCCqGSM49\nAwEHoUQDQgAEVIknhkNIS+OQ61zrl9cMs2sya9NxNvLwaW2WQT3kB0isNFuuqHpd\naWigZTYfokT216KBdIAP2AdM0apq3I1dYw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuDCCAWCgAwIBAgIUdJ60ptFFpdtTN9aQ8QWpwxh3bkgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBU+bOiuvBo1bkF+FkrPEGoWg+ejS5tV87+LBLJxvfoT\nEpAlY1FkroS+dzmC26LI7fsu/D+LcaDWGqIFN0+Wsr6jgYUwgYIwHQYDVR0OBBYE\nFHkCkcMvZIssgPaiCb+5EzwGmAXiMB8GA1UdIwQYMBaAFDVONvFv7LoDXLuIMsLj\n3RByPB8uMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAjAeBgNVHREE\nFzAVgRNleGFtcGxlQGV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0YAMEMCIC2Zn6Vv\nLipjrOsnoFjsAPxCIaGfaOb0X7An04QDQVw5Ah9zOs6KfbNCGaMchbb6MTg0gBMM\nd7s245PiPrweGZWI\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPCpiDjlyX4H4csXqy24VnQKWAz8uoGgRXbZK0YDZOYMoAoGCCqGSM49\nAwEHoUQDQgAEFT5s6K68GjVuQX4WSs8QahaD56NLm1Xzv4sEsnG9+hMSkCVjUWSu\nhL53OYLbosjt+y78P4txoNYaogU3T5ayvg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1406,14 +1460,15 @@ "id": "rfc5280::nc::not-allowed-in-ee-noncritical", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE contains a non-critical NameConstraints extension, which is not\npermitted under the RFC 5280 profile:\n\n> The name constraints extension, which MUST be used only in a CA certificate", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUY/Tge8Di/ad/tlwfT7v97EojGRowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQwK6hZPnV2LzZc2rq2fPnZc/k9jjMUFk8uR9JC\nYRO6i3hX8X3i3bLuwhrJyi4uX0zev4P0F4emY2ANSz6nCLOIo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUmZBgHIndTs9G8h9GRHTsyEp9WnwwCgYIKoZIzj0EAwIDRwAwRAIg\neuDZISi+AbA4HiFh3jUZsbI9U1HVKy6X10bdwCcj/H0CIEpKavsKA+i26vT/uuB3\nv3oz7iOnMbcl2A0gXWwJcVRX\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUJcZtv20Ttyx/UWNs5QWgP8EoLgEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASM5oyU8dbL3Ez3F6zj3T0a4AsCokbqeVw8+H3d\ng5W1J02XCdmdcYWJcCdl8GrFMf3TT7AJTPWi1qakPuKNKoaUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQULZBIbhX2NZRAlSZc8jY9jPf8nvQwCgYIKoZIzj0EAwIDSAAwRQIg\nV/qgt3ut5li5cQJGGEx/QmMgAjk7X0sI44UW3fzFCqECIQDXoVgta0Lua11azYwE\nICLlk8y4q5od3Lsrk2uLnyxw8A==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBzTCCAXSgAwIBAgIUMmWGAsG/0PW5to7cwtPPzXEYf2owCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABJkgmt0msoBcUun1c4vh6cBmLoabYJhkscTBcVN0qvpJ\n4TuHAU9NXuuqbdJPEhHTq9O0I9jjunUn2Nj5SsgPzW6jgZkwgZYwHQYDVR0OBBYE\nFLtvV7Znk8i1ecMEdK3ZJAwb1ntqMB8GA1UdIwQYMBaAFJmQYByJ3U7PRvIfRkR0\n7MhKfVp8MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAaBgNVHR4EEzARoA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRwAwRAIgWKnYJMU2SwcxdMFf6/41P0o2/ZMYTPAX9OGICMGtidAC\nIEeHLIBlMSdQDR2QYp4yDzkDe81JayotCb/otafVoZ2e\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHYvLKsTaSEKpaI9oWxiGGNbCs25YpjnpSqVNEoFKYW2oAoGCCqGSM49\nAwEHoUQDQgAEmSCa3SaygFxS6fVzi+HpwGYuhptgmGSxxMFxU3Sq+knhO4cBT01e\n66pt0k8SEdOr07Qj2OO6dSfY2PlKyA/Nbg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBzTCCAXSgAwIBAgIUMVAky7C31B4A3pzJAsl98SRRwXkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABM2WPjRh2jWtL0ZkqKRwQorRDMSHCGdNz1LtOscwJhXS\nRuKwVH03vQKEVfNt3bZ76+nME6yKx8Z16+/7w9FhZIejgZkwgZYwHQYDVR0OBBYE\nFBERr0Nj3CUGahiasrL9r7lhiMipMB8GA1UdIwQYMBaAFC2QSG4V9jWUQJUmXPI2\nPYz3/J70MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAaBgNVHR4EEzARoA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRwAwRAIgYiGU+WD7PpgoqTTsTK1HzCgNx140Dpq4O0DFlZCXNmsC\nIDcPLVFGjvIUc8LzVryHKVe3mZPr87iPxZRSh6j/nthm\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGJK0jy5M6AxbY4UzT8DWAZC40laJFk0LFzDJGdwz7igoAoGCCqGSM49\nAwEHoUQDQgAEzZY+NGHaNa0vRmSopHBCitEMxIcIZ03PUu06xzAmFdJG4rBUfTe9\nAoRV823dtnvr6cwTrIrHxnXr7/vD0WFkhw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1430,14 +1485,15 @@ "id": "rfc5280::nc::not-allowed-in-ee-critical", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE contains a critical NameConstraints extension, which is not\npermitted under the RFC 5280 profile:\n\n> The name constraints extension, which MUST be used only in a CA certificate", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUPw1QfIbpdPRwnWU2ZkWCXQQpWvIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT7UsbvAW12URz3JbxTE5lFzungfEP/w4PgRHZ4\n3MqDfiZDumb1rVFxGw7GNW2iqhocuwI4hVxrzOzeQyzQiCzuo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUFitoGohyygmQFBamTTh9jAHDwD0wCgYIKoZIzj0EAwIDSQAwRgIh\nAM8LwYl2LoBfyEoD8YfykZNCq5HxcIVWgwW5Uwygus5JAiEAnlWZrbKFwMeNvYxs\nxSwlyaufBFt5+hdcgK2lGuxpUaM=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUAY2aL4e7yyFdOtDcZUwn4OT8ihcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASvcxEZqtaWLaGPOuifUPmi8A37fK6epkv28KjG\nUCCTeU/6FafOuae/fOK7xeJ4mCmbxXOE7ZZO7Mb7LiEq2eOso1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQULmDcMPqyiEnVwEYBdSo23vf9SnowCgYIKoZIzj0EAwIDSAAwRQIg\nHGIkmoXy2RNldTCk+rKldaCgE02r55IEVa85Q8NTkgMCIQDHINgRovJEHbX+7qrX\nIhVr+3Tr6gHc2v/bv/uu9OZu8g==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB0TCCAXegAwIBAgIUUzcfQY4xdnmIir5hcUxOcsswLuYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIQR33s5Hhk/vEcUTv3V0DyRlEDHhYbAmfLSecV/uuiH\ncuUaz2Y7mh3YYS/hTji0cjvBNZ36URc/pRI03VxqUIijgZwwgZkwHQYDVR0OBBYE\nFIiUDfL9JDWjfEcM5klhOVdjvRXRMB8GA1UdIwQYMBaAFBYraBqIcsoJkBQWpk04\nfYwBw8A9MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAdBgNVHR4BAf8EEzARoA8wDYILZXhhbXBsZS5jb20w\nCgYIKoZIzj0EAwIDSAAwRQIgB0b/fHrwLilOx0b1RVvoNlqako/8NPSdfhmSar5F\nX3kCIQDLfaElQQST6FQyxV9DRLzGEAPH5g6HwKZuoD9XzMnqpw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPC+YDoMKmLpQaCZpjVqUNDCNJGMefshOdTgLVQSPkdmoAoGCCqGSM49\nAwEHoUQDQgAEhBHfezkeGT+8RxRO/dXQPJGUQMeFhsCZ8tJ5xX+66Idy5RrPZjua\nHdhhL+FOOLRyO8E1nfpRFz+lEjTdXGpQiA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB0TCCAXegAwIBAgIUXiHHhhpZI5HRns55OJowhLOUfnUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABPg5ItPMA+zWp0K0Iga+IHRAuRoLdjGpEjykZULx6Xtt\nqyE17Wl5YZ3NnQdSyZS6d1TBjbCvxrIDAjOM3iZFQhejgZwwgZkwHQYDVR0OBBYE\nFFELrAaJs47u6mQwiHn8KpUr+LckMB8GA1UdIwQYMBaAFC5g3DD6sohJ1cBGAXUq\nNt73/Up6MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAdBgNVHR4BAf8EEzARoA8wDYILZXhhbXBsZS5jb20w\nCgYIKoZIzj0EAwIDSAAwRQIhAL69Ahuv8/TYPPOPI8E8wUL4OFAwIMmpuE6j/yBF\nItgdAiAfqpGlsTLCIWNJmMQ9tgZjHdjPYAmZ5spjxO6rS7KdLA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJwituygzuq+QRbHy5t8GM64rSnzi4tJRp4LOLOd+/TNoAoGCCqGSM49\nAwEHoUQDQgAE+Dki08wD7NanQrQiBr4gdEC5Ggt2MakSPKRlQvHpe22rITXtaXlh\nnc2dB1LJlLp3VMGNsK/GsgMCM4zeJkVCFw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1454,17 +1510,18 @@ "id": "rfc5280::nc::intermediate-with-san-rejected-by-intermediate-nc", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA1 -> ICA2 -> EE\n | | |\n | | |\n NC SAN1 SAN2\n```\n\nICA1 contains a NameConstraints extension that forbids\nSAN1 (forbidden.example.com) and permits SAN2 (permitted.example.com),\nwhich should be rejected under RFC 5280:\n\n> The name constraints extension, which MUST be used only in a CA\n> certificate, indicates a name space within which all subject names in\n> subsequent certificates in a certification path MUST be located.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNWXoWN2yXex163tJcwI7byBB6PwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARsS6RAUooxQAa7FeGq8Vu/ld3Llr6bnfwxSmpo\n24qTwpU3WmiDm6GR7qlhMCNxxedQTauHY1967tLtM96Kdx9Lo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUwlUYQG5WhDUd8c589GZk8TYjGUEwCgYIKoZIzj0EAwIDSAAwRQIh\nAI9l176WBvh5B68gMKapj9zT8/eIEvWg4WALGDRT7FJ/AiAnHBvjJFsBN+yHGM0D\n7WUDGuVFTx/FDLoKsvhfGLQbeA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIULiaAvi9v6GAhqRQR2PM1BgMD1bQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQeEwUyoeShGk/jvMde73OwiSyug+Muvp5xXiNU\nqT3X0SuHLH+btuPKEypk53nmDNemoq+Ujjt3OCncndhF1Wsao1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUQN4qGlVtFIwrfIp4ouhl3+//uAowCgYIKoZIzj0EAwIDSAAwRQIh\nAIlL7LELnFurpJvmu46iWYAjUt9432jFkIm6A67JcxvMAiAFz1Gfwvrflo6Ag8EQ\nOEWdCxJKsZcj2gIKw8SuNS9Dow==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICRjCCAeygAwIBAgIUHG6kqz0Kyyi5XpFK3pslxLGfaKMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzMDQ4NDkxMjY0MDg1ODUwNjYwNDkx\nNzgwNjA3MTQ1MTcxNTU2OTQ1NjA1MzY4MjgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABHseCRbPoRz9T22YgVG0d0BAnYuWlnWOPkyvvxVNvW00eAzPQNf2rKMPQFIe\nT6I42mCsusjO7iMIYBOg5EwszpSjgb0wgbowDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUwlUY\nQG5WhDUd8c589GZk8TYjGUEwHQYDVR0OBBYEFD00uwf0TMedMkInlmPspI5GByIW\nMEIGA1UdHgEB/wQ4MDagGTAXghVwZXJtaXR0ZWQuZXhhbXBsZS5jb22hGTAXghVm\nb3JiaWRkZW4uZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgUYbZX8RS2j4I\n7ui2tLJEz65AGkUxSjooea+46279kBECIQDk1lGRHNQdZGQikSPidW0ErabxqCyV\ntkLpm66/Sp6Eaw==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICWzCCAgKgAwIBAgIUXuhhfm/yskE0w3agIKXzKohKl80wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzA0ODQ5MTI2NDA4NTg1MDY2MDQ5MTc4MDYwNzE0NTE3MTU1\nNjk0NTYwNTM2ODI4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDE2MjMxOTE2ODIzOTIyMjM3ODY1MjEzNDU2NjQ5NjIzMDMwODMz\nNzc0NTM1Njk2MzEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEYBuijYUGM1q0sjd\nKDicldqh8wCRt1eRS7REt14OIeA61Drp6CiZJYbj0Ks3ic9j1Y+tQO76VG5e2RHA\noi+BJ6OBgzCBgDAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAgBgNVHREE\nGTAXghVmb3JiaWRkZW4uZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUPTS7B/RMx50y\nQieWY+ykjkYHIhYwHQYDVR0OBBYEFJvmXMH2Um3W1WiaydIiuORkeL6DMAoGCCqG\nSM49BAMCA0cAMEQCICL7HORoGdrOGrr2CXGKWcx+IQPM2niJs9sE0WFhqAPzAiAd\nXVMQOo14JSy4dcpIgQTtxPXyRJu3P1gvwhAV3SpmPA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICRTCCAeygAwIBAgIUddyZYmqvkZIkJy95ETYSyzfkHg0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAyNjM0NzIyMTg4NjQ3NDQ1MzU5NzI1\nMTkyNzA1ODc3MTY1MjM5OTI0ODI1Njc2MDQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABMpa9M9bXZ3WmqPBlN5P5QhOOmJUQBf+a25OVdYZ6I70U3Vu+BLlqXm65qQY\nL0MBinZdZE0bAXYU18kMP87F20qjgb0wgbowDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUQN4q\nGlVtFIwrfIp4ouhl3+//uAowHQYDVR0OBBYEFFjITWgillKm1eDffxh8W1Ahfmoi\nMEIGA1UdHgEB/wQ4MDagGTAXghVwZXJtaXR0ZWQuZXhhbXBsZS5jb22hGTAXghVm\nb3JiaWRkZW4uZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgbfJwtSWsZkdw\nZpz3zpBkIrU6TgJjRkLFajnio5gv/0kCIDg8WFhjg9uQHeP8deJnKUKedHmZFAFW\nfDWS+IjV4WRa\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICXTCCAgKgAwIBAgIUECmOScXzS05cJ36CVcO7WWToPHAwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjYzNDcyMjE4ODY0NzQ0NTM1OTcyNTE5MjcwNTg3NzE2NTIz\nOTkyNDgyNTY3NjA0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDY3Mjg3MTQ0NTc5OTI5NTI1MTAyNzQ1OTgxMTE3MjMzNzI0NTY0\nMDcxNDM2MjM4MTEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEo8tc2RFSACuA+DTb\nWFc1I+E01GgpLFIjTUxDhu/QC0fboMC3tpoYnwhLBMloZqHiO4EM8v+NUfD77trz\nG9f4FqOBgzCBgDAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAgBgNVHREE\nGTAXghVmb3JiaWRkZW4uZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUWMhNaCKWUqbV\n4N9/GHxbUCF+aiIwHQYDVR0OBBYEFPGHqdLglt8aphEMUK0s/J5N0mcZMAoGCCqG\nSM49BAMCA0kAMEYCIQDkLJkdoZL3M5Rkq/diiDzB8hgrbgAzey2IQfR0vA9ySwIh\nAPmhn8TelJKjsXa5rU1Q3v5XkKniOJv+0Au+cTKucseK\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIUQGpI7Ldnx+7ujCzrQWPvS0waGD8wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTYyMzE5MTY4MjM5MjIyMzc4NjUyMTM0NTY2NDk2MjMwMzA4\nMzM3NzQ1MzU2OTYzMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n8io2aPnmrvhkHi3mc9GBO8JWFaXXLamy0jloQBuST+bXp7pa3m1hEP441d45/4G4\no83XFzTthKqhr2Bd8rqCaqOBhzCBhDAdBgNVHQ4EFgQUJYtHyt0Q7eIBxYZCZjoV\nK6ExQR4wHwYDVR0jBBgwFoAUm+ZcwfZSbdbVaJrJ0iK45GR4voMwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCAGA1UdEQQZMBeCFXBlcm1pdHRlZC5l\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiBkMw0G/fYLV9/pUchnIimCjfy7\nSgBtB1vDoqMOmPpcWwIgQzX/lpnLXjQUBxoj2MdxK+gopEhlz/a871Hf8jaUT1U=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIC7JenazXQr+zeufT/4ErVhhpflyvPH2JKRxLlTwbQw1oAoGCCqGSM49\nAwEHoUQDQgAE8io2aPnmrvhkHi3mc9GBO8JWFaXXLamy0jloQBuST+bXp7pa3m1h\nEP441d45/4G4o83XFzTthKqhr2Bd8rqCag==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIUIzAK6Rh8UBgYHsyhbQlsPS77HGgwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjcyODcxNDQ1Nzk5Mjk1MjUxMDI3NDU5ODExMTcyMzM3MjQ1\nNjQwNzE0MzYyMzgxMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nh6IaThWS5KVAn0o2fRQLTQwAfnoyzdnRZV+Er0nbj4CPgdplme/qEEjtK6ZmSsTi\nYVdegJmiFUlf2/DtX80BUqOBhzCBhDAdBgNVHQ4EFgQUPKUb0DVx9y6Z8e1LGk/j\ngaSaeKswHwYDVR0jBBgwFoAU8Yep0uCW3xqmEQxQrSz8nk3SZxkwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCAGA1UdEQQZMBeCFXBlcm1pdHRlZC5l\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiAHLAnZ37i87yLL4UtPzPQz+Hsm\nKDGBBLfDm/0zNzqjaAIgMlca/MtPNFEjFnd88VpX4/5Rr0m5I6MbZUpPMtOZRGs=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIC9nyCkRFtZwFy0zhGbVlqeXV2rdSSOL1+d40az73+okoAoGCCqGSM49\nAwEHoUQDQgAEh6IaThWS5KVAn0o2fRQLTQwAfnoyzdnRZV+Er0nbj4CPgdplme/q\nEEjtK6ZmSsTiYVdegJmiFUlf2/DtX80BUg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1481,17 +1538,18 @@ "id": "rfc5280::nc::intermediate-with-san-rejected-by-root-nc", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA1 -> ICA2 -> EE\n | | |\n | | |\n NC SAN1 SAN2\n```\n\nThe root contains a NameConstraints extension that forbids\nSAN1 (forbidden.example.com) and permits SAN2 (permitted.example.com),\nwhich should be rejected under RFC 5280:\n\n> The name constraints extension, which MUST be used only in a CA\n> certificate, indicates a name space within which all subject names in\n> subsequent certificates in a certification path MUST be located.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIB1DCCAXugAwIBAgIUeci9Dl7SXbn+2DXj5HKR0KWNuK0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS6mrfhXeFVobOLh8EqaqI2vTJfsXbzH0bIcTbp\n9LpIs07fObtIqp6b1wP3eyh6A8ZklYAb/DFliQjMYfbzVlC7o4GcMIGZMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBS0aKeGai6K8pNMLxgGxdXFiicWejBCBgNVHR4BAf8EODA2oBkw\nF4IVcGVybWl0dGVkLmV4YW1wbGUuY29toRkwF4IVZm9yYmlkZGVuLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0cAMEQCICCnBIZHqwa4xgzqgCGAwOJjW5tlA6GkFmA+\nX41XybA8AiBcMK+tzoZ0oRdgXSz8kXLWpXA8NWQeKICZCWXv5pp+9g==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB1TCCAXugAwIBAgIUKjYy5iXrqDGlcCKQ+FHtC0IK0yowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS2/2R6q6ruhB55R/JatzmyLffsFm9JxkBwFNqq\nKGkaHeU0la/WvvCZ8nVdCoFDVrEFrZmjRrZtEP3SuqUj+1HDo4GcMIGZMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMB0GA1UdDgQWBBTgdd0tAAqpvQrV+tvDWrdQ5BT4qTBCBgNVHR4BAf8EODA2oBkw\nF4IVcGVybWl0dGVkLmV4YW1wbGUuY29toRkwF4IVZm9yYmlkZGVuLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0gAMEUCIA0yywiCxm5M1TJSbSCZyo04lURfvhA8h5Kn\n1zJ/y8AlAiEA2GArQi3p2wm52bzAvbqzErCrJnSzdIpwWPU6R3/ys0c=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUB0qK3VskwlRlPHv9G1By9bkEr3kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2OTUyNjQ1MDE0MjE0MjQ2NjE1ODQ1\nMjA0Mzg4MzI0OTEyMzQ5MTgyMzczMjEzODkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABPWAbjqQlohyeSSwOmbRUr6A4uQddVmUpYZJXDh5wD0mX9uM2azLM+EjhYQF\nIkD064t6X/R+0eqY6DfZnAqVKJCjeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLRop4Zq\nLoryk0wvGAbF1cWKJxZ6MB0GA1UdDgQWBBT5G69n62aCYG/VNv704phJe5sP9DAK\nBggqhkjOPQQDAgNJADBGAiEAmtNdpcHKCF7LYZnTCsfDgLMr7nmR3nbcrerIOTSm\nwvYCIQDyuaH3kSh7/Oe4Dh/CJhzxZtVpcYhKfQGp/uJiRvAagA==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICXDCCAgGgAwIBAgIUCChUIwogcLd+KcpJzyIwe1uv/7gwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjk1MjY0NTAxNDIxNDI0NjYxNTg0NTIwNDM4ODMyNDkxMjM0\nOTE4MjM3MzIxMzg5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGkx\nODA2BgNVBAsMLzQxNjI1Mjg3MzU5NDcwNDI3MDAwODM3Nzc0NzEzMDI2MTUxMjE5\nNTMzNzU0MjMzMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1wYXRo\nbGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARqae1xYuI8hAEjeu3U\n00SP9TqU48ut3yPy0AJ7RQ7pDrS+oWBdx5++TYyfosHVNRKy35WBO9Inj6qZh8QK\nzQL3o4GDMIGAMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMCAGA1UdEQQZ\nMBeCFWZvcmJpZGRlbi5leGFtcGxlLmNvbTAfBgNVHSMEGDAWgBT5G69n62aCYG/V\nNv704phJe5sP9DAdBgNVHQ4EFgQUY8ZfpV24Y457koXtd2me2fpWvTYwCgYIKoZI\nzj0EAwIDSQAwRgIhALN1tJSkfNQooR0DSm0S2Nj7W3ZIgkV4jTVZyIltiNDFAiEA\nja9MqijelaLM4esYhBRtmEERxmT2FPdqhqBRNBe/7Kg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUH5ebkQr+N2ccq0Yissz1Q51QhQwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAyNDA5ODYyODY1NDQ5Njc5MzA0Nzk2\nMDU0Mzc0NDIxMDYwMDU4Nzk0MjU1MjA0MjYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABNrOIuwcetcatY+bguoBki6DZTbin2DBKpSIU3I8Cwo+9IiGgFbDNBXVEtl5\nIOUzrUGjIY71l8ROPQ3kR/2TaS6jeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFOB13S0A\nCqm9CtX628Nat1DkFPipMB0GA1UdDgQWBBRhRVexBzWau4gj6Nnmh0MPLTYF9TAK\nBggqhkjOPQQDAgNIADBFAiA/piKPT3bZBJLMfMnRm4O8MFgNHfjIFli7AJrnPUNC\n6AIhAP1euqZa9HCC1qus4Kliidj4ywcH7ZOKd+gCH6G+f62x\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICXDCCAgKgAwIBAgIUCw0rwo9XCqc3sm2a8KpfkoG08wIwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjQwOTg2Mjg2NTQ0OTY3OTMwNDc5NjA1NDM3NDQyMTA2MDA1\nODc5NDI1NTIwNDI2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDE4MDM1OTY3ODE4MDM5MjAyMjc4MTcyNTM2NTExODMxMTk4MDc3\nMTM2NzIyNDU4ODEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEtDxSmAhAkClec/+\njFyfQjEREzMbJELvOHE0keJB2wjS1wk5UiPmxbWOMTc3Mc9+mHbJHubI3fzM0V4P\nubWBpqOBgzCBgDAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAgBgNVHREE\nGTAXghVmb3JiaWRkZW4uZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUYUVXsQc1mruI\nI+jZ5odDDy02BfUwHQYDVR0OBBYEFFFQaiHsiU+joK405TIem9V2BPiwMAoGCCqG\nSM49BAMCA0gAMEUCIQCDc3LrweiHa6lwb4XNTfJ8dM+VjwnFnio0sqoINZ6IbAIg\nTS8eRWgnl36JCFDH16YRbti6rFWA0aUtqMTVt5n3y2U=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICCjCCAbGgAwIBAgIUJA8e+6ut+TgT9z47zzdzmPdECDkwCgYIKoZIzj0EAwIw\naTE4MDYGA1UECwwvNDE2MjUyODczNTk0NzA0MjcwMDA4Mzc3NzQ3MTMwMjYxNTEy\nMTk1MzM3NTQyMzMxLTArBgNVBAMMJHg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tTm9uZTAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQQ\njrP37pUPfqSiHUprbNOKd39cK8ULcgHeNzS/tEYNMi+JRYWrTSfiHGXiP1Jy56Vw\neHJm4q5QQiDmzhqJRmgJo4GHMIGEMB0GA1UdDgQWBBRYPq7J01Ju0XHczMFzIgQn\naCphODAfBgNVHSMEGDAWgBRjxl+lXbhjjnuShe13aZ7Z+la9NjALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwIAYDVR0RBBkwF4IVcGVybWl0dGVkLmV4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIFUQUeG47dA89TNUvaWLiKpPUXDY\nZHbmWt3gUFWltN1YAiAPpvAKrEFm/kGKjLa0++3WLgMzeWRgCfEOkWOxt5C+8w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIL6rOsTVHWcXv60rs4uGpSGVSW0uc7yh9ALlBv8gr7swoAoGCCqGSM49\nAwEHoUQDQgAEEI6z9+6VD36koh1Ka2zTind/XCvFC3IB3jc0v7RGDTIviUWFq00n\n4hxl4j9ScuelcHhyZuKuUEIg5s4aiUZoCQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICDTCCAbKgAwIBAgIUZ//5qscG11/5KWLRD05Gicy3s88wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTgwMzU5Njc4MTgwMzkyMDIyNzgxNzI1MzY1MTE4MzExOTgw\nNzcxMzY3MjI0NTg4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\ni/4QDMLo01obv5ScMnfb1Un/q2K+4O+tptiLlB0JTdmsb1VEm05OKkY2GkCJCUpr\n2n1MJ5yBbPz8XGOlNNAPkaOBhzCBhDAdBgNVHQ4EFgQUmuqW7yavFyzgluvrB729\nkytzalYwHwYDVR0jBBgwFoAUUVBqIeyJT6OgrjTlMh6b1XYE+LAwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCAGA1UdEQQZMBeCFXBlcm1pdHRlZC5l\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEA2kVNcfn1wUhttFPg06L6sdqp\n+ogmE9hPsF5m11cWx20CIQDjJpKxCcgKO1PImOPhR+UOzqJSQ0dVc8ZMjQp/UZck\nfg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBikn/CkhPKJ3BfyoZ/FdFBhA+19ZhVUikPKTkyzCAcXoAoGCCqGSM49\nAwEHoUQDQgAEi/4QDMLo01obv5ScMnfb1Un/q2K+4O+tptiLlB0JTdmsb1VEm05O\nKkY2GkCJCUpr2n1MJ5yBbPz8XGOlNNAPkQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1508,17 +1566,18 @@ "id": "rfc5280::nc::restrictive-permits-in-intermediates-narrows", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA1 -> ICA2 -> EE\n | | |\n permits: permits: SAN: foo.example.com\n foo.example.com bar.example.com\n bar.example.com\n```\n\nICA1 contains a NameConstraints extension permitting `foo.example.com`\nand `bar.example.com`, while ICA2 contains a NameConstraints extension\npermitting only `bar.example.com`. The EE then contains a SAN for\n`foo.example.com`, which should be rejected under RFC 5280:\n\n> a name space within which all subject names in\n> subsequent certificates in a certification path MUST be located.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUIZTqCnNTeQ2bv80pTAF/OeKzpzwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT0lRksotz7rPbT48aTmGcLZYI9lxzncw53cDQ6\nhALcVAOs//x/rq3aRijJYD2ZawsFJW1t6NX37cKqy31GapCxo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUMbtWFSyvB2DTl70KMqDHe+AupuwwCgYIKoZIzj0EAwIDRwAwRAIg\nLbfUkm7X8VbDmVb3X79R/ogGLtjFfdFIaaC4vXpD+XcCIEr5lUKMPcUvaLTBzYJt\nOgwMWQJME0EhP9AMzgrH4523\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUbDdSGQYpsIueMVnpXArtHMBEKyYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS3kkdW6Ger7QY8+4rmf2NzA7BaOrA3LcS23lg3\nysUsmU3vNF9KY+/EdiAxYETjfQ/x84Zx+kQttBaEV7RJUH6ro1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUT0wj6494rApGYmncUNRcuRmFSrQwCgYIKoZIzj0EAwIDSAAwRQIg\nefRljQgQc3Bq9B+tTJMkeOq41INUTf0G42c52tggUX0CIQDXCti2XUfJTmqQb+ja\ngdNaS6LwAF1eQmevLJuvElNVng==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICOTCCAd6gAwIBAgIUZRYWBzasYMaEfa76Rg8k/+z6G/UwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAxOTE3MTc1OTM1NTc1OTU1NzMwMzU5\nOTQ4OTk3MTMzNTU2ODU1NTk1OTM1NzYyNTIxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFFXor/Xj0ik7DtkVPZy/VN+AUNsiX+VJMXd0SMCFIY1zrB4dEHRr2yx21Gs\niLEYRfvIrRNmqskUoz31K5Sac5+jga8wgawwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUMbtW\nFSyvB2DTl70KMqDHe+AupuwwHQYDVR0OBBYEFC9lYvBGd4wenqJ3AeFDHJFnBFZB\nMDQGA1UdHgEB/wQqMCigJjARgg9mb28uZXhhbXBsZS5jb20wEYIPYmFyLmV4YW1w\nbGUuY29tMAoGCCqGSM49BAMCA0kAMEYCIQCd6DBtCMf+Rx2kl56NVVBjN/LrRkEg\nd6peCfqLfvXvqgIhAIexE/sHCsMgEx0NBrD94vAIw81AS48GZJQMYdGl40zY\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICdTCCAhugAwIBAgIUQAUQP5Pj4gJZ6/Np5+Clo0ijlaYwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTkxNzE3NTkzNTU3NTk1NTczMDM1OTk0ODk5NzEzMzU1Njg1\nNTU5NTkzNTc2MjUyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDU3NzEwMDYwMzE3MjUxNTg4MjUwMDIxMjMyNjYzNDk4OTY4NTcy\nNzM3Njg0MTcxNzEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEANy9SY0244BC/Pch\nFtoRM/0bSCCHenjJ0ZcMfGIzkqkFswdt6U21xSaURCxuSHoiQ1/0HZO6XEOL8XIH\ngMZmxKOBnDCBmTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBQvZWLwRneMHp6idwHhQxyRZwRW\nQTAdBgNVHQ4EFgQUCO0DhtEpAHbqUO2YBDcGIjRSlk8wIQYDVR0eAQH/BBcwFaAT\nMBGCD2Jhci5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiA7GRVrP828YXyg\nDV1yRtMtYXgUreiTAh31hD5FJbGubwIhAM6ro5hpP/N+2rvTUnH3ny+EBnIFU8sE\npb2bAj+VeZ+n\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICODCCAd6gAwIBAgIUOx8gN2PYy4X1RbnBwXJGAtjRTH0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2MTc4MDQ2OTU5NTc1OTEyNjMxNjUz\nMjMxNjE5MTA1MDY0NDE1NzI1MTM3NTM4OTQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABJUw4ifiBsmt8mkCgB2OKOXos9rARXYN4uV9E54YNdgbOQ3iuum9mdKRoHw1\n/M4RfCijPgctJ9CtxdL092Yoj4ejga8wgawwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUT0wj\n6494rApGYmncUNRcuRmFSrQwHQYDVR0OBBYEFKNAfOzZBZxp9tXslf9+1KRH9S2I\nMDQGA1UdHgEB/wQqMCigJjARgg9mb28uZXhhbXBsZS5jb20wEYIPYmFyLmV4YW1w\nbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQC8ldku16k2qHklva1mZm482xpoNd6A\nF1cLkfbB76O5awIgc66KrUeYlKShRsOhH9K3emy1nZGJh8rNFdHXC3Jat5E=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICdjCCAhugAwIBAgIUTSOxYbnjNM+oegwlJ7jCSnuLYAIwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjE3ODA0Njk1OTU3NTkxMjYzMTY1MzIzMTYxOTEwNTA2NDQx\nNTcyNTEzNzUzODk0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDMzNzUyNDU4NTAyMTE2MDIxMzg3MzIwNDc0ODg3ODE1NjA1Nzcy\nOTMxNjI0NDYwNTEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZ7wBDZ0lEK8fN0o7\nC0Iv13ZgGcIO5L0/A0sr2tQANAjqJbmJA3hIaM2ZVSSyivTkCy6QrW2ge0j4ldDg\nItV2YaOBnDCBmTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBSjQHzs2QWcafbV7JX/ftSkR/Ut\niDAdBgNVHQ4EFgQUgdKqQ2bNwfDi5IZBIXXV6WG/WbUwIQYDVR0eAQH/BBcwFaAT\nMBGCD2Jhci5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEArR8ESqcnltLW\nOsY//mZEXl2hU6+fe60aMylhS4L/khcCIQCe4TCrkV9bHCtaxddLSFfCeSI6sPLH\nSXC4A0r9wSmvRw==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBTCCAaugAwIBAgIUIaG60v6m5gbzBtAOayAIPBT0+QswCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTc3MTAwNjAzMTcyNTE1ODgyNTAwMjEyMzI2NjM0OTg5Njg1\nNzI3Mzc2ODQxNzE3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nFSlWejGfzZRviAUJPqVTc+uKIY8JwgSPXn9GMbe8cDoUMpxTKjhp+tlva1MWYhfN\nTvnqxjTvadgKqzy2uuObCKOBgDB+MB0GA1UdDgQWBBSJ/fQmgaTXB+OXlLenCmGt\nBRTQBTAfBgNVHSMEGDAWgBQI7QOG0SkAdupQ7ZgENwYiNFKWTzALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPZm9vLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0gAMEUCIQCbocqs+DmgVVaaaeR3Cv+87PZ7+iwXrpYI\n7Lzx6BZDegIgKCi7QQBuZSSvHwrMj/YRpscr73HV35SvghDPiJCCF3w=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILWADcSulk0hOnqb2+9jzg+oKXXxB5x8Da4xf8R0DiTNoAoGCCqGSM49\nAwEHoUQDQgAEFSlWejGfzZRviAUJPqVTc+uKIY8JwgSPXn9GMbe8cDoUMpxTKjhp\n+tlva1MWYhfNTvnqxjTvadgKqzy2uuObCA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBDCCAaugAwIBAgIUebTbczkKFADNvAwuBHoRM5us2VUwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzM3NTI0NTg1MDIxMTYwMjEzODczMjA0NzQ4ODc4MTU2MDU3\nNzI5MzE2MjQ0NjA1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n9HmGchC0xv0Lvr98ms2iTRJdy3k8HDlfumz8nzRN3YaMNEAp3AaYfT3wJrW+jluK\n60v5NmzsJDXmRnowMTWAdqOBgDB+MB0GA1UdDgQWBBRCzOX/dsdn+RFKwO8isF4N\nkp2ZUDAfBgNVHSMEGDAWgBSB0qpDZs3B8OLkhkEhddXpYb9ZtTALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPZm9vLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0cAMEQCICNamrOqCehxVVPYRMHCZZCKWR+jdJqzxa+U\nHdSayFvKAiB53ifvtSzj1mpRT6nqRJIOAXAMHI43Hgdj0TuE7DqQmQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIECnNBirO9ZuF63r2hD5NnekyLYcfAAvsD4RmsjfUF52oAoGCCqGSM49\nAwEHoUQDQgAE9HmGchC0xv0Lvr98ms2iTRJdy3k8HDlfumz8nzRN3YaMNEAp3AaY\nfT3wJrW+jluK60v5NmzsJDXmRnowMTWAdg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1535,17 +1594,18 @@ "id": "rfc5280::nc::restrictive-permits-in-intermediates-widens", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA1 -> ICA2 -> EE\n | | |\n permits: permits: SAN: foo.example.com\n bar.example.com foo.example.com\n bar.example.com\n```\n\nICA1 contains a NameConstraints extension permitting only `bar.example.com`,\nwhile ICA2 contains a NameConstraints extension permitting `foo.example.com`\nand `bar.example.com`. The EE then contains a SAN for `foo.example.com`,\nwhich should be rejected under RFC 5280:\n\n> a name space within which all subject names in\n> subsequent certificates in a certification path MUST be located.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIURQMMvUnMlYS23oEqcslZipzXnDAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASonSuAeMGRyt5OUMESIAv11RPCTQo564kNXelP\ndhzJueQE5Dg4CmBpi40wR0mBzGTpJJr3aB0V7fvWve/8HiZ9o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUaETL7POxtpNfuIjMeQREmrWWXw8wCgYIKoZIzj0EAwIDRwAwRAIg\nFpxQeP6QiK4iAG7+f0doJ3CmEQXObij7oJkagYYNETcCIBYkjsdaWl5UEdZVxRUJ\nNHThD5GD/rTt8Rvvu5bQVDy/\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUeEWwmDLxKuSiG2keSmL0rJMOKIMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARISYPL+5wfkgjpEz+/iFnsSA3ZO0shurnt61XN\nBjYgNsdzYY92tewqh2b8wA3xhqq+zyYw0TCH4t3hYlobh3Vpo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUMEyUjWxW6fwR1/1Ww8DFAYH5xrowCgYIKoZIzj0EAwIDRwAwRAIg\nDilZON90dKKf9GC2PsrG4IjAXGanvdrZXWmCpkF9bL4CIFM+rzUAJcA5f9qn9kwN\nHuwdQSzCj4zqm5SGjNmiP7X2\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICJjCCAcugAwIBAgIUJkEq1oOY7kFBaCFkRRMGPgXgPFIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzOTM5ODgzNzUxODEzMzQ5NTMwNjcw\nMjQ1MTE2MTUyMDczMzY5Njk0MDU3MDExNjgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABJXVenxHvO31Vvolr34TnKRyJ4QsKBcnrCw2roWk7fywBU5FvqGZm2LGEL7I\n9p0823nwJ4y/EXKaJAtJZxnKYLGjgZwwgZkwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUaETL\n7POxtpNfuIjMeQREmrWWXw8wHQYDVR0OBBYEFLWb1ssqY0I82kooJ+bKBfp9hHIE\nMCEGA1UdHgEB/wQXMBWgEzARgg9iYXIuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwID\nSQAwRgIhAIN47tlm0x0hy7MrBu3/lSfaGY0evg7mpdEme0C5QmJVAiEA7ZU+CxBo\n0kpXDcxIz+D0UUEoaF4c5xgCOz+/ykb+FWk=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIChzCCAi6gAwIBAgIUCeZSTFHMOrsw5f0nW71pZQO/mKowCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzkzOTg4Mzc1MTgxMzM0OTUzMDY3MDI0NTExNjE1MjA3MzM2\nOTY5NDA1NzAxMTY4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDIxODM5NDkyOTQ0MDU2ODk3NjM5MDEyOTU0NTY5NjA0MTcyNjIx\nMDM2MDc1MzIzNDEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAESm7/KmS3lbtU29hR\nMsqTwNdLgluwUnRgBjY/xLD3Rg/YPjV9CLmRftNZllhXwnNsUx2gxGMxZNu8zOna\nUab3g6OBrzCBrDAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBS1m9bLKmNCPNpKKCfmygX6fYRy\nBDAdBgNVHQ4EFgQUvFTLfxttMV9PP6xTHXXhE2NkrFwwNAYDVR0eAQH/BCowKKAm\nMBGCD2Zvby5leGFtcGxlLmNvbTARgg9iYXIuZXhhbXBsZS5jb20wCgYIKoZIzj0E\nAwIDRwAwRAIgW6l6z+zCcIXV86UJ4/6k+2/cu97QFF0IaENZb7mZ/b8CIEw+Bq8S\nYXEC2cCS5AJBmKiNEL5LWLnf6t+wbtro3bAM\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICJTCCAcugAwIBAgIUd7xmpkvHNuFiOmJkySVfSvvtwKwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2ODY2MzMwMjc0NzA1MTY3MzA5OTgz\nNDYyODQ4NTczNDY3OTI3MDA1OTcxMTkxMDcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABC73BaHFbyoBxZRGJE/DLPQk5JhkndFp0lYIrdhKAhe7hA2jbbSLs4OdV6yi\nRTEeZO5M8gbwI6+y9Z6cYXCOuoajgZwwgZkwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUMEyU\njWxW6fwR1/1Ww8DFAYH5xrowHQYDVR0OBBYEFEqRPdqYidvxZngMge/BS15Lmnmt\nMCEGA1UdHgEB/wQXMBWgEzARgg9iYXIuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwID\nSAAwRQIgV72xvHGlipSEb8EHa/iQ3bt2BC8lkUPgThWgRahbWnwCIQCS9wr5soXV\nSGLp++xQk/V8+kxUEnc2aZUbflA+OCb96w==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICiDCCAi6gAwIBAgIUM+OiGBZYOQqnGYZzRIU69SCi+HwwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjg2NjMzMDI3NDcwNTE2NzMwOTk4MzQ2Mjg0ODU3MzQ2Nzky\nNzAwNTk3MTE5MTA3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMGox\nOTA3BgNVBAsMMDY4MzU3MTM4Mzg2NjEyNTA4ODgyMDg2ODEyNDQyNzgwNjkwODQ1\nMDYzOTU2MDg3NjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwrNNZX3O3/thDlbC\nV0ikQzxidNxJCi8hjNGNU+JXLaYagD9kZIeKNBaqztUdQfgun9ALR3Wfvlm/I4Hz\nXtRqwaOBrzCBrDAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBRKkT3amInb8WZ4DIHvwUteS5p5\nrTAdBgNVHQ4EFgQUrKT3VengWln6XxUvT1p8nIVAGX0wNAYDVR0eAQH/BCowKKAm\nMBGCD2Zvby5leGFtcGxlLmNvbTARgg9iYXIuZXhhbXBsZS5jb20wCgYIKoZIzj0E\nAwIDSAAwRQIhAKyvoQKT4fgCaDdaDkstOozcd+coa9EYVJK1CG7OKUHrAiBy0bvc\nRz4FerG5IZxTdK/PrTJWEdO+txqoNdaWxYnutA==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBTCCAaugAwIBAgIUTCYU9U1t4FNWqUszKjOe9v0S840wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjE4Mzk0OTI5NDQwNTY4OTc2MzkwMTI5NTQ1Njk2MDQxNzI2\nMjEwMzYwNzUzMjM0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n96ifTbQZ4J985z1Fx7+3jL+Km3BxMXCHNlC3vY5wTFtrppB6I+cErosGHtnS7YLN\nEYSdVY+mXx5eBlfcQRNY8aOBgDB+MB0GA1UdDgQWBBTZSGy4oiGMgwYslPrDh76n\nEPdfrjAfBgNVHSMEGDAWgBS8VMt/G20xX08/rFMddeETY2SsXDALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPZm9vLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0gAMEUCIQDJS2C3AkLPnI8wk83XF1kqYwzdA9MLs2Pu\nN91hyQOhtQIgaSURyoiox2j/5t8DOuR0FwPdO9RV9tPAXCjvdYHKuhU=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHdQqDBQKSeNGH8wYvEqIylcCWS1np8yfljTAmyp1pOioAoGCCqGSM49\nAwEHoUQDQgAE96ifTbQZ4J985z1Fx7+3jL+Km3BxMXCHNlC3vY5wTFtrppB6I+cE\nrosGHtnS7YLNEYSdVY+mXx5eBlfcQRNY8Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBTCCAaugAwIBAgIUAoNZmFsZBhjAENl8EwpeTvSkdBEwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjgzNTcxMzgzODY2MTI1MDg4ODIwODY4MTI0NDI3ODA2OTA4\nNDUwNjM5NTYwODc2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nMhr002EoK9vdZB2a+7tdDz8Lad3fkfR+kovi5IkszZkTjIRZ6vgRj92Tz1DUWpCw\nopywUQsvv4Vxp+LSILB6RKOBgDB+MB0GA1UdDgQWBBRyPKmzGUyz0a5zGi+L5tDA\nA1yxOzAfBgNVHSMEGDAWgBSspPdV6eBaWfpfFS9PWnychUAZfTALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPZm9vLmV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0gAMEUCIG2YOY7dMqC3MWlt6uLHBHA2otVBExVRNXt9\nSMZSdtlZAiEA+8rZCr2D4TnkDnb6iFyxe3+G+f0qHa87ISTjd3oA8t8=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOgIIy6HE+33mYF8k9dV3lT3Y9OL8piFx9AsUrOy68g+oAoGCCqGSM49\nAwEHoUQDQgAEMhr002EoK9vdZB2a+7tdDz8Lad3fkfR+kovi5IkszZkTjIRZ6vgR\nj92Tz1DUWpCwopywUQsvv4Vxp+LSILB6RA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1562,16 +1622,17 @@ "id": "rfc5280::nc::nc-permits-invalid-dns-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA (NC: example.com) -> EE (SAN: .example.com)\n```\n\nThe ICA contains a NC that allows `example.com` and all subdomains,\nbut the EE's SAN contains a malformed DNS name (`.example.com`). This should\nfail per RFC 5280, since all names MUST be located within the\npermitted namespace.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNyh7b/Hwg2WzVb+zIHpnsJhmva4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASXd4zUwalz9EVMg/9SBgPbQAdAkTXKezL9bGf0\n3Crqr0D95UYSVhT71z2htrozB09vo1OX3cm3bHJzYfAOnZuto1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU6SPlEoGPTwSs8YMmauZYmqxfJc4wCgYIKoZIzj0EAwIDSAAwRQIg\nS5P1xt0WjRzHFn2fc/cELttUQC1UiuN0AolWtkG6t7YCIQCVuUW2q8FA/SOVX55B\nMxnUcG77onTVIolhSyn3cRi6CQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUQgL6N7HnKqQsbcr4i9ynCh4hVdwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQAeQQcEBsKrKKSYm8KrNP6WOkrH7oag8sL1bmF\nhGUbI2lk6GmyuYxY70DaZwKYxQRUQ4ogprGvI5VyneBftn8fo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU+ORhAexBv77FZXTl+LK5DEYSE3swCgYIKoZIzj0EAwIDSAAwRQIg\nVlf/eSu5YKW5IQKn0m123dcmqEDTn4RLZv7/hBtwltACIQD1/IsX0VLEAvRQIShG\ngCl3AL/exRoxC/JC83Xy/IGrqA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICITCCAcegAwIBAgIUQhHpl0xf5/so9bLQ+Q8DhLUf7eAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzMTQ4OTcyNzUxMDczNTc0OTY3NzY0\nMDgzNzgyMjMxOTcyODA2MzQ5NjMxNDgyMDYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABF9tpwkoHGIqjmxLztJsv4YD/Uc3gQMTTobbBDlQqOT25tltoRv1HvqEyHSY\n9870yyu54DnG8pd25dKw6twO1pyjgZgwgZUwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAU6SPl\nEoGPTwSs8YMmauZYmqxfJc4wHQYDVR0OBBYEFJGQHLMhJMwjzrYoObnUXC/Uvzb3\nMB0GA1UdHgEB/wQTMBGgDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiBTzuFSTLy475a+4L+XwlETp1hnxr30vyvFEjhkvnx8DAIhAO+i72yXHqXJyQGc\nRxmn0Swx6ww8ASTqeaHeJIGQ2sZ3\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICITCCAcegAwIBAgIUONf5EFrljeZ4q83gbLgb++hq6RYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzNzY4NTk3ODkzODgyNTcyMzEyNTU1\nNzE0NDYwNzY3NDE5ODEzNjg1NTUyMzA2ODQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABL+63v6Aqh3V3Kl9BN3G+MgTdwzVZ91QdHxt+YOXaLZGcg78PKE5d6Bed7Bt\nHinUDdthdRZnc4JICNUJoW8EQh+jgZgwgZUwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAU+ORh\nAexBv77FZXTl+LK5DEYSE3swHQYDVR0OBBYEFMSEG8+15X8K2gJYLCG0gHFiG2HY\nMB0GA1UdHgEB/wQTMBGgDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiAEDwUjTCoJ9OOjgbppSBs3Appk6INs2fojWXgyhx2vjgIhAIKjxaAMWgUnO2ZX\nnT2vl+NgaGvwDs1RByrMYXDAr1F/\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICFDCCAbqgAwIBAgIUHdyKhuG/jK3mXZRlPKuy6J1FcEUwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzE0ODk3Mjc1MTA3MzU3NDk2Nzc2NDA4Mzc4MjIzMTk3Mjgw\nNjM0OTYzMTQ4MjA2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nnO+CtohlNFRNuMwVYqvQ7phRmjMULbqeJY27s8fxVf8ywpBZAfkq+iroqh9rgUka\naViX3qhoKZCUm+YdsObimaOBjzCBjDAdBgNVHQ4EFgQUAplnn2AlRUvpJhI0i6ee\nXXeSIG8wHwYDVR0jBBgwFoAUkZAcsyEkzCPOtig5udRcL9S/NvcwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCgGA1UdEQQhMB+CDC5leGFtcGxlLmNv\nbYIPZm9vLmV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIFVXSmaMqkL2DOwp\nsPx0Mak1QW6qEXHKGctwmQ0CE8F1AiEAlu+LjYqJq2wDQTMH0/XqHrRMWAiaUEId\nl2ewkUmASOo=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMuSeCsfY49zAcPrBIu1HXgDRdBnIhsqJtJ1KXVGsjU+oAoGCCqGSM49\nAwEHoUQDQgAEnO+CtohlNFRNuMwVYqvQ7phRmjMULbqeJY27s8fxVf8ywpBZAfkq\n+iroqh9rgUkaaViX3qhoKZCUm+YdsObimQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICEzCCAbqgAwIBAgIUcx7r1SPEfI2T1IB7sGgnCI4FjDMwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzc2ODU5Nzg5Mzg4MjU3MjMxMjU1NTcxNDQ2MDc2NzQxOTgx\nMzY4NTU1MjMwNjg0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nlBmlDDisQvRXuynGfpgA4J+NYfP+nTPEh1tQlUDdhC4oWpK3VwaDcrcmdVPOLEGx\nZOl6WvviCQ2UJT3mVsGR9qOBjzCBjDAdBgNVHQ4EFgQU6ep/ouJdVuFUuyVo3fyq\nkEQM5ZUwHwYDVR0jBBgwFoAUxIQbz7XlfwraAlgsIbSAcWIbYdgwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCgGA1UdEQQhMB+CDC5leGFtcGxlLmNv\nbYIPZm9vLmV4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIA24aq+ckp1whXB/\nxVqVHj6UBt59GxKn/rpWoxIkC9J5AiA1mc27DH1RRxVRgArSfY5DSIiNhAvfu7Bm\n3xaTKRf8tQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPWaMBKXhOSQ3JN0L1bUUusqipOuS3IW0wPkKdOZ8TmKoAoGCCqGSM49\nAwEHoUQDQgAElBmlDDisQvRXuynGfpgA4J+NYfP+nTPEh1tQlUDdhC4oWpK3VwaD\ncrcmdVPOLEGxZOl6WvviCQ2UJT3mVsGR9g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1588,16 +1649,17 @@ "id": "rfc5280::nc::nc-permits-invalid-ip-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA (NC: 192.0.2.0/24) -> EE (SAN: 192.0.2.0/24)\n```\n\nThe ICA contains a NC that permits 192.0.2.0/24, but the EE's SAN\nis malformed (containing a CIDR range instead of an IP address). This should\nfail per RFC 5280, since all names MUST be located within the\npermitted namespace.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUYAt64oqzVaYaBSuRh6Iys7jtXNYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQgp2fAieEYtm38nm/fHTYTzv4YjV4BPr/60P1i\nmi7LAMZSShm0kiqGun64ArKbSBMriQ1/9dhP6zqUMVBlDCJlo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUzPkEVYCliIR8aIemhuiLpcSPUfowCgYIKoZIzj0EAwIDSQAwRgIh\nAK8LkPtuLLSsG8/I4z3XM5qM2jc0bdODMbhKsYlcOX0mAiEAlcMnqZoaDyYx9bkD\nZBmvjnGP7EOfqPICzAlnpid2kTc=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNb/agrd1x3looAw39w+JcN9QVKwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATJ+61wULjBF+Zj/RhoZFgS4hB6p33Id0SGddLD\nDHaxsBbad3XLqkrRqIQSfoZ7SJ6pIEDZTIztqgI4SEKv3VV1o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUKWgHcn/nCNTzUsHZGi2bK/cLiJkwCgYIKoZIzj0EAwIDSAAwRQIh\nAMH/P3j8lzwsmjvB8J8QugcP8X1401vVW9GFv5HwtZMQAiABmlhQKjAkaWAqNlDn\nMnESCXRW+Oj6FYVvJOmcjToqQQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICHzCCAcSgAwIBAgIULWGV27P6taSmequSNMK7yxKbrkIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1NDgzMTkxMjY5ODMzMzU2NTE3ODM4\nNjI2MDkwMDQ4NjczOTEwMjIzODY5OTQzOTAxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFID6AiAEv3g5yoYUcEKXJ2SD2UXqkZLeLnPTEliZmRKQV1LdJ+BdOUbQyRo\noH4NftgcuLiZB7OVyJ7Zg3jaYlijgZUwgZIwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUzPkE\nVYCliIR8aIemhuiLpcSPUfowHQYDVR0OBBYEFBhup+1ipywv0sXSnxKwWXf8kLXI\nMBoGA1UdHgEB/wQQMA6gDDAKhwjAAAIA////ADAKBggqhkjOPQQDAgNJADBGAiEA\nqXDgS4KZc5JdE/s5FJzxm7cJW+lWqiZKrWjZ31tVEGUCIQCfmkgOmEsagVg61zaJ\nVE7k6+6pDmQT65reP6WAuR+aOA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICHTCCAcSgAwIBAgIUffhVt1U8QmNRotVDCUFM3IHoz0EwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzMDY4NTQ5ODgxNDU0ODM5MzUwMzk3\nNDYwNTkyOTc4MjI4NDM5MDk2MzU1OTMzODgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABBrSWsXYy606v3q6zpY14WbU4Sx+8Li5I9MjMFhUFeYoDgDh5xHVzTjxDCog\nPlzAPnIfggs8PHlQAMIpBW4b+1OjgZUwgZIwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUKWgH\ncn/nCNTzUsHZGi2bK/cLiJkwHQYDVR0OBBYEFPXo903Q2WqXAwVpD6TxAtdHUxGI\nMBoGA1UdHgEB/wQQMA6gDDAKhwjAAAIA////ADAKBggqhkjOPQQDAgNHADBEAiBI\nut6DaFlkZlA9Q5g6yvD1/barxE7dfzTiXqs5gU7ScAIgaxYEgx93HpwBEELxfAKr\nZtja6wiO46qo2bT/UUU3vUc=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAzCCAamgAwIBAgIUc8zHCFfqADS1pvvQKpdBswa/YRowCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTQ4MzE5MTI2OTgzMzM1NjUxNzgzODYyNjA5MDA0ODY3Mzkx\nMDIyMzg2OTk0MzkwMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nlQhC2eF2+4o9G5Po42jnSzZXsJYU+GQFHZjsBvzQPa12T/9vEzwLmMBC75WMtagF\nPWJ828V9GdMDyoZg//w+1KN/MH0wHQYDVR0OBBYEFOAQCge+4DgFyvUfBYoJwk3w\n1OkOMB8GA1UdIwQYMBaAFBhup+1ipywv0sXSnxKwWXf8kLXIMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAZBgNVHREEEjAQhwjAAAIA////AIcEwAAC\nATAKBggqhkjOPQQDAgNIADBFAiA+XOe1JbAwjnFjdaLN2WKzYzzZBCjIXILm1DyX\n9/mYMAIhAIR4VbJyJSVqemvaY1Zop8XzMBNIJPGULOD7tCGYmD0u\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGp9nSoqLnKV8fRFPIV7QuTzoTOKnIZkcnxHEgivJ6fyoAoGCCqGSM49\nAwEHoUQDQgAElQhC2eF2+4o9G5Po42jnSzZXsJYU+GQFHZjsBvzQPa12T/9vEzwL\nmMBC75WMtagFPWJ828V9GdMDyoZg//w+1A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAjCCAamgAwIBAgIUVdvD9k9T4Usj+ETTFfndVIGaEIYwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzA2ODU0OTg4MTQ1NDgzOTM1MDM5NzQ2MDU5Mjk3ODIyODQz\nOTA5NjM1NTkzMzg4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nHplJ4tmYp0QzGZmxD0rMFdEz4WqUmi8eT69Y/vQT2Vdje/vbtZkOIsTuBSXd6WYK\nc33VF29+Ra5a7x6TPzv2ZqN/MH0wHQYDVR0OBBYEFOPbaRVHfCCjzgAuoi/qwh3s\nWhPMMB8GA1UdIwQYMBaAFPXo903Q2WqXAwVpD6TxAtdHUxGIMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAZBgNVHREEEjAQhwjAAAIA////AIcEwAAC\nATAKBggqhkjOPQQDAgNHADBEAiArbKCDbLZAXY0oCpYrLcaxoj7lkj8dh0ja0zk+\nUCApUAIgce2sEN9BIAwkzUN72yxfBv31aeD7/MIU5UGxxXZnUZQ=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIfnFVc1Y6F/+JSrPa3tnHln+4d2T0HQpZiyMPZwY4jQoAoGCCqGSM49\nAwEHoUQDQgAEHplJ4tmYp0QzGZmxD0rMFdEz4WqUmi8eT69Y/vQT2Vdje/vbtZkO\nIsTuBSXd6WYKc33VF29+Ra5a7x6TPzv2Zg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1614,16 +1676,17 @@ "id": "rfc5280::nc::nc-permits-invalid-email-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA (NC: example.com) -> EE (SAN: invalid@address@example.com)\n```\n\nThe ICA contains a NC that permits any email inbox on `example.com`,\nbut the EE's SAN is malformed (containing a malformed email address).\nThis should fail per RFC 5280, since all names MUST be located within the\npermitted namespace.", "validation_kind": "CLIENT", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUUym45uMUmrbMSGaN3w7xBZCrBzEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ1G8IkYalsk3KfVUlrhVXAH0u3uKfmjyiFkQya\n80t9dvRiD63GlKnRs45uubU3DmCfqumF6mB6o+tNmYLaRjBmo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUO3l51275ctuYxqiIze9YCRYri8cwCgYIKoZIzj0EAwIDSQAwRgIh\nAL0OTwJWjjezuhVg2/yeM/SRye3cuwuKcyHnCnv51VDDAiEA91xMRMeLWpzAJBxH\nZUaO1MRt3/b/8mv3YmNAGXVWqjU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUXFgBkDrQlWIoW4jzXE+73LDqwU8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT6m7NHePSj3ruIHQmtXHsPzSKE0et0o3wH8IPr\n4sAnHtsPo/U7Vu7pw0jg2vbd8INwv1TkdlmuqjQSSmibzbQgo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU+TSl/VgD5vyTCDHGXTNYyheKhU4wCgYIKoZIzj0EAwIDRwAwRAIg\ndFJ3x96LsNJFpGb0P4EwVGp+jLqlBBnKvD2YvkK4MoACIHYDEBp0bhg0v/KdySln\ntNNroVB4F+j3YLNdpJsgsrHQ\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICIjCCAcegAwIBAgIUHyTu5pkh/PM12mPXYuUD8RYS59IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NzQ3NzY2NzE3NTg5MTYwMTA3MTU1\nNTcwOTAyOTYxODA1NDk0NzI4ODY2NTQ3NjkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABPEtlt6bYrsrcKAUzybyIdpUhk79kPtE3QT0T0vIfb5IMX0OFnsUddqfa3Qg\noyp/H3HFwvRIpLUn5D396v50342jgZgwgZUwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUO3l5\n1275ctuYxqiIze9YCRYri8cwHQYDVR0OBBYEFKYQWMbQADoQ6fOvLiJkPqByD9Zb\nMB0GA1UdHgEB/wQTMBGgDzANgQtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBG\nAiEAgTtXm0+0icpFGVtHuq//+m67B14J/MTIW4SRhFrnEZoCIQDQ/WvesZc1UN1E\nzICcAv3umFvL5JGeDYG9Ygm+zvgKuw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICITCCAcegAwIBAgIUOPf0/O60xW8fmht/ffJ7P2icQhEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1MjcxODk3NTI2ODQzODg5NTA3OTky\nNzEwNTk5NjA2OTQ1OTk2NjczOTI2MjcwMjMxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABNgUvaL14Rs94MctXu7dtqDUZ2To9U77mOgpE4n3K4pqAUIJic3ijtgh2Kq5\nAtqF1USTfq4Y5YGX4g8pVKHOvxujgZgwgZUwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAU+TSl\n/VgD5vyTCDHGXTNYyheKhU4wHQYDVR0OBBYEFCoKAY4LPU4R40GkJssfR4XBIG0X\nMB0GA1UdHgEB/wQTMBGgDzANgQtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiAVl5YSnAsAIba1dRJPp+e7C56+IOYQ0KPB8sHf3DsZ0AIhALTZDNUGvERrpYKv\n8NV15MYGirb6Nj2FejRN7PgT7Xk7\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICOjCCAeCgAwIBAgIUPAelUyMMqtK6PCPSfj0YMGu/Y+cwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDc0Nzc2NjcxNzU4OTE2MDEwNzE1NTU3MDkwMjk2MTgwNTQ5\nNDcyODg2NjU0NzY5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n6Uhs43VqfuALf3A02JPODoRFRU3J+wTZBVerM0lJoOkQmeSYM4qkdkSm2JYU0/8a\nbRXZ7tmaUADIkRbQZOOmhKOBtTCBsjAdBgNVHQ4EFgQUIuijtFmJ6udlAkakuKHC\nHBgscHowHwYDVR0jBBgwFoAUphBYxtAAOhDp868uImQ+oHIP1lswCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMCME4GA1UdEQRHMEWBEGdvb2RAZXhhbXBs\nZS5jb22BFGFsc29nb29kQGV4YW1wbGUuY29tgRtpbnZhbGlkQGFkZHJlc3NAZXhh\nbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgdSVp4laQE/jtS2/3y3HUQSAJrKT1\nCwVxC2S/b8ammWgCIQDQtWAP7DoZEVqO91MuFacQpJE+e4RBUBw0NMvvI3Eifg==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEkrEvYVoKTJNGS2PFHeomaJINYNfYRrt+Eqa1KImnBDoAoGCCqGSM49\nAwEHoUQDQgAE6Uhs43VqfuALf3A02JPODoRFRU3J+wTZBVerM0lJoOkQmeSYM4qk\ndkSm2JYU0/8abRXZ7tmaUADIkRbQZOOmhA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICOzCCAeCgAwIBAgIUBezeZrB8xDVBXOwYlt96K+runR0wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTI3MTg5NzUyNjg0Mzg4OTUwNzk5MjcxMDU5OTYwNjk0NTk5\nNjY3MzkyNjI3MDIzMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\ndQ32z43vrIPVS0mGcvtK86dUk+rpGhklKBppd/zV+q+lYOtNCyZzV24vYoiVypeY\nX8MVXBrMOczVVj3S9vPSUaOBtTCBsjAdBgNVHQ4EFgQUVaLaI1krkd0Dc72nTXrh\nscbsRMcwHwYDVR0jBBgwFoAUKgoBjgs9ThHjQaQmyx9HhcEgbRcwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMCME4GA1UdEQRHMEWBEGdvb2RAZXhhbXBs\nZS5jb22BFGFsc29nb29kQGV4YW1wbGUuY29tgRtpbnZhbGlkQGFkZHJlc3NAZXhh\nbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAKmD52c9Wo6ISROPltm9YtUiQfFB\n7NDkyxRWKROXLLOsAiEAwCAUZ2b5UssgBjMI+sZtc/89rpcSHOnnhh/fZNI8TJg=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBSX/m2a5+xaxApJCt+y1UBExsUjfnpjPNoaH/qE0zt5oAoGCCqGSM49\nAwEHoUQDQgAEdQ32z43vrIPVS0mGcvtK86dUk+rpGhklKBppd/zV+q+lYOtNCyZz\nV24vYoiVypeYX8MVXBrMOczVVj3S9vPSUQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1651,18 +1714,19 @@ "id": "rfc5280::nc::nc-forbids-alternate-chain-ica", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** graph:\n\n```\nEE (SAN:X) +-> ICA_B' (SAN:Y) -> No root to chain to\n |-> ICA_B'' (no SAN) -> ICA_A (NC forbids SAN:Y) -> Root\n```\n\n`ICA_B'` and `ICA_B''` are certificates for the same logical intermediate,\nbut issued by different logical root CAs.\n\nThis graph allows validation through `EE -> ICA_B'' -> Root`.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBdzCCAR2gAwIBAgIUdPzdp0s7kYsOLYawr7FmRrW1iZUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATyo3F1OjQjM7pFBN+yNvLvKPNZfg/DBaYm0VGq\nflEzhlDpxRz2oFGWpEBuTem3U8GGXbZFCi/j8N3oqBprjj01oz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQUbR+IJPg0Sz0wT5CkNeso\nz/+euVwwCgYIKoZIzj0EAwIDSAAwRQIhAJMJLqyt5y2qS6MUieoBdsu0pMx+tNeY\np5mmy+uKiACtAiA0Zcj2HOaAk/tJ/EFl8uVeFGD5V5RN5jRhImcMC+Wznw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBdzCCAR2gAwIBAgIUF8bpSH9NlNCVz3d5NlyxyTJIEjwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARmyh1Nnp33r41JtSIg9ndPXhIa6rg0rsGCxYO0\nAHPzEtJ+1uHEeCsZIITb/jJTx0K2qwy7ZKKOFskXigdRix8Hoz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQUgUECCqdSvAVxk9wmvpiu\nV/5oUzgwCgYIKoZIzj0EAwIDSAAwRQIhALDZqZloKOALHoMm6WV1chcbeqQmZBDb\ntXZh2n1pDcHrAiAPCss/0JNLH8Drj1qk5iKgbG5RwOjxeJYekvkFDmipOA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICLzCCAdSgAwIBAgIUS3Xkr1T6cTBqVtPnwzqZ76veCE4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2Njc4ODIwMjU5NDc5NDI2OTM4MTg5\nNjExODUyMjMyMjMwMjExMjQ5NjU0Njg1NjUxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABIYTZ+GRwqmffdTcAezwRsbDpF56Qv+nP7KbiqM1uRHm8H0ihHi1WaETzzmH\nsVmH0mbr66otiVWmbwbKTgeyXzWjgaUwgaIwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUbR+IJPg0Sz0wT5CkNesoz/+euVwwHQYDVR0O\nBBYEFJCEHexkfEb7xzFFK/2z/PiBXD50MEIGA1UdHgEB/wQ4MDagGTAXghVwZXJt\naXR0ZWQuZXhhbXBsZS5jb22hGTAXghVmb3JiaWRkZW4uZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSQAwRgIhALXV7naMFkCpdMeOXEV5N6E03j6SzEFIoONQhJgh0W9v\nAiEA2Rr23jLRckdMO4qO230nFGE4HhkwLF5xMy/tmvK+6Uk=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBvTCCAWKgAwIBAgIUCzzHLWgU236kL14Adjc1cD6/HtAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9hbi1pbnRlcm1lZGlhdGUwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASffKlB0BB3irNl7U06FYaCGYjUCjCdRokQQfsU\nBXpi3Igb37N6bKd2Hs6UzyZLOeIGOEgsQW6lUkShbqa6X0Gbo4GDMIGAMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMCAGA1UdEQQZMBeCFWZvcmJpZGRlbi5l\neGFtcGxlLmNvbTAfBgNVHSMEGDAWgBQMzDGe7PPv/MOFAqPEfnimPP6QvDAdBgNV\nHQ4EFgQUiFUNxjnLxVoJnJAfuzpLAWSMfckwCgYIKoZIzj0EAwIDSQAwRgIhAL+s\ndSgs+QI/0qONyPt2Hj983z21s5O2RexRLr9o4E8qAiEAwIiiahCqK0BmSpNBm7IO\nWhDYikkE0Lswqhku/+S74ck=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIB6TCCAY6gAwIBAgIUVwv6iKKxm6ubHR1ATfmNFPy1WT8wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjY3ODgyMDI1OTQ3OTQyNjkzODE4OTYxMTg1MjIzMjIzMDIx\nMTI0OTY1NDY4NTY1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBox\nGDAWBgNVBAMMD2FuLWludGVybWVkaWF0ZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABJ98qUHQEHeKs2XtTToVhoIZiNQKMJ1GiRBB+xQFemLciBvfs3psp3YezpTP\nJks54gY4SCxBbqVSRKFuprpfQZujYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFJCEHexkfEb7xzFFK/2z/PiBXD50MB0GA1UdDgQW\nBBSIVQ3GOcvFWgmckB+7OksBZIx9yTAKBggqhkjOPQQDAgNJADBGAiEAvXebGflw\n4//gO+6SJFNAe0z0nyYDnn6zCrg3/k1Ga/ACIQCJqwA4LNhRZZmgjxk/xQD1RWLW\nHgg9lXNXKkDkhWRDGQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICLTCCAdSgAwIBAgIUOREiHj0Gcr72RKnwVd9IbqjB9UEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAxMzU3NDI2NTcxMTA0MjQ2NzE1Mjk2\nNTkxMzM0NDQ5MDQ0MDA5ODU2NTkwMTk4MzYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABLMaywuVhGIU8CrWRfN2CI+UX8UA5RC4pwrXq3pSXrNvmwzqL0S/qOXuNH7t\nE2HIkVDy0wPAK1jjFFD3PZnlHWijgaUwgaIwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUgUECCqdSvAVxk9wmvpiuV/5oUzgwHQYDVR0O\nBBYEFPNC+FRJMUid46GOZXbyfbPci0CwMEIGA1UdHgEB/wQ4MDagGTAXghVwZXJt\naXR0ZWQuZXhhbXBsZS5jb22hGTAXghVmb3JiaWRkZW4uZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRwAwRAIgPrYgXZw0rKQB6lXHtqSaqv9TyxwGvwiTtQGukJv2tfgC\nIDwncfdrxemub/hAuThlG94QFZOgzFN7DrukVN33PgVm\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBvDCCAWKgAwIBAgIUYglgMR0weOGUoiattuRplWRaWgIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9hbi1pbnRlcm1lZGlhdGUwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARZRCZsrQeH4s42WNqgV8nN8O22NwFEERS9n7z/\nWsehkeJ4mEQ30aWv7P0VpsIAERkGcXdgYe61/f8Ixyyi4DYno4GDMIGAMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMCAGA1UdEQQZMBeCFWZvcmJpZGRlbi5l\neGFtcGxlLmNvbTAfBgNVHSMEGDAWgBSJzVEnOM5NPps4zwrxwqe8TizKADAdBgNV\nHQ4EFgQUO0uK9d+oMoj+EJsnMs+EYmXn9pMwCgYIKoZIzj0EAwIDSAAwRQIgHIlY\n3kZmHQ9JmKyjy8iN/FRY60wvJLrCWOCmWFaVDnQCIQDKTloxkXxIsH9uXCaq0Lyt\nxMgUx/fTuMY44/7n843icA==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIB6DCCAY6gAwIBAgIUYVyx/8OIKeJinUtnUBpoK97P8/0wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTM1NzQyNjU3MTEwNDI0NjcxNTI5NjU5MTMzNDQ0OTA0NDAw\nOTg1NjU5MDE5ODM2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBox\nGDAWBgNVBAMMD2FuLWludGVybWVkaWF0ZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFlEJmytB4fizjZY2qBXyc3w7bY3AUQRFL2fvP9ax6GR4niYRDfRpa/s/RWm\nwgARGQZxd2Bh7rX9/wjHLKLgNiejYDBeMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFPNC+FRJMUid46GOZXbyfbPci0CwMB0GA1UdDgQW\nBBQ7S4r136gyiP4Qmycyz4RiZef2kzAKBggqhkjOPQQDAgNIADBFAiBEiQYm3soH\nBPYLHhRzgwpAazYjuGwrBdE86eOTEA2fAgIhANqVmBl/BTJbdHhcHOLsiLvTCg4U\n/RRjZIpRezbmt25t\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxTCCAWygAwIBAgIUOwyMaB/2XEN89QjLvFFXGqnYZl0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPYW4taW50ZXJtZWRpYXRlMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAgMR4wHAYDVQQDDBVwZXJtaXR0ZWQuZXhhbXBsZS5jb20w\nWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASY04G9OPhhmPKawI5sjOIuD7cAs8sf\nBbCX90I9ZQdpqJHCbAGRBKW5WC4l3n3EFp3gcvrp3Brk1/oox45Zh+ixo4GHMIGE\nMB0GA1UdDgQWBBRie0HIRfok97wnG2FmZ+SLkg4oQDAfBgNVHSMEGDAWgBSIVQ3G\nOcvFWgmckB+7OksBZIx9yTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUH\nAwEwIAYDVR0RBBkwF4IVcGVybWl0dGVkLmV4YW1wbGUuY29tMAoGCCqGSM49BAMC\nA0cAMEQCIEbIkx4kxrx4wbXpR6Vsra1P/6AehtpxjzwEuFpWOYGgAiABjTQS3AO6\no9JmIHA+H3U/d1/oLmf5Xmj7ulywWcirfA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKySJJd7jjWpAcQxQnrDh3LUhW2UbvljYKyHR20Qh2YGoAoGCCqGSM49\nAwEHoUQDQgAEmNOBvTj4YZjymsCObIziLg+3ALPLHwWwl/dCPWUHaaiRwmwBkQSl\nuVguJd59xBad4HL66dwa5Nf6KMeOWYfosQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxzCCAWygAwIBAgIUFXl8uCkDBIKZuMFhy8Wtlz7Xw5cwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPYW4taW50ZXJtZWRpYXRlMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAgMR4wHAYDVQQDDBVwZXJtaXR0ZWQuZXhhbXBsZS5jb20w\nWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARFOma5VX+al6PQWWM+5++bPTmyZqgm\nDZAye6VszgTULrlkbMPYtTa5tsRlAspzv6O+gtxCByYCMSVUcVw0W67So4GHMIGE\nMB0GA1UdDgQWBBQac0HQpiOkG+gxeIUeDdSNhiHaPjAfBgNVHSMEGDAWgBQ7S4r1\n36gyiP4Qmycyz4RiZef2kzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUH\nAwEwIAYDVR0RBBkwF4IVcGVybWl0dGVkLmV4YW1wbGUuY29tMAoGCCqGSM49BAMC\nA0kAMEYCIQCXyR7z7oNyIwtWDXgy5GszlSS4KJdBeDQurSIB9+mgLAIhALNBZAOK\nmw06aR13KUNx9WJ99a0IMbE/z7Avm7AMJ9sZ\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPJJK3w9GbsJ3wmfmc0hx4xUA4XpqYAVUO12hsWiCdALoAoGCCqGSM49\nAwEHoUQDQgAERTpmuVV/mpej0FljPufvmz05smaoJg2QMnulbM4E1C65ZGzD2LU2\nubbEZQLKc7+jvoLcQgcmAjElVHFcNFuu0g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1679,19 +1743,20 @@ "id": "rfc5280::nc::nc-forbids-same-chain-ica", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** graph:\n\n```\nEE (SAN:X) +-> ICA_B' (SAN:Y) -> ICA_A (forbid: SAN:Y) -> RCA_A\n |-> ICA_B'' (SAN:Z) -> RCA_B (no NC)\n```\n\n`ICA_B'` and `ICA_B''` are certificates for the same logical intermediate,\nbut chained to different logical root CAs. Both root CAs are trusted,\nbut `ICA_B'` is issued through `ICA_A`, which forbids `ICA_B'`'s SAN.\n\nThis graph allows validation through `EE -> ICA_B'' -> RCA_B`", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBdzCCAR2gAwIBAgIUKMD3c40TtcNESbvISknB/YOL/eAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARnE5vok3mElTSwZ8ZZXeMmyi9jan+CuLagn7rG\nDMH+jAzWQLDAFZt6CdxW3dQXo6RLIgHoxHkdf5sJFzvQoFxKoz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQUOA7jZB9iInCcQ+kd0i+t\nTfXIvPcwCgYIKoZIzj0EAwIDSAAwRQIgLc1Wyz1ztQp5R/MSaP6p+4dm/Emkflru\n6PZ771UrO6oCIQDOJ2eIduAe6lkf8yhXpu49FKeYagK2kLMJcq2sbQfULQ==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBdjCCAR2gAwIBAgIUWB7bEQp6X3HkILnJsIfkCZMzevEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQQFqhoNCog1Xa/WP2XHT3Y59fhbeBEk6jYodSF\nogDVM09Ug5Z7JrZahO5vPZKWaNgz+bB8ISYOb47vyngKeZ2xoz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQUgayon+O5ii29D0D4Jk+d\nry7MXUYwCgYIKoZIzj0EAwIDRwAwRAIgVU+3bzQz0wiXOo9h5UOHQbp1aLauQ7HB\nXGfEpxLg8OICIHhWzNhMhsJklgnC/985DS8pJjqbzGpciEqIWvnR3BnP\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBeDCCAR2gAwIBAgIUUP/ZKP3iUHm8B/oP7yz1OMqli2cwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQhw+WmmWgV9qtBuhR3JIS8aI6pEkbE7JiP19bH\nMmn6xQ4glmOkkfBmHtCMHtePARiNIWpGzF9pMwEZbnFfQiwgoz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQUgkUbpE8iBSWgRaPItGrW\nCK9BMsAwCgYIKoZIzj0EAwIDSQAwRgIhAP9xGeHPLAHeGoBN9zvs0XBgOZAxnhLr\n7kn2T8nhz0jgAiEA4tCupPmgsFh3h1Yy41m6ZN9C+IRv0nncInb1MlLxkQY=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBdzCCAR2gAwIBAgIUSx02cXXOVkR9sR4iGCXriYtg78EwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATMp8tdfpxo0ue/0R3/dI49VTNPvyOktbi0I59w\nWgpc9ODioNpJcILKsNaC/70+CgcRJeC7Zos76pyi9Kk++apgoz8wPTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAdBgNVHQ4EFgQU5jcQMjdVv1H5E+HPIQgl\nCz+J4S8wCgYIKoZIzj0EAwIDSAAwRQIhAO470gN5E2akTuUV1WJNwkDReDfga+Tq\n2VN1bo8jLwhfAiBswjxP9mHvKamkdRmHLmPPMXs1R+o90jBAjxsjSv1e0g==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICEzCCAbmgAwIBAgIUQBbWfHt5PO8G/l/GStWYcGcSjA8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAyMzI2NjI5Mjk5NjU2OTIyODg5MzQw\nOTQ5OTc0Nzk3MTM1OTQ0Njk5MDQwMjMwMDgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABCBTOAcG0YeOTVN4nQ7H9T//btgH2vyoxFe+iCAAmDLjXpU5WlLy2By4OB1P\nnNWCZBuKlCh9wRwPOSnYtwTZ54qjgYowgYcwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUOA7jZB9iInCcQ+kd0i+tTfXIvPcwHQYDVR0O\nBBYEFOBMknpCsy/PSSGibjKuvx1OAyXxMCcGA1UdHgEB/wQdMBuhGTAXghVmb3Ji\naWRkZW4uZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAIRzpWt6c+p+h9iG\nApeZ46+8IUnQbEYAWGYsyOzmk4c5AiA1ZKthAhu6tx0NBEvyp+G1YjE4AU2dEwX4\n7+FHG6+KIw==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICDTCCAbKgAwIBAgIUZ56bzNXpD6sarBb9Fjxh3apJZG0wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjMyNjYyOTI5OTY1NjkyMjg4OTM0MDk0OTk3NDc5NzEzNTk0\nNDY5OTA0MDIzMDA4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBox\nGDAWBgNVBAMMD2FuLWludGVybWVkaWF0ZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABB1i2/dqv97vzwmXWs3klzFnOW3b8Iyw4skrddB5z+8aAF0ob8w6sgx9lfQL\nbXGonCutaaVGJU1YoPqPm2fatv+jgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwIAYDVR0RBBkwF4IVZm9yYmlkZGVuLmV4YW1wbGUuY29tMB8GA1Ud\nIwQYMBaAFOBMknpCsy/PSSGibjKuvx1OAyXxMB0GA1UdDgQWBBT2c4tVIbnnMAJa\nZBI1h1PMkznZRDAKBggqhkjOPQQDAgNJADBGAiEAtmO6/FXf/pSYbGq2AImbugWA\n0B+j+80Q7n1ZmYtJbF4CIQCTovniemQdrrVw8P0K2l8RwCUcHS0cvKSaUODtTOyz\nVQ==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIBxTCCAWqgAwIBAgIUGcqPODUK2brNSjWGnJqMCEeuMiowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9hbi1pbnRlcm1lZGlhdGUwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQdYtv3ar/e788Jl1rN5JcxZzlt2/CMsOLJK3XQ\nec/vGgBdKG/MOrIMfZX0C21xqJwrrWmlRiVNWKD6j5tn2rb/o4GLMIGIMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMCgGA1UdEQQhMB+CHXVuY29uc3RyYWlu\nZWQtaWNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFIGsqJ/juYotvQ9A+CZPna8u\nzF1GMB0GA1UdDgQWBBT2c4tVIbnnMAJaZBI1h1PMkznZRDAKBggqhkjOPQQDAgNJ\nADBGAiEAwPy9PTv5hNkYQ7WUjkeSrFTFAsuO1LQlLNMAkBZCuU4CIQCBJQagO+NQ\ncisep+z4zImeSU77RUjMFwUv4vpfuVG3Fw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICEzCCAbmgAwIBAgIUI5EFajMEf8mBgWO0GRB219OuBCgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NjI0MjQ4NjkwMDYzNDQxMTM5MTE5\nODUzNDI3NjU1NzY0MzkwNDQ5MDIzMjUwOTUxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABA5Mzf3yC3LSrpJbBYjmNlYUH7bE4iSfwUggpEhzJ0q3wykh+BmXSeY/R77L\nzvNUEzVCQfJmCKHDIEbWvRnVRImjgYowgYcwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUgkUbpE8iBSWgRaPItGrWCK9BMsAwHQYDVR0O\nBBYEFC1mFpb9GPqaOWkhJ/zF8HoiFO6QMCcGA1UdHgEB/wQdMBuhGTAXghVmb3Ji\naWRkZW4uZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhANFcLfSzAeXM+U7h\nhqnh3gl+IwZl/lKufzAozBTIL9RGAiBGsxP+cyhdBieGUTvpz0RVTETO/dK+F/by\nuWawjJhwBA==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIUIgKdDWstvPqq/f49E5rSg507ercwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDYyNDI0ODY5MDA2MzQ0MTEzOTExOTg1MzQyNzY1NTc2NDM5\nMDQ0OTAyMzI1MDk1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBox\nGDAWBgNVBAMMD2FuLWludGVybWVkaWF0ZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABIPgQxK+nNigJxP+ttAfq+pfYwVRJnj8BHTZv0BI+djApd3xGi7IZrLcumIr\nU6wkcGQ3R/LMixgPIMUCOpPX7GSjgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwIAYDVR0RBBkwF4IVZm9yYmlkZGVuLmV4YW1wbGUuY29tMB8GA1Ud\nIwQYMBaAFC1mFpb9GPqaOWkhJ/zF8HoiFO6QMB0GA1UdDgQWBBQZKbVfgtFMF8xz\nXNnVeOyrgd0oRDAKBggqhkjOPQQDAgNHADBEAiB3jcBEsDbZhTIRUYLvttVo0iMX\nHUQP+MlO4+j2cmmjrgIgEMJr36bNUSGmXh7QZy55bClEOulh0lgVVe7AeoXyqt0=\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIBxTCCAWqgAwIBAgIUZz1ksOB9SWd3RfGIv0sWZDqfw2MwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA9hbi1pbnRlcm1lZGlhdGUwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASD4EMSvpzYoCcT/rbQH6vqX2MFUSZ4/AR02b9A\nSPnYwKXd8RouyGay3LpiK1OsJHBkN0fyzIsYDyDFAjqT1+xko4GLMIGIMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMCgGA1UdEQQhMB+CHXVuY29uc3RyYWlu\nZWQtaWNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFOY3EDI3Vb9R+RPhzyEIJQs/\nieEvMB0GA1UdDgQWBBQZKbVfgtFMF8xzXNnVeOyrgd0oRDAKBggqhkjOPQQDAgNJ\nADBGAiEA8/WKTOPtXWgvlPXoRMkxFKIa4coUVZjPm3pbNaqKw6sCIQC4xh2TLZqb\n3Hh3wwG6bAPsgAX/dZwFcyfN2Jt512nu2w==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBzTCCAXSgAwIBAgIUCRC2ljDmjJSFFcEVe/haREa2RaAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPYW4taW50ZXJtZWRpYXRlMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAkMSIwIAYDVQQDDBl1bmNvbnN0cmFpbmVkLmV4YW1wbGUu\nY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfJrpINZKwmV8klyP/hO85sXA\nb06pJSTYk2XETk7W+fuVLaiGlrGp5sxPshzjsJmOrtV+PihMnF3Bzikk3YNyp6OB\nizCBiDAdBgNVHQ4EFgQUcAgwdG9aXIqE+aq1BAZX0Qehc5swHwYDVR0jBBgwFoAU\n9nOLVSG55zACWmQSNYdTzJM52UQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMCQGA1UdEQQdMBuCGXVuY29uc3RyYWluZWQuZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRwAwRAIgPEhI7QTpzaezAKvimgfMIVX5qWz6uu/KcnAROEwDzO8C\nIC7pGN1uQCv2EJZ52t1xdxV947c+iU7Be829dKakcJxW\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEKUBYylvqpqKB+Idw6eaULXBKJZkKq6vNdr9ovLXD9ooAoGCCqGSM49\nAwEHoUQDQgAEfJrpINZKwmV8klyP/hO85sXAb06pJSTYk2XETk7W+fuVLaiGlrGp\n5sxPshzjsJmOrtV+PihMnF3Bzikk3YNypw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBzzCCAXSgAwIBAgIURrtzb0eQlhlctIbbSJYoc5nbfhEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPYW4taW50ZXJtZWRpYXRlMCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAkMSIwIAYDVQQDDBl1bmNvbnN0cmFpbmVkLmV4YW1wbGUu\nY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEAp0qEgNGnriXo+PnFhUBQv8K\nin+qXTAfJEpdgSdVU1ZhkwnLpMuCTPO+V4CdYX3go1PSHX06U++DLDctD8VFCKOB\nizCBiDAdBgNVHQ4EFgQUMRa5CDStwCYwcX2pH8OOUaaOdDcwHwYDVR0jBBgwFoAU\nGSm1X4LRTBfMc1zZ1Xjsq4HdKEQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMCQGA1UdEQQdMBuCGXVuY29uc3RyYWluZWQuZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSQAwRgIhAIiZF6oNhvQOr0yDavYq4guxZ1bqawNB3Fvtay7rL5Qp\nAiEAz2DMXm6rAVyuD9hrJP9tnJgDh6NIH1UZuNJ6l0AWiis=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJL4M7CaYBsil95Gdl3/5FbE63QssyWaHqmIiShGa9f+oAoGCCqGSM49\nAwEHoUQDQgAEAp0qEgNGnriXo+PnFhUBQv8Kin+qXTAfJEpdgSdVU1ZhkwnLpMuC\nTPO+V4CdYX3go1PSHX06U++DLDctD8VFCA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1708,16 +1773,17 @@ "id": "rfc5280::nc::nc-permits-email-exact", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** graph:\n\n```\nroot -> ICA (permit: foo@example.com) -> EE (SAN: foo@example.com)\n```\n\nPer RFC 5280 4.2.1.10 an email name constraint may specify a particular mailbox,\nlike in this graph.", "validation_kind": "CLIENT", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUT9EJwHZBbxl1hRGdOSI1qvcRf7kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR4n59EIIjdUzyG/bVsJZCiyJFReJ1BZQGEnXZz\nIqYmk5NMvba8jxA5U6gmQh+zzdSjw1VIJzt44iXeghDSZbRgo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUMb0qwcbDceXntqEwu9cThCLcDrswCgYIKoZIzj0EAwIDRwAwRAIg\nXS1B9IM47NVqn7XdwZt6h+qiEglLk+yeCGs1hKJS3t0CIBOCfPgxM+TOPRHai7eV\nDOuZFTwM43f0NrtP7LrR07qA\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUCz/wR80oEXIJKRJN7Rm/bTwMKOUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT8rhi40cdi/MjgUwnPluSptXiUYQBhEMHvgjgR\nH2veyk3SXiEXw2N6/bqhWYTaZbp6U3etrGvQ0kCzt3+ps+Nyo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUNrxqnBxOQdYwPD/kPEBu5AXOFc4wCgYIKoZIzj0EAwIDSAAwRQIh\nAJNWNfhgAsJV57w+GjjAyRslFWxTrPTehIdX+H9SI7EuAiBCJMjLxDJVqp68mhz/\nND882NbhXU39FyJDIJi36iUiQA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIUNriIkfTVByDPw7XlvvQ4lvDij6IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NTU2NzE5NzYxNDM1NTI3MTM0NzYz\nNjk2NTc1MDIxNjUzOTI3OTgzMDQ1MzQ0NTcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABE9NPyfixuRSXdxtTJcc+DzrV6dfRRP+enaNfT+aySJ2++ivNi7OMCvKSfqt\nuYq8JXsBLT3E7lWnkTByJmUqx0qjgYQwgYEwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUMb0qwcbDceXntqEwu9cThCLcDrswHQYDVR0O\nBBYEFCSZDzjpfdzFiqA9s3vqcTQA6Hu2MCEGA1UdHgEB/wQXMBWgEzARgQ9mb29A\nZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgK/lebWztQLCmDL0fZ93opMz7\nnpcU1pue1XdlCmjxLOQCIHQIBC1Kdn5TrPThQZdKRTWQSUjrsTX2qRCWtPw7ESfz\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICDTCCAbKgAwIBAgIUeM6qkJHGgktP2C8LyCZ6ZrTLeGgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBpMTgwNgYDVQQLDC82NDIyNDc3NjgwNzk0MTEyMjcxNjM2\nNTM4MTc4NDQ2MjkxNjEyOTMxNTg5MTQyOTEtMCsGA1UEAwwkeDUwOS1saW1iby1p\nbnRlcm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcD\nQgAEqT+mIL0iE7RJ5rJXTe/dlq/KzkvZCGoEB5xjvsq5Tx+oQHOQF6GA9cB2ILwn\nZ3lxMyYUgkDKQwKFWzRDLElK5KOBhDCBgTAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAfBgNVHSMEGDAWgBQ2vGqcHE5B1jA8P+Q8QG7kBc4VzjAdBgNVHQ4E\nFgQU2KVpArv+CotsLZ4YKVq65ajdgPAwIQYDVR0eAQH/BBcwFaATMBGBD2Zvb0Bl\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEA6bOxtU1hAY3JncmpVvlQXq2z\n/RjyfU+zb9DeECXkjscCIQD6ppwxP4YNdsezxoTwDJYfI8Mm8eqhGv/vvnBtq3Gq\nYw==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBjCCAaugAwIBAgIUFtCDvRmMBkq+J8N8vAKOKJEgI6swCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDU1NjcxOTc2MTQzNTUyNzEzNDc2MzY5NjU3NTAyMTY1Mzky\nNzk4MzA0NTM0NDU3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nEHkFUUGGF/Pqqi+R3vZ5f+ZeIxfyhRGQC9OR1mxCyjBXOz/Oj2miac5EXwKeaG3T\nJPuywtV0GMR0jMBVch1kxKOBgDB+MB0GA1UdDgQWBBQG4IsVuxcayrTrzMkMUFXl\nRu6O1jAfBgNVHSMEGDAWgBQkmQ846X3cxYqgPbN76nE0AOh7tjALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwIwGgYDVR0RBBMwEYEPZm9vQGV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0kAMEYCIQDYT/kJhCjCArg74CeZiFLrzlsZ0+Gj0k28\ncdIRiC12tQIhAMAXrkVnMdqO9DoaiqSZ2aVFpFcXMfoS4ACNaArMbdKV\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFcF/ILpGpGp/3lBHWafKLRJV4gGPq8EBkRsgZH0D6yaoAoGCCqGSM49\nAwEHoUQDQgAEEHkFUUGGF/Pqqi+R3vZ5f+ZeIxfyhRGQC9OR1mxCyjBXOz/Oj2mi\nac5EXwKeaG3TJPuywtV0GMR0jMBVch1kxA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBDCCAaqgAwIBAgIUSbSuxQe4wtcOkCBayv0qYg0qfh8wCgYIKoZIzj0EAwIw\naTE4MDYGA1UECwwvNjQyMjQ3NzY4MDc5NDExMjI3MTYzNjUzODE3ODQ0NjI5MTYx\nMjkzMTU4OTE0MjkxLTArBgNVBAMMJHg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tTm9uZTAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQM\nooBwKNjh4qveGop77Uz1XfVW6ifd5d39Vv71sICeqg6E8ATLK6cHG6/vekN3lEZF\nJDBrI0UVlhEOwZ+pCpsio4GAMH4wHQYDVR0OBBYEFO2/F9X7nAf/IBs7Lcz5/4Lr\ncP7GMB8GA1UdIwQYMBaAFNilaQK7/gqLbC2eGClauuWo3YDwMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDAjAaBgNVHREEEzARgQ9mb29AZXhhbXBsZS5j\nb20wCgYIKoZIzj0EAwIDSAAwRQIgEIN0oVSDkPbNehLnx7dH0QfcygXblaV1M9NH\nPSpwmWQCIQDhMUJutwJXfgig4XS8m63SIuxltHIeFPl8RfzkLdOSMw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIArrzQNPwG0hmobQ0GYcBjkuvde8BQqH46OrW7TqfC4noAoGCCqGSM49\nAwEHoUQDQgAEDKKAcCjY4eKr3hqKe+1M9V31Vuon3eXd/Vb+9bCAnqoOhPAEyyun\nBxuv73pDd5RGRSQwayNFFZYRDsGfqQqbIg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1741,16 +1807,17 @@ "id": "rfc5280::nc::nc-permits-email-domain", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** graph:\n\n```\nroot -> ICA (permit: example.com) -> EE (SAN: foo@example.com)\n```\n\nPer RFC 5280 4.2.1.10 an email name constraint may specify a host name to\nconstrain all inboxes on that host.", "validation_kind": "CLIENT", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUYAZMyD40avfAJQEmIUcW9dQ6l3EwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASP6YodClu1er2u/Qae8YHx8dwHEZBZluXVXI1M\nG1Bf3345I5pBwnPLjjcJlhp/zvAqv5hzdRLFjT//ssQHaHYyo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUcLrIca2JdYMqynqyOHc+CDmrFUkwCgYIKoZIzj0EAwIDSAAwRQIh\nAKMbdjJ+zgU8lCqw6SsGXdj1KpXr81ijD1wvegEs+w+QAiApw7HvXmT8GRc6qa08\nFsjij/IIoj9xA3Ra+3sBV2WQiQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUY/8WXU7AduOGWJgZq1GYvZK6Wa0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASGITvhT/HcRSesgRoKPDveqn2XQ1fVGfd/0ta1\nrUOY90vlX0lzoOZUgXyzEJL6Uab04HRbmsm3+O2z2lVqIqmjo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUJZPapUwI61ulGecDKJfTKX+LFfcwCgYIKoZIzj0EAwIDRwAwRAIg\nVrbGBxQ10sr/G7dCynDBOvPyvofZZ6uo9h9kUh0D7v4CIH0HFyH1vpfI/YK/waQl\ndraEZsbK1UBDKBYuzKVE8m4E\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICCDCCAa2gAwIBAgIUE3nI6e2fbxazmXTbvMJZ53xKnvkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1NDgyMDM2MDcxNDMxNjgyODA3NzEy\nMTc0NDM0OTMzNjYzMTE2NTMzNzk1Nzc3MTMxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABEdBfdUZG+hz24VZ2glOPmx7KAI/RBH7F8LkLcy9vXsMh83APjOHqzj18SOy\nBTuangO+BRIKppuliVZcQdORb42jfzB9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFHC6yHGtiXWDKsp6sjh3Pgg5qxVJMB0GA1UdDgQW\nBBQZynPTTzvT4B2sFUkg5/8u06rXizAdBgNVHR4BAf8EEzARoA8wDYELZXhhbXBs\nZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAKKLEPHBgQZHPSxl5z1GEceSf5ikkid4\nd0e5ZdSIgQqPAiEApHX0sllL1yZvkRwCT7BCgSr80I6p/6iCcNCHnYkGdoA=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICBzCCAa2gAwIBAgIUNQLiCMJkL4HRinWhOGkBvkvs/rUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1NzA4Nzg3MjQ1NTg0MTUxNjAxOTE2\nNDI1MjE1Njg4NDc1NTkxNzA2OTIxMTA3NjUxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABGgQpCNbOsa1/+B7St+i/jPxEL+khuW9Z+vHA/fDhAG5SH0d3bbJRXmte0Wp\nX75AL5Fk/bU8ExJ4GyCqotF8lyKjfzB9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMB8GA1UdIwQYMBaAFCWT2qVMCOtbpRnnAyiX0yl/ixX3MB0GA1UdDgQW\nBBS4YuAlqLPT5Y7Mzse+D8/DIA2cfzAdBgNVHR4BAf8EEzARoA8wDYELZXhhbXBs\nZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgJk9U2arB7qq/VDBt6EeLGZRJ4wyiWs3/\nJIwcbzJJaLMCIQDy1jZDw7JjhE9KOgczqoARSrFXHbuLDBaCl2wjN2GiOw==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBTCCAaugAwIBAgIULC0Je1riP31D+FXMZJLfo8cxblAwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTQ4MjAzNjA3MTQzMTY4MjgwNzcxMjE3NDQzNDkzMzY2MzEx\nNjUzMzc5NTc3NzEzMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\neuO69UrMTt1y2rzEK9dRzBp+DdTaCKIpvVVNzbkoCyFEoLYDNhn94NpiEAdq5TO5\nNWXgRohbEnHSXIlPYnhm7aOBgDB+MB0GA1UdDgQWBBRkRycTcQ4hLumlnyce5YQu\nfJEY6jAfBgNVHSMEGDAWgBQZynPTTzvT4B2sFUkg5/8u06rXizALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwIwGgYDVR0RBBMwEYEPZm9vQGV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0gAMEUCIQD54eOMLdbecte6EuyGsy2nh4wFBvMFUXPq\nMUoaj65L/gIgLHAAouxWRoBT+D2DvvVhOKhXvAmmyt5LFnkqIyPu7aQ=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKTletFmf/DMRr/9IUNqFnw1c1Ka4bueCgb4RB5JAojAoAoGCCqGSM49\nAwEHoUQDQgAEeuO69UrMTt1y2rzEK9dRzBp+DdTaCKIpvVVNzbkoCyFEoLYDNhn9\n4NpiEAdq5TO5NWXgRohbEnHSXIlPYnhm7Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBDCCAaugAwIBAgIULRCD383NdYk5KmTcyrLrIZfyYrwwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTcwODc4NzI0NTU4NDE1MTYwMTkxNjQyNTIxNTY4ODQ3NTU5\nMTcwNjkyMTEwNzY1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nWeWvV8qKrjxn3OhaL5QNoZ7SwbTXfUSKqwNmDlBKQE3JcBPWZiLDFGa6+sxcwh1/\n/LT1SyFgLqfFzAuDXYhad6OBgDB+MB0GA1UdDgQWBBTuj3TjcGmkBej8JSZCbISj\n2QFQrDAfBgNVHSMEGDAWgBS4YuAlqLPT5Y7Mzse+D8/DIA2cfzALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwIwGgYDVR0RBBMwEYEPZm9vQGV4YW1wbGUu\nY29tMAoGCCqGSM49BAMCA0cAMEQCIFQQpz4g4qAHA/cZMPCf2TUPbHhiVw4+EIht\njq5QkSRuAiBKF2zbuZGeDzTRxNcr5PWDUXVU5t6za4+qN1Ebey0jhA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIG51BnQ1PnuWm4ZIOXh8J2qBx3rOVp8TEBbTW/0CC6JvoAoGCCqGSM49\nAwEHoUQDQgAEWeWvV8qKrjxn3OhaL5QNoZ7SwbTXfUSKqwNmDlBKQE3JcBPWZiLD\nFGa6+sxcwh1//LT1SyFgLqfFzAuDXYhadw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1774,16 +1841,17 @@ "id": "rfc5280::nc::nc-forbids-othername", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** graph:\n\n```\nroot -> ICA (forbid: ON) -> EE (SAN: ON)\n```\n\nRFC 5280 does not specify the handling other OtherName constraints,\nbut does specify that implementations must either process (and\ntherefore recognize) all constraints or outright reject the certificate.\n\n> If a name constraints extension that is marked as critical\n> imposes constraints on a particular name form, and an instance of\n> that name form appears in the subject field or subjectAltName\n> extension of a subsequent certificate, then the application MUST\n> either process the constraint or reject the certificate.\n\nThis testcase contains an ICA with a private OtherName (meaning the\nimplementation will not recognize it), and therefore must reject the chain.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUAdq1hZAeqCc5dF0fb8eFfJCUDNowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT/8RJLEFx5ww+M25xwlGS9PFQGMPKSaKPW/yrH\nqODdHYfTdM083vGe0UMa4E3Vr4fIsZSdHKb/lS1cyC5NRsKuo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUq5euN0dzVDpdB1h8gXvhszjH/2gwCgYIKoZIzj0EAwIDRwAwRAIg\nKrKdWwd0OibJ4aj7+h6ZwvdhlF444rNarDNtzMSOFIwCIE5mYcmCCACx8z/SQAY7\n2019AZQF6m6A2/gdrdDGj0ec\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUUHiAppq88okCSqcxI/sYhsZsQfIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATHQjHrp+b84Q05D2nPU/rPNOJN4rkr6ZLR7T8Q\nPoDE+dufgoUuZgPuis17lw7KTI0fOCJLMjGfXHDcz7eoN0OUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUgVi8mlHakvkS36J/Hc0Rt+fXlhkwCgYIKoZIzj0EAwIDRwAwRAIg\nL9+DgdbODAMUAsNgTh3M7D03bZ5kVCscgc6OB6KgBzkCIGjqna0ld7EfA0FouL2R\nUZAPngygzyq8g/sGCOLnZknP\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICHzCCAcWgAwIBAgIUFEn9lNsZ55gNgKXrf73uwzEGLC8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBpMTgwNgYDVQQLDC8xMDU4NjM2NTk5Njk3OTk3NTMwOTgy\nMzYxMjc5NDY5MTA4MzMzOTczMjA5NDE3MDEtMCsGA1UEAwwkeDUwOS1saW1iby1p\nbnRlcm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcD\nQgAEyDWxMGqcDqVwXs8NbwBSvK8a+W1Hk/V3fgoUPcMIKQxVFkSbU+89vArSmcwg\nEbVl/ypUFZ4WK3H3d9x8WZZoraOBlzCBlDAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAfBgNVHSMEGDAWgBSrl643R3NUOl0HWHyBe+GzOMf/aDAdBgNVHQ4E\nFgQUa6WTT+NjLcgieI/WWHw+TPsyuIcwNAYDVR0eAQH/BCowKKAPMA2CC2V4YW1w\nbGUuY29toRUwE6ARBgsrBgEEAYOzOoUaA6ACBQAwCgYIKoZIzj0EAwIDSAAwRQIg\nSMcIDDYwCysTz47x4cdZe5XDIl87nTjKhY2BKrVMaDACIQCyKNzvcqsWo9mU5oYa\nizumwGAY8HakWLSAma7LJgeoIA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICITCCAcagAwIBAgIUNmSIguteLU/LGa0IgqW4B9PE5zgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NTk0MDY1NTgxNTQ4ODUxOTMyNjEz\nNjQ2NTk0NDc2NjQyMzU1MzczODM1NzE5NTQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFaDco+hRrUk6hp9bFhamVLu5phKuTVi5hkvECLGoVIHBDhT+2riircmd63D\n8xxtZiOFpdzdHRmrSVWKhyDvDH6jgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUgVi8mlHakvkS36J/Hc0Rt+fXlhkwHQYDVR0O\nBBYEFPgObrx4/6eiBRJNndzMtzXuRkD8MDQGA1UdHgEB/wQqMCigDzANggtleGFt\ncGxlLmNvbaEVMBOgEQYLKwYBBAGDszqFGgOgAgUAMAoGCCqGSM49BAMCA0kAMEYC\nIQDO/U6I6BK36i19I82cd3SGyT858jhhvg7lEHMrUSeNYgIhAM79/tcX1bZaYHbU\nTlgC/0u9J34uAVIuAKs4JzptWtgb\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICFTCCAbqgAwIBAgIUUHUMC8CbI9EdOO5mIv5YqG00PYkwCgYIKoZIzj0EAwIw\naTE4MDYGA1UECwwvMTA1ODYzNjU5OTY5Nzk5NzUzMDk4MjM2MTI3OTQ2OTEwODMz\nMzk3MzIwOTQxNzAxLTArBgNVBAMMJHg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tTm9uZTAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATC\nn7T+XMoCDQhPhsrhBGA1V6QSm7uzJEqhP3rGSaSUQKWnsQSe/UlBijZf+q8p5WaC\n3h9RbUoH1is8RNOLFy6So4GQMIGNMB0GA1UdDgQWBBT7lmzNaFxGkjcMtyy125xL\nkPl0ajAfBgNVHSMEGDAWgBRrpZNP42MtyCJ4j9ZYfD5M+zK4hzALBgNVHQ8EBAMC\nB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwKQYDVR0RBCIwIIILZXhhbXBsZS5jb22g\nEQYLKwYBBAGDszqFGgOgAgUAMAoGCCqGSM49BAMCA0kAMEYCIQDqdbMKvVXqHC0c\nG+uEndlOxM/IAdkDC8g8AZYShf3LEwIhAI0xCpnZii9T7hwKRls09cnoYdxo4sdw\nngn3SLtcSW0H\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEmk6EcfIssG8ZMaR+f/AyXSETffULmcrI9qpfa35/n8oAoGCCqGSM49\nAwEHoUQDQgAEwp+0/lzKAg0IT4bK4QRgNVekEpu7syRKoT96xkmklEClp7EEnv1J\nQYo2X/qvKeVmgt4fUW1KB9YrPETTixcukg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICFjCCAbugAwIBAgIUUSvCfZXsDotzCwgJp/kcHWgZpJAwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDU5NDA2NTU4MTU0ODg1MTkzMjYxMzY0NjU5NDQ3NjY0MjM1\nNTM3MzgzNTcxOTU0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n0y2S6rctCojtzXFBs/6xfFAU8qki8et5GnxhgvZZz0FvI2S6NiZuqNVdGg1AFVyk\nntpIXUcq+3cNcrHRvQgGz6OBkDCBjTAdBgNVHQ4EFgQUidAOl9JicuvxJHj0WDiH\ndH0CbckwHwYDVR0jBBgwFoAU+A5uvHj/p6IFEk2d3My3Ne5GQPwwCwYDVR0PBAQD\nAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMCkGA1UdEQQiMCCCC2V4YW1wbGUuY29t\noBEGCysGAQQBg7M6hRoDoAIFADAKBggqhkjOPQQDAgNJADBGAiEAjyIL9U0CC26W\n5VX5vsKMUB0yBlAMqDNotnFBKTvablgCIQDLz6yTZkYpbxBU5QYDeuhRyBf+FrqX\njbR0U+SAuoPCVg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFrluBNJeCYvCFjiZ+K3zqRA8BZ3uOf2BL0BtASVSfNmoAoGCCqGSM49\nAwEHoUQDQgAE0y2S6rctCojtzXFBs/6xfFAU8qki8et5GnxhgvZZz0FvI2S6NiZu\nqNVdGg1AFVykntpIXUcq+3cNcrHRvQgGzw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1800,16 +1868,17 @@ "id": "rfc5280::nc::nc-forbids-othername-noop", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** graph:\n\n```\nroot -> ICA (forbid: ON) -> EE (SAN: no ON)\n```\n\nRFC 5280 does not specify the handling other OtherName constraints,\nbut does specify that implementations are only required to evaluate constraints\nfor names that actually appear on the validation path.\n\nIn this case, ICA contains an OtherName Name Constraint but no actual SANs\non the path contain any OtherName subjects, making the chain valid.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUTvwvfVtSkCkIg5wnzoiZvZazWsUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATyNuGP5GcjGS2FMS4tqe3kOIBSMT/IbNjUuOg5\nItBv7vaRyfqQcy/ZxYQnzFxZ4NPA3SNr5/bU4cRiuAlislJVo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUD/AZsjlUfWvcxlLBJmNKKALDzkcwCgYIKoZIzj0EAwIDSQAwRgIh\nAIegAhsxtQLkVYmswTRITespjlR/0m98zwDPt+ZRMmB2AiEA7NRnUCgLmQ7+7yWt\nBmC4EeDa7QyFSIAwxAXsCtTeAqU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUfcpp8yOiqiFPOSt/9EOwnLNhOvQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARMzkIM24fvfxgDABiDAqf3QXoEk5cJLlmzs/EW\nTWdXX5Ntl5Ws016LC0xVvh2hub3hgKW2M+Hy6pOccFwh5w6wo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUPX6XlpaumFR8S7OL+hv+6eGmpsgwCgYIKoZIzj0EAwIDSAAwRQIh\nAP8toRseEm2j0bHxPqqBtInPodjfhvRvlJyxvdRSl9FUAiBi95wT8/jfOlVQ0eai\nyxykamaZKjCxTbHj3vfDG9s2vQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICIDCCAcagAwIBAgIUfx6w1J2AbNnRSw4HYahmGM1fnucwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0NTA5MjUyMDQ4NDg0MTIyOTc2NDc1\nNTIzMjM3Mjc2MzQxODgxMDAyNzc4NTI4NjkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABAu8zyBKBaDvFr707JgQ7DbIJWObgp1aJhrIMSuN0kvPUYZJ+6FRV+56ntmJ\nzX8jiBGZiFYssYkB7tGiehocX6mjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUD/AZsjlUfWvcxlLBJmNKKALDzkcwHQYDVR0O\nBBYEFFnvZ/F5cbHO5XGeKBwutmO+q5+7MDQGA1UdHgEB/wQqMCigDzANggtleGFt\ncGxlLmNvbaEVMBOgEQYLKwYBBAGDszqFGgOgAgUAMAoGCCqGSM49BAMCA0gAMEUC\nIQD+JMsShYMxHfiuVWolJjyiTILZsxLjcVnnAP6+/yPmEAIgAknohazTPAfJ9wmi\nGHVm904HgmGwO5MdkzrJ7J6dsyo=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICIDCCAcagAwIBAgIUaveuSu8SbC8e3uMeBei+0zchSacwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA3MTgxMzc4MjY0MDkwODg3MDU2MDk5\nMTI4MjgyNzcxNTA5NjkyMDM0MzM0ODcwOTIxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABP6q28rGu6zcNDELvJi7yQgDdcG+m7jmUacrcR4VWX9P/D6Bqpm3xb1N0VJz\nEcwZiiGsDaNvKoPMfaM0PpppOgKjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwHwYDVR0jBBgwFoAUPX6XlpaumFR8S7OL+hv+6eGmpsgwHQYDVR0O\nBBYEFDIiCre4s1AshranTwT2loLWHFLTMDQGA1UdHgEB/wQqMCigDzANggtleGFt\ncGxlLmNvbaEVMBOgEQYLKwYBBAGDszqFGgOgAgUAMAoGCCqGSM49BAMCA0gAMEUC\nIQDcGHVw1n3HgU7EAu7Eabv8Ne7kkHGFG/qQtydiamt1UwIgUJJuSzpE+BLqn+jf\nVtiMvp1uZuKBZp5MSbR2paraE2g=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUH4h0T/FtKGNEKHyC3y2a2ibEYG8wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDUwOTI1MjA0ODQ4NDEyMjk3NjQ3NTUyMzIzNzI3NjM0MTg4\nMTAwMjc3ODUyODY5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nHCL90rmZo+42TTga03JB2qLBEbS/EldFxi0kfmjEq7VyOsF/nCXuI7Tqrcl0qaTh\n076PH97qktYYImvbuG0scKN8MHowHQYDVR0OBBYEFE1yuziBs6Ce2tlxymA0kwHk\n2/S/MB8GA1UdIwQYMBaAFFnvZ/F5cbHO5XGeKBwutmO+q5+7MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiBVOmxE1vG0m4qVJ8gQLY4uIULZeYcs0tMsa+a1yBgA\nSAIgWNIotFkKO+HyxgJgX4JxfoYv5aZq2Vt2YriJEc9B6j8=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOVydIlYquf5zHl8uqam6rIfbxUEDEt0b4AtLNUvAVQOoAoGCCqGSM49\nAwEHoUQDQgAEHCL90rmZo+42TTga03JB2qLBEbS/EldFxi0kfmjEq7VyOsF/nCXu\nI7Tqrcl0qaTh076PH97qktYYImvbuG0scA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUeXqtnoDo7XFzKwNkDSg6ickSuuQwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNzE4MTM3ODI2NDA5MDg4NzA1NjA5OTEyODI4Mjc3MTUwOTY5\nMjAzNDMzNDg3MDkyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nR1J+D+Zwse6tRxHMxYv6OZxw8CxgOmKG0Xzg6c9Fm/0EPNdRITOyt05oSYzCz1Dz\nPiuUkjorgWVSjgSi4xW3+aN8MHowHQYDVR0OBBYEFFs1AdaIRUkbxXphH7OmwhSd\nGvyuMB8GA1UdIwQYMBaAFDIiCre4s1AshranTwT2loLWHFLTMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEA8TIfdCKHIO419L9upjoDHLJ2Z7Tgfim/le3qkfQu\n1bQCICPo3yQlFgN4E4wXS7kNOyvAWIDGGxPk+1auldMflaEf\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOn3hYzytMUxMU2ANFlOS7Owp+V59TVQdLI2ZkC5E/dCoAoGCCqGSM49\nAwEHoUQDQgAER1J+D+Zwse6tRxHMxYv6OZxw8CxgOmKG0Xzg6c9Fm/0EPNdRITOy\nt05oSYzCz1DzPiuUkjorgWVSjgSi4xW3+Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1828,16 +1897,17 @@ "features": [ "has-policy-constraints" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA -> EE\n```\n\nThe ICA has a `PolicyConstraints` extension marked as non-critical,\nwhich is disallowed under RFC 5280 4.2.1.11:\n\n> Conforming CAs MUST mark this extension as critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUbQuzOcQzzDuUrqJzRwgnthaH2KkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQmzworBF9fwOMD3F9USeFXP/MJjwH1NLzfTp+P\nIHRawYTg+nzkhbRc0RuPdlneTcLhUrIghLnNDzNYVB5DNeU1o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUNYlHN2oeyymIRZtqSr0+3OtRq0UwCgYIKoZIzj0EAwIDSAAwRQIg\nNvEPXl5sWNqSp4hWys/9rplMXDImmMD3hrG1CFX1944CIQCF9pmYaEzuuEfokmuW\nX8Ciib/yAmiX/2wFzQC0dYFu+g==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUeJ9wzbr7kgzQOMUrfldN/ZMY3TowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATH0l+HPtJx2n7tvvW6IIqNpxfZEgOjbw0oCG4C\nfC21OBsU2CoaAWpAOA2D+ZsfDH9lRKzxbnSLEhXlOsem6y8fo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUKzb0baTT3zEAxh+NQM5AYGNBvCcwCgYIKoZIzj0EAwIDSAAwRQIh\nANrlUtAcwnebtAUj5GJImnbBaxwn9hMUeS6nodB1RTuZAiB1S9OtLfuJ8Ra5tI7p\nZr2ZAGOWdxvHhm27Lbx1g4Y/cA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICEDCCAbagAwIBAgIUYgWklxZf8I3oJBEDZVvY9RXyhe0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2MjI1NDA5MTQ5NzMwNTY2ODEyMTky\nNzYxNjA5NDc5NDI0MjQ0MjkxNTc5MzExNzcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABAyfTuWZ6THDK9Cy+zQOAjD0ZSFCdA0ZZeeOfMMtvF+YhWu939RO3R1C1H/B\naV4MDWK/1n8kS3lM8pTlyalT+e+jgYcwgYQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUNYlH\nN2oeyymIRZtqSr0+3OtRq0UwHQYDVR0OBBYEFMO+dZzc41191zgQ2XMfxS5dOPQw\nMAwGA1UdJAQFMAOAAQMwCgYIKoZIzj0EAwIDSAAwRQIhAOUGkOyQabncQNWNW9uh\nhSCJF9OYl3p2u6SsgKumfxt2AiB094GNn8w/WQQftodJxdNuTG0f1LLq91bfma7B\nvvD37Q==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICEDCCAbagAwIBAgIUSc7UXO7nOjPYDtmUXBm/CExEtGgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA2ODg2MzQ1Mzc1Njc4NzkzMjM5MDE5\nNTkwNjY4MTY4MTk5MjIyNjcyMDM0OTMxNzgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABGEND4zUcZ2anZlBC0OckOyRgjfjMjCf471s6XumJVhf9uh22uwoJ2IYJSdm\nYUbwcZRVkC5t7O6qp8zPWEjUKMWjgYcwgYQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUKzb0\nbaTT3zEAxh+NQM5AYGNBvCcwHQYDVR0OBBYEFAZ11cFXaEpIL43DKsSTMio76I92\nMAwGA1UdJAQFMAOAAQMwCgYIKoZIzj0EAwIDSAAwRQIhALqZu2lDn6royP3PqRTu\nmih9w1dX82mfesXJ7KGNkWcrAiBejPHL+9A0J1gIBa7BpEHbadje6el1450iKUnV\n6Z/AyQ==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUKYHYlL7KEeRHHv5pfhwL+SeexO4wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjIyNTQwOTE0OTczMDU2NjgxMjE5Mjc2MTYwOTQ3OTQyNDI0\nNDI5MTU3OTMxMTc3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nDwKJaJGh+0tbbHDuPm5dUqM/69mBaiGgf5MG0Pd3EdfqDRvNBbzjrikKdhi5rSKF\nw1/mE0F3Q2yP3ThmpJ6WY6N8MHowHQYDVR0OBBYEFAg0ZQuqGeNrgd5QXF4TesYx\nizJ4MB8GA1UdIwQYMBaAFMO+dZzc41191zgQ2XMfxS5dOPQwMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEAif0CoesXaAEtwANDrgY6LFrzlK3Rbs+dGIoYyjWc\nHJ8CIEXCsRUSak6zpujnbC675/pVmLrRzRcVI+rwTRYznzje\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEStR/kTrY6OWgP9mFP5utDZfFIr/ueAystZd09jcH+ioAoGCCqGSM49\nAwEHoUQDQgAEDwKJaJGh+0tbbHDuPm5dUqM/69mBaiGgf5MG0Pd3EdfqDRvNBbzj\nrikKdhi5rSKFw1/mE0F3Q2yP3ThmpJ6WYw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUIEgkBBw3XwFK06oDnY5F/qtqblgwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNjg4NjM0NTM3NTY3ODc5MzIzOTAxOTU5MDY2ODE2ODE5OTIy\nMjY3MjAzNDkzMTc4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nXBwW1OtNR+CQyKVSCU/OhhgeFI9rIOJ3x9pWd2Gv9n81507nI8C7RAjgBSAZi7jB\nq2CFxcnEoiS3aIuCEGjlNKN8MHowHQYDVR0OBBYEFPc1p690fPmqvqpn1Le4ee5H\nN5fmMB8GA1UdIwQYMBaAFAZ11cFXaEpIL43DKsSTMio76I92MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiA+Fo6xTLHdZG2RYS1rxIDdJ7Nb/k1l8EPwWl5LPILw\n7AIhALZDRJ6YWrFt5q9/XNCKKN0yGd9zsJr8qeuLdhEDm1Mk\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINN3qC0ffLqCwII34YJfcbBsI3jNmthEBfA0T3OjcOyloAoGCCqGSM49\nAwEHoUQDQgAEXBwW1OtNR+CQyKVSCU/OhhgeFI9rIOJ3x9pWd2Gv9n81507nI8C7\nRAjgBSAZi7jBq2CFxcnEoiS3aIuCEGjlNA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1854,14 +1924,15 @@ "id": "rfc5280::san::malformed", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert has a SubjectAlternativeName with a value in ASCII bytes, rather\nthan in the expected DER encoding.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNkIcgvv8aiv2N6GpXgy/nB8Phk4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ7GPklGJZL+fRjIf1o5oAOMTWEyYDII0F9B7ag\nGMe6fZJw3aMLCbUQSjy95B4ufed1VvljUeMOeIZ3WUPFT/jio1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUYlcQU0Ij38zIImW6WFgamjiVlLwwCgYIKoZIzj0EAwIDSAAwRQIh\nAOYBHo7GmN/4spkDq91pLaV4ueTtP+1ukv+aAyhpFK2kAiBMwzElSZY547+llYm8\nkcrP92snnuSczxP/LirvlRUR3A==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUER1D2Ej6ZNuz9yhvuqE+siPtrE4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATCrqAJmmlB9ZbwK09vi0FXwNXS4LpCYRce1MV3\n/MK9Xb9/QY5weRyV7E1esOibcevuR3MKrOMNBDb7iVmbEV6To1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU4r3SFnqYYPrHvyQvIFSSRCVAdKYwCgYIKoZIzj0EAwIDSQAwRgIh\nANjWTc20OtU2Na4QTvsHQIaoji9kO0rgoz5fhmbc3N/AAiEAmZQAAikLMMt/Knf4\n+P+94vr7u7e+EI1DGFILG9cvQTM=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVKgAwIBAgIULYJy+W8q2M6xImBU3YIiCxttAn8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDx4622/I/fhjwz8NH5Ey3ipJpK3BysIgKG3C/ioC3Om\npcVIWIq1awChYPSbE9MGlnUPnnlhVpjN6NzNM+soDdCjeDB2MB0GA1UdDgQWBBTS\nNzVsfEezfQGvOZhgD6IBZtRhijAfBgNVHSMEGDAWgBRiVxBTQiPfzMgiZbpYWBqa\nOJWUvDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwEgYDVR0RBAtl\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEAjOEKKMpHLdj3cVQq1ylEMNSg\n0f7gI1IQXLIDE5DKGTYCIQCZ50x4In0AC5/LHQwiZ7/9YazIGoGnqH1nQiC6AXSS\ngA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGIks2mBw4dt+jC6pJ+3KBwATOA3v9CJ+dxNQAQIbGcwoAoGCCqGSM49\nAwEHoUQDQgAEPHjrbb8j9+GPDPw0fkTLeKkmkrcHKwiAobcL+KgLc6alxUhYirVr\nAKFg9JsT0waWdQ+eeWFWmM3o3M0z6ygN0A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrDCCAVKgAwIBAgIUVz0q3cd5J1gmA6WiULUH2uIrd1cwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHHu3NJuvogwF4hnYBDGNqP0FUZ6aWyjWuZc0WvxM59t\nEQLPxnH7knM7Au+m4gqGFlp5jhcheVgnpFEPUFdMAMujeDB2MB0GA1UdDgQWBBR9\nlfWLa8Sgva7MsFn86ne5iakn7zAfBgNVHSMEGDAWgBTivdIWephg+se/JC8gVJJE\nJUB0pjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwEgYDVR0RBAtl\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA4+iE4T09nqeU0aejqT/e5cv9\noWES2NWUDQ4NteO+OH0CIEdRMCzfOSodJ9b16Fjck9pR1GDtIJYUZDPhUPU1I9uu\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIADgN8vcxcCfdXtpELY5DFTvquM8bS4jzgoKaURUam31oAoGCCqGSM49\nAwEHoUQDQgAEce7c0m6+iDAXiGdgEMY2o/QVRnppbKNa5lzRa/Ezn20RAs/GcfuS\nczsC76biCoYWWnmOFyF5WCekUQ9QV0wAyw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1878,14 +1949,15 @@ "id": "rfc5280::san::noncritical-with-empty-subject", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces an **invalid** chain due to an invalid EE cert.\n\nThe EE cert contains a non-critical Subject Alternative Name extension,\nwhich is disallowed when the cert's Subject is empty under\nRFC 5280:\n\n> If the subject field contains an empty sequence, then the issuing CA MUST\n> include a subjectAltName extension that is marked as critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUHCnJvLDBm1yEH759M/mup8gIzV0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ2edq/bRdeQTyzDCv2glJSfnpgfgWJ+aATG6q8\neTeWSfRKEMhyaH9jmfzAiY3Ff/fiu+39octsrlQCN8bLmPfJo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU5Sz90oLi3xBFoD5RSBA/ZpNNXfAwCgYIKoZIzj0EAwIDRwAwRAIg\nEB1NZkzFpnf+lcYJaWnZCE3qcSjrrDB7SsHPT8axInYCIF33ZjumfkS9Vk1J2It5\nE1xu/fqDsZkG4tn3rlq8286v\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUcyFxscinP1XzaRsrYUWzfC+dLfowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR2qqeRxO76r2uaHeLun+GXAHzxf7uf913vNsVJ\n9okKeMOvBQl+Offaf6QfohxwPUIZiIODZ3NSJR6adDLmbkCSo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU160g7FJz3T9bzLNVp318GeODq0AwCgYIKoZIzj0EAwIDRwAwRAIg\nV/5doJ4Od/nL5M2hgAKLo0VSST0w5rOs+GC5kcSrTTICIAmYSX4KG7wwNGoN5UIo\nMZCgAYt7HUENDJnh3BLKIa7v\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmzCCAUCgAwIBAgIUQ8LnNUBEqK3RFfT6JpoD1b8dZiowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEniu4Bcby\n6h0shWJ66HqYG8tJJzq0KM9d2nD58SvkV/1SvTb+tc0sJgguvJtwynGNSrJlJdMG\n2O+D/+PQigPk2qN8MHowHQYDVR0OBBYEFDPgdcYUgRovdbJRNGl3Jm5xfSavMB8G\nA1UdIwQYMBaAFOUs/dKC4t8QRaA+UUgQP2aTTV3wMAsGA1UdDwQEAwIHgDATBgNV\nHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjO\nPQQDAgNJADBGAiEApE26WvbqmPCBCqnnFEifpmAzg+P0HmCiapybgvVFWOgCIQCA\n0gbtsjHrr0v3ohaR5Ys1C7Q4fXhndOuUrgm3h6P9Lw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGQwUMgVzWdsfuRDTdDvx/eCOC2UtTjBkVgxOoeHdyXjoAoGCCqGSM49\nAwEHoUQDQgAEniu4Bcby6h0shWJ66HqYG8tJJzq0KM9d2nD58SvkV/1SvTb+tc0s\nJgguvJtwynGNSrJlJdMG2O+D/+PQigPk2g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmzCCAUCgAwIBAgIUBluRvY5t7tYs5T4BvLgDED9wI2MwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEBuY59vhB\nhwl9mKlxnXFsd3hz7gpoRaPck//rNy4bVcZs1P4RbjbDoA5Ap2JV7s0H97quRP0I\n8T2IzU/bMTwZQqN8MHowHQYDVR0OBBYEFHX80VE9rJXARCzjj61u/zXkBxoaMB8G\nA1UdIwQYMBaAFNetIOxSc90/W8yzVad9fBnjg6tAMAsGA1UdDwQEAwIHgDATBgNV\nHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjO\nPQQDAgNJADBGAiEAhYI/p09ibjvKDzyOEDoUgWM3fWGktYUBgrK+8PmWX5cCIQCm\ncUrKTL+FaQXhGE6lfWl50kvTiEidQWupnSK+Br3n4w==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPV2JrbZk2uQJkJmGLZzJKH3XQgBNzAXpOakV06K6oDMoAoGCCqGSM49\nAwEHoUQDQgAEBuY59vhBhwl9mKlxnXFsd3hz7gpoRaPck//rNy4bVcZs1P4RbjbD\noA5Ap2JV7s0H97quRP0I8T2IzU/bMTwZQg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1904,14 +1976,15 @@ "features": [ "pedantic-serial-number" ], + "importance": "undetermined", "description": "Produces an **invalid** chain due to an invalid EE cert.\n\nThe EE cert contains a serial number longer than 20 octets, which is\ndisallowed under RFC 5280.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUZG/TlASoN1tKnG4laQ+tvEYBR/UwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARaMT/jmVaWzjwhamssW9sNnCNHWebsAyDg00N/\nnLOS600islPSinXtlAVdBw9HVcCjdq93ck/D3HJd9qXnoPdwo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUNpGmnK6NBP4ndTaGROxNiGk6BowwCgYIKoZIzj0EAwIDSAAwRQIg\nC1MHKd23E02XyacTrftXUlsQwPZRrk2UdW/+Xkh0fNcCIQDUvNbXi84ka+sV9lVi\nWjKutSEu9eYmX19ECo04RzpE5Q==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUJCFGyrFZBLtnK39wipaRF0MeYRgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQpHZfibdzZCJ6JFVcnpYfY+2Y/d5Ri4gdHoM0j\nH6RsxGZlkeedU68Ci7JQ1AMti+TJllkGo8pXJxlrzPleDCdGo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU4iG0Hx7cJDAwmm2A8x4IoOUO2/IwCgYIKoZIzj0EAwIDRwAwRAIg\nNH5qGW5pWexkWLP/a+ZTwQwWfs5Q5x2PJzGd5U/Yas0CIGCINh0LNXVU/pgA/nW7\nSZGHFdilO/fFkRKjCWoLrllP\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVigAwIBAgIWX3hePo2lzo3UibXcT+9dNKaTft1GszAKBggqhkjOPQQD\nAjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgP\nMjk2OTA1MDMwMDAwMDFaMBYxFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAEaryQkvcAVI7IW2ut1w3J/YKyIlgbgijP/wXW6D8V\n4/BVkj59Js6/IbkPudJWQU5LK2pULkqa8bxeG/uM8WFgw6N8MHowHQYDVR0OBBYE\nFBKzv2UkcGKClxcxh5SGc7rSzXLMMB8GA1UdIwQYMBaAFDaRppyujQT+J3U2hkTs\nTYhpOgaMMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiBYpnjWEtAxq+FSnh38\nhPFbhOSzPQs3+KqvwvsK+W+Q7AIgAQPN+SawKxen8se3vriAU3EAEtbOya8XMYTc\nX3OvpAc=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHFVzivpQuKD7FkkaPlBIZMljCJ1H8Rzb/TKMJlMoZ+KoAoGCCqGSM49\nAwEHoUQDQgAEaryQkvcAVI7IW2ut1w3J/YKyIlgbgijP/wXW6D8V4/BVkj59Js6/\nIbkPudJWQU5LK2pULkqa8bxeG/uM8WFgww==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVmgAwIBAgIXANMR0cUnoadglm8Bb/NIFk9qXr7AyNUwCgYIKoZIzj0E\nAwIwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABLlPUkX734hojUt4Noe0fiy1EfsoSQ7dD6qBtUjZ\nu94iivFzCNKrHJ+FYOWoftZRVR0MtAL8/++22uLczuxjcY6jfDB6MB0GA1UdDgQW\nBBTHKjome1/wTiN0YkVkqpibJIghAjAfBgNVHSMEGDAWgBTiIbQfHtwkMDCabYDz\nHgig5Q7b8jALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgbgjZv8iLcdwvgutE\ncP9D2X4sNAkLC2LZFFFoUfpdSg0CIHGm/88LDfvqfpJkbtuPU6fvHUSI5cDi3b0+\nRAXc0elh\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKMTKhEKOg1RqdSUb3tUHaLGeWOZFz1e9VD8mxvrIXs5oAoGCCqGSM49\nAwEHoUQDQgAEuU9SRfvfiGiNS3g2h7R+LLUR+yhJDt0PqoG1SNm73iKK8XMI0qsc\nn4Vg5ah+1lFVHQy0Avz/77ba4tzO7GNxjg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1930,14 +2003,15 @@ "features": [ "pedantic-serial-number" ], + "importance": "undetermined", "description": "Produces an **invalid** chain due to an invalid EE cert.\n\nThe EE cert contains a serial number of zero, which is disallowed\nunder RFC 5280.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUSke3erBTP/FY8B5/Lk78bjEkQOwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT3DnebHHNUJ0A4NJJ6IsJYk+StOKESinCZ8NRP\nXAJIKQ+bgIUXlXaI5yGixJqPw04xZFOJAq70c1iuh4Mf3TgHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUE7+4OTXxDZNlAyJGBMwSHJIfue4wCgYIKoZIzj0EAwIDSQAwRgIh\nALv51Rm5FO90S5ktOTvPrx1FObMoyZhNt8+yXd5NDYhKAiEAv2fhHPpvAYrQXRb0\n/73rKJjJX/3Gm4fPJIsDmhS7k4w=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUYDRqtshvBSAESsm9sAcguwgbrzwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASA6611fD/sHCkFEz1GMCttXPGFYvhpIqHw7JUR\nsCK2JWQxJVhC5B+/zsqc7FrMny5PgXe0ViXjKcXQazCsKcW8o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUBSHAczJ3ynx+h5QUNQhvQNK5PAwwCgYIKoZIzj0EAwIDSAAwRQIh\nAKElVenq12vwZL7x9uuleKmJjwsWVHHD+icES97+DHqRAiB+t9igOOfHFzxHsDkT\n7WOw977T0n5ScmS60zjpB1n5NA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBnTCCAUOgAwIBAgIBADAKBggqhkjOPQQDAjAaMRgwFgYDVQQDDA94NTA5LWxp\nbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmF3S\nOJdtJQ81M96fHJiOV1d9k+CK5IMlBORC23B6X5yLb8NqwZ5wpjPUc66tg2HSF281\n2CNc3unSaYqe9qISdaN8MHowHQYDVR0OBBYEFMQNh6e3DlIpFhrSMxoexKCnh37m\nMB8GA1UdIwQYMBaAFBO/uDk18Q2TZQMiRgTMEhySH7nuMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiAEUSn8aZmiZJZYOoW9DzdGVGytNSdN4Ix45AIYf1PI7QIh\nAMuujWHQSGrM09xBOS+WFGvDwC8KmMa54wU5HEWa9F1k\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOs77WXT3PGxv2/X2HHGZ9e1iNX1q3HKA+JqGi/voE5NoAoGCCqGSM49\nAwEHoUQDQgAEmF3SOJdtJQ81M96fHJiOV1d9k+CK5IMlBORC23B6X5yLb8NqwZ5w\npjPUc66tg2HSF2812CNc3unSaYqe9qISdQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBnDCCAUOgAwIBAgIBADAKBggqhkjOPQQDAjAaMRgwFgYDVQQDDA94NTA5LWxp\nbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEn5j\nWdCJTuCcggyFfSyvIE5CEdn1lttc3tCuj/K4FoCcaM9xT4Wa//0tc7nMaxZQSlaz\nbVQ//L9mw00MjlrqUqN8MHowHQYDVR0OBBYEFJ2mBufUWDNZmWm6eHGsV0IeEI2Y\nMB8GA1UdIwQYMBaAFAUhwHMyd8p8foeUFDUIb0DSuTwMMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiA7q9vBuxHiy6SVPurU0p0G/sN31w6NtEwApYVuanGJkwIg\nA+pnJrl0F0HKINeRMbWG8eSWUaH8etcR6P4g3nk+MRk=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEA3M/2rgt3r6gdaIC3SCIqjURVPgtNvNZj6mTGkNCeyoAoGCCqGSM49\nAwEHoUQDQgAEEn5jWdCJTuCcggyFfSyvIE5CEdn1lttc3tCuj/K4FoCcaM9xT4Wa\n//0tc7nMaxZQSlazbVQ//L9mw00MjlrqUg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -1956,6 +2030,7 @@ "features": [ "pedantic-serial-number" ], + "importance": "undetermined", "description": "Produces an **invalid** chain due to an invalid EE cert. Verifies against a\nsaved copy of a certificate with a negative serial number from the\n`cryptography.io` test suite since the API won't allow us to create\ncertificates with negative serial numbers.\n\nThe EE cert contains a negative serial number, which is disallowed\nunder RFC 5280.", "validation_kind": "SERVER", "trusted_certs": [ @@ -1980,14 +2055,15 @@ "id": "rfc5280::ski::critical-ski", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert has an SKI extension marked as critical, which is disallowed\nunder RFC 5280 4.2.1.2.\n\n> Conforming CAs MUST mark this extension as non-critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkzCCATigAwIBAgIUGnF2plXhPXaIHu6Lek7Jad0B5C0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATHoOMxLg/j1SiGddsao6BZIThRxlsXxI1ACG6t\nkzNVCoQy95P3Vf4z/VufYhZn0FAp+VyMobZfLD4BWs6YH1Kbo1owWDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAg\nBgNVHQ4BAf8EFgQUg43KP5i8qp0t0VT839kmWtnwiaUwCgYIKoZIzj0EAwIDSQAw\nRgIhAN8Jos7zzm7oMws22UjU0mdZIvPU8ZpxfHTS/BSUTjk4AiEAk/zLABC8cy3E\nAIN91Z/Ty0YlIMiPVw9gEUlbFOTFRx0=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkjCCATigAwIBAgIUS10vltB+3VGZtyBKyiN6HrgeeYMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATJviApOzqqQ15eArlunawMdyHU/oHY+HH3w5ZU\n06mka2preNyZX0AsoRINKBhks6qu67koNdtz4Hp4SCONfRQWo1owWDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAg\nBgNVHQ4BAf8EFgQUSPlK1pxgVuaT9EBU0j5ypRx8GNYwCgYIKoZIzj0EAwIDSAAw\nRQIhANpalz1ZB+ZJIUn2gFhIEZtkn2lVpDmW9OhxZww9kcAOAiAIr13dXQ4SzFYs\nkoCfHZkcG6RlYx8nVlEqcrkSDDsxYg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUK8jISl6hPzhrdLkspdlO1Fngy+swCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMsAXHds8+slJyLFBi7kaYcb+IS4StdoRIBpQ1Dwihck\n7PJzjcJybNWHXR4iUyPITClVz/QMvD9vbseB/JKsEr+jfDB6MB0GA1UdDgQWBBTn\nd8C7yKKznFEsn67tt6shBhBsczAfBgNVHSMEGDAWgBQzeXw7Db1CLLCIkcdjyve+\n8Zv3OzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgSb07T8Gf8mvzclCsMj/N\nk13xKKvNE/BpBw6qABtdghACIQDBQZNuXmt0Qwga1cx92qKB8eaQcNvC6x/RBTlb\n5ZknwA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPHtXgWoN12Hs8Ib3Va1qVA80F4aw0usHO2BekBX+7qqoAoGCCqGSM49\nAwEHoUQDQgAEywBcd2zz6yUnIsUGLuRphxv4hLhK12hEgGlDUPCKFyTs8nONwnJs\n1YddHiJTI8hMKVXP9Ay8P29ux4H8kqwSvw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUcEgpORg5b2UgqfACWmr8nkPCj8UwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBRLfChIMq1OU+uaJLuZPzrWfiP+nWUXYJQCxJZkVNcq\nNylEzuwWWI1PGNjOKstm/bG0RKxJFB7w3OjYwHSORDajfDB6MB0GA1UdDgQWBBRC\n1mYw1fwuPeKLL8y4d+U11hCoQDAfBgNVHSMEGDAWgBSQDcx17WYRNXFBgsqmtAMC\nuiYywTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgFvIcTXcoYshfM3vfBDp/\n80/vgitN/YctCXkqVq+TyZICIEiBqMvaaBro4C7snyw0sNr9dMKq36jEo7aaJIKM\nfy5s\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBGe96QKlH+8hMGQNLQyDhZYvqr0DUQe6CXQ8tgENoixoAoGCCqGSM49\nAwEHoUQDQgAEFEt8KEgyrU5T65oku5k/OtZ+I/6dZRdglALElmRU1yo3KUTO7BZY\njU8Y2M4qy2b9sbRErEkUHvDc6NjAdI5ENg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2004,14 +2080,15 @@ "id": "rfc5280::ski::root-missing-ski", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert is missing the SKI extension, which is disallowed under\nRFC 5280 4.2.1.2.\n\n> To facilitate certification path construction, this extension MUST\n> appear in all conforming CA certificates, that is, all certificates\n> including the basic constraints extension (Section 4.2.1.9) where the\n> value of cA is TRUE.\n\nNote: for roots, the SKI should be the same value as the AKI, therefore,\nthis extension isn't strictly necessary, although required by the RFC.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBcTCCARagAwIBAgIUNGPxo/Ff2r0k50TZxmzfBfkMS/gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASh6xgAoyIAqapoREBCHrW6JkdVwhe7kIFPem4K\nNAfHPIqlrUyxDWTnhV16r1Jf/j6e3yMDQFcq4vvKYw6/KgH8ozgwNjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA3FF79s+nKIB5WbHMmn33LvgCoMEKMN8OIUCkCg9D\npYwCIQCNrVSYa+VRC+xDIoDXMKKbe5Na6iPPPrWX4GvFvhFDCQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBcTCCARagAwIBAgIUR1gHa9RdvEhMenDocGygOeIKYm4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ7fUJLMxCX+RuiSb48GBvGuyAaGD/J5N+sqXO4\nOHbnJeea222UaBNZpM3OeGd04lGiDGqrQsyJGADmiNyOiQNTozgwNjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA8/f/OSRsm0cw1OGoRIm67xZ7Hnafgx5SErM7BosT\nuVkCIQC8Sa6i8I717aB69E/x0CLbK+kqPW/sRj8iqplAde/cug==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUXa1AChOfTUUGOis6ekKviNrGaTIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABP9m0Z4hLSUh779owoOHE5wBBZsxQfOTfD7b49/UUnJH\npHx3axvkCzre8+DgcPf1GEFbcln1mTh9P968hosu5vqjfDB6MB0GA1UdDgQWBBQz\nSZTgZYhdqxpCUnoA5SNFOc3r5TAfBgNVHSMEGDAWgBTt5D0D86z7dJaetlKPcUDA\nSnypbTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhANl03/pZbvL0XhuL0diO\n6iXf+OpvWVPJtag0PVXdQSThAiBaJ/MSwa4jHV7WAXtevTV1K2btQpMcz8ul2YT0\nWCzAEw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIOZBpmqRTGUrwRDWLHs4zEbi/6gCku0uNkEFKLN53pIoAoGCCqGSM49\nAwEHoUQDQgAE/2bRniEtJSHvv2jCg4cTnAEFmzFB85N8Ptvj39RSckekfHdrG+QL\nOt7z4OBw9/UYQVtyWfWZOH0/3ryGiy7m+g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUFhShwIqDyPNbduZDioxCiPu/O04wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNEwPWmXER/D/W/N5oddXb76WRmBfVT+9mU+oqJJfqVg\nSc+ZgMrs3ubTnUc5w20ytAnPpylOQr/i83F1p8riUGCjfDB6MB0GA1UdDgQWBBRM\nZF7mbWmTSW6niv/XBAI9s1/NuTAfBgNVHSMEGDAWgBRrKZGqFfKmCZbWiXWqvzgy\ngtCrTDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhALkgCwaOiM/FJLEZJRxH\nx0cdyZKc/kXXynd71kUtwY1nAiAdMC5nZEWivrONxRRMMVch7fq4kpLsYjcz+Yrc\nI2Dm/g==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFkRgm8wjMVKh835936PO3CjLcYolb9jfkoF+uibx79UoAoGCCqGSM49\nAwEHoUQDQgAE0TA9aZcRH8P9b83mh11dvvpZGYF9VP72ZT6iokl+pWBJz5mAyuze\n5tOdRznDbTK0Cc+nKU5Cv+LzcXWnyuJQYA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2028,16 +2105,17 @@ "id": "rfc5280::ski::intermediate-missing-ski", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA -> EE\n```\n\nThe intermediate cert is missing the SKI extension, which is disallowed under\nRFC 5280 4.2.1.2.\n\n> To facilitate certification path construction, this extension MUST\n> appear in all conforming CA certificates, that is, all certificates\n> including the basic constraints extension (Section 4.2.1.9) where the\n> value of cA is TRUE.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUVVz09gqfo26j8zbcMojWDh6RcOgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATJBV+fTghHE9pzdipGnr+OsMcEfMMLFc8hlIJU\nHqHq1LWPfzU9rh9LQrYZRxc5HmTvxtJsNN5Ja6HuZMWzVXv5o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUvdCTjHtYOzF7abQFOhymz7bQVGYwCgYIKoZIzj0EAwIDSAAwRQIh\nAI//188N0opQkYj43boKJhdIzWFzk9icSPasR1PVh4oIAiBiDChdr0ruu7g4EOY4\nXvRfuwiqzUsBoeS2dKU2mza3GA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIURnhAHlFImN4XzVAWXgGK5qGp47YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASPgWYUAdg/Ftz8kfnADp8i/UECw3Wkc29a5uME\njjO1OCQ4IDvBbapG+a/3Zm7+fMbnDRB+YwOrkD8+1bh+wT19o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUcQU6Rhm6PEPTlyS6x3PwV/2FeRQwCgYIKoZIzj0EAwIDSQAwRgIh\nAKzCu2apBYrbOpVXJOJQMJf6LbB9gFLhqJ0HMLgESvLMAiEA17Pne3M/5/lnd7Hs\n7FggjthJfKH2cKZflSnm293PJAM=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB4DCCAYegAwIBAgIUUhfoD/vCa1mjvdeoLeutUUh+ymgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0ODczMzcyMjMxOTk2NDE5NTg4OTY4\nNDE4NTY2NzM2MzU0Njc5NDc1NjM2NDMxMTIxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABCSrMloukFXgqV7MAVF6AHAvxS5UAWI0PCXTd3xrtphoxgFw/zm+z6HBKu+V\n5geGsZ68G8b8Zg/4J43keiA1FpWjWTBXMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFL3Qk4x7\nWDsxe2m0BTocps+20FRmMAoGCCqGSM49BAMCA0cAMEQCIAVPhxQckBnO8RVsFnZ+\nTbCJt9or1HB1xZf6TLZ0uGMdAiBiSDj5fMr0kuwXiSU8Fae+j6pFw6mQbqeEKN5A\njONYuA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB4TCCAYegAwIBAgIUX7FBwXx3POrJaPU+wUiiqmikSAwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0MDIzMTEwMjg4ODQzMDc0OTUzMTE5\nMTQ1MzUyMDUyNjU1NjI3NzEwODcwMjUwNzgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABHckdrZLX0NJodeK+SAm4/BDOHBY+OimKOO57kovraNcd0WJr8pGnQRj8CQB\nBAb4HmAnxwwe2edow/CLdjvpNXCjWTBXMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFHEFOkYZ\nujxD05ckusdz8Ff9hXkUMAoGCCqGSM49BAMCA0gAMEUCICU+Yp3m3Lt9tOCNcNEh\nDw9XB3OArOj5dzDZYC566w9CAiEAv8bdqK81+OXKnjFUdTCwUPzWEbDPOTrzBxcV\nweH9I08=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUMm24THrc616B+MS9eZrE27q8fdQwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDg3MzM3MjIzMTk5NjQxOTU4ODk2ODQxODU2NjczNjM1NDY3\nOTQ3NTYzNjQzMTEyMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nNyPuLaJDES7CCXQ3X25b9YyoOFUO2YATBL+/q35IW2X+rIqlPwThoPxxO9OWTLHP\nr9xP9i5OWKNDTRycKRdmXKN8MHowHQYDVR0OBBYEFH8YrAhHRztj679G7t/bGfvn\neknpMB8GA1UdIwQYMBaAFFA4wB5PyEHf+w6Pc1OSud8jQyjMMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiBaIqHXrU2TC0QYA75LT4fJjq2KPhe99UVDicpYcf+e\nCgIgYGpuzTApwXDvQjmc3oJ8nuRLhcRMO4gk/EM5/maOvdk=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEID5KRKoTcyH2kuFbKL17wp7kb8lJVVUnRlXMoN99VY5coAoGCCqGSM49\nAwEHoUQDQgAENyPuLaJDES7CCXQ3X25b9YyoOFUO2YATBL+/q35IW2X+rIqlPwTh\noPxxO9OWTLHPr9xP9i5OWKNDTRycKRdmXA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUFbNlgXqjmBLL+IC2BRECs2xA4eUwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNDAyMzExMDI4ODg0MzA3NDk1MzExOTE0NTM1MjA1MjY1NTYy\nNzcxMDg3MDI1MDc4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nYyJq5ZoSll7r1LiCngvLLjqMRSiN/cV4/VOUhP/Eb59ZFgxXFJ6xXh2IFJamFeGf\ncZ07maBxB+fvJr5C/AyuXKN8MHowHQYDVR0OBBYEFGfTkwIZHuUKr59RV7EIB0yD\nmmImMB8GA1UdIwQYMBaAFMMDI1Jb9eQ8bd8rx5C2Lt4io9toMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEA2zSRq0CfJgxo28qp9tX5tFNrS2rhHNviZj/n8MV2\na9sCIBaEQHPLP/tmaD6AOBOLWV/VHkaFpz42KLQTGcUbdqj0\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKAPyOkBBt/2tpY95QHwStGT4/WtfJp8NOWUDeoGI1tLoAoGCCqGSM49\nAwEHoUQDQgAEYyJq5ZoSll7r1LiCngvLLjqMRSiN/cV4/VOUhP/Eb59ZFgxXFJ6x\nXh2IFJamFeGfcZ07maBxB+fvJr5C/AyuXA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2054,16 +2132,17 @@ "id": "rfc5280::validity::expired-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> EE\n```\n\nAll three certificates are well-formed, but the root\n(and only the root) is expired at the validation time.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATOgAwIBAgIUFwuLHpVd/oiI+RiPiThmitTUaU0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTIw\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAEKAgmPJ+3cDry6lB8o9YWlG4ATw6ZQaL53yA8SBfE\nsBmaAsVS9GO4QKqy+3PC9OCBsAYKtnjqoGeQcL8DxKspd6NXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFJk2DIHZ5leuOOzPtUSxT5tH3l1jMAoGCCqGSM49BAMCA0kAMEYCIQD3\nMUQqCKAK5ap+uCTbsDHlW8Sjj0ynZhVs3XF1NEA0BAIhANBQ0S4ROyXZmjScYVpn\nY8lpzzP9bt+90wG1PrkGFgGP\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjTCCATOgAwIBAgIUAbxYSUfWE+GAcM0YAkX58oAhLaAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTIw\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAE3oYeVeSyicIvPoQl5+k6dH9UK+SEIzlE6uHtuDZ3\ngyMRVHkjf1V8AmbDpBIQpI6jYOrZtp5uEhVEYyKdS843JKNXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFJfI0T18maETxkFfu8VCUc0KOZNIMAoGCCqGSM49BAMCA0gAMEUCIQCP\nFi2D4xX0ha/9zIU8r02hNLYGqfpA48SOzKNY4QLvdwIgGeqJkPAo5jS5QMCjwSvZ\n72jAdMzbHqvpXfpmCslcJLA=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUJZdpRniYsMfpAvFuJuZvn0OkS3owCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowajE5MDcGA1UECwwwMTMxNTY0MjE0OTQwODkwNjg1NzQzNjEz\nNzIwMDU5MzM0NjcyMTMyNDMxMTc4MDYxMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARePxsnLGj7hQKt7j08TrVo1pHtPKY7IUxNG3dH+rnvR2xY7TL7YITo1Uqk3g1v\naJrh8HqZDSd82qeSdRKLktL7o3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBSZNgyB2eZX\nrjjsz7VEsU+bR95dYzAdBgNVHQ4EFgQUnQncXHdxn0Fmun9neqqjEsw8iTYwCgYI\nKoZIzj0EAwIDSAAwRQIhAN4A7TPUr7GA0ER0gNabyfD42coM9SLTiDcjkME6sAdM\nAiAsiwL0NslBpgCzbyqlIHCRRRvfjFNuG8+uu6IVNO1rZQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaKgAwIBAgIUOb6d0okDTFMeD8Guk5nAW1Lcx98wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowaDE3MDUGA1UECwwuOTkwOTIyMTY4NTQwOTExOTI2NTM3OTU1\nOTI5OTM5MTk0NDAzMzU1NjMxMTQ1NjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRl\ncm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\niUQsp1eqlpSZhlhGQSUamSd7MOqP70oYgIaqR3UweeD50aZbfbGRFniDTCS57uXx\nztcQ/Pkx1CSGNec5hJn9hKN4MHYwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMC\nAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUl8jRPXyZoRPG\nQV+7xUJRzQo5k0gwHQYDVR0OBBYEFHw8aV0+G9uBzqKCT0x4Ipv8drSnMAoGCCqG\nSM49BAMCA0gAMEUCIBcTYz1oa0s6uF492HF84/njeNuqJ47V8lelcOpmtmNcAiEA\n8QzPCfiJZjGSJ0lJObKV0lpX9+14vslWuO8dALbz0fA=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUW54X9Kxm43Ihu+pPgfxvzSrsAowwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTMxNTY0MjE0OTQwODkwNjg1NzQzNjEzNzIwMDU5MzM0Njcy\nMTMyNDMxMTc4MDYxMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwHhcNMTgwMTAxMDAwMDAwWhcNMjMwMTAxMDAwMDAwWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABG94\nUsdl4wsSPiO7KH46ZkaCn0oissC1XuUiPD7FXtAHngcGVXXDCMu68thUpYZxHChy\n28aCG/bpw0BkEZAVb9SjfDB6MB0GA1UdDgQWBBQtLQHtVnq8jE1o0d2cY/jdT3oE\nWjAfBgNVHSMEGDAWgBSdCdxcd3GfQWa6f2d6qqMSzDyJNjALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSAAwRQIgF9tJQsVXlAY+ynilRjUzL1mJC/HBErecNLmMIKn2yVUC\nIQDBOZgSbbGiX7tWR2pTZJgtEDk3sOds8pKSPpOZk17mQQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAfguSrdvm0+R9isrqdcds14TmOy+WiVMdBtTygLe5WwoAoGCCqGSM49\nAwEHoUQDQgAEb3hSx2XjCxI+I7sofjpmRoKfSiKywLVe5SI8PsVe0AeeBwZVdcMI\ny7ry2FSlhnEcKHLbxoIb9unDQGQRkBVv1A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaKgAwIBAgIUFsb6q40O0xxr47/jBVfvIz0CgJcwCgYIKoZIzj0EAwIw\naDE3MDUGA1UECwwuOTkwOTIyMTY4NTQwOTExOTI2NTM3OTU1OTI5OTM5MTk0NDAz\nMzU1NjMxMTQ1NjEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMB4XDTE4MDEwMTAwMDAwMFoXDTIzMDEwMTAwMDAwMFowFjEUMBIG\nA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQokbFg\nuDgtvfST2HXoI9wWq664X8Jq8uNyTWqv1KktEf1NvkdmR/Gd8Y1CcCDAGLF1Tq30\n1lQsjMup8spDjq+Po3wwejAdBgNVHQ4EFgQU5PQSjITYQKcDjXo+I9ZsKgzdkRYw\nHwYDVR0jBBgwFoAUfDxpXT4b24HOooJPTHgim/x2tKcwCwYDVR0PBAQDAgeAMBMG\nA1UdJQQMMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqG\nSM49BAMCA0kAMEYCIQD7FOqolI8o456Zjon2Q6DIQI45AWjgbobrBy3Wygy/WQIh\nAMYtRfZjactNH145hb3hXVeO8LqjGg5nk9jMjeyDkQbQ\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAgaS2FSpa0F0yYxkhe4q+jDF1gIAmNd3jAO5ujIDjTgoAoGCCqGSM49\nAwEHoUQDQgAEKJGxYLg4Lb30k9h16CPcFquuuF/CavLjck1qr9SpLRH9Tb5HZkfx\nnfGNQnAgwBixdU6t9NZULIzLqfLKQ46vjw==\n-----END EC PRIVATE KEY-----\n", "validation_time": "2022-01-01T00:00:00+00:00", "signature_algorithms": [], "key_usage": [], @@ -2080,16 +2159,17 @@ "id": "rfc5280::validity::expired-intermediate", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> EE\n```\n\nAll three certificates are well-formed, but the intermediate\n(and only the intermediate) is expired at the validation time.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjTCCATOgAwIBAgIUZdng7hZIwjgCBPVHuO26Xg4HJF4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAEYWdWkmgvhCR+MoyBXLmOHTq1sVXdJTVTcJ9pOHFQ\nOCOzGNxBQUWXsCK1BCFVf4P/xsvxVg8Aq2KHoi538cZedKNXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFLQRVghkR5Cv3ZM1BW2Uimx4rnjKMAoGCCqGSM49BAMCA0gAMEUCIHDw\ng+V7BO91ntjX2j9rDLOoF9srgtUS04EpJBTsMLnsAiEAwYUMw+ex+DspxYHhCahn\nOBAryuN9gZirt/7oeinLVMo=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjDCCATOgAwIBAgIUMnXUnWXjzM5h1EfSn2YcsF9MBRUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAEZL9llHKGnrvwz0IjvFI4AZSQwCohBEaswfWvfENA\nzkdYvyjL70av9E0X4jEOaXc/jURKY3eWk9Jx/DZJ4r0HnqNXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFMKDcgt0DxUEQrkHKxO9LqITTvFKMAoGCCqGSM49BAMCA0cAMEQCIHRr\nddftroVWAYgLti2KLMyEkOmVQs4W5KXerr2AthcsAiBJHgRs2wLpVs5aW3J/9eUL\nmhYvJycdT4r0l21mNlIQPg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUNWp4DGrna4d6s9yMa8iI9r863SgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTIw\nMDEwMTAwMDAwMFowajE5MDcGA1UECwwwNTgxNDY2OTIzNzMwMTYxNzc5MTUzODEx\nNzYwNjAxMTYyNzYwNDI1ODQ5NjkzMjc4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAARlMalsq/x69FuehVECo0NlQQD/jfQTh66sQ3ypBJVrcpCsmNmrKrTAC9GGFKch\n7NDCfXyng9Bxgm6I4nVytfiEo3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBS0EVYIZEeQ\nr92TNQVtlIpseK54yjAdBgNVHQ4EFgQUUoy/STAGe1/bbhSDJnJk47H8aPowCgYI\nKoZIzj0EAwIDSAAwRQIgS6NQAD3/boQ7VI67yC3kyNHmygcnzcLh4EavH/Oh0DEC\nIQCG7mZSCvCAuydvcC2ecwdmhSetdT1LT6IUQ0hUEMkFWw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUfkOnxp9ZFV1rYqc+pMKDpnEZqukwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTIw\nMDEwMTAwMDAwMFowajE5MDcGA1UECwwwMjg4MDc3MjQ3MDkzODA0MDMxODAyODQ1\nOTMwMjU4MjM4OTY2MjY3NzQ1NDA0MTgxMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAATSbvqAD6UujUiLyYRRKs10lBW3ytfUpXt4ie8nHMCgF0NeDlfujuVC7SwW9sQ2\nEsqdjSxDE/teMwsE2c8ixhvDo3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBTCg3ILdA8V\nBEK5BysTvS6iE07xSjAdBgNVHQ4EFgQU6WCil3PRqr6SvBiXagmCtXLNH7wwCgYI\nKoZIzj0EAwIDSAAwRQIhAOt0sXr+eIYt5UVrtQMEiJX3UO7y7cx8SpPrx5YJ+21U\nAiBW3gf6H+7G/Iv0BHRvXDMejdIuj5dy+5ZT9OXJpRF8fQ==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUNLD4HzBck01LnTMw5hSzQMFcvEAwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTgxNDY2OTIzNzMwMTYxNzc5MTUzODExNzYwNjAxMTYyNzYw\nNDI1ODQ5NjkzMjc4MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwHhcNMTgwMTAxMDAwMDAwWhcNMjMwMTAxMDAwMDAwWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABPMt\nSCjxszoQpDuXvvrB+pHPrHLiVZPagx2Q1n09NDfAv1gK84deU3n4bPQ2jZ7rJD5i\n//+UaSGMVcV0l9Unc7+jfDB6MB0GA1UdDgQWBBQa7Qb66vKX9ETvujtInf8eNwXX\neDAfBgNVHSMEGDAWgBRSjL9JMAZ7X9tuFIMmcmTjsfxo+jALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSAAwRQIhALiVnJdVov/vKMmib6QLiBjL/LnXKv1Rx65IOSxQ3+XR\nAiAdb8F9LOzSssrumxXOWU0Dj04EFvTXdSd/8TTGrNOq+w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIP9SXaKlgP8Hfvvtgc9o8yVUdZYGvs9uC/Tb6TeYp+kCoAoGCCqGSM49\nAwEHoUQDQgAE8y1IKPGzOhCkO5e++sH6kc+scuJVk9qDHZDWfT00N8C/WArzh15T\nefhs9DaNnuskPmL//5RpIYxVxXSX1Sdzvw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUNQOvKm2+uwHZC4O8dJIN4Y+crsowCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjg4MDc3MjQ3MDkzODA0MDMxODAyODQ1OTMwMjU4MjM4OTY2\nMjY3NzQ1NDA0MTgxMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwHhcNMTgwMTAxMDAwMDAwWhcNMjMwMTAxMDAwMDAwWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABFoE\ntM2usjw/mGAaXp/QQr/qoZPFrl40Jgi7dJW71pN3CoaKITtkzISDA0cG9kuliCCZ\ncDV4/sCt8wbbJRj54ZKjfDB6MB0GA1UdDgQWBBTerKNxiEe4nSe/GycW+4BTs85l\nujAfBgNVHSMEGDAWgBTpYKKXc9GqvpK8GJdqCYK1cs0fvDALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSAAwRQIgfncrqWxobVp26zmX1YKR6jATvFW+KRM4ZCSDeO+ZY10C\nIQD4YTONhZAk5Tow5jHhQVk9nEmtY7OfgnXhoFvY7QMF0A==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOAsJdLHd7KBZ93yM9NHVdcg8UI57EOeHDK/o2OUzYyToAoGCCqGSM49\nAwEHoUQDQgAEWgS0za6yPD+YYBpen9BCv+qhk8WuXjQmCLt0lbvWk3cKhoohO2TM\nhIMDRwb2S6WIIJlwNXj+wK3zBtslGPnhkg==\n-----END EC PRIVATE KEY-----\n", "validation_time": "2022-01-01T00:00:00+00:00", "signature_algorithms": [], "key_usage": [], @@ -2106,16 +2186,17 @@ "id": "rfc5280::validity::expired-leaf", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> EE\n```\n\nAll three certificates are well-formed, but the leaf\n(and only the leaf) is expired at the validation time.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjTCCATOgAwIBAgIUZ6TbnhQkpx8RspNHrgGr86IGnOYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAE0FgRmbZbe7amiqVagsL2k8okqdLDT5xTHlb7PvS9\nhSUv+YKYpiMvIAwhty2+SJi4keggcxY+iGn+47AdaQbKQaNXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFHJIdFU6s4g6x5vjG8G97giZ4lGSMAoGCCqGSM49BAMCA0gAMEUCIQD4\nnEW/7fH7uv5o2xQ/iQCVaqoE4TSWgwlWqrmXy4VmcwIgQl5ntRYuEgjMPFtc0zS3\nEtpePTi2rMuDXUpwLUT4Pxo=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjTCCATOgAwIBAgIUWSoeoH+YJIOjgdeiu85Y6zZu7cYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MFkwEwYHKoZI\nzj0CAQYIKoZIzj0DAQcDQgAERFkUCdH6qRi+YTzEF7WtKMJbgtScUmUQ6bVx8U0U\nabs/p+j3bb81SgkJzAfYMOx3iF0c/omlWtwVzPQPIsleKqNXMFUwDwYDVR0TAQH/\nBAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYD\nVR0OBBYEFOtEzrnCVAbplZT62RElw2PUc8GrMAoGCCqGSM49BAMCA0gAMEUCIQDs\nQtvb8gP4WNaUKvnnN/JJK/abxJy90N7pLH4TutkkGgIgDJrTyzqCf+8nBQZxhVYb\nkaZt915Ddv9Bo13wfXJn7ZQ=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaSgAwIBAgIUMqdyosttrW461FiQulxKcGqPqtMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowajE5MDcGA1UECwwwNTkxNzAyNTAyOTg5NDIyMzk0NDIwMDc4\nMDYzNTUzOTI4NDMzMTQ2NDQ2Mzg4NDU0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAAST++fvZD4UzzSBak+tXp5nLnj88AbZ+9/Yja1YjQNefvs535e/FblJuIWgxrpG\n1VPv3L7wpLgD2iuhgShA/yn7o3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBRySHRVOrOI\nOseb4xvBve4ImeJRkjAdBgNVHQ4EFgQU41dyjrYnK6JDVfQRHhURUED2rfcwCgYI\nKoZIzj0EAwIDSAAwRQIgOzRL+elEOmSywjQwmxZSCfhl7cqdbJMso/DFDF6G9joC\nIQCfIeH++auFfxRE2KY7UlNJzyEdwMw4a9I7UcuZLwsLPQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaSgAwIBAgIUKQI/c7SXFpqzVEpu3kaIlZRX5T0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MB4XDTE2MDEwMTAwMDAwMFoXDTI2\nMDEwMTAwMDAwMFowajE5MDcGA1UECwwwNTA5MDM5NDc3ODg1MDE4NTg5MTY5NjY3\nNTE0OTc3Nzg2MTI1NzI5MTI5MjI5NzY2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWlu\ndGVybWVkaWF0ZS1wYXRobGVuLU5vbmUwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC\nAATSGpSmv3Pm0J151gjH3nq7WizAi4BJWdvYNhJBxAy3tsGRqwNwS/++B0wzItUO\ne/juFlVZxhXUcNNRcRtEjvGpo3gwdjAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQE\nAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBTrRM65wlQG\n6ZWU+tkRJcNj1HPBqzAdBgNVHQ4EFgQU+fkL1HP39Xx+utJfCY8dUJJNScEwCgYI\nKoZIzj0EAwIDRwAwRAIgaAveK+yDOX+iI3TbGCTxaPtLxmznb1NPmHmDlmQYWHsC\nIB9amBiOLXGomKOo747zX1COJ4DyhMuPSHtL4HoTnJr5\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaSgAwIBAgIUbAy2dH5paRHaIVvJdSHWFVCHgokwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTkxNzAyNTAyOTg5NDIyMzk0NDIwMDc4MDYzNTUzOTI4NDMz\nMTQ2NDQ2Mzg4NDU0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwHhcNMTgwMTAxMDAwMDAwWhcNMjEwMTAxMDAwMDAwWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABDfX\nMsZ9CV/cOPKfnlezsVel34Xdlou4ZHjBZoV0LCsv0SeVZ1Up2tHlgGScLtcoup+B\ngEaw8GKDLeJv1c4DZ+ujfDB6MB0GA1UdDgQWBBSlkAsPGzMzGprSSP9f7NCiOpXl\nBjAfBgNVHSMEGDAWgBTjV3KOticrokNV9BEeFRFQQPat9zALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRgAwQwIfJWO1v+RanpUaS7SUHGz71M631bWDy4hIqdL149LofwIg\nTT6OE50Zjpa7kefgAkB+QDiVk81QRYl1XeJ1LF4qcjE=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEID0x+JyLMJhxmien6qkaqy9KKUmuUwbKS+zOI3CSuJzEoAoGCCqGSM49\nAwEHoUQDQgAEN9cyxn0JX9w48p+eV7OxV6Xfhd2Wi7hkeMFmhXQsKy/RJ5VnVSna\n0eWAZJwu1yi6n4GARrDwYoMt4m/VzgNn6w==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaSgAwIBAgIURO5+cwIsU/eDPMmYDwro6LQzh40wCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTA5MDM5NDc3ODg1MDE4NTg5MTY5NjY3NTE0OTc3Nzg2MTI1\nNzI5MTI5MjI5NzY2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwHhcNMTgwMTAxMDAwMDAwWhcNMjEwMTAxMDAwMDAwWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABN8Z\nE5RuS4WGfDeMi9YipUCt37Ckobo5M8XJmxtdN3v2SpqaaRUmjUl1lqOeo0Fnep9T\n1aM7a6JDr6Ker5lKxKijfDB6MB0GA1UdDgQWBBSYo7WhABlAwLgnilV0yrIJpIlp\n7DAfBgNVHSMEGDAWgBT5+QvUc/f1fH660l8Jjx1Qkk1JwTALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDSQAwRgIhAP+eFSHboqx+pNA52FwOAodaYVpO/9Vpnp0wrXyGs3RU\nAiEAuSrzx/JuJuMfEpJlkISvWavnXRTnhJalvEZlVI1LBOw=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIA3ro7bvPyj3/vysm8ouSqNguQBcDFuatpWkGUFDEvTDoAoGCCqGSM49\nAwEHoUQDQgAE3xkTlG5LhYZ8N4yL1iKlQK3fsKShujkzxcmbG103e/ZKmpppFSaN\nSXWWo56jQWd6n1PVoztrokOvop6vmUrEqA==\n-----END EC PRIVATE KEY-----\n", "validation_time": "2022-01-01T00:00:00+00:00", "signature_algorithms": [], "key_usage": [], @@ -2132,14 +2213,15 @@ "id": "rfc5280::ee-empty-issuer", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is invalid solely because of the EE cert's construction:\nit has an empty issuer name, which isn't allowed under the RFC 5280 profile.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBcTCCARigAwIBAgIUDthqvb15pN8ZFCET0MFpNdu4XpYwCgYIKoZIzj0EAwIw\nADAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFzEVMBMGA1UEAwwM\nZW1wdHktaXNzdWVyMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1upDsDjVmhWs\n7MAhAYYK6Anb0UIn8sVbCpXFdSKp+rZYUUJJPqY37JWdQqectaIdjowwz9kl2mgu\nr9xkyWKWbqNXMFUwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFODEx1974Cz4j491/NSt4a3fhYXl\nMAoGCCqGSM49BAMCA0cAMEQCIGqI1zt8vGklaQLsjg/yAjNyYMtvG+AHqNdvqV0S\n1wSSAiAo83mytRNOTuBySOSSmOVU2HPJfrnZoEyo04OKxOXRtQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBcTCCARigAwIBAgIUEUxSe4Nnkas9KahVQiNKVxUrAcgwCgYIKoZIzj0EAwIw\nADAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFzEVMBMGA1UEAwwM\nZW1wdHktaXNzdWVyMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEw+EsPkwfAXV0\nFDnAU3RdFAfTzLHFYCBLfb5SV+Up8M3zET12IvWsHO+Il58zote7C57sYcDrvvaJ\nbDIZ1jhBvqNXMFUwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFGLthTLrS2xfU3LjPbXG2pFHuhMX\nMAoGCCqGSM49BAMCA0cAMEQCIBnShbEyCMK3k30443kn7rLpK26n1aBgEnkVkh+E\n/sTCAiAxmZQf1ZGbGHvH9CqKSMG76qBNKxHs63VLisYOONHrAg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrTCCAVOgAwIBAgIUJh4tWxS7uyvnEa/0FenPjnbniZEwCgYIKoZIzj0EAwIw\nFzEVMBMGA1UEAwwMZW1wdHktaXNzdWVyMCAXDTcwMDEwMTAwMDAwMVoYDzI5Njkw\nNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEG\nCCqGSM49AwEHA0IABAERLPwmfC0jjkJ/DEs2K5K+H//YR40lCWhNYdjvMd+TUUHn\n5xtHmUjwdhML9nvqXsK890y23Q/f+O/tpRu3RcOjfDB6MB0GA1UdDgQWBBRGktFv\n9VJMufucX7POol+KKuHrbTAfBgNVHSMEGDAWgBTgxMdfe+As+I+PdfzUreGt34WF\n5TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYIL\nZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhANEj/5g5uq1josOVjk9MxDg9\nOoG+aY/I1AQlIf5w9ASeAiB8CA6+3yQ5S35KXN2wv1FyawRq9aCXVTQdzXzWdtFj\ncQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKXa0uBt/XfaGhrQhHMyMjO6OvpCG/F0rJFnBpX13W8woAoGCCqGSM49\nAwEHoUQDQgAEAREs/CZ8LSOOQn8MSzYrkr4f/9hHjSUJaE1h2O8x35NRQefnG0eZ\nSPB2Ewv2e+pewrz3TLbdD9/47+2lG7dFww==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrDCCAVKgAwIBAgITRkWSlZeu/i/NOpb935M8HTlzjjAKBggqhkjOPQQDAjAX\nMRUwEwYDVQQDDAxlbXB0eS1pc3N1ZXIwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1\nMDMwMDAwMDFaMBYxFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAElehB/wvHdQDw5/j3uPGuBkrbTi1UsmMNZQEu4G9sVfoG7f1F\nhhpD+Z5ABsI35fIvTrWmP7QvJop9Y5HLuBAVd6N8MHowHQYDVR0OBBYEFPXzmGIH\nk5Qo/ix0ex3ISVa1HYVmMB8GA1UdIwQYMBaAFGLthTLrS2xfU3LjPbXG2pFHuhMX\nMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtl\neGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiAhtIB7AyqlP0f5im/i/4AxyWwP\noMDd2b9FpTJrEf/cswIhAPBTwiY1ZqDpiktkuLBeC6LjBGaCANtr4M90yNzxHp+i\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDJMZaNGRQFhE/YtCiHRWkifzwLaj0BoeMN/Ul3oL5cboAoGCCqGSM49\nAwEHoUQDQgAElehB/wvHdQDw5/j3uPGuBkrbTi1UsmMNZQEu4G9sVfoG7f1FhhpD\n+Z5ABsI35fIvTrWmP7QvJop9Y5HLuBAVdw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2156,14 +2238,15 @@ "id": "rfc5280::ca-empty-subject", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces an **invalid** chain due to an invalid CA cert.\n\nThe CA cert contains an empty Subject `SEQUENCE`, which is disallowed\nunder RFC 5280:\n\n> If the subject is a CA [...], then the subject field MUST be populated\n> with a non-empty distinguished name", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBdTCCARugAwIBAgIUDr7sM85A37+MQSa4avsiv572BaIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEDyVfrb+R\nBk7xkKBnGClQyoAwu0yy8eXFyTQTudmu8UtQcq+7FXkBRybw21t6oAgPYfmaMLBn\n5pdOpNqnwWDNY6NXMFUwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYD\nVR0RBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFCo9NAOWLWL8PA/hOibFSq2u\n4XPfMAoGCCqGSM49BAMCA0gAMEUCIHkDx+bnU5oRzHPBSRQvX0/gIfO48i0ERXXU\npORT2RwUAiEAneIESQXjr8eMgY3MUKCWM14g8p5UQxMcKiB+UKW6Kzg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBdTCCARugAwIBAgIUfN6jven2yIcQjh/ANMnHP2XnaFUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEUvokKR54\nN1bu7Da/VTzl8BYMpekRYzwqJHMPW3ElCuUYhA1VLqSaJk9+DEUAGpaCp3a2j3hl\n5kip0iVZDM+tx6NXMFUwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8EBAMCAgQwFgYD\nVR0RBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFLWZH1eG/9fTqWWoAxgOoS40\nNgNcMAoGCCqGSM49BAMCA0gAMEUCIQCgN2xBgC6xnIUJnQghcgfUCum+LY1Yiuy0\nWPlWnYpvtAIgAN4ewazxYiVbwEpHXz/+F78/fgj/Y2JDM0T9kcBK7B8=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBljCCATygAwIBAgIUDUAO8udFQGUCD3ZWiV0Rkpn/hxIwCgYIKoZIzj0EAwIw\nADAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwL\nZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARde0lsQb9N/75A\nVTUDrWh8T2HOiRWEiPFYrqX2TCP60l3SoR8LD8pEI+pVb9kZj2AxsnGo9qKabtto\n9uFgoOPLo3wwejAdBgNVHQ4EFgQU5dRh7+XnxH41w8VMRFaWrjhPWoQwHwYDVR0j\nBBgwFoAUKj00A5YtYvw8D+E6JsVKra7hc98wCwYDVR0PBAQDAgeAMBMGA1UdJQQM\nMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMC\nA0gAMEUCIDssBT7kVu0wQkaSVPjtTkd6poe8UJxkgySmToZoqPayAiEAvh747/EO\nw/FCI3ZPB8KdO/uXDJcg4PUisoj65vSW0CI=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINubwlnSBUQCb0j5p7h4Cc9ZTBmHxgZTYs2Zf/kRLJRAoAoGCCqGSM49\nAwEHoUQDQgAEXXtJbEG/Tf++QFU1A61ofE9hzokVhIjxWK6l9kwj+tJd0qEfCw/K\nRCPqVW/ZGY9gMbJxqPaimm7baPbhYKDjyw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBljCCATygAwIBAgIUS/hXz0fjQYKKJeMLdM2U5pOKoc0wCgYIKoZIzj0EAwIw\nADAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwL\nZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAS1VhPdn7wyEerk\nrsKCPNBtm0wYNn8hp0cUe6T+zBF7aigf2mnSEEgwC+v6A0JdrFGYeW5WiRISUTQ+\nGM/mXStVo3wwejAdBgNVHQ4EFgQUbhlE6cx2r/8swG/FxIHfe44uzvEwHwYDVR0j\nBBgwFoAUtZkfV4b/19OpZagDGA6hLjQ2A1wwCwYDVR0PBAQDAgeAMBMGA1UdJQQM\nMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMC\nA0gAMEUCICx4ASmWEwK5WTankK/rd5njZxNiUwusmdelBvrSz1NQAiEA0Xybsq0z\nH3EpZ8BvwLXwjpkyyFzmyuzcBHgqK/HRSWU=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHOneVZmsDiqc7a7ONZZrfQBA8fJSKYNu23MP35qvs/goAoGCCqGSM49\nAwEHoUQDQgAEtVYT3Z+8MhHq5K7CgjzQbZtMGDZ/IadHFHuk/swRe2ooH9pp0hBI\nMAvr+gNCXaxRmHluVokSElE0PhjP5l0rVQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2180,14 +2263,15 @@ "id": "rfc5280::unknown-critical-extension-ee", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert has an extension, 1.3.6.1.4.1.55738.666.1, that no implementation\nshould recognize. As this unrecognized extension is marked as critical, a\nchain should not be built with this EE.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUKoU1iKqNXdS6ombsK4Utj1Kp3k8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASc+GjrI/FpRfJ+M9ikkijMrpMyiWx8ZmbSIQNu\n2PPX0MNqRNmfg93FwJpmG9dFdMSA3TiZ536oYeUAa/vBqUJuo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUfwfMoAawWZtnIeNiKutaVTQbWaAwCgYIKoZIzj0EAwIDSAAwRQIg\nHZNycOpON/XTVZPBAL7DiD4l6tN2fyIMmVov8wFTZKcCIQCvulmxfc6TdhY1A4UK\nMgPk+em9g9rzMt7DNHwiZScubQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUHM0XvtD5nQdk6EywMduxQlx3u3swCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASPcv80yUlGzvfk/RPwTZUmlh/+Q+cNFWXRGxOZ\nGbx4WevhYbCbiMowvlq64e+63rABljmpQsVs/xfGTowpJUaeo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUZhzpZyFZW65JwwJ6bVioaAcsKP8wCgYIKoZIzj0EAwIDSAAwRQIg\ncfVVP+r2KFLVlOWmRUOvcA+5erhNTQXg+BO+NgWkX3ICIQDl+U+mJg8KwaLf1Euf\niwDCnJ9Kc2sKtQgOU1FWV7sKQw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxjCCAWygAwIBAgIUbkvlkHgQrMMvsAM/iB96tDWWAaEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABN3udSwc3TsIBERM+mQ+c4dkO7CzxlCN/gHJiSjuSax7\nJPIugpXBeyEhn+OTzSyNxrpOXEnCXSi79gRlkhzONE6jgZEwgY4wHQYDVR0OBBYE\nFHGg1baFsg1L64DpAdx7hen+9sjgMB8GA1UdIwQYMBaAFH8HzKAGsFmbZyHjYirr\nWlU0G1mgMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTASBgsrBgEEAYOzOoUaAQEB/wQAMAoGCCqGSM49BAMC\nA0gAMEUCIQCDmLXUM2rGb3apoTbFBSY6GGJE6e7yMvom/UrJdBgeAgIgEv3pB3p0\n+ilEyDlq9y3YW0ayN3JQ+z2XyRasKZ9haso=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEMjqwstKHpj1RneRkgHKo6VSJN5wE9nhhxhlH8QRZjioAoGCCqGSM49\nAwEHoUQDQgAE3e51LBzdOwgEREz6ZD5zh2Q7sLPGUI3+AcmJKO5JrHsk8i6ClcF7\nISGf45PNLI3Guk5cScJdKLv2BGWSHM40Tg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBxzCCAWygAwIBAgIUJf244C3ChsGUCIhFXAD0XaI1ZtMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDPyRW92kEPTkvNL+n49dMvZ62S8LneMvfIz230Dq7Nw\nnX7pzKNlkXRgoCrhYIfdUVWgGeUDMn1T5Kvunr7T+a2jgZEwgY4wHQYDVR0OBBYE\nFOoitpBH1WtHr/HP+VDbjtivGo3uMB8GA1UdIwQYMBaAFGYc6WchWVuuScMCem1Y\nqGgHLCj/MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTASBgsrBgEEAYOzOoUaAQEB/wQAMAoGCCqGSM49BAMC\nA0kAMEYCIQC5HsTq8x5I0a2CybatxwtOLqbO8/LHUYSlvtnE3xMwBAIhANCWioOZ\nwf6R1fS3JmoMiT2yz+34LJ542Dw5zKWJaIZ7\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ/X7ktkVv1tbWHFWZzxQsJC7ldCJ6mpeT/PYAJRNtUyoAoGCCqGSM49\nAwEHoUQDQgAEM/JFb3aQQ9OS80v6fj10y9nrZLwud4y98jPbfQOrs3CdfunMo2WR\ndGCgKuFgh91RVaAZ5QMyfVPkq+6evtP5rQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2204,14 +2288,15 @@ "id": "rfc5280::unknown-critical-extension-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root has an extension, 1.3.6.1.4.1.55738.666.1, that no implementation\nshould recognize. As this unrecognized extension is marked as critical, a\nchain should not be built with this root.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBozCCAUmgAwIBAgIUa2+akkYPWWn0rpqKgS1iwEzveSUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS5D41lOWJno36Ue73CdyKuk14TWvRy+/zqNr9p\nxQtJe9wtVzvTP9qDyc8opFfI8iPvc+0/+PzVNueIdmQgYZxno2swaTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU56Oj+09RoyBAqlxJROB1DFXcRnYwEgYLKwYBBAGDszqFGgEBAf8E\nADAKBggqhkjOPQQDAgNIADBFAiEA2QYGtFGzOEktPywOBX4R/Z1zUU6LxqL+bwBr\nykONo8QCIA62zxOcuRR54l/0GdUzBBvkD6NSgtLDEq+w0C5RDK5Z\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBozCCAUmgAwIBAgIUH0McL7bnNEsU6xkfOsB2FqSogHYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASR01R1r5eIfCQJksP4jJhhCqmNCJ6dFgIQQDZB\nYbSYEfLg8t1CC2eJh0qCA+P257UlEYruhVJR4YPmFLrY0E3Oo2swaTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUljTSinTK+s1lE/QdTo30Rlc+9cUwEgYLKwYBBAGDszqFGgEBAf8E\nADAKBggqhkjOPQQDAgNIADBFAiBJ8is4/BG+uP7SjbRVnbzHRV6XKV3Jyx5JkY4q\npZHWUgIhAJf9/vVLoml1ToxzQ7jk/yPcoOs9RVQfMeeuicPqGK4Z\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUW0BtO6V6gPVbg+KAnfoGKoeG7CswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABN3in/xd9lStEagrPIz2vxK40OURm8Uu50Xg//ruT4cD\nRbZgqdXWWDhuC6Z8jKfufy8IicXyRbc2uZ7cAN8IRVKjfDB6MB0GA1UdDgQWBBRH\nhz6n++tsiIpM1osz6qgybLN39zAfBgNVHSMEGDAWgBTno6P7T1GjIECqXElE4HUM\nVdxGdjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAIO4CNwGKVF6Qwh6x/jT\nzwThJwhx1iCa8owNHj/SQkEEAiAkFqNi1IOEhah2GHq2sIc4x5ML3lU60OO5/d2R\nKJKZ1g==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIABPlXpaHsxGUMqxqb+v/VwrYln/mP3wcoDS5tOcyC/ioAoGCCqGSM49\nAwEHoUQDQgAE3eKf/F32VK0RqCs8jPa/ErjQ5RGbxS7nReD/+u5PhwNFtmCp1dZY\nOG4LpnyMp+5/LwiJxfJFtza5ntwA3whFUg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUQJTuvLhtaOIAqV5wtkiyRg0JfUcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMQpYoPYomOMm27m3pNRQMXcIsZ3k2gOJ4efuJ1QldSo\n+W3e7h+5cYlVILgXUrBvET7NUAfIHBBT6jJcbgfFxN2jfDB6MB0GA1UdDgQWBBQE\nWBZiv3MPQ+Vek26gcjdz7HWvmDAfBgNVHSMEGDAWgBSWNNKKdMr6zWUT9B1OjfRG\nVz71xTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJShyOfaj7R1uSKTcHmc\nU9Rrz05heFbvCdedh5784jHSAiARWpPgK384nS4L9pa591iM3N2GzOWFxlGXO1yV\nwgXZqQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHKft05CrnP8cmN1RUxO61lpSB0fhXP+1abhwfWodMTuoAoGCCqGSM49\nAwEHoUQDQgAExClig9iiY4ybbubek1FAxdwixneTaA4nh5+4nVCV1Kj5bd7uH7lx\niVUguBdSsG8RPs1QB8gcEFPqMlxuB8XE3Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2228,16 +2313,17 @@ "id": "rfc5280::unknown-critical-extension-intermediate", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate (pathlen:0) -> EE\n```\n\nThe intermediate has an extension, 1.3.6.1.4.1.55738.666.1, that no implementation\nshould recognize. As this unrecognized extension is marked as critical, a\nchain should not be built with this intermediate.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUIbhynL7VQFzfmTWjReZTatVQuHUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATRLdRUxHX2FNjFOzNC+UEvgJwt4/fML1zC3W0p\nOLX7E5tubHrZ3uAGlsAzCeBlW6nvHUg9DHkGstf/VmCVjJrJo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUzWv4OLilQy7F32xE/vxH4uKOS2wwCgYIKoZIzj0EAwIDSAAwRQIh\nAMc30whsQcAMk/sUvey5SsrxddKgN8f1u4o2MxA61UGsAiAsDUUiOqTNmZj4Y+/i\nkJ/luOXLTT3yTAqkScUc8vCXyw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUM9iRKdzt8GxhQpK8fM5Bs/jAauIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASWaWGtnu8ouUCQjTbcK3dVQNOfOD+1g0AHYrES\naIxCzRnPakXYHcXznL2cz+avmihVfg8oEVoQijnoAunYd+9To1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUAKBtbBdIBfQY05GwKMXLHU9Im+owCgYIKoZIzj0EAwIDSAAwRQIg\nMVXYpLC/FK8pnfMGgoOnmIMTbZ7mu+1J/wBYfPWMHR4CIQDW3u7l+PCBlppQ8Pbm\ndioKUFjgbCx2dSHmGA/yVzZxHw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICFjCCAbygAwIBAgIUCoxy2/K40w0oiK3mp7VVENc3sZQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAxOTI1MTAwMTY2OTIwMjIzODMxNTQ2\nNjIyMzA4MzQxNDk5MDI2NDcyNDI1Njk4NDUxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBOLmJP2yN/DbMhVvS5l3dewsCKGgixJmeqE58exgbt6RZ/Pk9OiXUfOHEQDGgMAw\nneezKkVz/aDU2YOg0D4oC+6jgZAwgY0wEgYDVR0TAQH/BAgwBgEB/wIBADALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUzWv4\nOLilQy7F32xE/vxH4uKOS2wwHQYDVR0OBBYEFGe0gzLlNnpuCPnCc9UPxfoq/y1R\nMBIGCysGAQQBg7M6hRoBAQH/BAAwCgYIKoZIzj0EAwIDSAAwRQIgC+k1HE0oIJQz\nT6FOp0Hld6g7Ctu4xQDH31h4m+6SUEoCIQDVQjgNekB028t+gPLeEJ0XmBBJTm6w\ng21y3O3+c+rs8A==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICFjCCAbygAwIBAgIUOQhjMurAH2rXpIekiW37+2wYaMAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDAyOTU5ODgxMzU4MDE2MDExODkxMjE5\nMDQwMTc1MDU4Nzc5MzM5NDUxOTkyOTExMDYxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBEgDUnz7VcwhAPpHpH9LVBV7fgdwoEpF/tS+VPVcIvDiV+LcyQScoz2bqc1XQ1ej\nOS8Q91V+juQY2FOjqoQ85KijgZAwgY0wEgYDVR0TAQH/BAgwBgEB/wIBADALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUAKBt\nbBdIBfQY05GwKMXLHU9Im+owHQYDVR0OBBYEFPlu2bbXKY7w/isNGjuH3vl9Gurr\nMBIGCysGAQQBg7M6hRoBAQH/BAAwCgYIKoZIzj0EAwIDSAAwRQIgcCuMqH85kJVE\nqCSykOwosMrrAE2MKSlj5uFbQ1eEqWECIQDB2osvcFCJGX64VQ9b58LJfihWvSOB\ntCQyJ9Z91X/xgQ==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUVAKC8VIabXYSV670OX57IqiyXUQwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTkyNTEwMDE2NjkyMDIyMzgzMTU0NjYyMjMwODM0MTQ5OTAy\nNjQ3MjQyNTY5ODQ1MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEbiPa\ngBn2/a+njSVWd7+uTvd5hr+mcAOe0Si+kZQJ7oWgNQqTHHVX+VazVNwDvOefS/e4\nYrmoewvxO8XzxSa83KN8MHowHQYDVR0OBBYEFKu52i875HKn5IhsiPOzzVmxHQ+c\nMB8GA1UdIwQYMBaAFGe0gzLlNnpuCPnCc9UPxfoq/y1RMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiEAidDrBtxY6zZoi4oiRrwsxkqWeoL0FGz7As6JgJK2qUYC\nIDBsd/68pqXH4Xb+JUUl8PEfwiqvtmNe0YLsoHlrAI4v\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIE9/LlIf0zkQOeJbCDxNpavQqngBvPtlGlrqqnGdvZSroAoGCCqGSM49\nAwEHoUQDQgAEbiPagBn2/a+njSVWd7+uTvd5hr+mcAOe0Si+kZQJ7oWgNQqTHHVX\n+VazVNwDvOefS/e4YrmoewvxO8XzxSa83A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUE5xvMZ7iXRFA1gF1aU+S8IqR6QkwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMjk1OTg4MTM1ODAxNjAxMTg5MTIxOTA0MDE3NTA1ODc3OTMz\nOTQ1MTk5MjkxMTA2MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEn92B\nEqGFYDe4RUcR37rxM3sCkSHU9iw40kmJCnOWNNa01lQxEZGAjlsWa9AIbfDKQT3w\nQzAdIxFKtKakY5qZ76N8MHowHQYDVR0OBBYEFGumkaDLxuxY+XytXDlPxTR37PeW\nMB8GA1UdIwQYMBaAFPlu2bbXKY7w/isNGjuH3vl9GurrMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEAhQMYBLJQoT/MduezV1dUQSGpWAboMFPn4BhZRhoxtGIC\nIQCR0nVK7/drvNRj+lv3oMHKk1/cpGkVAo51/Cz1CJdgFA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBM0lFQY1hEhlKL5p7ng79+G9EWU10oUFcle64VkDtstoAoGCCqGSM49\nAwEHoUQDQgAEn92BEqGFYDe4RUcR37rxM3sCkSHU9iw40kmJCnOWNNa01lQxEZGA\njlsWa9AIbfDKQT3wQzAdIxFKtKakY5qZ7w==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2254,17 +2340,18 @@ "id": "rfc5280::chain-untrusted-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following chain:\n\n```\nroot (untrusted) -> intermediate -> EE\n```\n\nThe root is not in the trusted set, thus no chain should be built.\nVerification can't be achieved without trusted certificates so we add an\nunrelated root CA to create a more realistic scenario.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBozCCAUmgAwIBAgIUDrN7KYIQ6Dx16B2sU4TTak7nakUwCgYIKoZIzj0EAwIw\nJDEiMCAGA1UEAwwZeDUwOS1saW1iby11bnJlbGF0ZWQtcm9vdDAgFw03MDAxMDEw\nMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowJDEiMCAGA1UEAwwZeDUwOS1saW1iby11\nbnJlbGF0ZWQtcm9vdDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABLkwkLf6Ci7x\nOzomAIbaGqNYd3SuPvwpaXQg3bqOpWnN49KClkblGVTKp0SOgVuh4nzBJyH6YNEQ\nppWEbexggSKjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1Ud\nEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBQjh7ZwIoemLwGIXzKKpHeaGlKO\n1jAKBggqhkjOPQQDAgNIADBFAiAhMT2ofCXNIfITPNxcj13w7stJ3+tTvGmhoBFn\nCbrbZgIhAMCo0EBAfwNn3zaHo2ncJustX2JRRAg912eLfehp070p\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBpDCCAUmgAwIBAgIUF+1xlPvlHxrSoZtkLqdg3wAi3KUwCgYIKoZIzj0EAwIw\nJDEiMCAGA1UEAwwZeDUwOS1saW1iby11bnJlbGF0ZWQtcm9vdDAgFw03MDAxMDEw\nMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowJDEiMCAGA1UEAwwZeDUwOS1saW1iby11\nbnJlbGF0ZWQtcm9vdDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNoecDYPEUoM\np2wG0CX1B00LxJ0kiWBFI6OF/UL0ZLDLjQSE9FFjOAgeudYO2SaKlm66MEFr7K3P\nr/zKTNcJyJ+jVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1Ud\nEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBQPTpXl9//7IOCoq+jBclHsyZeS\nDDAKBggqhkjOPQQDAgNJADBGAiEAhz1+x1ju3nJPoexiKLqm0LKgalZ5MnV6Inff\n00Nk/yECIQDxR6mGzJBGz/8N5kt/kazrIpg2HRtao8C+jN1UHsmsfw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUf7x7f7TQAOC1Bk++LHmFi8xjC98wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARJBtqUU7GrzSINSKkHA/4kmlXkAtYgAAjPEMzy\nBn2Z6hobX0Ev4byzYBeQSfWDpL7vTSc4EXfPodEUAqZKoxmAo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUubqLoT2tVA3O608D7WaGMSFKXWYwCgYIKoZIzj0EAwIDSAAwRQIh\nAL5fV97VXIiTyUWEuK3tRRE9ONc4Fig3+AFrkEtY56DRAiAvwKXJhno27mXSyd1L\nk/GvcyVLhQQzESciYr6qCaUKEA==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUNdmqFi18f3zP73hrewAbVUdoR4IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA3MjkyNDUxMjYyNTkzMjI2MzY5ODg3\nMzMzMDM0NzYwNjYwMTcwMDQ2OTY1NzA4NDcxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBO7RhHZ84x4Ow7skY+rrDMFlHn3kpWBDi316BERvs3HBkBY+v5y3zs49bXmXdRs5\nFfDBkq/E3ECINmN52LnkDrCjezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLm6i6E9\nrVQNzutPA+1mhjEhSl1mMB0GA1UdDgQWBBRkeuTyFTHF6JKkBjr1Duh9ArdzwjAK\nBggqhkjOPQQDAgNIADBFAiEAzbz7N07ySHpeKaZFsuBmuayf2Nlsw91hKnev0ZJB\nw4ECIHN4hq6EhFxoXM3XMxj3K5gi8g/5js8GtcGa4TyYscuZ\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUXbuW3Pj69stTmrjipjVNYVth1AEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATCrvXKo++QPQIuEYV9wCffbhmHCiCXib/FMkcR\n8JOF4ZkukFA+S5raTSeEknZyGApLiP3j9aJpF5esvy2AfNSbo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU0bwPnGXt4maYSl+fpsHknyJPZfswCgYIKoZIzj0EAwIDSAAwRQIh\nAIC+wJ9HTVNLED4bH0i2oWvjtGpFQPGiZuwJMnyn+/OoAiA/CZG0ifZpQlNKwLNl\nAuuGJ0Tc60186WWAeDISbwniAQ==\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUCfOFPLNu/qar6iT5CKOC7BKrXuMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBnMTkwNwYDVQQLDDA1MzUxMTk1MjMwNzQ3MDQ0MTE2NzU4\nNTUxNTEwNjExNjM5MTI5MDQxMzY4NDAxOTMxKjAoBgNVBAMMIXg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tMDBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBHjmwyObF8uZiZkPp0X8IX9oieUaAHvDrdy1Vjk+GGVV+3IS+TwaQawJydzbQ7qF\nnbbLcP0uXrA4FwIt8fju14+jezB5MBIGA1UdEwEB/wQIMAYBAf8CAQAwCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFNG8D5xl\n7eJmmEpfn6bB5J8iT2X7MB0GA1UdDgQWBBT2cfgxBw9dpDFrodyCaGuQjQaugjAK\nBggqhkjOPQQDAgNHADBEAiAOs1hJZTNSRSPXwFz4itQnJQU6afft9yB4sRRr1bRF\n/gIgWOPPyuk1rhZAKldCZS1A/A0fY0PaJERtF5rkDWppzqw=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUAwaRk1CRPRrKuTlkL9236Ph/sekwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNzI5MjQ1MTI2MjU5MzIyNjM2OTg4NzMzMzAzNDc2MDY2MDE3\nMDA0Njk2NTcwODQ3MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmK+j\nb08lC87ZjZMYCHRDax0qKZmahx8i9isiTnniFoWS8i4BY/WQh62OzDneC0B2saq6\niNjQfhba2V/+MXAbeKN8MHowHQYDVR0OBBYEFBkQweFJet7qGHuBIEogCLSatizZ\nMB8GA1UdIwQYMBaAFGR65PIVMcXokqQGOvUO6H0Ct3PCMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNHADBEAiAs1Iwkndrp8skVGa7eYv2lbTQxNGRKs45hPcFHmKNXmQIg\nHQc31Attzq9MvoFctHCEcNZ0VXy3hOr+iCqaBa04gfI=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJU4ie2NyY7CcyyhABfzCIDTNGvJuUm1ZM9LnulHwJdooAoGCCqGSM49\nAwEHoUQDQgAEmK+jb08lC87ZjZMYCHRDax0qKZmahx8i9isiTnniFoWS8i4BY/WQ\nh62OzDneC0B2saq6iNjQfhba2V/+MXAbeA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUBfIKl82m6ue4rv/NYyn5vkwxw18wCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNTM1MTE5NTIzMDc0NzA0NDExNjc1ODU1MTUxMDYxMTYzOTEy\nOTA0MTM2ODQwMTkzMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4ET5\nH1GmApbcGsBUjAnxVqIyyJ6rq4svFu4CbGxu0TCLa13MRetot1ohjk9LqvMK+qQy\nLdh0ZkDk5LwXPsqYFKN8MHowHQYDVR0OBBYEFOjp1a1Ti79OAXq5eIZiKRC7o28m\nMB8GA1UdIwQYMBaAFPZx+DEHD12kMWuh3IJoa5CNBq6CMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiB8UGtJy3AbWMsvM6u/kXUP/SMkT1Lwnk0H5nqgW2bnQQIh\nAO8LMDVFgJTULiJTkoUnwdTSO4xnr43mjzbv+nyG5NqN\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEHtR3DWOnHv+a/U5clzf++cB9iG9TKi+KZRJPdFopLIoAoGCCqGSM49\nAwEHoUQDQgAE4ET5H1GmApbcGsBUjAnxVqIyyJ6rq4svFu4CbGxu0TCLa13MReto\nt1ohjk9LqvMK+qQyLdh0ZkDk5LwXPsqYFA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2281,16 +2368,17 @@ "id": "rfc5280::intermediate-ca-without-ca-bit", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> EE\n```\n\nThe intermediate CA does not have the cA bit set in BasicConstraints, thus\nno valid chain to the leaf exists per RFC 5280 4.2.1.9:\n\n> If the basic constraints extension is not present in a version 3\n> certificate, or the extension is present but the cA boolean\n> is not asserted, then the certified public key MUST NOT be used to\n> verify certificate signatures.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUGYKm0CrE8xOtqJLbjeQHvzVY3lkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQFeBQOawl5ydvBrM8yBQRL3NzYSb95idseFkv0\nvwWaMb/qJGuV1OBtoQo2682wb/+voLBUMq/Q2Zyxa9wncnSbo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUq04prAwMJbgWrCDBQlcWDjKciyYwCgYIKoZIzj0EAwIDSAAwRQIh\nAOWSk625kKd/2mWXJpqVtmYUCcBVQhyjU6OGs2SvumODAiA6c1UfVBRsGEdncHXi\nP8QDf9rToOEog7po/M0xBQer7A==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUPaO6cWQBWLDbISpdb8cQ6WBR7cAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQlFeLOLTKilHMK4X9d9hfQBU4mQv+pV5rJThtV\n5mF1o6v4Q2Cyetj3cnz0nxv7nSkZ1P5U8LwDT2SRSsqDYN/7o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU5tKAJ2XKL4RRWAuoht22EYiyzvswCgYIKoZIzj0EAwIDSAAwRQIh\nALbFpY2rQHe/OHBKkhUk4IKcMF1+vHcx8luhSCBODZW2AiAgVxoKrpoIKt6Wf1RH\nwnKBxhNJENTPqT/B3ZpxJOF3OA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIURJ6koplOHWLDhrEMsEIwYjY0AGswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAxNDU2MzgzOTc2MjE0NTIxNTcwNjIy\nMjQ3NDgwMjYwNzI1ODU0MDg2MzcwOTk2MDkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABO8KAPNvk2D7e38c1R12yVx+c7kEuMDdhCdqG2DxMfXzTjL1QIP7jHNOep8b\nSicsfW12cntn7IIEpror+qolYfqjdTBzMAwGA1UdEwEB/wQCMAAwCwYDVR0PBAQD\nAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFKtOKawMDCW4\nFqwgwUJXFg4ynIsmMB0GA1UdDgQWBBTN2VUsithwBbosjL38yckWZXPgQjAKBggq\nhkjOPQQDAgNIADBFAiARwf6J4hoF2ZYvNqVFZFuPgCQMFKYqQ0fcJGmLyXa1FgIh\nALTxpZIH1RcfB57l5CXDfpi3sO3MqTabFb4Ixd2ENq4g\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIB/DCCAaOgAwIBAgIUNXIfXJ38FQHcEB/lCfZlTzuG/aQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzNTE4OTk2OTk5NTc2MzUyNjI3NjE1\nODM4OTk3NzIyMDIzMjQ2NjA3MjYxMzIxNjAxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABDN4uaWKlks6NzebTZI1ZEElHcBNOxq9VOuma/1bfdm8t1aSTgp0tsK1+e3g\nFlNJ+E2vo7t+O6f2nWi1bN1g+pajdTBzMAwGA1UdEwEB/wQCMAAwCwYDVR0PBAQD\nAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFObSgCdlyi+E\nUVgLqIbdthGIss77MB0GA1UdDgQWBBQhl6NEP9sMUp73cdYKoxPYkoletTAKBggq\nhkjOPQQDAgNHADBEAiB9Zdb2zmNoLp/f8O1db3XUdgv6t1EZGs4fmU87Y1FxwwIg\ncvXfLXIA85xcHdDwHyXeI75qz1QnS+WBjvHRUZHwkYg=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUBG7JNa9RruAUr7lsWetv3EvvkQQwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTQ1NjM4Mzk3NjIxNDUyMTU3MDYyMjI0NzQ4MDI2MDcyNTg1\nNDA4NjM3MDk5NjA5MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\n8aM7LL8bGHUc+L0vc8gFTU8DTAxtlH4LUDau6nMmQ0imQHF52Le+2GQAKf6G7gD1\n/P0u7xi9V3RVcFAlIU4DbKN8MHowHQYDVR0OBBYEFCMPRXXXVicCjp5S5azIvUsr\nP2xNMB8GA1UdIwQYMBaAFM3ZVSyK2HAFuiyMvfzJyRZlc+BCMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEApZnBGSJQkRZXtAWscVLRgTzrIHXaQwKlMO7s/i/3\nz7MCIGMZRjQ8ExKMf6/HAbT9pnfBdqtytJ2/09Wf1eu1tCjv\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINWQ+p/xTZZrJMVb04W6qIu9BfkuKediYSVKitruQJ9QoAoGCCqGSM49\nAwEHoUQDQgAE8aM7LL8bGHUc+L0vc8gFTU8DTAxtlH4LUDau6nMmQ0imQHF52Le+\n2GQAKf6G7gD1/P0u7xi9V3RVcFAlIU4DbA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIURo6lSlvrl5rTmRiZ5LXm6c9qJgQwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzUxODk5Njk5OTU3NjM1MjYyNzYxNTgzODk5NzcyMjAyMzI0\nNjYwNzI2MTMyMTYwMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nVahwcMZGCBQpshFW9J6+dIouw5HOeaHQHb3/+IdWtPL2+sUAlVHONP7vI1/wWtbA\nJcvcnzUHqV2uWedO1kKSmKN8MHowHQYDVR0OBBYEFN/5juhwkBOTRE6IdZ+sKdi+\nf8aVMB8GA1UdIwQYMBaAFCGXo0Q/2wxSnvdx1gqjE9iSiV61MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEA3eyHznvJx30PS7Z4Dy+9njOMl9Tqd1M7ZsKD8+Jw\nhdwCIFFx45g0G7ER/8Lwfz+YIC82bVYAo5wH06tQnZH4ka9a\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIUuuGHLvnvGcrTrycXrHAXnHMR0pMWrgC0Ok5hSQ/+GoAoGCCqGSM49\nAwEHoUQDQgAEVahwcMZGCBQpshFW9J6+dIouw5HOeaHQHb3/+IdWtPL2+sUAlVHO\nNP7vI1/wWtbAJcvcnzUHqV2uWedO1kKSmA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2307,14 +2395,15 @@ "id": "rfc5280::intermediate-ca-missing-basic-constraints", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA -> EE\n```\n\nThe intermediate CA is missing the BasicConstraints extension, which is disallowed\nunder RFC 5280 4.2.1.9:\n\n> Conforming CAs MUST include this extension in all CA certificates\n> that contain public keys used to validate digital signatures on\n> certificates and MUST mark the extension as critical in such\n> certificates.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjTCCATSgAwIBAgITcQAzWjsprEG7nb2mSHPIKaJloTAKBggqhkjOPQQDAjAa\nMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgPMjk2\nOTA1MDMwMDAwMDFaMBoxGDAWBgNVBAMMD3g1MDktbGltYm8tcm9vdDBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABLrGeo/xYbM7p/gnIQFUchetVXga0GFysrkH2x0d\nnjoLRDrKEUGlocYETDp/7D1xw3lhMfg/HEWJqFifQwLIm8ejVzBVMA8GA1UdEwEB\n/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0G\nA1UdDgQWBBSo8Z0+xY5UyPaKRKTP5uhwhp3GrTAKBggqhkjOPQQDAgNHADBEAiAB\nLM+NS/44LfFG1H05t041d3y2wUJPpCh9LhFqtmAigwIgbW0zyB540ivoXbx44fAf\ntx5o2ye1rS+DYnVNEJZ1qCw=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUF+kGEM801yjY+X+gwns3lnL8yXUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASemYe6/zT7ekvgeNE1od29JPutnJJIk4x+a/GE\noe0AJXStSQOfr1q4ZNeyrWoEPJaq1rRpHUmuSRhKXffPwxdso1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUQLJ4hTDQWrLEsgEl/UJnw6jq7qwwCgYIKoZIzj0EAwIDSAAwRQIg\nKVqFolRqiHYxeUXbJUsLOgtryS21anUimBNA/c5M+MACIQCuHc7tXgkPaPFdWu+l\nzIezSC7+tpTspZl3lrhQQs2kfQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaSgAwIBAgIUBVWV3jH4VBP+UCS06PGniWNIPGUwCgYIKoZIzj0EAwIw\naDE3MDUGA1UECwwuMjUyMDAwMTY4MTc3MjM4Mzc0NDUzMjE5ODAzNjkwMzM4NjIw\nNjIwNDc0OTIxNzEtMCsGA1UEAwwkeDUwOS1saW1iby1pbnRlcm1lZGlhdGUtcGF0\naGxlbi1Ob25lMCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAzMDAwMDAxWjAWMRQw\nEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABPlk\ntQIdiwNwkHwGfktcoIoLsIN9Y0FsTWciSglCgYaq4JI6mP6doO8KLr1WqkXd+CPa\nx/NBTTZnHMOItH1GpFKjfDB6MB0GA1UdDgQWBBSPmeFU1XfA/8ADUd+w6r0sDzAe\nPjAfBgNVHSMEGDAWgBRVjGErJGS/QSJ4NRFWoQmr0FT7xTALBgNVHQ8EBAMCB4Aw\nEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYI\nKoZIzj0EAwIDRwAwRAIgPvEW9fSmyiPuC7dOqwhKx2xNxZzq+9NgSyZaeI1NUhQC\nIEFk+t3WRzcyCdTOvKK8tkowWw2DNSAEIVJnsdg/pGN1\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEpwtsuWV+axctHlOd8/opnWknqDkz05Rtn55obX7IVEoAoGCCqGSM49\nAwEHoUQDQgAE+WS1Ah2LA3CQfAZ+S1ygiguwg31jQWxNZyJKCUKBhqrgkjqY/p2g\n7wouvVaqRd34I9rH80FNNmccw4i0fUakUg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUPq1MECRhVNyEM6BeiE53+fHLz8EwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTM2NTAzMzg5NzUzODYzOTY0MDY0Mjk4NDk2NDY4Mjg4NDY0\nMTAyNjM3NzUwNjQ1MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nMi00VI0+i9OYtG3eOJOAxd0vnjBL13Ahgyom11Zzn7sKzvJoOar7nw1aSyZrU+tk\nOIUkDf9KLN9cFyAFHtu10qN8MHowHQYDVR0OBBYEFGo8wXiz4x1rYvA1r645Az2D\nRsILMB8GA1UdIwQYMBaAFIZKEyc/J994XyIRsm41EgiOondXMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEAjbp5+C2J4yQZT7XvMZZmS+RIjmgEQhwR/UW3+GhZ\nNekCIQCgXg/AuW0QH2n7LDgmMmnFvEmnwTQmUa13mimgSAcyaA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBzJmMWYvJxmxEK9yGV4XeZor0Ir72TdO+gddejjEeyFoAoGCCqGSM49\nAwEHoUQDQgAEMi00VI0+i9OYtG3eOJOAxd0vnjBL13Ahgyom11Zzn7sKzvJoOar7\nnw1aSyZrU+tkOIUkDf9KLN9cFyAFHtu10g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2331,14 +2420,15 @@ "id": "rfc5280::root-missing-basic-constraints", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root CA is missing the BasicConstraints extension, which is disallowed\nunder RFC 5280 4.2.1.9:\n\n> Conforming CAs MUST include this extension in all CA certificates\n> that contain public keys used to validate digital signatures on\n> certificates and MUST mark the extension as critical in such\n> certificates.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBfTCCASSgAwIBAgIUS/KVtxNHLjSSSAEcxh7PjjeOjpMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASseYaG4SZyjPWW1fL7VO1bP/OjeR1hMrqIwt5/\nDm+q53147kAsAdx60LyY1eRELxR5NIcb05MNOeHNxft04khno0YwRDALBgNVHQ8E\nBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFNkgZE6ol38V\nNh6VyiEZtYx9hrQxMAoGCCqGSM49BAMCA0cAMEQCIBdlliJcynAWPmj+TaDRJeGN\n143bA+/8bKoRX38XuzR5AiBrLQIEUTT1RZs0I6TUeRmFZ2nGwswOuSKhmepuOghM\nGg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBfjCCASSgAwIBAgIUQ6e+1H84VmUjOA+5Nn0/6ytVxOMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQUT9PTjQYRb4tYub1VMmOoKZKNaZlJ4BZaV4uI\nSgozq1RkR7EhYiVnkxNrpoqurwTCqlPw31YbAYDmJaorvECCo0YwRDALBgNVHQ8E\nBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHQYDVR0OBBYEFJA4ojTIOhB6\nvHXPVh+2vTWgGwW/MAoGCCqGSM49BAMCA0gAMEUCIQCCPYmmocDAeJKzRzmDiu72\nYcsMA4eYFu5T+4OL8oo1EwIgF6+cCpOuDPqXYOzJyLqjdS53Mp8ZWnZFtWxtCAng\nvIw=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUZCn85O54/s90Obwxi5LZmmUYygQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABF7U6T/8QAkDfLRLVnRThdxALN6GGi/mJ9V/QrkrsDsl\npgCsVtOsyKOK2hGvhVsV7z58sJN3XQn+34mzAdMy4PWjfDB6MB0GA1UdDgQWBBQ9\n3XFBbYKnLNPK5MOpAMPT3q1MMTAfBgNVHSMEGDAWgBTZIGROqJd/FTYelcohGbWM\nfYa0MTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgcSYSbdwSlEuJOKE5322j\ndH+7ZQe3ImtQfpVHHIMz/H8CIQDrjOWN8PhGV7eXx+RCKKKeGhYjfR0ttgpG7qSe\ntCfcBA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILhnXbvwXKv2lvTMGHlrfjL2cITjym/YFer1uEfzzJsXoAoGCCqGSM49\nAwEHoUQDQgAEXtTpP/xACQN8tEtWdFOF3EAs3oYaL+Yn1X9CuSuwOyWmAKxW06zI\no4raEa+FWxXvPnywk3ddCf7fibMB0zLg9Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUDgZL4AalD4fhTMSxw6GlCI+ytCwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABE7FwCyhi7AqsaKGYrx8WWQgtB884Kya/I1fFX1phLsN\nZwY9fbUWLw4G6uqmZnY5GzDIqhj3r8w3zTO66C+5IhijfDB6MB0GA1UdDgQWBBRm\nVIySqyhAyAPbZQbnlBcmu0IzSTAfBgNVHSMEGDAWgBSQOKI0yDoQerx1z1Yftr01\noBsFvzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgP78tvSn+44ODrtQLrM2H\nEpSLxt4IJvUYNAApRQqlxoYCIQCr8V2V92MHYrXkoGLTi2BVQtB0AqTTybjz7reg\nTNVqXg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGaQRH3Ss7vGXb/o+MZKi9Q6ljEXDeKI/Yvg2G2QMHK6oAoGCCqGSM49\nAwEHoUQDQgAETsXALKGLsCqxooZivHxZZCC0HzzgrJr8jV8VfWmEuw1nBj19tRYv\nDgbq6qZmdjkbMMiqGPevzDfNM7roL7kiGA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2355,14 +2445,15 @@ "id": "rfc5280::root-non-critical-basic-constraints", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root CA has a non-critical BasicConstraints extension, which is disallowed\nunder RFC 5280 4.2.1.9:\n\n> Conforming CAs MUST include this extension in all CA certificates\n> that contain public keys used to validate digital signatures on\n> certificates and MUST mark the extension as critical in such\n> certificates.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBizCCATKgAwIBAgIUbtuMZwTvit1TgUkG1IRaYW5S7m8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATlTTlcd+GqCPvxHW+Jg+jPq13vnmO53aG42c+T\nmS51T90BJN+V+ykAFAsRfkhT6iKIJMDXRCqofQdGBVLkIU9so1QwUjAMBgNVHRME\nBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNV\nHQ4EFgQUR9zPqjGTMnm89IY6AAnE7Nx5zaUwCgYIKoZIzj0EAwIDRwAwRAIgNKEp\nCzoS0GrH4siSEtaPwQUy9boW/Z6ymjQ9wns9KosCID9Gh2dfi8P2KGL/EatyACm+\np58K2BysjaHuzzyEh+w5\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjTCCATKgAwIBAgIUJTSgctq9D4o0K0VfmuqFNMSMPTUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQCfI9exQH3V3yaUUE6H8rm7QPgPun5+ps0lEuo\nFGd1rdscx/ClPfg3uCD/xtbCk3xlAduNeEhVTS+qPLmwU7jWo1QwUjAMBgNVHRME\nBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNV\nHQ4EFgQUqkVTtvHH77KAaISvRC0u3BslmmUwCgYIKoZIzj0EAwIDSQAwRgIhAPpV\n9FEF9WQFsX56xKPB95aVjofSTbRz6c1aWdOpcz2qAiEAhlzxtwpka6LApadC8UBq\nW6rXZa/XoAe+9r36Mb+Sr1k=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUF4cgmQz4BEepNHUEDKzYsFHkLekwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABETTzLUoQeOuXmSfkJNeaMo1QSVeASFVrK+wF5BfpVU1\nklrybPhglz37sdLzRnnQiRV43soz6T0HLMmj0OvLldKjfDB6MB0GA1UdDgQWBBTx\nsnKNR8rCbx/EPhzGni8anh89xDAfBgNVHSMEGDAWgBRH3M+qMZMyebz0hjoACcTs\n3HnNpTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgOhBlNXlqf9wa4ubqO541\nPbNoHph163LtB0kwX7v4ad8CIBw1Y5AJecl0MhqhFkoH7IxYliD9vGzuNO7RLb97\nMNj9\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIF5bzg35ICULOVYJAy31XSQxdmNzPsUiGWUe+mTbF9leoAoGCCqGSM49\nAwEHoUQDQgAERNPMtShB465eZJ+Qk15oyjVBJV4BIVWsr7AXkF+lVTWSWvJs+GCX\nPfux0vNGedCJFXjeyjPpPQcsyaPQ68uV0g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUGheEyJjGvOXoSxINcgitVMkEhccwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFdfQvZwOqLSNdhMorCpGAy8rXmf87xdOqPs22/KhIyb\naKqWDrxqx4gs7/dlUg9xQPrMe0j1/z+pTrSpxrrrbJ2jfDB6MB0GA1UdDgQWBBSp\nYXeIXuINfwt4qKMtLiqJ6+TUNTAfBgNVHSMEGDAWgBSqRVO28cfvsoBohK9ELS7c\nGyWaZTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJu/bXw/ChmA9BCH4w5h\n8WF7cOr4XtNTnS6Q5AgiixZoAiAXNfxiZ7wQTq2CJDP1FB5q4DXYL8/tYJv8gVwK\nQQYjHg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHWEbBzH8SmAy7GZcELS+uQwplA1Ijm/iCYEK+s5dND3oAoGCCqGSM49\nAwEHoUQDQgAEV19C9nA6otI12EyisKkYDLyteZ/zvF06o+zbb8qEjJtoqpYOvGrH\niCzv92VSD3FA+sx7SPX/P6lOtKnGuutsnQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2379,14 +2470,15 @@ "id": "rfc5280::root-inconsistent-ca-extensions", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root CA has `BasicConstraints.cA=TRUE` and `KeyUsage.keyCertSign=FALSE`.\nAccording to RFC 5280, these two fields are related in the\nfollowing ways:\n\n> If the keyCertSign bit is asserted, then the cA bit in the basic\n> constraints extension MUST also be asserted. (Section 4.2.1.3)\n\nand\n\n> If the cA boolean is not asserted, then the keyCertSign bit in the\n> key usage extension MUST NOT be asserted. (Section 4.2.1.9)\n\nAlthough the profile does not directly state that keyCertSign must be asserted\nwhen cA is asserted, this configuration is inconsistent and clients should\nreject it.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATSgAwIBAgIUL7FRlFVZaLrjjacPtKlNKZhi5U0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR1DudYkJk14coLTSSKEAATe6OBHJYwH2sAjeKw\nXHu/+bmIa/Pgwe0EebHZ8vtRNDLcMMCl9XFqZjyC1t63nabeo1YwVDAPBgNVHRMB\nAf8EBTADAQH/MAoGA1UdDwQDAwEAMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0G\nA1UdDgQWBBSZQVgt7UovoN9xK54XkF9u+DDQ5jAKBggqhkjOPQQDAgNJADBGAiEA\n/RZxygdXFqkV870gghLkbz48zchStRCX3TGIweG5/6wCIQCTIZeDYcs3ngmtfWGb\n5bW8ss9jpZmJw0th0e+aWMq5Xg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATSgAwIBAgIUX7vSmmeS0leZy7uAJApTN4U614MwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQRx/nJK5dF6FrJeYduwksrECcCKMIhuNCr6NU3\n2Inwc+lC7PfeoemO3Lj3mhmLql1ynNXhkSaG6IoDdaTBsH3Go1YwVDAPBgNVHRMB\nAf8EBTADAQH/MAoGA1UdDwQDAwEAMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0G\nA1UdDgQWBBQ6LPEL19d6XjhIIw4Lv7PLX8O8wjAKBggqhkjOPQQDAgNIADBFAiEA\nnSftZ4Ds9v23CT8IfgE+kStorfcQEab/gtUOaZcc2TYCIBIj8m1HNEJQQN0yG5MG\nrG6xIXxA+uIxCi2IfmwfqrQ0\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUQre5VWVLMLJelS0Q4ugIRth5VGgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHc3x2O+xzgYe/8w6A9YJx9Xncq5zvzn8n8BVoOTfywf\nCTsC0R4xr7XrUa3V6//Cejoifdq2snBjXk6GnZ7ej96jfDB6MB0GA1UdDgQWBBRO\noYh8wtelZL456lFJkW5+jUwetTAfBgNVHSMEGDAWgBSZQVgt7UovoN9xK54XkF9u\n+DDQ5jALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAORC/XkELRUPhOBnV4F2\nmTp7vk+8kJKHSD8k9bSG2PFWAiEA8jw/NwuyS+VF8eRX1rGEsGBFL+wSBaSlMqPt\n3uJn6nU=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPS9kZsKOrcxK9nIhPO3fLxik9b/UdnYM3/jVyZzZIG+oAoGCCqGSM49\nAwEHoUQDQgAEdzfHY77HOBh7/zDoD1gnH1edyrnO/OfyfwFWg5N/LB8JOwLRHjGv\ntetRrdXr/8J6OiJ92raycGNeToadnt6P3g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUJwvH1OJM3xfL81VES4QQSieLHPgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDnFNLAPJSBNpBkGR9SFx9fxJRteJUzvz4yAiWjiPYKD\nMNggVnxMIWgZ3cRLB0T6KI1K8D8L4h9/Gq9Tuy7OqrCjfDB6MB0GA1UdDgQWBBRS\nLqOFBljcKD6jZGzx10fqoDkDVDAfBgNVHSMEGDAWgBQ6LPEL19d6XjhIIw4Lv7PL\nX8O8wjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAMahjw55CNbLsXFmwT/y\njVHyBzQzHHwMAz6xBCbJkOTlAiEAkAUjf2MhFBvLmZVEbbu+nLrw/l1y9xpaatC0\nhonEJ2Q=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBv8QxgYT+Vlb+ZDk9H7MKkiRNA+UN8YPbfkgtauf9Z4oAoGCCqGSM49\nAwEHoUQDQgAEOcU0sA8lIE2kGQZH1IXH1/ElG14lTO/PjICJaOI9goMw2CBWfEwh\naBndxEsHRPoojUrwPwviH38ar1O7Ls6qsA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2403,14 +2495,15 @@ "id": "rfc5280::ica-ku-keycertsign", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA -> EE\n```\n\nThe intermediate CA includes BasicConstraints with pathLenConstraint=0 and\nKeyUsage.keyCertSign=FALSE, which is disallowed under RFC 5280 4.2.1.9:\n\n> CAs MUST NOT include the pathLenConstraint field unless the cA\n> boolean is asserted and the key usage extension asserts the\n> keyCertSign bit.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUFJaK0mUCdjfS0TyMG9kRZ8W03rEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQq3Stn4DcYtboNlzi33Cf5W/Oh7IGD2lOww7sw\nb3RF2iAJoDelr4iS5fUHRBGGxpLCincxPSCaOYGu6z/GzsaMo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUPfB+ePMruAeYl8bCaiHAb7qauAcwCgYIKoZIzj0EAwIDSAAwRQIg\nUwBrervtKi2E8u+Mqt66KVowKsdY38XkfyDXccT6gFYCIQCJw1MjNoeccY0SiyoI\nXDf62wvoJqzEuVdFFFEOanFDVg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUTVrVJxc7Tv39TWy4vT2lXLQ3U8kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQE94ZZaDakAoNOo1V3eUxP5elqTwfsTI23BRbn\nxdZUiUvB2t82nKhBezMHc6I9XUu/hf/TSErGxhj5u88kFKz6o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUD6vG79t0CDWg3urS3X+XbF1bjpAwCgYIKoZIzj0EAwIDRwAwRAIg\nX+zypX/3c7k6+MOU2AqD0sirnxLbiUOHdXW1rM4ndowCIFzDA1hmJIrKZDg8t0k+\nFbJiWlCev+OJScENgn+6ktap\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/jCCAaOgAwIBAgIUZdYLk8Uk5CFw1SYfzvIarZQDaawwCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwMTE3NTM3MDIwMjg1Mjc2ODMwMTgyMTI4MzQyMTg5MTY3NjYx\nNDkwODkxOTcyMjczMSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmlqF\nsWtTE2t0AXcE9GdfOp9C9HDpqahy2aLm7c1QV9EYmUf2IA2KhxhvBC+A87y9kJeW\ntaSLqiH1rmy8RfG/EqN8MHowHQYDVR0OBBYEFOmoIlmA6tmwFSjas2qYhCZe+tbg\nMB8GA1UdIwQYMBaAFDcmKDcn4Ndfcqah07aROgH4ZIV0MAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNJADBGAiEAw7QLlFAcXjIRGHOQDHJYXFe3MmEeiREDQQilMw4SJr4C\nIQCi1bNfSy1gJRjbOPLhj7YRHxROVlnMXkwl1UXZrPHEOg==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJlZnV8XO7JboDqR2e898Bx1B/Na9HG3zc06eJfQCAxgoAoGCCqGSM49\nAwEHoUQDQgAEmlqFsWtTE2t0AXcE9GdfOp9C9HDpqahy2aLm7c1QV9EYmUf2IA2K\nhxhvBC+A87y9kJeWtaSLqiH1rmy8RfG/Eg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/TCCAaOgAwIBAgIUENf211CzwzFHjNJrHc4DJVfeA30wCgYIKoZIzj0EAwIw\nZzE5MDcGA1UECwwwNDQxNjE3OTI0NjQwMDk5MzY1ODY2NjAwMjI4MjM5NTU1ODQ5\nOTQxODk5NzYwNTg1MSowKAYDVQQDDCF4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLTAwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYxFDAS\nBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEia4h\nR3XfNN20w+md39puyt6bo1YV0Gwb2ANkvwe4Z+sfmRYssvpGbU/xWCZ6ugvgAp1o\nX4+nrPYLeozzWegRtKN8MHowHQYDVR0OBBYEFDbgBimO7SWd9OEjBZUp+ZSkPhTy\nMB8GA1UdIwQYMBaAFLn67C9nSYQc3tv8/ylpnn+nISVOMAsGA1UdDwQEAwIHgDAT\nBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggq\nhkjOPQQDAgNIADBFAiAilE/v4VxGe6VRBHUnDwcRW5ee+sMQDeoLnYshIpP1/QIh\nAL9dnnkxCOhApMb/HoSla7B+ksuHRASN2owgQ9RkTUrE\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ3gOThS9Cld6ZqAYymGJmaxLabDWApE0mhLa97nqeKBoAoGCCqGSM49\nAwEHoUQDQgAEia4hR3XfNN20w+md39puyt6bo1YV0Gwb2ANkvwe4Z+sfmRYssvpG\nbU/xWCZ6ugvgAp1oX4+nrPYLeozzWegRtA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2427,14 +2520,15 @@ "id": "rfc5280::leaf-ku-keycertsign", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe leaf has a BasicConstraints extension with cA=FALSE and a KeyUsage\nextension with keyCertSign=TRUE. This is disallowed under\nRFC 5280 4.2.1.9:\n\n> The cA boolean indicates whether the certified public key may be used\n> to verify certificate signatures. If the cA boolean is not asserted,\n> then the keyCertSign bit in the key usage extension MUST NOT be\n> asserted.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUUisJ7N85iF7qn0J6e9yOWOvQN4kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATK2cvHMicZKx4o5GQNBpO8M8u900EgL8eBZEG+\nsihFiRdVDVe+tZ+cboIKm/DP2vWtaAaXrxELlAf8iSg/v5i/o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUc/2A1SmIMR/9Yu2t8BtOBVXWjbwwCgYIKoZIzj0EAwIDSAAwRQIg\nNyTzpyYIBKZjPYCecoe/nD/xGCL8H/+pAUTBK2kS/80CIQCx1O9Z6DUG2yqOE0qD\nZsL9IE0KlN9FzAKKQNxjcx7hMw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUB9gDuzFE78GYSQ5EUVWqnMi8/ncwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATivRnrCUXF4BPFTQHUP+R058PlRoFkNovW4zn/\nSQmEinUT5NhqGUPqUZn9FSvTELeBHNaEjDhIbdDMG8bi/p12o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUUAmAti9+LqXq1tQ+rEc3MeQS0+kwCgYIKoZIzj0EAwIDSAAwRQIg\nfV1azVf8BC1O041/6qx4WQv6VrzLMIIMQS3wlUzB4HICIQDW8LAWg31HALzWEB8C\nx28oyfzPIgMKc84HAEUmchZfqQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwDCCAWagAwIBAgIUcj2X9Aqahmtz2dGt7QFixL34vFYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBmwCgz8Ls+qGsECU4Qi3SXI3Pyc1EoXx0Kas2QlByqh\nGXOvRvykuqXmJiWguzhVDjB0Iufz4axJxIv7xX32taGjgYswgYgwHQYDVR0OBBYE\nFLXdcTKdOf5LkwkWQVDtWszjHIReMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nc/2A1SmIMR/9Yu2t8BtOBVXWjbwwCwYDVR0PBAQDAgKEMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUC\nIFPQ+ClTTIunwi+g2EsYDxAv7roi13A26z9kxLXnW7siAiEA0rHzY1dPMxt0X8XB\nyLSu6rc7z9dPRxl6/zmpDYX9NHs=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIOUcYcdBjZJd0UC65OvGjZ7UvOoUQMJ6qbUcBWWjCt5oAoGCCqGSM49\nAwEHoUQDQgAEGbAKDPwuz6oawQJThCLdJcjc/JzUShfHQpqzZCUHKqEZc69G/KS6\npeYmJaC7OFUOMHQi5/PhrEnEi/vFffa1oQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBvzCCAWagAwIBAgIUCo/nThWKLmFfnpSLN9J4e7+Uf9swCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOSg6uVGLOXBGmmkO3VLwkC8U+Mp+CI7+EJEK6vOz5/3\nbGkCSC0FFIpAJTHSqqwCWJNV+GT6ZhyJhW+gGy6DP+WjgYswgYgwHQYDVR0OBBYE\nFIFwrqFe+mRmJV59TzaabD9DEbi0MAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nUAmAti9+LqXq1tQ+rEc3MeQS0+kwCwYDVR0PBAQDAgKEMBMGA1UdJQQMMAoGCCsG\nAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQC\nIETV+Sm193O+6UqcVncZYPTIj2yyNFN3X0Qp7zCvRk5kAiAmc66CJcNhkNn1WGvG\nMRyisN+XRZIDgKbP1HzrCHAkow==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEdZ4f4fWC/U+BNKZg8iQAPwivWYuoLxPcEGlrpaA5LqoAoGCCqGSM49\nAwEHoUQDQgAE5KDq5UYs5cEaaaQ7dUvCQLxT4yn4Ijv4QkQrq87Pn/dsaQJILQUU\nikAlMdKqrAJYk1X4ZPpmHImFb6AbLoM/5Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2451,14 +2545,15 @@ "id": "rfc5280::ee-aia", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a **valid** chain with an EE cert.\n\nThis EE cert contains an Authority Information Access extension with a CA Issuer Access\nDescription.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUOMh7O/IqGVeXK9X8E+sj1yCYHbYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASEx+mm9nnz8xInYkpU4R23VaFQvrQbI2tziBWD\nbHqdPiDNY/L6G9wdvd+0LQlV5jvzt2aIQEKbrdVVR/ZomFm2o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7XnCk++xPpQVM0rPSU2N5nMO3aQwCgYIKoZIzj0EAwIDSQAwRgIh\nAOHINONIFq6V7im3Jxmum2T7GT5qv5ekv2VwUywnraDjAiEAxS4yUwRU57/u340v\nZf4Cj9Vp6mSG/GP83RA6W4chExY=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUf/JqHu+BhfCdXSy6iGfBZt1otoQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS1zTtXOBT43CpxGYttvNPUlIp/iGaMK0J0Dwky\ng70lKqyX3evzFhIEIsIJOj57BOALyWHEQptMhEGRq0q2UXpZo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUelxnFlNowlUGhcjLoRpqDCvYDnYwCgYIKoZIzj0EAwIDRwAwRAIg\nZb9fAc1Piov5wiXePY9rbJV/9BBiMm1SNgHpnX6XUuECICS2w3T9s0VO4j62i7zO\nxrCmagWpULVO94zOC8WOuLUM\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB2jCCAYGgAwIBAgIUavaLfyAPr0bekh4pdwqmO3lUc3YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCoNe6MFUly5QxWWkgiv6cA2MHXUF1eh3FFDcXW8lphI\nuzW55+MkMp/Rx48b0XHbcZkPDCQwlvyvLMm2jsp+VSKjgaYwgaMwHQYDVR0OBBYE\nFFked/DCjfQqMgJdD4zavojjG82jMB8GA1UdIwQYMBaAFO15wpPvsT6UFTNKz0lN\njeZzDt2kMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAnBggrBgEFBQcBAQQbMBkwFwYIKwYBBQUHMAKCC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIEBT484LYnmIVuvTlOTeKEHuCFMm\nWnKfY1znGb8VhMuXAiAW2ogMyvesboaCDtQUjbFsfPlmky8cqrqh+AqKnqClIA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHIXB8rwH8VDRqzqvxYd6KP7upPq1fNCPAxU5cJs9skqoAoGCCqGSM49\nAwEHoUQDQgAEKg17owVSXLlDFZaSCK/pwDYwddQXV6HcUUNxdbyWmEi7Nbnn4yQy\nn9HHjxvRcdtxmQ8MJDCW/K8sybaOyn5VIg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB2zCCAYGgAwIBAgIUNb99fV8vQM8Ze1vrWCACLoui0PIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNVomurppkvOPgZY87fdqmmf/mohmGFlE/Y1zInO+35w\nCIAQ3lBNzGGkCyADpSOwxHq0jFoxz+oUssWwnxXXUfGjgaYwgaMwHQYDVR0OBBYE\nFKa5OHhuFsbBDoxW8GAs8Ujs99KbMB8GA1UdIwQYMBaAFHpcZxZTaMJVBoXIy6Ea\nagwr2A52MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAnBggrBgEFBQcBAQQbMBkwFwYIKwYBBQUHMAKCC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQDkEsja5un/zGhIWfjjikzVif/F\n1TFMF0PLWaCLnXx8WgIgfAh7fH2UXEkaKXoS0Tw83UfnULLSTk0OaruNPoSwkt0=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMSwdGdNoX5kXnaQi/mqWQvU/AhqR47FMVLIR/WX4BLYoAoGCCqGSM49\nAwEHoUQDQgAE1Wia6ummS84+Bljzt92qaZ/+aiGYYWUT9jXMic77fnAIgBDeUE3M\nYaQLIAOlI7DEerSMWjHP6hSyxbCfFddR8Q==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2475,14 +2570,15 @@ "id": "rfc5280::ee-critical-aia-invalid", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a **invalid** chain with an EE cert.\n\nThis EE cert contains an Authority Information Access extension with a CA Issuer Access\nDescription. The AIA extension is marked as critical, which is disallowed\nunder RFC 5280:\n\n> Conforming CAs MUST mark this extension as non-critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUGtjcFMEGY5AEwGHWS+ZRiOnUKZ8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQvX27xi1pBYB211A4DBS6PV3DLgYvMju1bNp3G\nJ36/mhB4fVdETDuwjiR/Rja78QEJrFhVp2vlf+YDmvS9OFfyo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUIZCBfsqaZQmDXsD92XUz51b11jEwCgYIKoZIzj0EAwIDSQAwRgIh\nANmRm9r0WY7BR4MnFtW9I5X22Q4M1wNhVZaYaQqmsS+kAiEAzSbwNnBv6QysRLry\n4E+UC6ZF28MIEp9r3aQeObJGGCU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUbc3STy0jrOk4pNmlUmmnn0qtEgowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATzqRXLv+P7sa3xd8pU1DYSCjsiWUg/MCR0EmYu\nDfxC+aaKjv0j53oAjct8xxWvDFMWy7kSQ+ahDPu1UD1Epjeoo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUeTLvwcgA92GrpnTfmROh+Jes6jUwCgYIKoZIzj0EAwIDRwAwRAIg\nMWoPj8BdswnGPAp6Lgkr3wqJwNFhE5P6dzuAjm8AXgECIAYiK4kahSm2a3hbdrvU\nHESSmsXcLNwO5f56uQSJKfQN\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB3jCCAYSgAwIBAgIUM1D9jhRp7wL2lPbYtG1g+YDlUAwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFFDSp2AX9B7cgqnfYjSLoyn+QlgBxCw53hc0lkjLmWK\niinm5TbD7ZwflRd7f5N1BrDQpzbZDHqve44L6NPk4HmjgakwgaYwHQYDVR0OBBYE\nFHqszboyms/3EupNTKRs1ij1KKsYMB8GA1UdIwQYMBaAFCGQgX7KmmUJg17A/dl1\nM+dW9dYxMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAqBggrBgEFBQcBAQEB/wQbMBkwFwYIKwYBBQUHMAKC\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQCcFvTiVW5nj4BDw+yqNQlu\nSBDAYXbSIlhp0hwbh/UuGgIga3SIJ4j59Hz3BhYE5uDswnNhwsgs5gv8ROva5XIz\n1qU=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICunAhOklwMz2JGYnHg8kPgtk7c7slygDSxyECs7H9pjoAoGCCqGSM49\nAwEHoUQDQgAEUUNKnYBf0HtyCqd9iNIujKf5CWAHELDneFzSWSMuZYqKKeblNsPt\nnB+VF3t/k3UGsNCnNtkMeq97jgvo0+TgeQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB3jCCAYSgAwIBAgIUU5tH8yQFpHOVurqFDF8lOtMf0howCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABE0g5GsLb+poavZK2YECe+IAqTp5eOcJJn+OMVkIsMey\nKv6uN2+v7XT5uVgTWAtiuRzCet6BA7a9HZG1ItCQNXqjgakwgaYwHQYDVR0OBBYE\nFOL0N2nUziRRls9cdRNX/7tP44bpMB8GA1UdIwQYMBaAFHky78HIAPdhq6Z035kT\nofiXrOo1MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAqBggrBgEFBQcBAQEB/wQbMBkwFwYIKwYBBQUHMAKC\nC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIQDBYkocog4Ie5aUlA/C8tI6\nqIISV5NEmJh4h8SYbuNVagIgQozNEY8/Pwnsl0o2jpsOd6Pt7iIo0Kc61h2YJrEx\nqsE=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ26K8Jf1RUgFRRaJTVofZbXbUkHk5Z7xJGHVe+x7DvCoAoGCCqGSM49\nAwEHoUQDQgAETSDkawtv6mhq9krZgQJ74gCpOnl45wkmf44xWQiwx7Iq/q43b6/t\ndPm5WBNYC2K5HMJ63oEDtr0dkbUi0JA1eg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2499,14 +2595,15 @@ "id": "rfc5280::duplicate-extensions", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is invalid solely because of the EE cert's construction:\nit contains multiple X.509v3 extensions with the same OID, which\nis prohibited under RFC 5280 4.2.\n\n> A certificate MUST NOT include more than one instance of a particular\n> extension.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUN48hLGPXb2J3VL19wVLsEaKxQfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARlA0sTS1b9vF132V5azUGIETQLBNEmvV+J7JaR\nLop5SL9Za7g77ZLSMcVNyh+95qrr0oJl3RIxuMce5L+jvQuJo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUTuO6c1WfS44FOJ1ilv8Mh+Ilr0swCgYIKoZIzj0EAwIDSAAwRQIh\nAJAFZ6p+aLY4Pa2KEAO7FipuXynyAOz2uvImoQW0s8QGAiAuHWpVr9m3DZru7Jxc\n76NzcJgtl4bNpZZoovvtbHHGwQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUadK6B2L22jvWvihLrhmSdez9qxswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQpfDUxvbRGpAiC3XCt3xJQGs8jqSbUmYSgBnbS\n5wW/aGjgJoJ8LH3OPwrn5CVt8/Sfvs4rWsPHpwHRRoBjR5CWo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUl+yU35M8eXLPb2z8t+LcDAUabQEwCgYIKoZIzj0EAwIDSAAwRQIh\nAOvAab7YvXdglIxujodQKck3HfcvaH02ak+wtxacoMWUAiBU3agDmY2J2A3czWjN\nnNBt2jeROOsQ3hRjHxAxb4oCdg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIByTCCAXCgAwIBAgIULunG2yFIjxgN9c6RMlCUKnO2U34wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGp1zl0VoLqX4xHGNRd0Klnt7hvYFUi5n2XtTzc5Zr9U\nWjVcErGxBE+7w95cy9gY3AhaDElugWDdwDreyMc2H0qjgZUwgZIwHQYDVR0OBBYE\nFMcpneFp+rT58gn3PhNSlQK4n3LZMB8GA1UdIwQYMBaAFE7junNVn0uOBTidYpb/\nDIfiJa9LMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjO\nPQQDAgNHADBEAiAtDpjmGdqnoxumlzjk/JBZ7Uwc5PLXaaUTi3Pa54LVewIgB/jf\nSD4kUVYyiNZE4SNSVkXjvq/N3UQhxInPVLqJe3k=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOOWz4L06OeYmE7r3MJmNTsjIku7oAbCabjltLsZ1RSAoAoGCCqGSM49\nAwEHoUQDQgAEanXOXRWgupfjEcY1F3QqWe3uG9gVSLmfZe1PNzlmv1RaNVwSsbEE\nT7vD3lzL2BjcCFoMSW6BYN3AOt7IxzYfSg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIByTCCAXCgAwIBAgIUV9AMWFX5rSnDYyQQMYP21dEzBYkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFAnJxCbm/37AqHrOj+smbpBXx2hf+viKWUS9SfdpwxK\nd4NQan2bBnQ41281DTR+gZJShreYYWPti/WKddgIzA2jgZUwgZIwHQYDVR0OBBYE\nFEtpWJvytHjTBz4Cy2Ybvb2bYBhoMB8GA1UdIwQYMBaAFJfslN+TPHlyz29s/Lfi\n3AwFGm0BMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjO\nPQQDAgNHADBEAiB2ciqNyFSXhX1oSv0dA7ginH81OsQbc9Zw9qInvcmfKQIgUOFC\naJBtWkz5UDJvgYl0JXNCQFLKFX2cuEhaLi/briQ=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIL/LUIWojIrGOFh44qLwNhM/Zoum1t/X0tSErlC8vwPhoAoGCCqGSM49\nAwEHoUQDQgAEUCcnEJub/fsCoes6P6yZukFfHaF/6+IpZRL1J92nDEp3g1BqfZsG\ndDjXbzUNNH6BklKGt5hhY+2L9Yp12AjMDQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2523,14 +2620,15 @@ "id": "rfc5280::no-keyusage", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> EE\n```\n\nThe EE lacks a Key Usage extension, which is not required for\nend-entity certificates under the RFC 5280 profile.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUOfxMzwrrI2e61dHRtgOlUre3d0EwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT5ZiqYCBUknhNf4ncAk9CMIePuWeEO3LElt4u8\novXAlpzhBuLwsD3Iqqqe/KLrSnpvfhnjwIbfI/7Xjm5jTfK3o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUfViNRmC6R4mYc5lwwGvlyKvMZGYwCgYIKoZIzj0EAwIDSAAwRQIg\nJv0vuW31dOXAxZXXEyWQwocLFoe6NMp4WplLW5/ljsMCIQCHpT3MKItlvK6uJFxb\nUqOFoXVrx/UlvbUxUMRYdeOu+w==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUS6aWajC5lu5l4Z/MaRZNSTqQfGowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASzPbdhH3XSQQ/+sSDY2PPo+bnfK1gtgGkIJsVk\nBYTaXbUVjx8olF4J6TwMMuuBSXPQnKn7P4aO82R9MFA6y6IYo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUEwiM/984dsKvjpULyuLrFDRcl6YwCgYIKoZIzj0EAwIDRwAwRAIg\nfojwBqeb35k8muA5/D0O+QlBf5V34S6H3qCa3N+twrQCIAoHm1/nwwhwN8iwMula\nFacTefXnCaB1EmUTtAUQ/b0A\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBojCCAUmgAwIBAgIUBcc36klNMi/IKX0ApRVl67Tq6b4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABADhWOoVutlpTth6r9EqmMF4Xz9xLliqTKzfYWb9yja2\niMIdYXumDiu7uA7OAtPB1tVAHxkIZZ6uf+z0zs1ndM2jbzBtMB0GA1UdDgQWBBRO\nf97DqubtGVMSzk8i0/BB+uIbpDAfBgNVHSMEGDAWgBR9WI1GYLpHiZhzmXDAa+XI\nq8xkZjATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNv\nbTAKBggqhkjOPQQDAgNHADBEAiAqmRczWtnwUlSxOgKASZB1ReIpgNn42WsK3zfL\nnFD0swIgWzNFZ8ggo+TU9wjxl32364VmFUGe/9OV29Qdf5sB5o8=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIP/ckO2PRXlOWCcsI5GE1WBEWAVToWi3UdgDmmgHnWEzoAoGCCqGSM49\nAwEHoUQDQgAEAOFY6hW62WlO2Hqv0SqYwXhfP3EuWKpMrN9hZv3KNraIwh1he6YO\nK7u4Ds4C08HW1UAfGQhlnq5/7PTOzWd0zQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBozCCAUmgAwIBAgIUahgWoNQq06V0Mc7JcRoXLBxyuX8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABLoRe/BfHBj1/VoG+sxGf1+FNNWTHcROYdxrzmNG2Ahr\ntjTqjQ/KIWG3VPTSoHln7amcSMHScrzyEyGlOnVql/ijbzBtMB0GA1UdDgQWBBT/\n12hodWbCoqaxKEOLqIG8h1TPojAfBgNVHSMEGDAWgBQTCIz/3zh2wq+OlQvK4usU\nNFyXpjATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNv\nbTAKBggqhkjOPQQDAgNIADBFAiEAn+D3q2gzuT30s1NMo7YHqHuGxSlqnqDxwaxj\nrSUziw0CIEjs8iI7mvsdNuXyYxvgZI67yJJqvUNDC8JYh5Is8yEr\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDXFfh5VKZ0WEn5RXY29A1D27NFF8eXObv41/eglJq+xoAoGCCqGSM49\nAwEHoUQDQgAEuhF78F8cGPX9Wgb6zEZ/X4U01ZMdxE5h3GvOY0bYCGu2NOqND8oh\nYbdU9NKgeWftqZxIwdJyvPITIaU6dWqX+A==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2547,14 +2645,15 @@ "id": "rfc5280::no-basicconstraints", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> EE\n```\n\nThe EE lacks a Basic Constraints extension, which is not required for\nend-entity certificates under the RFC 5280 profile.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUXrFxsk2qkOqgPeOWfZ71T7l1WVkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQmxkYY+x4km32NA/7CK7zMwYNkx7M2jLiS6qfT\nRenUP9yaM1wi2JQgctnYPFUlMZ8QPEdWZolM5KszojLZVF8to1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUKESxmEnmrqvRXZW9xOmJTqQn/CkwCgYIKoZIzj0EAwIDSQAwRgIh\nAOT+ViuILDnvNdsoAly+yUsdj6TpvydvLzeyqW7FzcKCAiEAhjdcormYIiNglzwq\nhWs+P0QOGmDFXZZcf1KyO/6ypLQ=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUQkYaKCBv5bkxQ7pK21B/TzCd9ikwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASu4hFwO18ZS+hLDh+UwzmIKbO6r3xQwDY1YDAU\nVODTlgb2YPkl85uQv/6uynmN54DXN/cv15zBm+p4XwVj3g+5o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUTE7Bb871NUzknhrThWnkzjxMttUwCgYIKoZIzj0EAwIDSQAwRgIh\nANxPyZ0UXB6XwrpGdX1S14H2mHhkCWACXvLmrrCP7jcsAiEAhD/mBKsmACTa9e3N\nxIlIB9Zq40JoqkNF5C7M+UkG0+s=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUGfi+OrXS8yqR8IxEfrREsvW2qXQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABD0bd/V0HRpgxxaUdwxqwLpcFrfS7zczZ+9VgNXJvq/G\n3GluhYaT86K0HTdSIgC/XgDawFfGLBW1p7p6+Zxtp/mjfDB6MB0GA1UdDgQWBBQ3\ncqphrRLYsyZf/v279d0XS+0NujAfBgNVHSMEGDAWgBQoRLGYSeauq9Fdlb3E6YlO\npCf8KTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhALdbbfh0AN7FH4dTk16r\nFSnfMy5p+q/UD7daGL1WZdDIAiBt0yeWNmzCajKfhe0e983iTpYan7ybKqCz6pPM\nowBa1Q==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIH29xCs0mbf6jRWm6qhJUm+4BCQRF3V0JF1HAYDqD9oVoAoGCCqGSM49\nAwEHoUQDQgAEPRt39XQdGmDHFpR3DGrAulwWt9LvNzNn71WA1cm+r8bcaW6FhpPz\norQdN1IiAL9eANrAV8YsFbWnunr5nG2n+Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUH0AzX+WXqT//aheLI6aYRxxxw/IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOKFxUNbkjhnaNNQbOPC2kRn5ur6OItK0v0kZgnuve4p\ndZm58RSdr3X/MBJWSJfY9jCSPrNGOy94O5FfQ3DCpAijfDB6MB0GA1UdDgQWBBSk\nPlG8ttIT/FkJpGkQnMd6gkbwVjAfBgNVHSMEGDAWgBRMTsFvzvU1TOSeGtOFaeTO\nPEy21TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgT5jfq8cabI4oSUCRO2lN\nPboaRhMfHYBgxB1Zg5jjrq0CIGzq2E9EDDFf+MpZVo313Fu/4FNYDJ7DR35PVkZp\n0fCG\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBixjh6/JomNNoARnpaXV0THS4iIY8zRd3AfKPlwrNivoAoGCCqGSM49\nAwEHoUQDQgAE4oXFQ1uSOGdo01Bs48LaRGfm6vo4i0rS/SRmCe697il1mbnxFJ2v\ndf8wElZIl9j2MJI+s0Y7L3g7kV9DcMKkCA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2571,6 +2670,7 @@ "id": "rfc5280::mismatching-signature-algorithm", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Verifies against a saved copy of `cryptography.io`'s chain with\nthe root certificate modified to have mismatched `signatureAlgorithm`\nfields, which is prohibited under RFC 5280 4.2.\n\n> A certificate MUST NOT include more than one instance of a particular\n> extension.", "validation_kind": "SERVER", "trusted_certs": [ @@ -2599,14 +2699,15 @@ "webpki::ca-as-leaf" ], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> ICA\n```\n\nThe ICA is in leaf position, despite being a CA certificate. This\nis permitted under RFC 5280, which makes no stipulations about CA/EE\nstate in the leaf position.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUEDE7ZCQdRzcuWR/N5rs+Qp9zRCcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASfKqIWqsQUHl/+56zuEmGIS+1gjvS3Iq6d/ROt\nUjjQrBLuMkYA7e7kG9glUjE3cUXfeUbQAyK04k+JBsZzlPICo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUEmdlMkyX1qsPAfKJJ/Y6+n+0hSQwCgYIKoZIzj0EAwIDSQAwRgIh\nAKRN3vjpDoHdB9Cn2tmGQh9Ze8JgmezGxZsnPIVj7AliAiEApAkdAczeVbWGQsZd\nN8o/NZgYmuYLFx8L4+QvL9SimCU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUQWZHh4W1DdiY/Kjn9DuyGsMHf1gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATYHrZ5jlsbh3MPTuPAHn4j286rbGzfYQqA8qNX\nLi2DY2Tq/AiSMllBLGoWYOeYO0cmjq56RZk2HlLsMjb5jeJbo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUxjC+sj0pMftzeSzmq4oAmhSYjAYwCgYIKoZIzj0EAwIDRwAwRAIg\nVU/vX1Bgna+f3HlB05CHfS4A2wtg05Fqxc5ZM2DD8wICIGpVnQ+njUuLJ+fECjmK\nlrgQW/Q7x7ABKGfd7fqt79xi\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaigAwIBAgIUZAxTZSnkq+dEQx2Up82FsKUFsW0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBpMTgwNgYDVQQLDC85MjQ0MTc2MjU0OTAyMDMyNzc1MDE5\nMzM4MzQwNzg1ODk4NzY0MjE1NDg2MTYwNzEtMCsGA1UEAwwkeDUwOS1saW1iby1p\nbnRlcm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcD\nQgAE9uZ08eCI8GACs675E5tMLRVYKGn21iXRWyKH7Jl8Jejmg4XcY1AHDaWRnIfd\ntcS7JTSU5k9D95FDqgFC6YG2MaN7MHkwDwYDVR0TAQH/BAUwAwEB/zALBgNVHQ8E\nBAMCAgQwGQYDVR0RBBIwEIIOY2EuZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUEmdl\nMkyX1qsPAfKJJ/Y6+n+0hSQwHQYDVR0OBBYEFP86bkeKU4O25o8jBw1JFCC08VWe\nMAoGCCqGSM49BAMCA0cAMEQCIBPVtEUhzi2nZhMcrjj8r/rjZi2K57To5fgmJSw4\nIwOhAiAmDRq168Ha2cxUTeaOFU37Jjc/zSoswVdyFSS/2FE08w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIE1j1Eo5XQrx7NygBTBY6VDOaRqpTXh3X75xf2s0qsuXoAoGCCqGSM49\nAwEHoUQDQgAE9uZ08eCI8GACs675E5tMLRVYKGn21iXRWyKH7Jl8Jejmg4XcY1AH\nDaWRnIfdtcS7JTSU5k9D95FDqgFC6YG2MQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAzCCAamgAwIBAgIUYyktBLKGnosDrsSuTaDEOS3YkmcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzNzMzNjUzMDcyMDE5NDc3OTE5NDI1\nMzkyMDcwNTg2NTE1Mzc3MzU4NjUwNDA3MjgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABK7KwE7/3RYH4t3e+Pm2bPUdOTUTe6DYIHJVpahGAFG1QR+qqYGytgENIdyz\nkcPS25l/CUFnt47gW5o75q9aaiGjezB5MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBkGA1UdEQQSMBCCDmNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFMYw\nvrI9KTH7c3ks5quKAJoUmIwGMB0GA1UdDgQWBBRAYm+HGOlbIacnH/GggcULcUWE\nuTAKBggqhkjOPQQDAgNIADBFAiB05mjXyeVR4NplbaCWyHjp3g0jdFLips6Raq2f\nfqTYiQIhANhqnKlpMVFZIjK9ysKb/ARpqMHsVuXcGijhjO0/FqBn\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIK/mvDru+Qh7y5XtjfR531gG2qEqmL3jx7ggmHc5hihfoAoGCCqGSM49\nAwEHoUQDQgAErsrATv/dFgfi3d74+bZs9R05NRN7oNggclWlqEYAUbVBH6qpgbK2\nAQ0h3LORw9LbmX8JQWe3juBbmjvmr1pqIQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2623,14 +2724,15 @@ "id": "rfc5280::ca-as-leaf-wrong-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA\n```\n\nThe ICA is in leaf position, despite being a CA certificate. This\nis permitted under RFC 5280, which makes no stipulations about CA/EE\nstate in the leaf position. However, the ICA *also* has a different\nSAN than expected, resulting in a failure.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUU9rAIVC2RpcuILygfpGECm1CDiQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQHyAwbw4ZJ4im8uLD2fwXE6mr9hB+jZT4TdMNn\nK0g1NrljYArr2yyXPmUnjwPh4ifcor1YReWqw4jbfTCYtC+Wo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU9Ja/xfpazqydR7KPqrc35Z/FYaswCgYIKoZIzj0EAwIDSQAwRgIh\nAJUITtTq7kT/ps8lVtCXllZRMiE4f1gmV6EfR+9n3VLnAiEA0IEEuC1zUR78bBOx\nBNgge5qwZhczVAdbJ0CF7SMsx3o=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUYFVGcvlM3p+hPCLVbY8Q9JprM90wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQonH+qtq5CPRM7hvQ+7kww5vJIUIUULZF7/Zps\n/CHk4OW/wqEzo4exwdCpiALeXLT186Qwxf8zj8pRvClwnsFvo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUcSOmi31yQh4a5i9un+Fgj+fC0pYwCgYIKoZIzj0EAwIDRwAwRAIg\nS5xrY9L+Nmro7APRadwmCG/PEvaowM4E504/c453T7wCIBSB/UmLEqZ8sSd/WeCb\nb8JI97q1AxDqVNP/P0aUEe30\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAjCCAamgAwIBAgIUMNDzQ9g2prCvwH+Y8OowbrZGNl8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA0Nzg3MjQ1MzMzMjcxNjAwMzIxNTE5\nNzg0NjUwOTU3ODU2MTYxNzY0MDY3MjgyMjgxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABFn/rrxERPPFjDjed1+5HIH684qR8FPa39Ajn3nE+7bpWeHX7r8P4z5PVwOt\n4W+9BxNJgNiVWY9q5OWu9hbb3QejezB5MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBkGA1UdEQQSMBCCDmNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFPSW\nv8X6Ws6snUeyj6q3N+WfxWGrMB0GA1UdDgQWBBQ3V6B9w9KERa7Gg4LYGQ6sxLWr\n6DAKBggqhkjOPQQDAgNHADBEAiAiTMbVwpoDOplaiP+juaWTFahy7kKd8cHEB66S\npqxkgQIgN3jbulMVRA3BHctlIAHeF1blMEkiJsjNi/HOcdbcG84=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINJ5X++VR8pzljuLAvMXj35eEcTUUS2oHWZkpjNA/un+oAoGCCqGSM49\nAwEHoUQDQgAEWf+uvERE88WMON53X7kcgfrzipHwU9rf0COfecT7tulZ4dfuvw/j\nPk9XA63hb70HE0mA2JVZj2rk5a72FtvdBw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAzCCAamgAwIBAgIUZDlf0+xfbdxszUeL9RNRBxtBAmkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1NDk5NjQ4MTQzMjQ1NDU2NTAzNTE0\nNjQ3ODMxMzkwNTY2MjMzOTg4MDQ5OTI5ODkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABORigQ+FPzIcqgrwDfsVTUesT7lrEjgZmLu0KTuga4RktkM/yh2mPGyezQpR\nKjVIAfePlj0XeO3+XCaCtzgwZTijezB5MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBkGA1UdEQQSMBCCDmNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFHEj\npot9ckIeGuYvbp/hYI/nwtKWMB0GA1UdDgQWBBShnDT4KFHcbVVjzxoIz8e2ag1/\nMzAKBggqhkjOPQQDAgNIADBFAiEA5tFr5YI51/bKFmA29QNsjC/3P5MISwhVUr1d\nRqtuGtACID7buSlkti/EM1ZSVJm0KWar7qMtict1pkCHRKECAIrS\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICJXoxqiKxaKzzXrteYgpW2AumSfj+QTLJrY360xbQo0oAoGCCqGSM49\nAwEHoUQDQgAE5GKBD4U/MhyqCvAN+xVNR6xPuWsSOBmYu7QpO6BrhGS2Qz/KHaY8\nbJ7NClEqNUgB94+WPRd47f5cJoK3ODBlOA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2647,16 +2749,17 @@ "id": "rfc5280::root-and-intermediate-swapped", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following valid chain:\n\n```\nroot -> ICA -> EE\n```\n\nThe configuration puts the ICA in the trusted set, meaning that validation\nshould ignore (and not fail on) the root in the untrusted intermediate set.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUUKUoHoptAz025JoBBep6fp1NGqAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1MjA0MDQyMjExNzIwNDAyODY3MTg0\nMzIxNzcyNTU4MTI1NDAxMTM2NTM4MTM2MDMxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABNJHVu/wn/9eQCQp7hUajOtkbAUgfunvXkGEhHFkyvcgzk0BlpUYUaa16A+E\npkUWKwbX8PRvd/lpqWNvDWzM+IajeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFO8ONdD4\nhi2Jbw1VV8g3E6xSW5AoMB0GA1UdDgQWBBSAOyN/ZDHvrikypI+mhoHPImNJwzAK\nBggqhkjOPQQDAgNIADBFAiEA2yOW85b6dKkKCE/y/d+9rPExtXYNllr05S9OnfDh\nP3wCIEx4EDG9GktouiVnFCj212sKfdITakUBWCcm50ANZjIe\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUcX1x2CDHzyXK/mu8j37yxsCxbDkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAxODQ1OTA3ODA1ODA2NzQ2MTk3NDgw\nNzMzMjcyMjk0NDA0NzU3OTQ4NzYyODc0NzQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABAVstZymPDio2Jho2ZcJU0aw2TK2i4nHbOvmfdv9o/jQ2Q4tp7SoByVlk3yE\nYC/A/fHdZbxrvDCjm3O9JkR/P6+jeDB2MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLhkTvdX\n/HwnxK0Jf0ZZI0lD5sNBMB0GA1UdDgQWBBTHZ0gSZVUVAIamfcN+gWL3MNkcxzAK\nBggqhkjOPQQDAgNIADBFAiBUpTH1hAhu1Hjflzzz/OVBDp0IwoXrqzuVTLZddI5y\nUgIhAOoEz3O4AGie0xhlvy0A8RwGo39LP3hBktcwgriIVOOV\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUWye7e1RbCJvgX/STzqK4BjFTUWMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATRnPRAoWsKt1a7bCUC4d5LVeATqCIgKdv24HsF\n+iNiW571BgeoNxDDFN93B9rL7A75tUfbFDaYz8SyEhyFtu39o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7w410PiGLYlvDVVXyDcTrFJbkCgwCgYIKoZIzj0EAwIDSAAwRQIg\nOJeQPKfXLiqztekkx873x2MJkRdbGd6ucpZurTf2fyUCIQClGOL2y8wPQbnpHxM2\npzuk500Mj3d/9SaDdNjPz+iR3A==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUIFVWPXdVgzuTa3IUUt/GkHmWSfIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASQHRu73Hh1Gc+/e3sDfuf0NTiBtok4eUMUtC3F\nELoEJ1um3/D2YLdIq+s3uJc6YPA9ED+n1Rfiyoi/93etdywZo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUuGRO91f8fCfErQl/RlkjSUPmw0EwCgYIKoZIzj0EAwIDSQAwRgIh\nAKFAuxaPKKzEkKpkJrVVcOCcH9wCA6FPDFzgJTLgk6DxAiEA0XKmFluSN+2YraFp\nK2TXd7VC4l8C5ZYHeXJVELYrLes=\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICADCCAaagAwIBAgIUA3J0bNGgRTr9K6yj3K2WDmt+f3UwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTIwNDA0MjIxMTcyMDQwMjg2NzE4NDMyMTc3MjU1ODEyNTQw\nMTEzNjUzODEzNjAzMS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nduTNdxyww4578hFK/AP2iLzLPwAKMFIFA384c/v19xb9Ldjmo+FG64MZ93OuE2PE\nXp4Cz1DSGiQp08CXQKJSAqN8MHowHQYDVR0OBBYEFIoB0xO3E7yuihqbKO1xLYSp\nUi2+MB8GA1UdIwQYMBaAFIA7I39kMe+uKTKkj6aGgc8iY0nDMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiEAvKqDnmlE++gU7NCQpbelOtcKArgdil4Xl4NXs+l9\nIfYCIGJN/uGVnHVHIYwIhBafSZnlm6fVfPMcRA8nRxDlbZph\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGi22+PyjGQofWEQl/ZaVnumchGfJEHvX/hoiGyGvp9eoAoGCCqGSM49\nAwEHoUQDQgAEduTNdxyww4578hFK/AP2iLzLPwAKMFIFA384c/v19xb9Ldjmo+FG\n64MZ93OuE2PEXp4Cz1DSGiQp08CXQKJSAg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUULqulcB8aGoCgOinhQ3hOy3ivKQwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMTg0NTkwNzgwNTgwNjc0NjE5NzQ4MDczMzI3MjI5NDQwNDc1\nNzk0ODc2Mjg3NDc0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nZ7+qoz4oN2hZ06TAQ1EuexRVklB2XqLaAKosezlPzSSQ1NCmCXyI9tFbf+ewSVff\nTX7gpwBDmaCsZTEMzZF3PKN8MHowHQYDVR0OBBYEFMesm2UaowoixfkNsyjlCJSx\nrR71MB8GA1UdIwQYMBaAFMdnSBJlVRUAhqZ9w36BYvcw2RzHMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA7rAItY4ZA5Okqf+6ew3ASw0z7oeQ9zcfzP+Z8eRZ\nG5gCIQD/xTVr+lXXtwh1n/fWi2JJ4FDIcbVNgxN6YoEPoeNy4Q==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFYG10tTnyyl++/irwSDyld3tZyvKnyl/09gT6KwepK2oAoGCCqGSM49\nAwEHoUQDQgAEZ7+qoz4oN2hZ06TAQ1EuexRVklB2XqLaAKosezlPzSSQ1NCmCXyI\n9tFbf+ewSVffTX7gpwBDmaCsZTEMzZF3PA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2673,14 +2776,15 @@ "id": "webpki::aki::root-with-aki-missing-keyidentifier", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert incudes the authorityKeyIdentifier extension but without\nthe keyIdentifier field, which is required under CABF:\n\n> 7.1.2.1.3 Root CA Authority Key Identifier\n> Field Description\n> ...\n> keyIdentifier MUST be present. MUST be identical to the subjectKeyIdentifier field.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBmjCCAUCgAwIBAgIUWYZTvLsftW3V0/6zuoyuTwiOSCIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQEaNja5QlLyByQgv5/tX68dMxOteV6Gpwe/yEm\nXCS7RdvjhOMMtTtVd7BRaBdGo9Dgk/pAo6i9yS0Ofi56BPD/o2IwYDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAJ\nBgNVHSMEAjAAMB0GA1UdDgQWBBRJcbG1WihacFUaFBGrzxr6euZ5czAKBggqhkjO\nPQQDAgNIADBFAiA3aN9sCFmv1PS6UDT8vt7HUp/nG5PQmkLO8aD9AWhVtQIhAPrk\nFNjB35UFki3xGyniTSM34Fr4FuZuihdnqaIwo0KY\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBmjCCAUCgAwIBAgIUKiJRXNkdClq01hCv7mpppHepthMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARKh2ow5G9N6POdc2poB89XgypLqSn5fWUeA02n\nhl2f6InoKQ2IFejTvaG3hZuGUX8onvBijn4iOGRaWk3YSfelo2IwYDAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAJ\nBgNVHSMEAjAAMB0GA1UdDgQWBBS3BKCQXGMmBISwMYi6AQzFUMfxCTAKBggqhkjO\nPQQDAgNIADBFAiB5JqV/ae6EwNvLYEftsqSy0vk5eXDWw0xvitF/7KzDSAIhAK7B\ne/DwKiPP41+rFiwRviNSrBIK2pot7dWP6bMgXQzP\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUEBYcvrY1ABtlTvykOTivb/Ls2JYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHliiGAsv5ruT96GTSCbblcUk/QUndmp45h7d6CKMauS\nSqeD3Bw3OrpFGdORQCbQvi6azBLB4hISSL4uaV900HWjfDB6MB0GA1UdDgQWBBRO\nSG/q4LlrpIW73/Bs4LEv1ILVxzAfBgNVHSMEGDAWgBRJcbG1WihacFUaFBGrzxr6\neuZ5czALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgQaBFzQlPK9nY/7ksYqcu\nqqsMN80cPvpNO+Q7ajYIw20CIDVWtnhrdDI+yOKPEJ7q27L/toYOiBSeRi81Xjh7\nBqlu\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEbB6xBL/ALfjn/RsG6WkFCHEo62Hilj42XbwmHXn20+oAoGCCqGSM49\nAwEHoUQDQgAEeWKIYCy/mu5P3oZNIJtuVxST9BSd2anjmHt3oIoxq5JKp4PcHDc6\nukUZ05FAJtC+LprMEsHiEhJIvi5pX3TQdQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUXNEVw1kfPaETloaud8WXbWDOKoAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMep+KyJUowkTEnDcg/EeksiJOl6oJyYw5gBDeOLwMF/\nDVAXSqo0qjf/pQjW3DLG9oMt16flWSUy29nv38wu9CajfDB6MB0GA1UdDgQWBBQt\nvxbJIJQuG3iDghH6n/gTHzuaYzAfBgNVHSMEGDAWgBS3BKCQXGMmBISwMYi6AQzF\nUMfxCTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgPRlFBRGjtRcuJNeVHAWo\nuDY/0w1sH4g/pCuyReB+BD4CIQCvBR+8VjfCWFDscUKiAqmQmvaPVVOAgOtdJcb0\nTTEegQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIK4NY1DD+7n6qU6Y0VzoXVc+hOxpcC7yqMmJQLy1S0GsoAoGCCqGSM49\nAwEHoUQDQgAEx6n4rIlSjCRMScNyD8R6SyIk6XqgnJjDmAEN44vAwX8NUBdKqjSq\nN/+lCNbcMsb2gy3Xp+VZJTLb2e/fzC70Jg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2697,14 +2801,15 @@ "id": "webpki::aki::root-with-aki-authoritycertissuer", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert includes the authorityKeyIdentifier extension with the\nauthorityCertIssuer field, which is forbidden under CABF:\n\n> 7.1.2.1.3 Root CA Authority Key Identifier\n> Field Description\n> ...\n> authorityCertIssuer MUST NOT be present", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIByDCCAW2gAwIBAgIUYn8h7dh0egeXOGHoGCdW787xUxEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT5cqbeHz5bE0eriReC+grK9gfdPOOgMQgE3Xtt\nAEDSD8K1iwlQoAxZgYzxptMXb4BJf1Z1Vr/PI23waKd7xW27o4GOMIGLMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMDQGA1UdIwQtMCuAFDANp2uGjRlR8SAjQkEftB54gfjfoROkETAPMQ0wCwYDVQQD\nDARteUNOMB0GA1UdDgQWBBQwDadrho0ZUfEgI0JBH7QeeIH43zAKBggqhkjOPQQD\nAgNJADBGAiEAj/aLq5zYYO+fl24nitZP/RZqFwmCPFRN9SyxBBmhTecCIQCBEHvB\nA0E9t12PTEZFZXxCrTfiB3mPMFzRIBeNrxlAYA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBxzCCAW2gAwIBAgIUGcH5bIM7d5xo4gEwC4aOYEuTS1QwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQFXbjfeq7va3DJUjkTubZV058M5X938r+IW1A1\np26lHI/jogTXX5HFGhhOVYE6KOq7RwNBin0mBJMl0OZwF2/2o4GOMIGLMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMDQGA1UdIwQtMCuAFK7gG0imEp4KR8mcxix1G+ZF0wNroROkETAPMQ0wCwYDVQQD\nDARteUNOMB0GA1UdDgQWBBSu4BtIphKeCkfJnMYsdRvmRdMDazAKBggqhkjOPQQD\nAgNIADBFAiArA4i5GRlcOjh6sZaYPUoed0YVf3ABv8+icnlJBMNUoAIhAJKVEzYU\nWMOQdoPVwn+C4gwq4l40W3ZgKWvbAP8V/LJh\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUactUhJniCyxa8VPoIyRhFM0YuY0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABENdtc/hbogZ6V0isDrcwr1vIoxcYGcsfApiTyN0rc/m\nxYSw3dYZzEkSxMzZ69SgcE9CqTDUUOchoBr3f6FiTH6jfDB6MB0GA1UdDgQWBBSL\n7z+HFABL4JCeHF3mGBJVK2whRDAfBgNVHSMEGDAWgBQwDadrho0ZUfEgI0JBH7Qe\neIH43zALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgdflIUf5iLhlTpHbOe66F\nnAAe9uoo7XQfMi+pB4unfxYCIQCuNX61Lr2dW30cUxvicEdy7lnMJTAz0IXZpr35\nFpMHrA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFi9wo8plwVvhWcpESJkZWt9rBGQDQfmmRexPZbkJLUQoAoGCCqGSM49\nAwEHoUQDQgAEQ121z+FuiBnpXSKwOtzCvW8ijFxgZyx8CmJPI3Stz+bFhLDd1hnM\nSRLEzNnr1KBwT0KpMNRQ5yGgGvd/oWJMfg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUCo0lk3HUK57TWzcrA8cCS6keyfQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIBiP2lFUbgLWjQwyXIDdf7Wk2NFNQbDjNYNOF1jgmHZ\nEUZfjGk7AQPatfmEkLOauxunLzP8/xto5N8QCjvO9gCjfDB6MB0GA1UdDgQWBBS8\n6ch/BxN/RlYg2i6mCmBxZx1oaTAfBgNVHSMEGDAWgBSu4BtIphKeCkfJnMYsdRvm\nRdMDazALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAMVy3P4DLHFDP8Qy+hVZ\n1wDKkQi6POLVpCKNZ7VU8PiJAiARBGjPUjTH++fS3GCcsGO+NlgnyKDk7dYHF1iW\nkGOReA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINo7Agfm52mLTlBJsH//7XE10AfYcFXaC3B5DEkClC4LoAoGCCqGSM49\nAwEHoUQDQgAEgGI/aUVRuAtaNDDJcgN1/taTY0U1BsOM1g04XWOCYdkRRl+MaTsB\nA9q1+YSQs5q7G6cvM/z/G2jk3xAKO872AA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2721,14 +2826,15 @@ "id": "webpki::aki::root-with-aki-authoritycertserialnumber", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert includes the authorityKeyIdentifier extension with the\nauthorityCertSerialNumber field, which is forbidden under the\n[CA/B BR profile]:\n\n> 7.1.2.1.3 Root CA Authority Key Identifier\n> Field Description\n> ...\n> authorityCertSerialNumber MUST NOT be present", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBszCCAVqgAwIBAgIULhuxqdXm/Ybu6/qqYxwILA76PXcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ6AtJnYW9d1bnwPHsRrieq0SjRYJnxzN0+Wa/x\niL/Uiat9Rgf6UDx2GD6o/bb6E8OeJGSpeNKD4/lZ26hDuvdoo3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAj\nBgNVHSMEHDAagBRlQzJgdeMmCEozC2WyLUqbL8kxtYICBNIwHQYDVR0OBBYEFGVD\nMmB14yYISjMLZbItSpsvyTG1MAoGCCqGSM49BAMCA0cAMEQCIB6hVJkxQrQLqm0E\nbjsqHwp3PvqRrv3x2/PMta0QmQ1YAiARfBOfbJRDxzHQFuccurrksBHInnak+KhS\nOkJLbgs4SQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBszCCAVqgAwIBAgIUTG1BGTuK9OmTOjOf304b/JwrEkkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAR6Pr17D1pT6tfsFEeP2rVH31Dtq1otu/ojrkgR\nMnFBNl3nxs7IEK06Au/iBPQeQVk7Lqtkbg6Z3UJB6q/PnpMIo3wwejAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAj\nBgNVHSMEHDAagBQCwUHkJjkR8FkZT6l2RWbl4C+Ko4ICBNIwHQYDVR0OBBYEFALB\nQeQmORHwWRlPqXZFZuXgL4qjMAoGCCqGSM49BAMCA0cAMEQCIApvhf+80/qhz3lc\nN+f6bZ0/Fts1r6AKBEPZgyuqQAHPAiAH/i6DB/YFxxW9A35JzhmYPpr85h1m8NdX\nqlq88H65zQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIUQNOT0hn0k6Nr1FXJznNy1O/k1ccwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABJVQI7u3fuKj5O9BESQuynXSJkQStwrzwVm3Sc3vyxRC\n0ewyJjvdn6+6gvrFHJ9o6wMddo78Mw7otUc4HCDal3SjfDB6MB0GA1UdDgQWBBRx\ncQ17FWaZQ9NchHlJD1AwqC6vgTAfBgNVHSMEGDAWgBRlQzJgdeMmCEozC2WyLUqb\nL8kxtTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAMf4cBnilIa8snNvEPug\nL7RDWUYPMchzGxjW22GqYLIGAiEAykLiMLAVMp0RKMOtaOEBMAkps6cpRKcEXgVg\nD+t09r0=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDXi2S7fbyvrnfox/0kUHtQ5Jsuzg/5FtM4Ma+ILEYftoAoGCCqGSM49\nAwEHoUQDQgAElVAju7d+4qPk70ERJC7KddImRBK3CvPBWbdJze/LFELR7DImO92f\nr7qC+sUcn2jrAx12jvwzDui1RzgcINqXdA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIURN+OcAWIF5qDjwKR9bw6Lo2XUHMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABAqsEx/8aU6jS/2Vesyj4qlvVGc9XK2ckStK5xkiPNo0\n+0KRe8b03kQccv7CxDyFBpFr7+Exe3FfJIlFFybW2tqjfDB6MB0GA1UdDgQWBBR2\nqpYa2dNuNYC9TOevYOoYpkIawTAfBgNVHSMEGDAWgBQCwUHkJjkR8FkZT6l2RWbl\n4C+KozALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgfeqFEHvImPJDDBy3vEmf\ns1U2ilnKrv2/1XAwhj4RK7gCIQD/lstug5puT07azbXOoVvxV11qLHIf5Zq6RnRw\nEPM3yg==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPPwzlg3VIc1Z+SqLbonDy7OfLI2lOR9oLCFYy8auGW+oAoGCCqGSM49\nAwEHoUQDQgAECqwTH/xpTqNL/ZV6zKPiqW9UZz1crZyRK0rnGSI82jT7QpF7xvTe\nRBxy/sLEPIUGkWvv4TF7cV8kiUUXJtba2g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2745,14 +2851,15 @@ "id": "webpki::aki::root-with-aki-all-fields", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert includes the authorityKeyIdentifier extension with the\nauthorityCertIssuer and authorityCertSerialNumber fields, which is\nforbidden under CABF:\n\n> 7.1.2.1.3 Root CA Authority Key Identifier\n> Field Description\n> ...\n> authorityCertIssuer MUST NOT be present\n> authorityCertSerialNumber MUST NOT be present", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIByzCCAXGgAwIBAgIUCzQIVHfmvgpxwbjXsk1Lr+RS6uIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAT7DEPrDVyfWQhCo4b3T4ssXoMgA+kEjZEQkuaE\nDOVRbNDii34Tp7YZBd233XlkXADhvy2k5pd60oSJLIl27xa5o4GSMIGPMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMDgGA1UdIwQxMC+AFOJKAPojPGcZO8uojdmxaxU9EuovoROkETAPMQ0wCwYDVQQD\nDARteUNOggIE0jAdBgNVHQ4EFgQU4koA+iM8Zxk7y6iN2bFrFT0S6i8wCgYIKoZI\nzj0EAwIDSAAwRQIhAPIsQ9n+s9kalS/mifaZX0pIgKEIkLS/J+aXeRmeyEUHAiBf\n+H+RlRIvvYhe3OHHgMivjpSZSP5s+l6pIxt5hutrCg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIByjCCAXGgAwIBAgIUI8Pa2m3UA+sIBIGz0QXoXMKeDfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQKcKT3/I+YGDf3dUtqrxsnvOQl2MLP/Ssm/iS2\ngaJt63DrPsF9+H+IGXQT1ZG1xGvj8paUaqNKCUkvpGlAHey+o4GSMIGPMA8GA1Ud\nEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29t\nMDgGA1UdIwQxMC+AFKob5d+Qz64UjVq7ymKx6f7c4pC0oROkETAPMQ0wCwYDVQQD\nDARteUNOggIE0jAdBgNVHQ4EFgQUqhvl35DPrhSNWrvKYrHp/tzikLQwCgYIKoZI\nzj0EAwIDRwAwRAIgD1AmsSs7BLsqlMMWwyHjCVpIPQ0eUXDcg57QiEDWKjoCIF5x\nf5CQrSYD9pI6dsg7O+yZO4q4M6XK9dkaG5WlEuIR\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUSQFZdpOIUSBMyvOltMH+5Uq2BuAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDEnJlRWoJb2FtVNXp7Ij9M2W0fzwrb+kv4zZsT9LdL3\nXBTT3bx6KNw5hR7ktJBhyYfUKIl2WCPKYzQ1irIt312jfDB6MB0GA1UdDgQWBBTr\nTYUprpPPV/911sQVZjCgiJjkgzAfBgNVHSMEGDAWgBTiSgD6IzxnGTvLqI3ZsWsV\nPRLqLzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAOM666NvrXeKvbbCjdLE\n0WNquw9vuMPbd5wCSEkXs25tAiBq03Z5c2MStVOJDhKtOiGqUmwshfj7bkkN9G//\nVfdzIw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOloYktmH8PvgQuGv9giYqqe13hGG6wuzYldo3zhj3uUoAoGCCqGSM49\nAwEHoUQDQgAEMScmVFaglvYW1U1ensiP0zZbR/PCtv6S/jNmxP0t0vdcFNPdvHoo\n3DmFHuS0kGHJh9QoiXZYI8pjNDWKsi3fXQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUUWkZ4hWX7vte71GbvhcrvRaHwvIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDzmNmu/rDay6BVCvAN768dmYujHVRdvspb5/mOfosZE\nPSRMICVtTxQqGe6Lss5Jo15jdwmXLUDgz4yn9edevcCjfDB6MB0GA1UdDgQWBBTM\nzqkd2kZEzqcQPcF+HJXy0WhF3DAfBgNVHSMEGDAWgBSqG+XfkM+uFI1au8pisen+\n3OKQtDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJiGcH2FhKx0x/v7u53/\n0EPLLKXkl6iEmL3S/x4LVWMzAiA+LDZVgYTuyYk37H4+zxX3XHCkQbKzuTcR/+69\nVid/Hw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPgcIGW1fk38BAjVLxbl5dh4aZTAc1BBNoFmB3Eb+8TyoAoGCCqGSM49\nAwEHoUQDQgAEPOY2a7+sNrLoFUK8A3vrx2Zi6MdVF2+ylvn+Y5+ixkQ9JEwgJW1P\nFCoZ7ouyzkmjXmN3CZctQODPjKf15169wA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2769,14 +2876,15 @@ "id": "webpki::aki::root-with-aki-ski-mismatch", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert is self-signed contains an authorityKeyIdentifier, but\nthe keyIdentifier field doesn't match the subjectKeyIdentifier field\nas required under CABF.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUJsHQnn/WNEC+QNo7vaDNcu0F5lIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASphY22PlZdAM325dqtK049LA5k8YAKhUD6EoQ/\n0l/DUpafgGUfi8oOEH4rKWz8/+bUUkYauHoI+BbBADpwKTb4o3gwdjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAf\nBgNVHSMEGDAWgBTS5LlaHw8gC/frLWq+wzOeD3UORDAdBgNVHQ4EFgQUcGOH1wbV\n1EHK0Qyn5g2rjfdwLyQwCgYIKoZIzj0EAwIDSAAwRQIgamCWJAmSRrVRmk0wMBR6\nhciXMXq6HY4WKUkMNzA1JdcCIQDMBipaqCuenKeYf0/Tk1LZIM1o38f4JyaOjzpi\nMUSKlA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUEtBmVKxpt0376xr+pRpYh9smbw0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATXSPHo5yJ4W8GsoIf1K5EHge+yndEAAIWmkYCd\nr27iKuPZEYYcSzkaMAad1GiKHFBQTSVO+FM5yiU5U0GmFZi7o3gwdjAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAf\nBgNVHSMEGDAWgBSjmQPbvjWYpMg2tpBzdvks8Y9F3DAdBgNVHQ4EFgQUqzKeKC+P\nv+DSk8MV2YHwbhPhhvMwCgYIKoZIzj0EAwIDRwAwRAIgEr4iem6nbTymBp//AsFu\nXj3mfhbUeiDK1h52l0Aa37sCIHBa9YkxM7q1FDR+0u208J+1mkUZ0ESKdZu8yKIU\niNYe\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUZPWC51yxWTg/DUDCWDNlzArD8mYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNtQOqz22aQU77pPycnXp7yto/98hf6HXTYK8vdnfkna\nhucx7COsCGwBQAjwQJwLEqx/KADSnYPQXMQvJNtzRSyjfDB6MB0GA1UdDgQWBBRl\ncvo6iriuzFksODoknPBC3IVjFTAfBgNVHSMEGDAWgBRwY4fXBtXUQcrRDKfmDauN\n93AvJDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJArSlmprZ8kVijs1UV9\nndc9m4akJZvsqQatevuslMLGAiAL9YZbDrLDkLNqAbi4JejVszvqhBL+iXeKKeRs\nEDD02w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGbgDNHqBX/8OZvH/18173fLIeVzg8Pqg6NSvp9aDACjoAoGCCqGSM49\nAwEHoUQDQgAE21A6rPbZpBTvuk/JydenvK2j/3yF/oddNgry92d+SdqG5zHsI6wI\nbAFACPBAnAsSrH8oANKdg9BcxC8k23NFLA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUOkvRKlgvswiRvOpvzmbOe4vfud0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBVv2QHtd0TEmoKSiEIy3M6bhQg6Ib5afNU2lApWBVk0\nXuC6W5a8/uYIw+nKqapfGATL70f4gXTbg4VgyOp56QCjfDB6MB0GA1UdDgQWBBRM\ne+iLCYaJpimHKYQAPHi56N8zhjAfBgNVHSMEGDAWgBSrMp4oL4+/4NKTwxXZgfBu\nE+GG8zALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhALwCQ4zBW6NisqbtNuZW\nVCUcTwwtTofjPex4TD1A2DRAAiBvfNPXHdQivFPG0+7Px9SNP6mO6nfOGOCXcnm3\nTO/QzQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEICeNm+AEobdGJvMdCCuCeolVrcmvW31cU8Gh2zRJTEVgoAoGCCqGSM49\nAwEHoUQDQgAEFW/ZAe13RMSagpKIQjLczpuFCDohvlp81TaUClYFWTRe4Lpblrz+\n5gjD6cqpql8YBMvvR/iBdNuDhWDI6nnpAA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2795,14 +2903,15 @@ "features": [ "pedantic-webpki-eku" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is correctly constructed, but the EE cert contains an\nExtended Key Usage extension that contains `anyExtendedKeyUsage`,\nwhich is explicitly forbidden under CABF 7.1.2.7.10.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUPH4G0ye6KfoeEa8Brst18eQ/2FYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQqQyaxTB/CPModySj3utmQXZOnJY6VTVhKEP6V\nhHP3xxxJjapGdGfBPx1iWc3TVi06GW8HrnBn1PqsFZ1F2t08o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUb0C1LxYDa6rh+qRma4tA3d25/IowCgYIKoZIzj0EAwIDSAAwRQIg\nYsdHFafsQPqCvqv6qeb1BcrlW1M+lfEo3XWHgpfj2E4CIQDtgQkygICl0zMsFGse\nU7Rg0W4ZEulJF/iL6EArhy76JQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNayleGxL9IM8HMe1nvFRUDxP6cgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASWzRPSCY97zSs9mtlJiHytrTm+Z0eEztAmhAtc\nfmiapDnUd7lohzLfK7EwF/n6WbdTxjEr3Z5ZKcKDWDFUXVbgo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUoevVUB2rqbObOFhVTTKpyHgQ81UwCgYIKoZIzj0EAwIDSAAwRQIg\nB5W/rWD3kPMlfJGsp9HO2IvhUo7UtiRDwFPgtcgJoWkCIQD3LRrtiP+dIVUPu1NI\n2sPXIeqnIyokwY/IVl9KBpXgLw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtzCCAV6gAwIBAgIUOy7Tgm1ULnkwAHp0X3e21/I2ZP8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOX1R2hoRklUq0npSIZJ5eyIsNmub72RlN6nPgsRYb4G\nsD7zNW/xXzCp1RIb9yGAVoGh9yJ1+06mpZuKFmCjCJijgYMwgYAwHQYDVR0OBBYE\nFGWgKuOBfMdONq4x1VDadZPHc51YMB8GA1UdIwQYMBaAFG9AtS8WA2uq4fqkZmuL\nQN3dufyKMAsGA1UdDwQEAwIHgDAZBgNVHSUEEjAQBggrBgEFBQcDAQYEVR0lADAW\nBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiBNrp/DkDGp\nS9JLfgDK1mOeggD8tAyvgZPFFFmogPsDzwIgPD1xHkbii73okIu+O4S7DlZPaMDE\n/UjRNX5aHWa6TsI=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDa5CL+tKR5yAiuvQuZzF8/97IrjHyfIcHUFP91T7gvVoAoGCCqGSM49\nAwEHoUQDQgAE5fVHaGhGSVSrSelIhknl7Iiw2a5vvZGU3qc+CxFhvgawPvM1b/Ff\nMKnVEhv3IYBWgaH3InX7Tqalm4oWYKMImA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuDCCAV6gAwIBAgIUMcpaW9uKpSULZHtOytmHoMZ0XwMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGgozAJN3F4i8KcQEfHV1+Lh276JQKplTr/PyWnxEL1R\nlbTvy5Tx3jx+nMIFlzDtvSjbCdfTL0qZwPE8ggyHmhajgYMwgYAwHQYDVR0OBBYE\nFFk1YOU916TDXGCnjJhkQCJGPuD4MB8GA1UdIwQYMBaAFKHr1VAdq6mzmzhYVU0y\nqch4EPNVMAsGA1UdDwQEAwIHgDAZBgNVHSUEEjAQBggrBgEFBQcDAQYEVR0lADAW\nBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiBdYQwDo8Vb\nanc/P1xNopvqeMSXcZL0/5uhiGnML+mX5AIhAJikw6D6B5KIKAI5ZeROptQuSqHZ\nvbPwiwPnjuSk91xX\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMDcuiOb29uV5A4nU/FUCl1sPIV/1nwc67q6ZTX+aS/SoAoGCCqGSM49\nAwEHoUQDQgAEaCjMAk3cXiLwpxAR8dXX4uHbvolAqmVOv8/JafEQvVGVtO/LlPHe\nPH6cwgWXMO29KNsJ19MvSpnA8TyCDIeaFg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2823,14 +2932,15 @@ "features": [ "pedantic-webpki-eku" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is correctly constructed, but the EE has an extKeyUsage extension\nmarked as critical, which is forbidden per CABF 7.1.2.7.6.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUZSovhcLbIZ2P5SUe7PHPXTEI4DYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATbDK9bqIgdF6kIeAsj8DiIDZX0eNdNOXR9GV9G\nKCJGD7mC3Lc8DEL2PJ1IZODfqS9OkukSC8j2j5IY3NGJ2dEro1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUWqnM62KqRPFsLxeGxm7i0a3B+qgwCgYIKoZIzj0EAwIDSAAwRQIh\nAMnf3O5z3m3Zv11nVGgPGS0d4m6+uEevrRT4MzrmDUwwAiBJ2Q3gp+zun+SzcV+r\nQQf61EYYhlQNqr41udKh0qbTwA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUUp40eMpHyQ/3p67n7k5kpYbhXF0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQqNMpCZM7vcMDSRl14BrCndjpC6Vh0xe2yc072\n355hCWYLj8TvCgjDXb6luQV3PM5H4DfOjn5YoW9b4R5556Amo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUeW6q6BXC0KTG8AxIldzrOXWVolAwCgYIKoZIzj0EAwIDRwAwRAIg\nXSUE8HFba/ZN4Vg29PjLco0lzPdxr+yvc56PC3aI3CACIFHDndx9T4TH8e+N5Lnl\nNmhPFb5oPJBarIrcskNXFkBk\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVmgAwIBAgIUE37bkx2rVsg2XbIGkfOMx6yC5vwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMGt0B8C8xG92+DOPfctmqMB3CGlJREKuy4ehfdG/0WL\neyrxwyaq2ZrdC+8OfTQUuXEaVRNNFij3yVkgF10zeEOjfzB9MB0GA1UdDgQWBBSr\n1SwX7FCtJvqWIeAU7ba0sS4gLjAfBgNVHSMEGDAWgBRaqczrYqpE8WwvF4bGbuLR\nrcH6qDALBgNVHQ8EBAMCB4AwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhALiSy2EdADRE4UG8\nf2j6GWoTjVWD0BVQ5tfCPmnICWnAAiEA+oezqKLdnH+5Xy4/uKmRsVMkE2k5TihE\nXcugNFF561s=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGPgrd/9LD5wvWP5z4s0IlYoJabS6A36QdQLq5QRYkMcoAoGCCqGSM49\nAwEHoUQDQgAEwa3QHwLzEb3b4M499y2aowHcIaUlEQq7Lh6F90b/RYt7KvHDJqrZ\nmt0L7w59NBS5cRpVE00WKPfJWSAXXTN4Qw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVmgAwIBAgIUJqyZ9ACbdHpaCgZOYbkDJlV5FWswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCfM/ZqbqekO3naVrq0l042SAG5iPDhMNdegLPXK9C6d\nYftCoLMPUjr/hcJAiICU1aRqomJeyrVmh83jiNwe59ujfzB9MB0GA1UdDgQWBBQf\nZSP8jFN2FJ6nLvZu14t936SZNTAfBgNVHSMEGDAWgBR5bqroFcLQpMbwDEiV3Os5\ndZWiUDALBgNVHQ8EBAMCB4AwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgI5hIq3B2tacF/loU\nXy/qJkk9XycxOg5B6BBhL3TQc0kCIAmtuiFVarD0eXTViKshRFXx3Wc5KUzqphRV\n/Xr8xM3v\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIK9u9t+Zh5tSNA4D9zple0iIEVyO8lC8EGJQViw/ODRZoAoGCCqGSM49\nAwEHoUQDQgAEJ8z9mpup6Q7edpWurSXTjZIAbmI8OEw116As9cr0Lp1h+0Kgsw9S\nOv+FwkCIgJTVpGqiYl7KtWaHzeOI3B7n2w==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2853,14 +2963,15 @@ "features": [ "pedantic-webpki-eku" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is correctly constructed, but the EE does not have\nthe extKeyUsage extension, which is required per CABF 7.1.2.7.6.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUYYvE2A0YItI91XWEgKtUK5PJRYAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASpC1IxnIvEHFpvaRt2apCOkzf83UN4dOuHRFDE\ndXhZ+Stbmh58iIVLbvxetAbnDYPnJ6m/jFOi69WHPBewuTe8o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7g7t85F/5s84xIOxDcWNQTui+SgwCgYIKoZIzj0EAwIDSAAwRQIg\nHUU02qlFkb7AqDm25ZLiuDyhX4FE5jPg9keK/6yt36YCIQCgYO/jkpc43nO3k+kI\nbovzCTJJpHNPOGJB81pKGgFt9A==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUC2oKeHyTLaFK0lZhz/lXAYWaCdgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATcSL6o8Rozt5NzZMxCOfQayk7TwkTuN89Wcmys\npZ+eqfzx4TqTZAv55+xeiixgZWVxQWfW89r6j+UQJGtTXOmuo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUAP1SNbgVtUe+33AbESNQblyizKUwCgYIKoZIzj0EAwIDSQAwRgIh\nANHcjBe9kpuvaCYr5xNHJ84DpcHwrYs5a9/qRgXQi3YQAiEAg1OV2eOD6vp0yEY3\nWexlIBgcKPxdikj64dMBkPANP9I=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmzCCAUGgAwIBAgIUcvZWidFAy37FmvnEi9Nm6BPofW4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDJuaTTu3WKh0vnWmUsxx+kAapaHX+HePI/1ZAirGeHB\nSHwmkF1oX2uzj79ZXUTllXAPYKl/dtVoQC/C3f2wIQOjZzBlMB0GA1UdDgQWBBRU\nClYQvv012eEs8Eb88rko8c2UOzAfBgNVHSMEGDAWgBTuDu3zkX/mzzjEg7ENxY1B\nO6L5KDALBgNVHQ8EBAMCB4AwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSAAwRQIhAJhrq3j7iO9TNNOtZYwTpVXcQpz/0/91xfkFzIFY1aQ9AiBd\nmVhgo1SSqggv7ze1Zi3dvWdFnXgwUh4dTxz3zqYqeQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAlqHGh+2qQaYHM/h2gLSGxHEsz069nei5ZPHF+rp0hZoAoGCCqGSM49\nAwEHoUQDQgAEMm5pNO7dYqHS+daZSzHH6QBqlodf4d48j/VkCKsZ4cFIfCaQXWhf\na7OPv1ldROWVcA9gqX921WhAL8Ld/bAhAw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBnDCCAUGgAwIBAgIUAmE2c7G2E2tswZ3tfdLlsZ8UwQgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABM7JSSUXQ87cP5p5EWzx2kTq9aoi0tIi1ghgVAoRUGM/\ntEqj3muHhMUh1zRnrWxXvbJCGh4t1iQVZq5e8O7MVPCjZzBlMB0GA1UdDgQWBBRs\nh5hk0WWY8VieRYJbq7Dnn/vEEjAfBgNVHSMEGDAWgBQA/VI1uBW1R77fcBsRI1Bu\nXKLMpTALBgNVHQ8EBAMCB4AwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wCgYIKoZI\nzj0EAwIDSQAwRgIhAKTGcwdlDnw9c0eh4MxJF6A9uqYAki1f4k3Jg8/Rm26qAiEA\nzO/SfLWfcbEJStPHwTfPccg7zytuQmv+drUHHjqt4Fc=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKp1yqGnoMMXc1OudveYxQG2RuaZklHvJH3iM5KpwpEzoAoGCCqGSM49\nAwEHoUQDQgAEzslJJRdDztw/mnkRbPHaROr1qiLS0iLWCGBUChFQYz+0SqPea4eE\nxSHXNGetbFe9skIaHi3WJBVmrl7w7sxU8A==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2879,14 +2990,15 @@ "features": [ "pedantic-webpki-eku" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert includes the extKeyUsage extension, which is forbidden\nunder CABF:\n\n> 7.1.2.1.2 Root CA Extensions\n> Extension Presence Critical\n> ...\n> extKeyUsage MUST NOT N", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBpTCCAUqgAwIBAgIUGzQNGutfbRJbUGaaPSjDKBPPFdYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASRDnGgL6rgCgvAj2FOX1KTv3TJxVPhArdV7+jD\ndEZbz5fRGH9kpJ+NrQQEcnx9eYZMfc5YkirBrdWZ4wB8QvoMo2wwajAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU+keL4rBe1YvhlqbcWBcXNtXSdDkwEwYDVR0lBAwwCgYIKwYBBQUH\nAwEwCgYIKoZIzj0EAwIDSQAwRgIhALf/t1qXXY53Y/+YYC3o7hXwZzBUqpYHSjJV\nbuLN6YSQAiEA8829b9Yf5RIe5Nq1RJaWNuvCjkI2VC9IXcHXetZp3rA=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBpDCCAUqgAwIBAgIUF64MhlYefAuTgnDmXvXBRRRY8ZIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASRx7yXj1/s2zo3CYIl/0UYGSAOHVXRNHLF5X8y\nvqBTs8yKkpb8rx98gbA1/zhIrrYCzaP3u7kc1VOKdt8iJeqoo2wwajAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUBqYOHO/wl16hg8zLLy5O5c5O1zIwEwYDVR0lBAwwCgYIKwYBBQUH\nAwEwCgYIKoZIzj0EAwIDSAAwRQIhAOlMtHjBapVQhVnDgphPesMuDpIXGOrwtpHu\nVjcgDtDGAiBzBGeQWS5SmaD03NX+0Fy0YzLEXXD9Ja0A6eoli6HjEA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVWgAwIBAgITJImxhhBH91pqtrQ4FUGrfvSTZjAKBggqhkjOPQQDAjAa\nMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgPMjk2\nOTA1MDMwMDAwMDFaMBYxFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0C\nAQYIKoZIzj0DAQcDQgAELJ1iaAUxUw0n3PH69hgwOkQDgNLIkr40x8W+OWyq/Uwp\n6cwmuQ+2dwoHFZsSRlrcnnIYeDKUUHMdyvnxuHxreKN8MHowHQYDVR0OBBYEFBPd\nxgcJ1QvjPXygrbVpR/TcYO7mMB8GA1UdIwQYMBaAFPpHi+KwXtWL4Zam3FgXFzbV\n0nQ5MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzAN\nggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiAheRT7/oSIW97V/d9m0DyP\nTM4Rlb7VFp5uGUVlhC4SpAIhALO5GHVsvGJygB+cAyf/GctMEJY0aaBXMNmuipAk\ny25X\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIGmzzoFuWwKPRTKPn4OiY/KubNAIQJ7vUgqjGjMkzM1oAoGCCqGSM49\nAwEHoUQDQgAELJ1iaAUxUw0n3PH69hgwOkQDgNLIkr40x8W+OWyq/Uwp6cwmuQ+2\ndwoHFZsSRlrcnnIYeDKUUHMdyvnxuHxreA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUOWkg4eAhFSqytBXxaS+4J2sijD8wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABPiFWGjwBnfkQxsSJJOGg9BqYjkbfZiykdQvmjgoyB4t\n1q8WLcQnhhkc5GV9PtyU6mwsGbab6uZn9njab5/hgySjfDB6MB0GA1UdDgQWBBSb\nFTwTy1oq8Ny53WFDcpYSRRO//jAfBgNVHSMEGDAWgBQGpg4c7/CXXqGDzMsvLk7l\nzk7XMjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAOVpUaEnWDbC2WXbJdmd\ncOV2gyIAwtZGm0MoDeF/3yqOAiBPSeYahJ5FSwFyr7qefyIWOlRHndP+f+4+I4bM\nZLSNoQ==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAdEVYTEy9vnTmVH4D3Tcl0wu/qJOaE9ldZjC8G6aitgoAoGCCqGSM49\nAwEHoUQDQgAE+IVYaPAGd+RDGxIkk4aD0GpiORt9mLKR1C+aOCjIHi3WrxYtxCeG\nGRzkZX0+3JTqbCwZtpvq5mf2eNpvn+GDJA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2907,14 +3019,15 @@ "rfc5280::nc::permitted-dns-match-noncritical" ], "features": [], + "importance": "undetermined", "description": "Produces the following **valid** chain:\n\n```\nroot -> leaf\n```\n\nThe root contains a NameConstraints extension with a permitted dNSName of\n\"example.com\", matching the leaf's SubjectAlternativeName.\nThe NameConstraints extension is marked as non-critical, which would\nbe a violation of RFC 5280, but CABF explicitly permits this as an\nexception to RFC 5280:\n\n> As an explicit exception from RFC 5280, this extension SHOULD be marked\n> critical, but MAY be marked non-critical if compatibility with certain\n> legacy applications that do not support Name Constraints is necessary.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVGgAwIBAgIUNPgUSbbqfbE65whHmqVVUemq4mowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARFp8s3KA2u3AQ7kQK6Jz/1CYRl/xhELjGLEyBA\nH3DF6q2TjZK6tQWz5ZOfhWHH1Y94s1DCVXle/x8btWTarYqVo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUhyLsoNAQpYIa8F1zMQe0whbCHqgwGgYDVR0eBBMwEaAPMA2CC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0gAMEUCIGl7DICJNdBPduTLvRFSPDXpNrH1\nYi1EbjW+gB+ax7S3AiEAt+7IOxpRS/saUgMz+rLpiG7q5U8TR0XJoEIAr0tStvo=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBqjCCAVGgAwIBAgIUax1bF9c8dbiXymywgolCAcnwMtUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARp68XjwSEsPSslrvJoE2SoauqOcgeqXmP0tvbS\nsJYr4f+h7oQ7Iscr2Sku6XL+jbsxlq7mPhPqim0RI0SwhprTo3MwcTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7JuJFzbs+l/CMzW+q/0QMXXGeYYwGgYDVR0eBBMwEaAPMA2CC2V4\nYW1wbGUuY29tMAoGCCqGSM49BAMCA0cAMEQCIEd4KTUXrAMsbADryIDDChXhwLW2\nlwePJ/qUrZxitpUaAiARPFlF5HGL8L2Zer1Amj7FObg61xRyyYSC3TWiUubp0w==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUGoZfDGNZz7IYaYJye4EKFpblvRYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBxl6+5okKsxXC9mg0DHHbOFcV21M76YL0LuAbrQvHPq\nBvJt1aGM6a8HkMZYbssXTU/5fDngjKIKFS2gLFnmNrijfDB6MB0GA1UdDgQWBBT7\nyfPOy3YKaxsHe4yWnApnKpQ+MDAfBgNVHSMEGDAWgBSHIuyg0BClghrwXXMxB7TC\nFsIeqDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhALqt9gIDai8/fGhx71pz\nrYzGh0niMjunMnHVGgeMw2I2AiAXMbUXLERGsoSv9P/jZeoyS3l9fDtRQPj6oH3+\nMpooAQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEj1nYNWbepKBc6bQo9PBZNqZwCFx7dHZqPsmHv3FZNmoAoGCCqGSM49\nAwEHoUQDQgAEHGXr7miQqzFcL2aDQMcds4VxXbUzvpgvQu4ButC8c+oG8m3VoYzp\nrweQxlhuyxdNT/l8OeCMogoVLaAsWeY2uA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUTECqLjoDAundHIGEqIcc7Ti9eGowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABJFpx6CRJOdzZ+LDjVJT3lUbFBt7RD3bcLvk2cNHU0WL\n9DKQicgMKiZxGTMmbNNX9Ftj1uFvBIK6c9VLtnCwu1ijfDB6MB0GA1UdDgQWBBTR\nuyl3+V+14y0VNYcLXLDoAFYgMTAfBgNVHSMEGDAWgBTsm4kXNuz6X8IzNb6r/RAx\ndcZ5hjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgfLANktA2Y209/u7C5Hf3\neXvG/FnzuxXaNuRvhtiItjoCIQDPv/TsWU3eaWzc4aNqQaXfqhJriCpc88yaT82G\nU+LExA==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINtIcjEUwSfWl8OrEaqBJiVsOiLKsO25mKdHckw+GcmioAoGCCqGSM49\nAwEHoUQDQgAEkWnHoJEk53Nn4sONUlPeVRsUG3tEPdtwu+TZw0dTRYv0MpCJyAwq\nJnEZMyZs01f0W2PW4W8Egrpz1Uu2cLC7WA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2931,16 +3044,17 @@ "id": "webpki::nc::intermediate-permitted-excluded-subtrees-both-null", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> leaf\n```\n\nThe intermediate contains a NameConstraints extension with `ASN.1 NULL` for\nboth permittedSubtrees and excludedSubtrees, which is forbidden under\nCABF 7.1.2.5.2.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUC9BWtCdrBkgtyEkCNXewaubfaLwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASMYcHTJ42lmBdDGuoj/dVNn+FuA30Sm3dULUTI\ncv6tQOGSgTNfZV881wnm6+pBXbkMAvZ3gWdD8R1YHF3BBlQJo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUSJYTVq4ZJ5Gc9MVgbC/slIhlx0kwCgYIKoZIzj0EAwIDSAAwRQIh\nAOPwRWU19FN/7WjFJVWCgvKGsKPF4/TFlwwxZD5xcKTaAiBF9flPX8QCeBlVeakO\nqD6kTmWltAa7FbccKd3L8hoITA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUXewPsochYCkPwW3vACeX8HFRwu4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQXZOyQMKCYuTwvbcBviJtjcs+Y1xqtGtXpTw4M\nd4NnyDlVosYSIf79llfOAINR5hE0LdsVlyOIBPuUI26JYmUAo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUuO2+vRhcMnXIyygCHVVH3hrZibIwCgYIKoZIzj0EAwIDRwAwRAIg\nD5Q/U0izAEAHeuwZqQABKQzCCkm6PETMGQeFKUj5kLgCIGchQwlLnVW9V4Fe7z7+\nBhGhcgZ5Zz4KIIFQoJf9vAaC\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICDzCCAbWgAwIBAgIUfcOgFMu4UH/jiEA+1L+ivRnt9gMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBpMTgwNgYDVQQLDC82NzQ0NTAwNjQ0MDE2ODM3NjU0MjY2\nODI2OTAzNTIxNDIyMzEzNjYzOTY0MTc4ODEtMCsGA1UEAwwkeDUwOS1saW1iby1p\nbnRlcm1lZGlhdGUtcGF0aGxlbi1Ob25lMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcD\nQgAEz+bXTm5T8Kv59hQZ4L+kAT6U+DlyIjoCul1Q1FspRj2irbn1Axo9+DuhBdE+\nQPF29koGldC5mfHexfFIl24gV6OBhzCBhDAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAfBgNVHSMEGDAWgBRIlhNW\nrhknkZz0xWBsL+yUiGXHSTAdBgNVHQ4EFgQURA0UP1JrI6F3p3N0cEiRF1p4hi4w\nDAYDVR0eAQH/BAIwADAKBggqhkjOPQQDAgNIADBFAiBBKUtbFrQ9jHj7eVSTUUKY\nVcyrBrioNLWy1fMy90wAIAIhAO7ZfVs/UIawus0a0DUfuBblwDtDx9OvWjCPl6zc\nhLjM\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICDzCCAbagAwIBAgIUJ8Zo9Pk7Pgj7YYaNLVHphUbpbjgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDA1MzYyMDA0ODQ5ODc2Mzk2NjY3Mzc2\nNzkwMjg3NjI5MTkyNzUxMzUxNDQ5MzYxNzQxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABJkZlphoFdimwm1NfStXDEtz8wM/u/xX5LfqqO2gqAMmIQNQ67npmnAq9J58\nDCh9oS+nGj29QEprwJrAq4oeQXCjgYcwgYQwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUuO2+\nvRhcMnXIyygCHVVH3hrZibIwHQYDVR0OBBYEFLbJ4TZSayj8u+TJk3H/eCulT97j\nMAwGA1UdHgEB/wQCMAAwCgYIKoZIzj0EAwIDRwAwRAIgbWcZwyLsvilkiOHj1Nbs\naq5tlZVitbnimVYxpUirr9oCIGjpMQIoZ2dTCuRyoTH9ZEeKLsa/IwCAm2PVcW7F\nVzIw\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaWgAwIBAgIUOJ0gD759b6Ui1cx+Cc6qy0avWkQwCgYIKoZIzj0EAwIw\naTE4MDYGA1UECwwvNjc0NDUwMDY0NDAxNjgzNzY1NDI2NjgyNjkwMzUyMTQyMjMx\nMzY2Mzk2NDE3ODgxLTArBgNVBAMMJHg1MDktbGltYm8taW50ZXJtZWRpYXRlLXBh\ndGhsZW4tTm9uZTAgFw03MDAxMDEwMDAwMDFaGA8yOTY5MDUwMzAwMDAwMVowFjEU\nMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR9\nrpRB/AcG0fyWCqvomh2Wd+a/N3yqpjT1Enqrq8thECz/87e9mCJRXzi+/Is6c6TZ\nBbo9B84iEqYYQLfVvzy+o3wwejAdBgNVHQ4EFgQURO1UlOZvw/8RG45y+rZ+OpYn\nanYwHwYDVR0jBBgwFoAURA0UP1JrI6F3p3N0cEiRF1p4hi4wCwYDVR0PBAQDAgeA\nMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoG\nCCqGSM49BAMCA0gAMEUCIDW0yd9nHZz+5DUg8+KOyryh0GsntavJtwRiu6VOAGN/\nAiEAq2ue5sNYA3/HbsdRsMZeqcFbqcUGZkWY4t/XHjUeRfk=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ8fqnpXJGhifeNH2/43HCssJjGLuxySSXB+zqODTseroAoGCCqGSM49\nAwEHoUQDQgAEfa6UQfwHBtH8lgqr6Jodlnfmvzd8qqY09RJ6q6vLYRAs//O3vZgi\nUV84vvyLOnOk2QW6PQfOIhKmGEC31b88vg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUNrn2j7eU+e/+inESvG9BUKWI/nMwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwNTM2MjAwNDg0OTg3NjM5NjY2NzM3Njc5MDI4NzYyOTE5Mjc1\nMTM1MTQ0OTM2MTc0MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nt9QJ9+//RmMzaMLIGDYmwx2nE9RTFUnqRd/WzY5BI/eDSmLHQr+l5Z5GTZJvPIi1\nAFhV0iZZG8azu5PqBSDTp6N8MHowHQYDVR0OBBYEFF3G6j1Vw+sdpKwrffl6azgE\n+8KBMB8GA1UdIwQYMBaAFLbJ4TZSayj8u+TJk3H/eCulT97jMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA9w2HL0gDEGW96lSlG4Bmbc18uHpfvhwRV2KqjF9N\nMRkCIQDoAEqE6dOHOzg+HOJKP4QO3AzJWE3J3La0wXVB7nfinw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOae+42207ouWakHshLSj/vMQfTr5x3hzWWH903QTexMoAoGCCqGSM49\nAwEHoUQDQgAEt9QJ9+//RmMzaMLIGDYmwx2nE9RTFUnqRd/WzY5BI/eDSmLHQr+l\n5Z5GTZJvPIi1AFhV0iZZG8azu5PqBSDTpw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2957,16 +3071,17 @@ "id": "webpki::nc::intermediate-permitted-excluded-subtrees-both-empty-sequences", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> intermediate -> leaf\n```\n\nThe intermediate contains a NameConstraints extension with empty sequences for\nboth permittedSubtrees and excludedSubtrees, which is forbidden under\nCABF 7.1.2.5.2.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIURAr4ZWv9QG58Ohznpz7kvy4mQ/EwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASSiHDOgACuKgyOmbgmN+JZY+kdr1FF/GicAlnD\neApjJMBj5Pyg9Soem37P1o/XQG/4gO/R7cELcHa+RvjPf6Pio1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUgQ7KAH6UkB+VPbz4p08YkYDSuNswCgYIKoZIzj0EAwIDRwAwRAIg\nduMPIsHjT0DVXI9hi94co3B1goyO2XLow3/C+3X04g8CIBYHq7Jud1QNnyav7eih\nwxdA7V8oUyOynn+iUxijtK6Q\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUKZQcMwghugRrfFQbcDe9K85tM9IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATPBI7HjTxL3lkItUucYuVv/eVf8wsTgF9AtJIp\nKUNxpmO9XANKSpF6D1G8k7f5J8ML27kCc+Hpvhaaf6ZKoi90o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUx7Mm/oFEMlyz3oNf9JT1/BMpYtQwCgYIKoZIzj0EAwIDRwAwRAIg\ndmfnFAWU1mBQ7qiwZDqrJIJiEcqpKX3nYXQRJsU/KgUCIBEkXl3i/8I9vZqiFSCy\njmoZbuDSoH1n2tFjalUtn+hx\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [ - "-----BEGIN CERTIFICATE-----\nMIICFDCCAbqgAwIBAgIUEbgio2sk7T27Grwgu9Rj4S45yQwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzODg0NTYwMTgyMjY5Nzg4ODI5MTcx\nNzY1Mjg4ODI1MDYxMzc5MDg4MDM5NDU0NTcxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABL4P5jJW2GU2XBOCGDdoJvXXYnlpktr5CrrQ95K/Q66fC3ejCPoaIbPl7ZfZ\nVBmO0VdafuaFyUNWEfqQJP66M8qjgYswgYgwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUgQ7K\nAH6UkB+VPbz4p08YkYDSuNswHQYDVR0OBBYEFEvGtt7SuyrAWuH+HD03j/yDIzFq\nMBAGA1UdHgEB/wQGMASgAKEAMAoGCCqGSM49BAMCA0gAMEUCIBVLHfRQTrLQC38G\nVFmwrd8jtcIJIl0K5vlV8vIsSW1AAiEAm22ZPHEiIS8UfEpEsVY3R5pRPUk5AMkA\njiRyzcqILyQ=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICEzCCAbqgAwIBAgIUVO5us6EGAu8BBKTxYQ2WHYn5UmgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAyMzczNzE1ODg0MDIzNzU2OTc2MTQy\nNDkwMzI5OTU1MzczMDQyOTE3Nzg1NzMyNjYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABGnl9qTZ3HwaQxo+CevlSlLenO9d9BvAAycm7/Vy6Hga0onzHdAO8K0nNQQm\n9XH9J6U8k0guhZ7I2vW4WKmwvzGjgYswgYgwDwYDVR0TAQH/BAUwAwEB/zALBgNV\nHQ8EBAMCAgQwFgYDVR0RBA8wDYILZXhhbXBsZS5jb20wHwYDVR0jBBgwFoAUx7Mm\n/oFEMlyz3oNf9JT1/BMpYtQwHQYDVR0OBBYEFB0FGmJTJ4tqFtt1q+ulTB9biaF6\nMBAGA1UdHgEB/wQGMASgAKEAMAoGCCqGSM49BAMCA0cAMEQCIApa78mVUv2N3Ih7\nGsLDU1TSjahJiLW5r0fcFnsPgssYAiBgw37yq07mSs/HOIaWX9g4vwHWpF97JncY\nVKEm5AEG7w==\n-----END CERTIFICATE-----\n" ], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICATCCAaagAwIBAgIUDyz5XYc6MabFmEvp2qxDNyTajncwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMzg4NDU2MDE4MjI2OTc4ODgyOTE3MTc2NTI4ODgyNTA2MTM3\nOTA4ODAzOTQ1NDU3MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nq2gzLNFqU0RPtYHgMQ5dpuw1Vyr+DLtyN9OtCmbjKyoYcGoJlLRDjI9qiy41jj8t\nwNxpvFl4l5U8bfuLfdtsvaN8MHowHQYDVR0OBBYEFFV6v6xvWIZId0j+hNkt/HtJ\n1DPPMB8GA1UdIwQYMBaAFEvGtt7SuyrAWuH+HD03j/yDIzFqMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNJADBGAiEA6kJ6YzoKn0vBNvSqIUbFlNG2n1hnLdnjZzVAXiBM\nCakCIQD4aVSmqq56a6zgE1e720Bxhd6eT1H7hPnTLSYVMx67/A==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINiY25sLmwxhtAxtKbZ3G3Dn0sGYEovObfwat4CQJfQaoAoGCCqGSM49\nAwEHoUQDQgAEq2gzLNFqU0RPtYHgMQ5dpuw1Vyr+DLtyN9OtCmbjKyoYcGoJlLRD\njI9qiy41jj8twNxpvFl4l5U8bfuLfdtsvQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB/zCCAaagAwIBAgIUPwm6/jQdYJOLSgHMkD43TkEymKUwCgYIKoZIzj0EAwIw\najE5MDcGA1UECwwwMjM3MzcxNTg4NDAyMzc1Njk3NjE0MjQ5MDMyOTk1NTM3MzA0\nMjkxNzc4NTczMjY2MS0wKwYDVQQDDCR4NTA5LWxpbWJvLWludGVybWVkaWF0ZS1w\nYXRobGVuLU5vbmUwIBcNNzAwMTAxMDAwMDAxWhgPMjk2OTA1MDMwMDAwMDFaMBYx\nFDASBgNVBAMMC2V4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE\nfsyfsvL5ZWhUhWw0jLXq3QgGnI0LR0qkAuPs4mgKUmrqpkCL9t3A1ClKIVfyPtmj\n3av3XNM671piMdMXi/FhPaN8MHowHQYDVR0OBBYEFIZ6mQKutjfz7VHyMr+wt78h\n6lsMMB8GA1UdIwQYMBaAFB0FGmJTJ4tqFtt1q+ulTB9biaF6MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiBpdlazmCw4S4Uk/GI8s47r12dst0q89q+MMgKLy0vc\n4gIgULIN5H00N+yI4K6/8nlSnRuulGkbOmdUYcVzWuyGIj0=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIL8Kav1Ji8TxniIvvxpkyKZjVE8/NrmD893NibqMGiDloAoGCCqGSM49\nAwEHoUQDQgAEfsyfsvL5ZWhUhWw0jLXq3QgGnI0LR0qkAuPs4mgKUmrqpkCL9t3A\n1ClKIVfyPtmj3av3XNM671piMdMXi/FhPQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -2983,14 +3098,15 @@ "id": "webpki::san::exact-dns-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with a valid EE cert for `example.com`.\n\nThis EE cert contains a Subject Alternative Name with the dNSName \"example.com\".\nThis should verify successfully against the domain \"example.com\", per\nRFC 6125 6.4.1.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUHnkY72q1/MC3CbsiO2OMTIhikfcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASu0MdSY3Y6SdhzYnNilywlYz7PAnJ6v5WUN80q\nZGM9dBkmFt7RB9Vegqy26W1ETOD+2G1iUu/G+JMCcc5PEzyoo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUo+J0fn0oHgkUY/3sdjvSbEgLeGYwCgYIKoZIzj0EAwIDSAAwRQIh\nANIRbzZtoP74Gu+w1kBwGdRx8n+HkUY+Ts0et/xB1ywjAiAcfYbfEMf0ghAw8+x8\n0fLzaVyr276u0WMe6ShGcXLZCQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUJa+zQQOwtHDNhk1FbgCvxSk0AfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASdrkIwG9N84sdwe2JJpz3FR7D7KdtxBnEKIm3X\n5dsK1xCFjNeEdoya8JrfKM55H16U1BFzXAo/D0Qf+tsBOKyno1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUSVOKS59vSufzMfWKpPg0H1SBkVMwCgYIKoZIzj0EAwIDRwAwRAIg\nfDatn2Y8PmhPIQ8RcW+V0IP9luegZwWTRqBShdQfezACIAOCpmMG4LH2/md50G44\nrX/yadzR0ip7BungO+uKFBkc\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUZV8B670tY4OGMXXEkntwHIYhQCkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABNwmGe+atYVhG2CxOw8kAz/oFH5MsAGIzfBa2tA6nvfU\nV7QiM+Z1NpY4/vt4bzEFryi6Fq9cWanlDtAY3k6Q8VijfDB6MB0GA1UdDgQWBBQD\nqkFX9igPerZw88OSJI22sBkkrzAfBgNVHSMEGDAWgBSj4nR+fSgeCRRj/ex2O9Js\nSAt4ZjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgFvpYgLmYlSQ2mdbd2V3D\nF85X5hxPm1VnF9Shs37lECwCIHYTAmHd1oZ/F0TVEybBd6IXFzRhucY9iRcAbK9r\nFW+W\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMuHWH9bK7qbSnDCuf8xtdX8bzF4pyWQIwAzIqd9xdfpoAoGCCqGSM49\nAwEHoUQDQgAE3CYZ75q1hWEbYLE7DyQDP+gUfkywAYjN8Fra0Dqe99RXtCIz5nU2\nljj++3hvMQWvKLoWr1xZqeUO0BjeTpDxWA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgIURatyR3tO84v5vHN1vBL7mnFiQQMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABKfIr6Vd2zlFuX9XXZNgmaVFIJNNSPIE+yqTVuh+ymj2\nGcfA8QHoSJIHBjRCaDR1rd+OFVpfeXAfIghXcQSlaE2jfDB6MB0GA1UdDgQWBBS+\n8QLKgfK5RZ/88aVd+WzpU0JWtDAfBgNVHSMEGDAWgBRJU4pLn29K5/Mx9Yqk+DQf\nVIGRUzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAPZ/BEdGdzd82XnDH6aF\n8r08DDNdbucquoAA7hO1Ofg1AiEAphkMoUEZR+rQaLK5Pg3ktr1mSrM7Kn4IiSv2\n7/8ZXJ8=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIB7YjSrHr4ZHXcbfau/zDZZgRp770Xkvg7QmOjwFGLHmoAoGCCqGSM49\nAwEHoUQDQgAEp8ivpV3bOUW5f1ddk2CZpUUgk01I8gT7KpNW6H7KaPYZx8DxAehI\nkgcGNEJoNHWt344VWl95cB8iCFdxBKVoTQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3007,14 +3123,15 @@ "id": "webpki::san::exact-localhost-ip-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with a valid EE cert, for IP 127.0.0.1, i.e. localhost.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUDR8TBIN3KSRndoPruoV0lpDJvE4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQRpQmyaWGYMxLqBotdV2MVECSI1OLxTH9IEtn3\nETSgCA3uZXPZRh7q8xUN+jIYz+htz1pKbqk7SLG/K+YA868to1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUHG6mHAB1hn4H3HT67WHW+Jcg7ogwCgYIKoZIzj0EAwIDSQAwRgIh\nAPNec69Thhp6NhxKTASUaPJE+70vQoMwS+Nmg2PrMlrMAiEA4Z6UjPJR2nnY9EFD\n8s2OzXjd506OYr5e8CyUIJQPcUw=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATSgAwIBAgITGWRu1q1KVezyTv2qVLhu4Fk7hjAKBggqhkjOPQQDAjAa\nMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwIBcNNzAwMTAxMDAwMDAxWhgPMjk2\nOTA1MDMwMDAwMDFaMBoxGDAWBgNVBAMMD3g1MDktbGltYm8tcm9vdDBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABK8i6V26EN18+SlAYvP39rExBzxvKvm6Zc97+20u\nmWm9h2bx15qWtfr/8ukzauZ46whFUmlKSSRpz+kUJPN+C06jVzBVMA8GA1UdEwEB\n/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0G\nA1UdDgQWBBRRKD39UdccIvvGuMZptG7XA5x5DTAKBggqhkjOPQQDAgNIADBFAiEA\nndPYH+cZJoTyGbdSrurSaz7S8R5YbEfrjdNTnVGAKk8CIBGg8FHCvOLSGK3wbga/\nyINekyJm6FN54DNpA6FJl+JB\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqjCCAU+gAwIBAgIUeEIS+pIrjixSKKUdqF2Nu4XuYVUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDJ69qOvZuW1Vpj5Eam+HC14/tOJAEgWresEQjnP5qNf\ng2L4MZFuwLe/VsHC/PMiF3lFzaggFuI/x1JQhJ8Rq4qjdTBzMB0GA1UdDgQWBBSG\noO9kvJRMK/JB0VA1qvD4qnLsozAfBgNVHSMEGDAWgBQcbqYcAHWGfgfcdPrtYdb4\nlyDuiDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEfwAAATAKBggqhkjOPQQDAgNJADBGAiEAx29E2d7oHoitkJLaqVyE5qxgRYRL\nEJeqfq1m8xwL9WUCIQCDvFlzGY80VY4zKqyvyunYeRTLlatWUD0KVZScBdWNcQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILUblReL0s/2ZkBowDuZS+KW3JurUbVzNakG0Ic68muWoAoGCCqGSM49\nAwEHoUQDQgAEMnr2o69m5bVWmPkRqb4cLXj+04kASBat6wRCOc/mo1+DYvgxkW7A\nt79WwcL88yIXeUXNqCAW4j/HUlCEnxGrig==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqDCCAU+gAwIBAgIUDG/paJRGJfoswOb1sRzNgcJrQnQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCdwszVvnkNpfS2miEoqCPiy7RowHwxmuqffpI/QNkle\niLMhj0N1jlUF7v4I4AZibcFzcYJi1TwRqOXuwhC8h1CjdTBzMB0GA1UdDgQWBBSh\nPEB2SHo7Ku68joDqc5E3iHyZqDAfBgNVHSMEGDAWgBRRKD39UdccIvvGuMZptG7X\nA5x5DTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDwYDVR0RBAgw\nBocEfwAAATAKBggqhkjOPQQDAgNHADBEAiBjhP0o0IfJSO63cBKbpUgPEEBHmnUN\nuJjE1yPq6X7RswIgPvqL6bQQxai+PkN1AZz3CG4/PCCMERxrn7/Ptwo5IE4=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAS/Rs0mdigJ8d+vsW7cPkCIwsY2zEkkdKr3JxMIqVlgoAoGCCqGSM49\nAwEHoUQDQgAEJ3CzNW+eQ2l9LaaISioI+LLtGjAfDGa6p9+kj9A2SV6IsyGPQ3WO\nVQXu/gjgBmJtwXNxgmLVPBGo5e7CELyHUA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3031,14 +3148,15 @@ "id": "webpki::san::mismatch-domain-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `example.com`.\nThis should **fail to verify** against the domain `example2.com`, per RFC 6125 6.4.1.\n\n> Each label MUST match in order for the names to be considered to match,\n> except as supplemented by the rule about checking of wildcard labels.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUTp3ilQa4rlTl9N3eKN7Tk9HtjGgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ+7+BQgonKRtTIiy8X1QffqCxB+E58US40A4oX\nHMYmTZLXAMCZLRJ1lszf37Hb7bKi9ZrRXOhWULqqelhpGDj2o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUjvc9oMHmKhOypzxlvdrQZfvKG7UwCgYIKoZIzj0EAwIDSAAwRQIh\nAMbakNi3hg0yIphPaJkk2MTpxH5ZG1n+i+QqlrvuwmDIAiAKwop7OUGGXjo5FiXo\n/6syPXpjaf1uDpLGAOKBAD3Zhg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUJ9I4ZV5LjEgsRe4CL40/fNAvNCAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASQOAVQ6Y8ERWjBJfC7M5BwQnZ2NmqqUZjS++v4\nDngjzSQckTff9JYWejDsJB/5bwV37d6PysI8QCy0PzgHbsCCo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU9GpkzUGl9QtExtUD8WHtfIXHLF4wCgYIKoZIzj0EAwIDSAAwRQIg\nR5wRJwXbeiKNqzSxtGxXhBdbgp5TZmvD2GiRORBGcnsCIQClP4VYee/iM3bqyqoS\nftcAAx9vdtTEgPfS53Dyzqw2oA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUYlqKRV1GqlKPqms/FJKI4qsUwpkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCCfah2dfdkIfOYevDXdQ7DF8ZvLYsCqS4jeUh2vlx1C\nzLLYxGiRFffuJgUfdeflmrrcHS/vGFL8zuaGs/6V0FyjfDB6MB0GA1UdDgQWBBTU\nohsPyx9LfDp0SyEo3fm1Wy1yMzAfBgNVHSMEGDAWgBSO9z2gweYqE7KnPGW92tBl\n+8obtTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAKjQN6eFMBrrMz2kJXY8\nsgobL+PPvRzeZ7RjM1j09ybeAiBqqlOQrMS4thajeedZJz/RfZC8cPEzUs5xwTEB\nyvjWuA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILbZky7vV8i7baKkXkCKVrM3opqF5wxaMdhPzgAD5B2koAoGCCqGSM49\nAwEHoUQDQgAEIJ9qHZ192Qh85h68Nd1DsMXxm8tiwKpLiN5SHa+XHULMstjEaJEV\n9+4mBR915+WautwdL+8YUvzO5oaz/pXQXA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUNb75c/XQjRby4XVtscw1tJ4vSk4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABEk4WMx0vqO7/UXhPBGdN0pXBG1N74JOh5xwk56mTwax\n4w9h4EYr3Bf7tZWBmj01attCQ+Obky0Zhnk8obkwDBqjfDB6MB0GA1UdDgQWBBR3\nprdkCxyyxixRKDMB9wLcEVBVODAfBgNVHSMEGDAWgBT0amTNQaX1C0TG1QPxYe18\nhccsXjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgYGHvx93ibHj3bZT+q9e4\nAyw/VSFjqrIBVciqCtHh/qICIQDtwTJi+EiQqpF970yfenotHlRs7NonUwH84Z2t\n1BrUew==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHwmY1fKti80me9wOOlnYXuCfJuaiDrkO4g05fZt1LWSoAoGCCqGSM49\nAwEHoUQDQgAESThYzHS+o7v9ReE8EZ03SlcEbU3vgk6HnHCTnqZPBrHjD2HgRivc\nF/u1lYGaPTVq20JD45uTLRmGeTyhuTAMGg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3055,14 +3173,15 @@ "id": "webpki::san::mismatch-subdomain-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `abc.example.com`.\nThis should **fail to verify** against the domain `def.example.com`, per RFC 6125 6.4.1.\n\n> Each label MUST match in order for the names to be considered to match,\n> except as supplemented by the rule about checking of wildcard labels.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUHiwacbatJl+dsFrwDgInUjaNRugwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARGd1eKlqf14k/rIsAtSZHYPbr7ipHbRs0qE8Hv\nwAaw2c1ahH5Oy3RC9HW4ZgJLuU8sHx/zoE1mlS2zinYvKwIeo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU3iQkHy6qAX8Tc3ayOim2daccxkUwCgYIKoZIzj0EAwIDSQAwRgIh\nAMdH0A9F3/NwsC0Ib0q4EpZcSCyQXcebgR+qmwv8PiORAiEA0r8Zrf6TuAKN57FI\n9B3Y4FLlxiAcfrMQjLdqZtZySJI=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUIR+LLCxGPIofBBFwqV3xLxvMca0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQlKtCoICnl95CVhcmAMLHqWigx4lItbB/H8Mxl\n1Nd3h2xn+fphdG1ZfTtSgGjtotf2DYAOMWgk6wiGN31SkOYWo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUoFqnMb84CTbwJIoALDxoAzGliBUwCgYIKoZIzj0EAwIDSAAwRQIh\nAJMJQIIl2fYflK6om5GFg4rQdqFmPkrupZ1ZzpHJU0fZAiAEf59OHvAOVnBWZSe1\nEKzwPfru1JwQHpXvwZxRbaviqQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVugAwIBAgIUUCZDMLHILtXx9Z9sQ3sNNODD8GcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBAEss1tfVvRJ5wj1zSLFKWwoleP9sg4+nMGytO+ITld\nTFD+b9Q6jd7r6C+mWjjSxOCSmXvvaIN0hcxjlF6Lw1WjgYAwfjAdBgNVHQ4EFgQU\n4e1jiUWBX3s/h58CD3jpD81iqI8wHwYDVR0jBBgwFoAU3iQkHy6qAX8Tc3ayOim2\ndaccxkUwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2FiYy5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEAktdNbgfVP19g\nIYppLRDPFOPsqRFS78yUY03H8LSrrzkCIQC/BZW5vsu7VB6XUZJIf2T/h5EDixKg\nC/3x6TLQmgqvVw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEQ88N9crX8zuVTcKXa96TM9u2H8IE674UKEhnyXiYIKoAoGCCqGSM49\nAwEHoUQDQgAEEASyzW19W9EnnCPXNIsUpbCiV4/2yDj6cwbK074hOV1MUP5v1DqN\n3uvoL6ZaONLE4JKZe+9og3SFzGOUXovDVQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUHI4/xzHlpEHvOEVm3roUvx8gWdgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABIFvvc7l9ijbHXHXT3W1u56svFbVB/79TcBUtW2u/KD+\n6ltPsr9YrJ/Kb264g9ieEHpccvjUKWE32fQ0eBI+P16jgYAwfjAdBgNVHQ4EFgQU\nvwh9hg30ghLt5f/jKd7n5BUtFmowHwYDVR0jBBgwFoAUoFqnMb84CTbwJIoALDxo\nAzGliBUwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2FiYy5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA55DgUhhGFtUq\nw+mzwKi2DL6efxPRq9boNQfvJ1FFBAoCIDQynKxbbi1vsYPtsuD5zOynwAUBNuEA\n4tWq7aLQSEvZ\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAvP/CRz2PuJ5ZuKVVt5knjV2uC/4XkNth9N85d+u1LVoAoGCCqGSM49\nAwEHoUQDQgAEgW+9zuX2KNsdcddPdbW7nqy8VtUH/v1NwFS1ba78oP7qW0+yv1is\nn8pvbriD2J4Qelxy+NQpYTfZ9DR4Ej4/Xg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3079,14 +3198,15 @@ "id": "webpki::san::mismatch-subdomain-apex-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `example.com`.\nThis should **fail to verify** against the domain `abc.example.com`, per RFC 6125 6.4.1.\n\n> Each label MUST match in order for the names to be considered to match,\n> except as supplemented by the rule about checking of wildcard labels.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUES64h6c/ysf38XWUDsDXeb/rZLMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASc5J4scNsaqwhUtozNZwCxMXhj0k/35GOiN3eS\n+MJN53TgKVBRJV/WkgzSkt3El992LxmkpUbfhhPV5xWJWvi9o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUn7hb0RcWd9ZnVKYptNlp1MsyGMswCgYIKoZIzj0EAwIDSAAwRQIh\nAL5RZHhFnaevr0LwFg+SAn1CD5EZUnSlYWDg2BbtHEmIAiBcpJEwt8AVEYOn0R1c\nOvhxvqPRHIp/dYg7yfPiiH+RHQ==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUUFzyroigJirHI5QEwLCkTLqxgEgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASsVOFYYeuv8sKCSmj9GGtMVJQuJ4i4OBhKDKE5\nvszGr0HVlYcBzEywd7kNU1c3RWhE1U95AD29VV3xIPifNlHHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU4kjlDYKqdgPMmnzXPmGQ3v+ZO/EwCgYIKoZIzj0EAwIDRwAwRAIg\nQTIkly8TSE3fFa5T8imJEGxmB8cZS5jThHqhJ1Lha6ACIGheVVFuUzNMf7rmWmI0\n1S359BAD3p1MKigRluQU1jms\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBrzCCAVagAwIBAgIUTFaYChC91TwqlRjByZ8EEjFTemYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCmNgabXgpELgfaSOOHGDHk9A8gRTFG4Dm050G2hWn1S\nCBo8l527scdEaWC2t+cXexInO6iXqvQ76H6VO1e+A0mjfDB6MB0GA1UdDgQWBBQl\nYNmK2QaIpBQObKxj5mic1FIw2jAfBgNVHSMEGDAWgBSfuFvRFxZ31mdUpim02WnU\nyzIYyzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDRwAwRAIgC33pnAmkI0qzIeMo1QXs\nQmZEuVCh6Phk+/oYbOakngkCIEojJE/z3xXNRSmQiNRjicHc5xWGqnEErRJZIl9h\nqIWu\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIETntSQ5A5c1ap7HgL5fztPHIJPrl0LRQB/Dte8y1rvAoAoGCCqGSM49\nAwEHoUQDQgAEKY2BpteCkQuB9pI44cYMeT0DyBFMUbgObTnQbaFafVIIGjyXnbux\nx0RpYLa35xd7Eic7qJeq9DvofpU7V74DSQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsDCCAVagAwIBAgIUajNm9PmTLbRaO3qPUCfs/3NyDwgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABFm3NfBgInd8xTj8DOq+rRQIknnzapw5q8Mqhu6m8oL9\nEVbtKsDcx8r9EnhHnZr1DjKdQqpjjQqVXKpUmZ94xyejfDB6MB0GA1UdDgQWBBTH\nDm7pBXGdCFBjf7BAmUe7o0Vx2DAfBgNVHSMEGDAWgBTiSOUNgqp2A8yafNc+YZDe\n/5k78TALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIhALEw7G5aQuAXt0YgUPcV\nY0y5ymVHCMXyH/T4eYeVcoJrAiBhhsCESCeENxHhkTzpb/EZmtkNAOYORt4BSrr4\nx59bog==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEINID29KiUIx8NSLLG+3fOp/2wL23iHgQbz0yo+/DKRQQoAoGCCqGSM49\nAwEHoUQDQgAEWbc18GAid3zFOPwM6r6tFAiSefNqnDmrwyqG7qbygv0RVu0qwNzH\nyv0SeEedmvUOMp1CqmONCpVcqlSZn3jHJw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3103,14 +3223,15 @@ "id": "webpki::san::mismatch-apex-subdomain-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `abc.example.com`.\nThis should **fail to verify** against the domain `example.com`, per RFC 6125 6.4.1.\n\n> Each label MUST match in order for the names to be considered to match,\n> except as supplemented by the rule about checking of wildcard labels.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUE2O95dvFuCyCrUHdlKOaW/I52AowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS6s/WLj3TLnFLDDO/hQgsxz2BAnMPB+ZaeG+D8\n+0z6nW+XEVUd9j37BEalYwLsTqXp1lBlNfIkVJanIf1zNbjHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUS36BnOT74RiFtkcQ6SoBLOwnI9swCgYIKoZIzj0EAwIDSQAwRgIh\nAO5xF5fK4w4pXCstGMcbGzMFOY8njQMbpRbVfU1JeYhOAiEA3oJdaaPa2in0pEyh\nxOXsH67vyUb97xgxPox1miq5lBg=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUWGHp0EdwayDXso6QT1TFv3WzgkIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASn9TXf4fPFhzlnrLrbtMcPLkhciHr6mpNB5awE\nzHfQA3DRjgjsPIQ3SaClcErgRfN3/zN8QLZljF6L3dk8QBnqo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUr2jfIwgnZhoLNh26MoUntslkaKwwCgYIKoZIzj0EAwIDSQAwRgIh\nAOCq9lBbGwefoCQ+Vh+150dg6ToZ+RGInx5KERg0fFWaAiEAtKToZ3FQjeANK3YC\n8m1iqsdDtarTlKH3DynOveb+6kU=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUXdqqN5G7vz/7HtZlpwGeIOxeCTowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOPxeWnh/jPZde73Xfd6IyFgAlccLy9dTuw1onyW7s8k\neP1AlyYnSuKE7iPEIqsoC29C+vPk8AfcdUr7cnZd+jyjgYAwfjAdBgNVHQ4EFgQU\n+3Y1zRqmNEHTA4mrlejG4gJGOw0wHwYDVR0jBBgwFoAUS36BnOT74RiFtkcQ6SoB\nLOwnI9swCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2FiYy5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA/A9wmuPh3GaV\nSG7FKIwfuOOi+IhtYsBLq/qFxlfumtACIFDO/sHErHwfpvCXLVQ1t7MVpjcVYaCU\nCxpb3zr00cFw\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAwFXqtWT4avPTpbzEEj0fa4WWtTS+eOi+1LVASe9VlIoAoGCCqGSM49\nAwEHoUQDQgAE4/F5aeH+M9l17vdd93ojIWACVxwvL11O7DWifJbuzyR4/UCXJidK\n4oTuI8QiqygLb0L68+TwB9x1Svtydl36PA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUFJ3cwnnO6gFmVjaLCX8FE1oPY58wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGm/A9L70SaBqG1/vtFL1ZeekMHr+lBQSt5ERyj0FM0O\n/nbz6L2IQnbYyN/23GR6NePAidYsqQHHeAVzoWYOaXmjgYAwfjAdBgNVHQ4EFgQU\nbEmvCcFsYhwss54L2rddQSFaQq4wHwYDVR0jBBgwFoAUr2jfIwgnZhoLNh26MoUn\ntslkaKwwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2FiYy5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiB609xVCWg+Y6Fg\nRddyZ3N7dgSCn6LLr8ikZI4mc0WbwgIhAI+AcL2GITmFbJwHkQkX32tlCAZ+22zP\npOYMhZStHZtc\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAh8eBX5yk3FVmJT6oXU12bpr7N5C9dg1tsJn9Vx7WyJoAoGCCqGSM49\nAwEHoUQDQgAEab8D0vvRJoGobX++0UvVl56Qwev6UFBK3kRHKPQUzQ7+dvPovYhC\ndtjI3/bcZHo148CJ1iypAcd4BXOhZg5peQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3129,14 +3250,15 @@ "features": [ "pedantic-public-suffix-wildcard" ], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative name with the dNSName `*.com`.\nConformant CAs should not issue such a certificate, according to CABF:\n\n> If the FQDN portion of any Wildcard Domain Name is “registry‐controlled”\n> or is a “public suffix”, CAs MUST refuse issuance unless the Applicant\n> proves its rightful control of the entire Domain Namespace.\n\nWhile the Baseline Requirements do not specify how clients should behave\nwhen given such a certificate, it is generally safe to assume that wildcard\ncertificates spanning a gTLD are malicious, and clients should reject them.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUDpNeCdFIstsp+ocs5wiZNdhaLewwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARii0RQ7iuvhvgMAJ1Opgk/3/hEFQTjfZsN6cOh\n4HOnrRL28xQcwzAqYnuw87ZMuiSqFS7CM7Xqdz6fSAWAntaOo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU4sxFyjMKNDrYo0OebGXbPq8ZVTQwCgYIKoZIzj0EAwIDSAAwRQIg\nYK3hF40845mKx0EPAIWbwVRQQ8MX7UOFAfXGQH6Qol4CIQDlBaqWEfpjMxZ/viWu\nPKp9oHBPyLaE1IamUhNIP5jXXw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUIP4HqK0qJCWW2HJPgbDjv/cc61QwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASavmwnOPpXYeiMAePUhAIoVL86OPUll09VWsYV\nUpZt51lReBhSdX3aSnfJss5u1rg8pyeQueg6itPR4ZnatrM6o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUTvUOqGLQTy+R5x658AvOl13SNcowCgYIKoZIzj0EAwIDRwAwRAIg\nT0nXUH2sgZnDLBf+Mw7gNvy/eZAAyjp8YeLzCIEmZM0CIGtqbfa404rRBN5mclGZ\n9QBc964Z++bZ0ag5x5+7ZFXu\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqjCCAVCgAwIBAgIUN4XM1Ix7NJOnm6DmJrS5hx+DJXUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMGjMglJjDaOpuZga8oQUleltiHwXeSLF8zUYFZisOyo\nkEgxRL9+fwihtngRA4ldQhvpJU0PfiD9KXZFt1AWYBOjdjB0MB0GA1UdDgQWBBRj\nHgq437N1BbGoJIWosjZ4n+zaGjAfBgNVHSMEGDAWgBTizEXKMwo0OtijQ55sZds+\nrxlVNDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwEAYDVR0RBAkw\nB4IFKi5jb20wCgYIKoZIzj0EAwIDSAAwRQIhAJipXl1/iXQX0Jbl65Ux8wx/E7mZ\nfO05a6xewUXXC+SFAiAmixotf2+fBLhJSUk4KkBvQ0Pg/WxMxPRdIOSolULqOQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIFw3GhavQfxjyUClxvIzCL1aAGfWLX8L+un0XNIMuEPHoAoGCCqGSM49\nAwEHoUQDQgAEwaMyCUmMNo6m5mBryhBSV6W2IfBd5IsXzNRgVmKw7KiQSDFEv35/\nCKG2eBEDiV1CG+klTQ9+IP0pdkW3UBZgEw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBqzCCAVCgAwIBAgIUOvN/uzMEFeMC4X3KtxqSAoP/BIEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABEvxnjLsQBIsi9zBZj1QtuoVXH3m7iYhE3rEva6ziTvB\n62WmYdm46Oolh0d1vZmuzqfTdRhR8InZUMZ97hiJu56jdjB0MB0GA1UdDgQWBBSl\nvQhd3GCC84VqqZNTGxrWmLPH6DAfBgNVHSMEGDAWgBRO9Q6oYtBPL5HnHrnwC86X\nXdI1yjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwEAYDVR0RBAkw\nB4IFKi5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAJNVCPiCQ6PABAxDiTLMdMwXdo9S\n1+cbGGCNd2V2RGXUAiEAqBlJgbI23qIMiKBQ9A1IL4PK9+/bS1F4NDsJQbO968Y=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDGTL0DDKk4AtnTr3TRBbyqUKWn/JSItzskSJuSolKv5oAoGCCqGSM49\nAwEHoUQDQgAES/GeMuxAEiyL3MFmPVC26hVcfebuJiETesS9rrOJO8HrZaZh2bjo\n6iWHR3W9ma7Op9N1GFHwidlQxn3uGIm7ng==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3153,14 +3275,15 @@ "id": "webpki::san::leftmost-wildcard-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `*.example.com`.\nThis should verify successfully against the domain `foo.example.com`, per RFC 6125 6.4.3.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUFYj7RzS6EVRFOX1AtFI1aCCMNGIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQd5aEhVhnRC9CMyWw+TV1Bul6ML8fgX/txzkDA\n5RQ+m9IQpiqXtYRXCM8xFGXmVFNqhpxRX14YZEKb6XlNDLHTo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUsBFZ4Z0bbQmps70y6NWikDp3fTQwCgYIKoZIzj0EAwIDSAAwRQIg\nLbRa6KJqD/9i5cx9CB7Lme3v83k3XlL4Xyj0un2q50kCIQDbkr18v8hCsIC1W+QD\nxFodnFMRlqj3kbPikR52a3YVNg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUEFe2MxaxA+tN7h0BklyC4tP2VO0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARys9m0LqkFX0MogQf7/45gWYW6dnC2kvTWnuMP\nazlw164KXwvW3wVEYdSD0vws9A5FbThMgDoQz2ofJ9YqBYAGo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUj6SHzvaliG68/SPbBv0gnImT/9owCgYIKoZIzj0EAwIDRwAwRAIg\nBLVAiFJ9xQSMWshcjp82QFu4+S8peprNTvv6HF0/ZeACIBRgQlZRa4JFgBfhpiWK\n/7+89NMhalqnmgkFmScsMTLS\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBszCCAVigAwIBAgIUfYuPr4klYw+fYDMQte7hxxxgEXcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABE7tWRLHQyCtc6kLiRvXBsJ69DmiGkIAcUIj5zZxI7S0\ncKY2CynB7mcsdUWPlNxm4HtBPkcVy4sQnWtqyzegpZCjfjB8MB0GA1UdDgQWBBT5\nDoinDReB+5yRLylFUMRtREqlQzAfBgNVHSMEGDAWgBSwEVnhnRttCamzvTLo1aKQ\nOnd9NDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGAYDVR0RBBEw\nD4INKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEAtVtF+G5J7jT/MvoN\nn2PacCFqfPKMzgqiOAdyUCe4TrMCIQCY92BrBJy5SPeFQ/KJdIhFAjT9JNP62K6v\nGlDpli0gkw==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEwzsBVXwRR+UbO7NJvcsrUk/58gewjjBrtdNHPFipZzoAoGCCqGSM49\nAwEHoUQDQgAETu1ZEsdDIK1zqQuJG9cGwnr0OaIaQgBxQiPnNnEjtLRwpjYLKcHu\nZyx1RY+U3Gbge0E+RxXLixCda2rLN6ClkA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVigAwIBAgIUF5UkbZh190qv3jK73k+L5hEqjLUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABPLNnTNmW6+jprGO9ziF91CbfhfNM368ZSRhxmGn5gak\nJgHGAzs6/nHASJjYAU2PN8d7WpNvKKT8Ou8UAbgCWxijfjB8MB0GA1UdDgQWBBRH\nqIlaZrtNStjoeOULHc4eahzOVzAfBgNVHSMEGDAWgBSPpIfO9qWIbrz9I9sG/SCc\niZP/2jALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGAYDVR0RBBEw\nD4INKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEAqxjHJEf9nsmpTBW8\n00qBckMlek+M8OT8PMvqEWIhA/oCIBPzSdZK0tB1JTYfwgg7+5Xbdj+vh7EgaLjw\nKQHDjXS2\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIC76P+64+FZIltWVuiyF6pNhHV+8fvYK4MLy9tTkHclqoAoGCCqGSM49\nAwEHoUQDQgAE8s2dM2Zbr6OmsY73OIX3UJt+F80zfrxlJGHGYafmBqQmAcYDOzr+\nccBImNgBTY83x3tak28opPw67xQBuAJbGA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3177,14 +3300,15 @@ "id": "webpki::san::wildcard-embedded-leftmost-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `ba*.example.com`.\nThis should **fail to verify** against the domain `baz.example.com`, per CABF.\n\n> Wildcard Domain Name: A string starting with “*.” (U+002A ASTERISK, U+002E FULL STOP)\n> immediately followed by a Fully-Qualified Domain Name.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUbMe4TF7hoJBxtqKCDBJ2Y0tb4tEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQdWJE2diKEX54qtjDslbgzf8rdWgMMXP6LArX4\nJoeLlpAnHPkVnEAzfQ+Isp/P9gbYqj55XjiHLfPoi92NLStvo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUWxTlKG3XCSdvOn4/j6u6wjgpvjgwCgYIKoZIzj0EAwIDSQAwRgIh\nANDc+l1YW8oaOx5bwjoYRKH5F/RH46IArAvfFnEezzYAAiEAkMSRRyhMi9OPV3Gw\nOdPWlD3SU6hcQ3iZrffl+NIRI7k=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUSSr4HTHDUZkmyu5q1Jk5YBb/3zswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQBvfg783JdfO1zV8FDkAiJZ1qvby91XazCmDIx\nMHqigQClqJXp1wNtrNIhufkOEJUPtPyyMDc2E4+rK3Qs5syYo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU2s4SWwyb7Ww/3iWsAakuKTSRtwswCgYIKoZIzj0EAwIDRwAwRAIg\nDWFSicK4wSdBEbE+CP3Rry/gW021AoAK7/9Uc7fLsFkCIDMRIjf6VJiREvc87DdR\nXI3tNz1Ko1It9GPkVc6PPboT\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtDCCAVugAwIBAgIUMqdMZsF73mvVTXkOOMuwnbWE/eowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCDJf6XxXxOkILhQU6zeyi3tkmcckG4vniHixV/LCJ+W\nnf4jiZGa/51QH3ioNh0oCk2u23o0tPAdayJrLmwdvEejgYAwfjAdBgNVHQ4EFgQU\nd1qeav4xm3l7An7ZX+BlDTXIZoswHwYDVR0jBBgwFoAUWxTlKG3XCSdvOn4/j6u6\nwjgpvjgwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2JhKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiBeZSsBsycUaNVO\nme0ViRSTzZb6rrgsun76lBrF8dakyAIgSOSiU7ggoyJi01Kbojn4TmAZqZm7SrJa\n3YuQlagPsAM=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ38ZBRTbG5VuPRuxQo5XQCwDY+ByKy3eCabGjKMOUbhoAoGCCqGSM49\nAwEHoUQDQgAEIMl/pfFfE6QguFBTrN7KLe2SZxyQbi+eIeLFX8sIn5ad/iOJkZr/\nnVAfeKg2HSgKTa7bejS08B1rImsubB28Rw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtTCCAVugAwIBAgIUZTTPyh1SQvhmlJHURdQdL0TY+IcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABBZLsjy44YiEzWwXjDMQ+hLwVpeceFy5/063xPEgeLJ3\nST8YnsL2OPYALoiQiSe0brHPTswlctWPb+X8Ai44e22jgYAwfjAdBgNVHQ4EFgQU\nuoLsxqrUjNxOhTVF/ObI1KISGbowHwYDVR0jBBgwFoAU2s4SWwyb7Ww/3iWsAaku\nKTSRtwswCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBoGA1UdEQQT\nMBGCD2JhKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA/YK/g7FzLjn0\nbbZk5r+YZi9YNDS2TEb7hq8rD7DrdHkCIF4ivqATyI2vkemMv1GzLEWDyyydqivm\n1/rxfAhjd0lL\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGjPMteNQtE/r9mSuVeGG877eeV6V7iJkRNamFHjY5V2oAoGCCqGSM49\nAwEHoUQDQgAEFkuyPLjhiITNbBeMMxD6EvBWl5x4XLn/TrfE8SB4sndJPxiewvY4\n9gAuiJCJJ7Rusc9OzCVy1Y9v5fwCLjh7bQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3201,14 +3325,15 @@ "id": "webpki::san::wildcard-not-in-leftmost-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `foo.*.example.com`.\nThis should **fail to verify** against the domain `foo.bar.example.com`, per RFC 6125 6.4.3.\n\n> The client SHOULD NOT attempt to match a presented identifier in\n> which the wildcard character comprises a label other than the\n> left-most label (e.g., do not match bar.*.example.net).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUbVSFBglCeSg0zFM/jBUWFimHReowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARgSw/PG6drH5vOI7YfWAseCNKx0TYunp3R21tj\nL9zgLCY8lDJ8FV1E9UdZf4ZyJlYnU6XlBwGBCO3cmV/t6+APo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUeOqE1aWeYiV2u0xjNLY9Qa8g41AwCgYIKoZIzj0EAwIDRwAwRAIg\nPQGsnu6GgPEoxI0uCS0sY6XHOIEvfnYdA+ihj50Lmq4CICnbjAdiyrEXWC8CsgpP\nECic2ULmpP8g9lrfVhAnnUU7\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUZf8haYkYRZsf4vdRhPrgd4stfIcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARJNUXadaDZFLOqYfsfLqCYv3SOZVvxYdLg27NM\n9R5wXM9zOqIDCeHK7yGtXrhkNpa9IHMXRfEPt5qm3PeCh6+Fo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUQjykQxnDZKZrBtni6qHw6PD6BHcwCgYIKoZIzj0EAwIDRwAwRAIg\nM5eSQRuwMQts0SV5GnrsWk090/25xo9R/+sOW/7ME0ECIGwO6iZephLauN1dPion\n8B/m6D7qfXBo4gpOgL01dSSR\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuTCCAV6gAwIBAgIUBGMLPZJCFk+KTidmEDGo993CP1IwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMUShER4xbpW4YtrPx0mapjN7BCGMmxyWjpgQRmQMPoS\nGmPu9cripjAU8z3u76bcg6Vk+uLv1kCONY5iBB5uFN2jgYMwgYAwHQYDVR0OBBYE\nFIpZ3zZRP0GyPhBQz46FvIytsCusMB8GA1UdIwQYMBaAFHjqhNWlnmIldrtMYzS2\nPUGvIONQMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAcBgNVHREE\nFTATghFmb28uKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEApfvqDevZ\nf+g2eRDAVhwQgWq4aXYdAoTFmrBE4snI49cCIQCoxbUj9RblwO1hBbBMBWLcf1JS\n8gSyE4ceDDLC4H0uOA==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJ4lRPSd0Mb8Wlm4SdSB4CWynqAEpw2jf4v+RbBqZISPoAoGCCqGSM49\nAwEHoUQDQgAExRKERHjFulbhi2s/HSZqmM3sEIYybHJaOmBBGZAw+hIaY+71yuKm\nMBTzPe7vptyDpWT64u/WQI41jmIEHm4U3Q==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBuDCCAV6gAwIBAgIUY4ChI0yMnHPhqK8L5YB1F2svy2QwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABF0Z1mmsbcZjRVYHG0WOU9dzSiMi2zn4OImoOqTwkf7f\nYuqK7lCmR/v9ipcKHl+yAhFRs63C4qmLi8by5gbrso6jgYMwgYAwHQYDVR0OBBYE\nFD/nkMIlpCOhfrY0VtRpLK9xc8wVMB8GA1UdIwQYMBaAFEI8pEMZw2SmawbZ4uqh\n8Ojw+gR3MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAcBgNVHREE\nFTATghFmb28uKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiB/Gr7NwaQT\naNC3d7x9cDvNn1jwrKUMV6iy4F3tY5yfngIhAO75FfBxgQhMG0aQz3sZjKeJhxM+\nUTFc3srfOk4ckloP\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKu4mdSjf+56DMmLUVlhtC1u5oSBSw3aqMU4K49KuIA4oAoGCCqGSM49\nAwEHoUQDQgAEXRnWaaxtxmNFVgcbRY5T13NKIyLbOfg4iag6pPCR/t9i6oruUKZH\n+/2KlwoeX7ICEVGzrcLiqYuLxvLmBuuyjg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3225,14 +3350,15 @@ "id": "webpki::san::wildcard-match-across-labels-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `*.example.com`.\nThis should **fail to verify** against the domain `foo.bar.example.com`, per RFC 6125 6.4.3.\n\n> If the wildcard character is the only character of the left-most\n> label in the presented identifier, the client SHOULD NOT compare\n> against anything but the left-most label of the reference\n> identifier (e.g., *.example.com would match foo.example.com but\n> not bar.foo.example.com or example.com).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUdpm+K5hyfL0HXMwnHqnLnuLohh4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATHbdackWwR3CnEIHt1B+P6GsUD4pZuqMJr5fSS\ne1/Kumyf0BKHzCTavW1jnVUhJlxSA4l7228iyQHaM/rXp0sko1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU/R9EtKBmAGtlTsaTuZzxIoGh0sMwCgYIKoZIzj0EAwIDSQAwRgIh\nANME9O/rt3BKUDwdRhgRt8nRAuAu1hau2sdqMgvnHRJuAiEAorwaKeMxCN86O2X2\niveWhhQBEgyJZqcFu/MEDnFtpUI=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUfIvv4hJo3u8Ph5/7t3CYq2kUcZAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATEjSlMqjMT4fm9lHIZqJ8/WvTk/c2LiAmpyy6X\nxY/rWRhamk76f1Z/eUcJhABnmnEg9gO6DvUGSpEWfTqe2iVdo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUsJh5YluQ7GWquMXfclckXqEFmmAwCgYIKoZIzj0EAwIDRwAwRAIg\nCcF3w9MdV91gQ0gp5lO+FvV20vt9J73sXyPKwqIUY00CIDmGTkhkYihx5RfZEI0j\nrzxl9fXbY/8FiKM/aEJDAOyx\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVigAwIBAgIUBe4PV3/qPdGPDBiVtc6vDcspO1cwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCzcL3hBRBjM640l4BXd5t3oCzjS0F3V4Rl9sl2U7N4L\n+KG/ZkIgKWVhVADpEYd3SunstmNVnEBm9sTzmVub9tyjfjB8MB0GA1UdDgQWBBTC\n7W94mRhXYovGhiz/97WwmroChDAfBgNVHSMEGDAWgBT9H0S0oGYAa2VOxpO5nPEi\ngaHSwzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGAYDVR0RBBEw\nD4INKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBEAiAqdkJOIFrmyaHHXE/q\nSq/QGqMeb9+otbBpF7YngqURjAIgRzdLMXAacf/qGdph0rJp0Ro4f9JFa81RV8Ni\nnaBKEEI=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIOIF+yqp0NJDWUaDpUb+vO+UFeXvxsONYiQvW8h7Zh7soAoGCCqGSM49\nAwEHoUQDQgAELNwveEFEGMzrjSXgFd3m3egLONLQXdXhGX2yXZTs3gv4ob9mQiAp\nZWFUAOkRh3dK6ey2Y1WcQGb2xPOZW5v23A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBszCCAVigAwIBAgIUeuThqiEXQ8taIay6RGnTLrv+cL4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABI9VqNJJqUhBzMKopetKNiX55QR15QnZxyIlDR2c5G4E\nwgDXgjZMySoIG4YXyYsVKtqLtuOUBTdznYjTQg8AjIujfjB8MB0GA1UdDgQWBBRe\nMWadckmZjZeupUmoMBJt6bgscTAfBgNVHSMEGDAWgBSwmHliW5DsZaq4xd9yVyRe\noQWaYDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGAYDVR0RBBEw\nD4INKi5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEAn+QsbZuImOyvdLlC\n3qKKXBz0BjHZGwmB1LpDiMmiRA8CIQDOwe8iImcZqZb6M+ENrv2GRY25P6AfG9y/\nY5FcB61cug==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEbqHtMGVKGcHI37ReDwlWoTCK+LOanHAy9aeVQSmlmsoAoGCCqGSM49\nAwEHoUQDQgAEj1Wo0kmpSEHMwqil60o2JfnlBHXlCdnHIiUNHZzkbgTCANeCNkzJ\nKggbhhfJixUq2ou245QFN3OdiNNCDwCMiw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3249,14 +3375,15 @@ "id": "webpki::san::wildcard-embedded-ulabel-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName\n`xn--*-1b3c148a.example.com`. This should **fail to verify** against the domain\n`xn--bliss-1b3c148a.example.com`, per RFC 6125 6.4.3:\n\n> ... the client SHOULD NOT attempt to match a presented identifier\n> where the wildcard character is embedded within an A-label or\n> U-label [IDNA-DEFS] of an internationalized domain name [IDNA-PROTO].", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUB9DaTpN9mAFwHz73BGbehAon9w0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATKhw+EFqMY1hgKGHVr0pyWYj/2ybtHocAEGNlp\nLmIlvsturJkAc+YDNEE87YtRa/jGLKeU9KtXbvZZJ52aM911o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU1HXoFhPE0WiDSkWRYTOdja4ueDMwCgYIKoZIzj0EAwIDSAAwRQIg\nNnJonAEt6QOImRx95hRxN69EIK2HJJKJlC86qytkfMECIQCL32pwyiZ1C7qoLp2h\n67Y5XUinl1OM08XvJsmrpk43MA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUSsr7ZiyChIqzlr0Ftl2x5SZp1YUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS29kRj4bJvqbVikTq6nUdEvrkKdbHNFEOAQ1Qw\nwH09MRzkGWxUeKALyIslFyPWFaZxvxcdgEiF3uipjz1t3Kv1o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUHGfCUe6PtW5/I4FTyYbN3AfL2nYwCgYIKoZIzj0EAwIDSQAwRgIh\nAObgRCh8TXevanxhRQWKFiqr3YwnTMoICpqJFhJgqrQDAiEAsxbJ5db668HnncIh\nlBGvHqIBpCKsgqSYMNEjPASKEGE=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwDCCAWegAwIBAgIUePNFr4jvTINp6oFvBdRRBD7B7zgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMDo9q4YXQv+OSLtEg1+GQgrBiDzVz1Byui1KJE3cNKd\nBchgTcMTPU+9ifIbTJW/3QMiP80sXRvbmAMkvFh8zrCjgYwwgYkwHQYDVR0OBBYE\nFMoUJLBnOh+phnLV+nm4XJdRrv5kMB8GA1UdIwQYMBaAFNR16BYTxNFog0pFkWEz\nnY2uLngzMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAlBgNVHREE\nHjAcghp4bi0tKi0xYjNjMTQ4YS5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNHADBE\nAiB6eimyYmp4RjI9oF3nmoOJorNZ2mGSOe5vhoqVYYS6UwIgJIIZmGUm7ccd8GdZ\nRkHT1F5Q0lPLNYPzo9/8wiHp6K8=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPRR7ss0UC2i0tyis6wJa6gdo/E+mY87E3cR++IYMnNnoAoGCCqGSM49\nAwEHoUQDQgAEwOj2rhhdC/45Iu0SDX4ZCCsGIPNXPUHK6LUokTdw0p0FyGBNwxM9\nT72J8htMlb/dAyI/zSxdG9uYAyS8WHzOsA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwTCCAWegAwIBAgIUFpjLNWUDfmPTYFjxbrDSqUn6x38wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABLxa4bJHNid+WwJyAXbWii8lRPM1uuSQoiJ85nvmKkX2\nlymj0AmemhWnPWWrX+sZesIUujX5/Y0Z7QRtHS6XVEajgYwwgYkwHQYDVR0OBBYE\nFNkc/8Uceos6Qf0gkN+2TEldQkrBMB8GA1UdIwQYMBaAFBxnwlHuj7VufyOBU8mG\nzdwHy9p2MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAlBgNVHREE\nHjAcghp4bi0tKi0xYjNjMTQ4YS5leGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBF\nAiBfzfAajnLoGoG7mZb3oKbdYQ+JLK2/XuNjEXWAXbBgNQIhAKkEIsfjrxKClwIs\nQAHWfQmoUDz8+wHNF5xqxfk2ELy9\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIBd03uj4BKVEw/JGBr9fMrYySYdPePny7x2y9sJIPwPHoAoGCCqGSM49\nAwEHoUQDQgAEvFrhskc2J35bAnIBdtaKLyVE8zW65JCiInzme+YqRfaXKaPQCZ6a\nFac9Zatf6xl6whS6Nfn9jRntBG0dLpdURg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3273,14 +3400,15 @@ "id": "webpki::san::unicode-emoji-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains a Subject Alternative Name with the dNSName `😜.example.com`,\nThis should **fail to verify** against the domain `xn--628h.example.com`,\nper RFC 5280 7.2:\n\n> IA5String is limited to the set of ASCII characters. To accommodate\n> internationalized domain names in the current structure, conforming\n> implementations MUST convert internationalized domain names to the\n> ASCII Compatible Encoding (ACE) format as specified in Section 4 of\n> RFC 3490 before storage in the dNSName field.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUJW1oM27U7eJyWOp29gkVZj2rVaAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQFCQZHukQbjcOhNTGKYo9zVgE4q3n4Q6zQHnE1\nZiwW1U60W5IDs/mn7s0P9MTUEI8s1VYpohNx1fcKi40x1fFMo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUPp+usQPTrhZZrmBAKZzAc9nuXxQwCgYIKoZIzj0EAwIDRwAwRAIg\nGV0+qLmhCKbQNi3IxgWrxSqLPSo4ySg89u8+AO3rQ70CIEidqv5EAdmiyVq3u3EH\npHgewc5JoP3tGNjLhi5Yqy+r\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUDv9oZohT4ePgiiEZEOVweaOfgqUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQBqWY0QCI9yr0tQOKH8tD/zU+BYsX/FNWOLHcj\nLVUG4aMwLIjBVqvn3497t5ZwCXeIXocEh/gDtw5+u2S1nLgUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU+ITn+521NugSUYJ0rx8sxseBokswCgYIKoZIzj0EAwIDRwAwRAIg\nW/UE/QVDSZJevTzktEzcPwHpTXgvMvM7bHVRHJoXZ9wCIGn2NIHEEevn/LYjn53B\npCeNkAYDG36HRPnFqkXYp/uY\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtzCCAVygAwIBAgIUJUOGXVLFrkpBwjLfJcCf7xztxgkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABGPt+e5Mt/7q6yM/W6iRFPT5Yz4mBNUOHo71b0D8bc4h\n5A7OzvhYOW3mOxArjocmu05WmrW1A8HWcWlzd25N8D2jgYEwfzAdBgNVHQ4EFgQU\nFguwm87D4RXRIzoUorKPmxtzTo0wHwYDVR0jBBgwFoAUPp+usQPTrhZZrmBAKZzA\nc9nuXxQwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKCEPCfmJwuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhANUVUis986Ab\nME9x4XIGVqBHEu5JsBPGAPyq0+Z3jNE7AiEAmWj/CGygj91pUuHyAwMdqyBy4P8V\nFOgRpRdZuYxbVCY=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGG5hBHpHsFxaoIUt/5NkWjrM34F9vEhpctFERqYVzq7oAoGCCqGSM49\nAwEHoUQDQgAEY+357ky3/urrIz9bqJEU9PljPiYE1Q4ejvVvQPxtziHkDs7O+Fg5\nbeY7ECuOhya7TlaatbUDwdZxaXN3bk3wPQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVygAwIBAgIUd3jDfbO5ZC2QkwjuF9mkXnJaq/0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABH5prIc6fq7Gf4mNcS4g0k3VOaSCcrvRQfJVYFViX9yB\ncl0rCukKCyCNuTXEHdDjOAYaGMSzL+gN0qvWn5+Q8BCjgYEwfzAdBgNVHQ4EFgQU\nE0p1W9yXLvn24rBII8keHR6dlTwwHwYDVR0jBBgwFoAU+ITn+521NugSUYJ0rx8s\nxseBokswCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBsGA1UdEQQU\nMBKCEPCfmJwuZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgeE7kTzD4UKvq\nE+TjfUa54mZZGNvjOMoV9384yZE+pwwCIQCLmDuzhFKLDfrtv3Prps6wJrUfoOrQ\n2H3TZvXBUUnNHw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIF0mSB2yGE+oG0evRrCTdCGiN/87gUH2rysVjZNSOHydoAoGCCqGSM49\nAwEHoUQDQgAEfmmshzp+rsZ/iY1xLiDSTdU5pIJyu9FB8lVgVWJf3IFyXSsK6QoL\nII25NcQd0OM4BhoYxLMv6A3Sq9afn5DwEA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3297,14 +3425,15 @@ "id": "webpki::san::no-san", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe chain is correctly constructed, but the EE cert does not have a\nSubject Alternative Name, which is required. This is invalid even when\nthe Subject contains a valid domain name in its Common Name component.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUDdydrpp/ZUtCAN7mx3QDR+Q+UegwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQHrukfjA62xGSrZavw9h8q5vMha/ZyrcDrz8Xh\nZnIvc/6nxzdckbZY+b47vU+JbRM6hkAWXMEA+9ncxqmnikVQo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU5Ugg7zYXgjpxUXhDsHni5uinqDAwCgYIKoZIzj0EAwIDSAAwRQIg\nF+M0oNl0xYN1yZe3TQ+5YDvSbamuHF63D5+go1rCRjICIQCqPEzUFp7Z5HkUx2Mv\nyTi6ARO8mr5xDX7bfv27CqM5BA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUMuVGYHwuc3Hn/lu4cs4ELJL3GxcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARHjWOp9dHLdmPsTeNSvq04e3mCCydMGBQBhq4S\n899i+pkdtKMdeMhqegbHRj+G3q2HdoGAVDXY2q4Prm470Epgo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU7Cw0hT6oLHrW0+R1WucHCJTjFGcwCgYIKoZIzj0EAwIDRwAwRAIg\nf73TOOKTisBxbwVcSFfmFIchXJareoHCTcdklgBCTpgCIBFXjagLdEpuBMwHgQlW\n7L44udrBp1N9iHN8atHE+9ET\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmTCCAT6gAwIBAgIURwYWmVmAmESLyQjygChDCBKILj4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABCSo7EqwAGipzSKtQMAYjIMBfhrP9O6IS4gSbxqiCBcc\noo+6n8bHiDxuXrv8Vgmb1yXDLmuvjL44vc99q27lrh+jZDBiMB0GA1UdDgQWBBS4\nKOWE43N7fJmKmJYjSuZXpwanZjAfBgNVHSMEGDAWgBTlSCDvNheCOnFReEOweeLm\n6KeoMDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwCgYIKoZIzj0E\nAwIDSQAwRgIhAJOiZiQeWPvG701Cgrlwzegdv7JuuGQ00d3ijSIBwmx+AiEArc2N\nM1XQOkr0pUH/y0JYzruEnV6MGC7TUwLbXFDusrQ=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKDohyIiUMuLlP3YlyK9I5R6ouRrT+Mqdmtg0Sw5FiV1oAoGCCqGSM49\nAwEHoUQDQgAEJKjsSrAAaKnNIq1AwBiMgwF+Gs/07ohLiBJvGqIIFxyij7qfxseI\nPG5eu/xWCZvXJcMua6+Mvji9z32rbuWuHw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBmDCCAT6gAwIBAgIUa7sbhj/TmYQS9BBe0l9l7MNrrHMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDI6LpNPGXrabe9ioahZfInJVPi6eld73wJSqfidKfcD\nTesnNsVgYPe0RH/bwXo+2Zfa/cksdH7vKISBRRj299ujZDBiMB0GA1UdDgQWBBQs\nAIdRdoj1mIUbVuyZVxOxJpCJkzAfBgNVHSMEGDAWgBTsLDSFPqgsetbT5HVa5wcI\nlOMUZzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwCgYIKoZIzj0E\nAwIDSAAwRQIhALu4c4K+Ios8A8rcN6BPeYsKfTbYCT9TA5cM05zprYYFAiB1YC60\nSph/RnqibVThH1HqzPgt5sL/OryubsJc0E+lUw==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPSo7sdu7gGo0Yf5rp23LVOHP3Xat8Cs/+LICvzu+yaooAoGCCqGSM49\nAwEHoUQDQgAEMjouk08Zetpt72KhqFl8iclU+Lp6V3vfAlKp+J0p9wNN6yc2xWBg\n97REf9vBej7Zl9r9ySx0fu8ohIFFGPb32w==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3321,14 +3450,15 @@ "id": "webpki::san::san-critical-with-nonempty-subject", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert includes a critical subjectAlternativeName extension, which\nis forbidden under CABF when the subject is non-empty:\n\n> If the subject field of the certificate is an empty SEQUENCE, this\n> extension MUST be marked critical, as specified in RFC 5280,\n> Section 4.2.1.6. Otherwise, this extension MUST NOT be marked\n> critical.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUEyhoUZ9jZACHe7gk2I0gbQYlRugwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASHGoHhwixXkrOhIkH7twpiorvSJ6BO26HkfxCr\nZePTqG9IA2fTySUodxFJZyzOBnQhg4hDeOPfh7hKfnqyxsI/o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUIqWJQRHqEET0bPjISyW2uy29IYYwCgYIKoZIzj0EAwIDSAAwRQIh\nAPXkmDPc88i/Tl2Mjxpxb3DbWcsIaW6LI1RpTbeRnLw1AiAXeZyhhtH8IOQy0QGH\n9MNqdEBJtj7kUlzwrb3M2IjBnA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUHQmgY717xTAsPoK8Ddt6EcVWiKcwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARC3aXAkp2ZUhy8SMFz7ZO901USWZNp59F38ELj\nCkBD3cKr6rP03lT+nkShkDzSfaHKDnoOkDrFvFMDV1wftokHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUUsZUF+aOxer7P5thQJbvz51mQT8wCgYIKoZIzj0EAwIDRwAwRAIg\ndvn3Ldrp2gkCVodH4a4kEvX3b8eI+A/dhFs4pw3+jJsCIDpq3tDhL5jl7vcIVCD4\ni4xVcZrKHOFuUdsrJzAh9TZ+\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtjCCAVygAwIBAgIUSEcsAjAGdGC48PAoldqtPVYUNfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAZMRcwFQYDVQQDDA5zb21ldGhpbmctZWxzZTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABMPsBqZQiTiC0Kldz9uk4Rqn6ZYGO5YZMH/6yPkS\nej3jETGThWnQjJ4ixn3lJbpNTjf04zV6nhNb9G4XM/wtF4mjfzB9MB0GA1UdDgQW\nBBSMaG8d8KxOj+eicggiE1AmOp0+YDAfBgNVHSMEGDAWgBQipYlBEeoQRPRs+MhL\nJba7Lb0hhjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGQYDVR0R\nAQH/BA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSAAwRQIgUh3LGUgwvK7R\nsgMWskhCFXdQKlQBgcGHV90FJpRAodwCIQC5r5nTh75eGMZavI/w4uqIdEZtJIsn\nA0qC9cgllUKFmg==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDKAeR7Yaoywzj3fnPN57LeKm0JK5IkwGPIAFaB3J4WNoAoGCCqGSM49\nAwEHoUQDQgAEw+wGplCJOILQqV3P26ThGqfplgY7lhkwf/rI+RJ6PeMRMZOFadCM\nniLGfeUluk1ON/TjNXqeE1v0bhcz/C0XiQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBtzCCAVygAwIBAgIURSBREH4jpNLZL6tlyLgjNGF8jDIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAZMRcwFQYDVQQDDA5zb21ldGhpbmctZWxzZTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABNl1xGKuzniEXtWcrVXsFm8QNiZtmKtVmEgWNqSp\nhH435yX2pybi7ttzkqd7BKBYCSHuIEuiEzixH5EV6VTOOD6jfzB9MB0GA1UdDgQW\nBBRaVX4yL9SgpbudSPcYCdsOVjaLHjAfBgNVHSMEGDAWgBRSxlQX5o7F6vs/m2FA\nlu/PnWZBPzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwGQYDVR0R\nAQH/BA8wDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDSQAwRgIhAI4uY39aA/I8\nHkuzQKNhHAMXQi8q08GmV1tGV+ouhiy9AiEAzTUppmklnezhYqd3xr9WHl1GaEe5\nbtA3yEfSEe1W71o=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPmwSl+bnQLD1SsZFME9xTz4bK3nzelPqRAItWZ8uKG4oAoGCCqGSM49\nAwEHoUQDQgAE2XXEYq7OeIRe1ZytVewWbxA2Jm2Yq1WYSBY2pKmEfjfnJfanJuLu\n23OSp3sEoFgJIe4gS6ITOLEfkRXpVM44Pg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3345,6 +3475,7 @@ "id": "webpki::explicit-curve", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nBoth root and EE convey EC keys using the \"explicit\" curve encoding,\nwhich is forbidden under CABF 7.1.3.1.2:\n\n> The CA SHALL indicate an ECDSA key using the id‐ecPublicKey\n> (OID: 1.2.840.10045.2.1) algorithm identifier. The parameters MUST use\n> the namedCurve encoding.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3369,6 +3500,7 @@ "id": "webpki::cryptographydotio-chain", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Verifies against a saved copy of `cryptography.io`'s chain. This should\ntrivially succeed.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3397,6 +3529,7 @@ "id": "webpki::cryptographydotio-chain-missing-intermediate", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Verifies against a saved copy of `cryptography.io`'s chain, but without its\nintermediates. This should trivially fail.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3423,14 +3556,15 @@ "id": "webpki::malformed-aia", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces a chain with an EE cert.\n\nThis EE cert contains an Authority Information Access extension with malformed\ncontents. This is **invalid** per CABF.\n\n> The AuthorityInfoAccessSyntax MUST contain one or more AccessDescriptions.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUSPNtWDBTsJydAXtgEuk1lrzK838wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASiEkfSJcfdHPJIgoHBBl2PoIFPbKEDKwjFJBen\nozr4HkH6vpI8bjuoLHC9ZhD1qsbY5tiXXss70EOH8ec6wpW8o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUzxW07/8nKi/oBGx1GzOOH2Yn6EAwCgYIKoZIzj0EAwIDSAAwRQIh\nAK5OQuGwboZ3tXAR/vq9hu3ehAKGsnth3GskTW3GSkCEAiBVk4GQ+dyyPtR6JPFK\nqcDvh4wvoQun1UguhWecb64grA==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUL38KU6ZySBlZc2UFZ/kZZXLuNGUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATjm8sqVME1XwlocWbyfwT1PxhhdHF1La9DVnaG\nDUkn0C61e4QqN2sS5cQkp1fRgAQRM/txYcfErdLqbJrlA7tUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUA+dqfkw9RO2sfawQqnTymXZGpPcwCgYIKoZIzj0EAwIDSAAwRQIg\nXgmVWbB5agd/1hCgg+10aSGJJ38zqy10NHSms3PkYwkCIQDMlF/nEvmWV29jzG0P\nuorVO4brE78GJpPnbLkHuAWCXg==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIByTCCAW+gAwIBAgIUD8avxa9VTE/iOwAo6vMRQE9E5mYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABDsI9iuAFJTdvpc0z8c+5aVYQju3hlyJdUyw5o22tgaR\n+ZFpaDX77/p7Wp2l6T65PSPxVaJhehgBQXWwFvW2mMujgZQwgZEwHQYDVR0OBBYE\nFF39GRTN/g5XEYWHZm5E2GRKCzREMB8GA1UdIwQYMBaAFM8VtO//Jyov6ARsdRsz\njh9mJ+hAMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAVBggrBgEFBQcBAQQJbWFsZm9ybWVkMAoGCCqGSM49\nBAMCA0gAMEUCIQDeln2zpFd5K94E+d7bl/5k/n72T0XWLz/Q52MYZIBNDwIgAXH7\nCbiCJRJkpAK562b8KTacaMeuugXU9wcRpSoG+4o=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIHSvU1b+EJvfbJ3/0kstIZbAAbMZMAKYsQWM9xgM/R04oAoGCCqGSM49\nAwEHoUQDQgAEOwj2K4AUlN2+lzTPxz7lpVhCO7eGXIl1TLDmjba2BpH5kWloNfvv\n+ntanaXpPrk9I/FVomF6GAFBdbAW9baYyw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIByjCCAW+gAwIBAgIUdxiKbK40ncLJCDBrwkRRfxILteEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABHFGZ1u1aoqAfLLnjY3oZyc1zOaIy+YQRnZvAfh2qlPR\nyTkaFwYlzYCOAQ2mfj+xAj1r4BJofvp64ymUVh3pIcOjgZQwgZEwHQYDVR0OBBYE\nFO79+GEwaZrYCNmJzS4Fzg12yPuzMB8GA1UdIwQYMBaAFAPnan5MPUTtrH2sEKp0\n8pl2RqT3MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREE\nDzANggtleGFtcGxlLmNvbTAVBggrBgEFBQcBAQQJbWFsZm9ybWVkMAoGCCqGSM49\nBAMCA0kAMEYCIQCHrw7YDcWkKKU7P4/xeHONTxZD0i7i7hgUb+JgBRLMHwIhAJzP\n1DPQmmXcZ4mxG8V36IXEiEspMQLMX6wBIBBqvmek\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDkcvQohyuc7kkv/TmEt0nHQrJfHxEYjkCFyhq6ddP0ioAoGCCqGSM49\nAwEHoUQDQgAEcUZnW7VqioB8sueNjehnJzXM5ojL5hBGdm8B+HaqU9HJORoXBiXN\ngI4BDaZ+P7ECPWvgEmh++nrjKZRWHekhww==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3447,14 +3581,15 @@ "id": "webpki::forbidden-p192-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert conveys a P-192 key and signs for the EE with it,\nwhich is not permitted under the CABF's key or signature types.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBbjCCASWgAwIBAgIUJwzs1A3LfJiow64s6amrs09OHUEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwSTATBgcq\nhkjOPQIBBggqhkjOPQMBAQMyAAT2TjTah3f1XWSn6j0UqZNK40AmqPFmuBzCx8lU\neOm5mg7hpiZi+e4v0w69q9h5ExijVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBQ08n3UQEi2\nEy2IdsFCTM7R4togFzAKBggqhkjOPQQDAgM3ADA0AhhNsoj0sNfbsf7Xu/ZWZElC\n8nDQVuB7i0cCGG+uSUt4iZDpPeb45FHJBdttFs18dAw10Q==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBbjCCASWgAwIBAgIUWHTpeBmWbEhz/mbDSctXYiAYlMUwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwSTATBgcq\nhkjOPQIBBggqhkjOPQMBAQMyAAR1N8+C1xVGQubfvFEr2sMgzbUbvuK+syE9gJ0s\nCnJOk59Idz4Q+dNT7w1dO7yNjTqjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBR6NeD35dcv\nKhVK61B5PJaRLD3xJDAKBggqhkjOPQQDAgM3ADA0Ahg0zX5NfyR8evU5xHf2M6g4\nY23lSh1OpLUCGCcpCxBdXGrs/TRrRvzr6i1qF+cs+uCIOQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBoDCCAVagAwIBAgIUMMd4jOpOvxlInOFox+Q55NfTAtgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABMQvy8Z+MQ1UA6CrRCD11wT2X/uMHOPfoLN78d7Crdel\nFnfKxvyjmKuvowvL0mqr+zk5JyeU+Rm5+zkyDw+pqOijfDB6MB0GA1UdDgQWBBR1\n+SQmZdf0JxjlUibWbi479oGzVDAfBgNVHSMEGDAWgBQ08n3UQEi2Ey2IdsFCTM7R\n4togFzALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDOAAwNQIYC+eTcz2S/B5Lhgs4brsm\nfLQpK5V2f3RcAhkAg5qL+cwW2EnY6YAY92dO7//yfmSs+sBS\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAyjVY1i/abcEKy4hwcncff8lGXK0Whdx69HK6MIlvqQoAoGCCqGSM49\nAwEHoUQDQgAExC/Lxn4xDVQDoKtEIPXXBPZf+4wc49+gs3vx3sKt16UWd8rG/KOY\nq6+jC8vSaqv7OTknJ5T5Gbn7OTIPD6mo6A==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBoDCCAVagAwIBAgIUQx7ATczGN4npBpZNFErg9Yb8PfgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABG4aj74nbv0LHUBAFAWhhVietPJWQid7FOJ+U/Hh/U0F\nrpiDe3DYbk9Fc/OWHE5gJL5WqrMSiy/qOjLQz2mvmFSjfDB6MB0GA1UdDgQWBBRd\nFNa8418IEpQBupu8UIWMtAyRwDAfBgNVHSMEGDAWgBR6NeD35dcvKhVK61B5PJaR\nLD3xJDALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCgYIKoZIzj0EAwIDOAAwNQIZAJj5g8UIwo+ZtavWV/r4\ngTujDIdyy6M86wIYJqaAN7DDYMX0XL4RJUjaUSVvCdfRsBqz\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIABVbAXVQewHQ6KXVJEjysS7hXY3E/pIRcvMAyRBfIeXoAoGCCqGSM49\nAwEHoUQDQgAEbhqPvidu/QsdQEAUBaGFWJ608lZCJ3sU4n5T8eH9TQWumIN7cNhu\nT0Vz85YcTmAkvlaqsxKLL+o6MtDPaa+YVA==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3473,14 +3608,15 @@ "features": [ "pedantic-webpki-subscriber-key" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert conveys a P-192 key, which is not one of the permitted\npublic keys under CABF.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIUPh7SqMb0/vScQxIk3k1fAe+3VuIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASQNBGE1a0diHQpx7wBMjXKt/llLft1aKocP8/B\n8oakY0SWfdP9VPwbNCFzaLSl9xVN/h/wgEnaufUU5cdjd0pUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUb6QXiqtZrTdV+1J4JblL9ZtW03UwCgYIKoZIzj0EAwIDRwAwRAIg\nBL6SHKLocN2F4XHrgUFC4km+vvkwjCtfk+FgMXfMYowCIADJeZmZI0RtNHUt9v0i\ntQPpn6zbWLjF5SaKgaRjEmSL\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUQesh6p1TX9oPMBUcQ0zOosH2hrwwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARxo7dlj23G2Rcu0raO1AwnWKGwGzXbn9Oe1cwC\nEyxIyBWAuFUs5rMv+uuLGFiQyh/4AEJWVxteignetFCvru2do1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUpaHOAP6pJHgcjPXcJQHGH3l2yZgwCgYIKoZIzj0EAwIDSAAwRQIh\nAKcFEByojslYAnmvjykTImlIp9vhOyoutqfGfOTrICK+AiBcWRZmv7vmzrcb3812\ngsHjVOFEkTYmyhRY9h1Tj8JYxA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBnzCCAUagAwIBAgIUHXbugZR3eUkzmsxxtvhAC3ljtgkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBJMBMGByqGSM49\nAgEGCCqGSM49AwEBAzIABJw4cfa2lRWvvLF/eb2QZffASVrcWl7/aDSPdnsHg56r\nBJg8h2EcOmEFEgK1uWZC76N8MHowHQYDVR0OBBYEFOoO79cQej5diIUJzp2EJBx9\nTPavMB8GA1UdIwQYMBaAFG+kF4qrWa03VftSeCW5S/WbVtN1MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiBlFXZPMm2/JBUIQ0yVPYoipcSdwDAYxB/DaKn5tFRq\nsQIgY2bIvx5b/z6JOBOPwhafn/7ORgTSOycqSOkZ8vUpa+k=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMF8CAQEEGO0PJobdWDD/SRzFtfpJppDtCub4T00SkqAKBggqhkjOPQMBAaE0AzIA\nBJw4cfa2lRWvvLF/eb2QZffASVrcWl7/aDSPdnsHg56rBJg8h2EcOmEFEgK1uWZC\n7w==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBnzCCAUagAwIBAgIUBqROfbTypNI9PqapFD6y8aDKQFgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBJMBMGByqGSM49\nAgEGCCqGSM49AwEBAzIABCEnu+vPm0KPawEAI7MdZ/sgtSNnt1aeKWzWPHMFH8UE\n0sBO9QRmh+77XodW8I4lJ6N8MHowHQYDVR0OBBYEFEvs4z24V6K/yqtNY2KFqwpp\nhKHzMB8GA1UdIwQYMBaAFKWhzgD+qSR4HIz13CUBxh95dsmYMAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNHADBEAiAUMDzfp4dNl8U1OkyJ5bxnzyevxjCm3/HA/SPcH4J+\neAIgJzWXlPTJXQFGP5nQL+imNrJ48NUYdQXUh2UnP5zUbvQ=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMF8CAQEEGOZcuSlVfW7KvtxenjvmgcySCN1LP+XFx6AKBggqhkjOPQMBAaE0AzIA\nBCEnu+vPm0KPawEAI7MdZ/sgtSNnt1aeKWzWPHMFH8UE0sBO9QRmh+77XodW8I4l\nJw==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3497,14 +3633,15 @@ "id": "webpki::forbidden-dsa-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert conveys a DSA-30272 key and signs for the EE with it,\nwhich is not permitted under the CABF's key or signature types.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIGATCCBaagAwIBAgIUc6AAK5tReRCHHSmp/St1ZtH/MvEwCwYJYIZIAWUDBAMC\nMBoxGDAWBgNVBAMMD3g1MDktbGltYm8tcm9vdDAgFw03MDAxMDEwMDAwMDFaGA8y\nOTY5MDUwMzAwMDAwMVowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MIIExzCC\nAzoGByqGSM44BAEwggMtAoIBgQCIAy2cdTjyHGjGybiw+z29LPKb+XGBca58/tYm\nR4PVVL7swmx9s3bRecb26fiBvV8gT74UNQz8u7SbFOAkKuTnuDW4DOOtCHX6BjJc\nYYPsDfDDd636Cu3KAF4HrhkTEdF8pvFkzJsq4G3qeEjTxCdg3oGenzrciPfUfvyo\nB/Pc4m7EFG9F6OYjC2gGFQUhJAQErHLnKsdt5zhS7y7Fcc3qGIciqQdYHB6PYEbu\nMI378xAnGDvihM/t9ip/gmqFbW0VlF/a0LQaP2+qbwtN+Bp0PwphnShPfng0mfz+\nXM2WvVGMDGVX7/3A1rrQ4KOaFXiBpSrzXWP88w7/Q0uKyfuA1EwiAxECE25Oi/dr\nipsKYbVQ0RcqK76LtsRvc+boTh3EA/PDahwGFwJ3fLzshJ7ft9RIBV4L8pQshbAO\nzOnFE2zNwg9x/TawUDtYMkBWQxryR0R10E0rW+1TihxGlVPymBhsAegn6hIX3WGv\nYjeO2jXWOLsY4GRX4yMv11pZcv0CIQDb1LzHT+SokeI9buLokBfBUEkizjyJ0sNm\n/IaX8D/PmwKCAYEAhhkcpm9eV2SL2GqX1ZEtY9auKg4S8UibejKDVyfirp3ucyjQ\nJa3jqaWZ+3LEnECXUadU+rMx3jRhFLN7xcbVulTWk/LPXz08hKBf1xuyPeO68+J2\n4/VKpw1Ag5YIMJEZUQj8Xr6GkAqvJ/wbHf8TdeyvJijQ+8ai5QpBz5FO04CwbdaV\nM2pxWupHg+lMnhKb2k4BV11y7ifoz0i0K6kCt7sDxXB4sX3Q7+sZ8tU0axXrwsyD\nqoXjERJbXhYDhQ8llopACOVVeRNtJqwr2G04+8rexjKNxWZtTQmklcd8A5fXQGor\nBeKMTauEBOipfxMGcgejykFf633clxLr6HEs63dzEbWLQQDMuOi0HDg26G+JZC+v\n5AMYdMse7of7jXvOgmSw0HnnmOraifu6aVYcXVCZHKhsLMDHC84bFQy8wKLPNuhS\njOE0H86VpPYUa3FQ0rMIsObGM1KVxZSisACjeC4HN15AWJIsdEDtM3IcfvnfdW86\nmfzQlq1opDlZhCbZA4IBhQACggGADQoelK+7Lzs5QDHfYKRfRS7z56VUpiHxSGO4\nTgnhlNjibQwNaViWFIavyHnZUXgQnK/xLqPpLw7BaWvHWIdCe+jIEd+yaIjJC1eo\nznjMlwHFvMBc+/zJjRrDIaEVh4kIx1/RVKEj7kdOHOqyFeV2nBGZR6rYl7EsH10O\nVtkDemLX+TfqafGu3SBrFODm7M+tR4jOWprSSVKzi5zn2TFrryXwhIACqXPOW+/t\nF2Gijo4bxWQdeb+6F8K/u3RcOGq5pzbnWykdZfHuHRL6aQ6VofPgNEx3ozieHM/2\nrTHU6hEHLFjYTQ6uEQDgq6eGy7JDVSDEh7QWZ4AO9R5XT7Vy6eRhO0nUPBNsm/nG\nGgv0bCBwFeTM9jx6qpRV55bEyo+hfxqhtx8beGn1Zv24TyLro+36ub6XY7h8E62x\n7yDe3/4+NIoVsq+OcUWk75lljd21YWu13lLtHMyTFfaasvSq39vyImapGgyCSKcY\nHxtaKk0mDXavB6g6JEF7GkbHi2E8o1cwVTAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNVHQ4EFgQUNjYlSpFZ\nQZbopItNKn8ZDJJeDVkwCwYJYIZIAWUDBAMCA0gAMEUCIHIuvqtFXeZvbcc1f50g\nOz+5pi+k6KUnJoO8VpOGqVbFAiEAk2wA2Jxx7Iwy4qD82mVptTfwnNf+cb3hjc3K\nWN4eshU=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIGATCCBaagAwIBAgIUJ0rS68xgFAMkvP5slzE/bUHenm4wCwYJYIZIAWUDBAMC\nMBoxGDAWBgNVBAMMD3g1MDktbGltYm8tcm9vdDAgFw03MDAxMDEwMDAwMDFaGA8y\nOTY5MDUwMzAwMDAwMVowGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MIIExzCC\nAzkGByqGSM44BAEwggMsAoIBgQD3nAFxmeR6gDrTW6k4WgbV0vngsZXR0eDlt2GC\nQ/cXFdcxA034nqtCBIivOcYRdMp6ZTll/n/FHtm2Ho1A5UD5MfPtmaXi5owtE4JL\n2XwECUh9erUuAwWb3jxjtm4zO0JBJey5dITdsoBhd64OWb9rcd0X1HFxPxjEG/OI\nKV+lfMmWdloi3oCMxnHcpGZYeFYqBPilNztU3w4Ihey1il4/jWfGh+cPrglGA642\nZrDWufe+iwkAWtzktChjnLHKpTqnM5WWF9fAeP6xKIZZhn/oWt7vtFtSD1YAicTU\nE2jzfxllmtio44TJADr1mema9XcCyzGMKwkh1C25jTEvMEb5rRervPKhVkut0+vB\nR7TnnZDxrN9tlswh31cGdaFEwVsIz/qi/czZKi/NkVF6apYx8DU++IOrNqOBdSrC\nxnX0c8mpYKwzJhk7ZQ3tpZTivOftAlSZtZIqOrxeV/Ru98jcTQ1n0tTosqZMrQmX\nLz5lwVJARE3K0Sx8WlKBZQ8CtyECIQDzfeXX4aZEycmNKGlRlkYhL789cot1Nxil\nZOR3yXqo8wKCAYAf0BkqdcceerloCgOenk6rnewg+LJFC8V/XiBeKa06KboOQROD\nsZX5q4JAVqXseoRByYVAYm6gW5nhpTQW1hevB8QhNkRrJuSGBesEGsJZz5MTuNi6\nBMgVF2RodN5ZCR7Co8Y/OrMMVaU/KadhVqmpMqfJ76NDH3waOJK8RXbwB5iIYUzO\n8ybMGPZExJrqun+Of2M8iYWzaY5k6h00NY78soQvuE1STfcrHD85n03zZEoCmzuM\nRG8mijvR73mAXL6okN/nQDmboALyKvkiHSjomDRyoAWuhHgajhj7905BvCl2v/kW\nEvOIegwczpvTbkDCMXUH597HIikfxBFGQk8L99qgtv/RmczvmsFN2pshGUU6V0w7\nwf/6madP7Y/cBYRQWqCI+xbZECRTproapUl+XMFAGs8aMzY6rQMixLGREdMZjxS4\nMGQeAV0c9s14/fIN5aZnxtoljA3PtEFfmHBmnxn4Ku6laMh5Fm+0lqW+brhJ2zs8\n9lhPlfHpYJxI384DggGGAAKCAYEAyjT8lw/majaJiqpvIVLB+SOK0GCpBgviMPbr\nJJPDdMJ0BRJRMsdZdw9WvJgLutUK/wZ0pafMcdAh1dclnI54T42jiQyvDEGpANwm\nTiRagpi2izZr/ylOJXPDoO4Lu2cSXUTGCM/rNl/4ceAyI1B7vC71Sxgc+4fCmaON\nGfFBqPUme5D8Fm/6Wnl/eJ2I8wBsJXOkt51xRTNaBUpbQBHH2sdVRioo2DIHkHea\nnZpiwVB80ivUCScstIGGS2ccTbS8u+yGo+LQqpXQYJ6kb+qlEyru+8VbmTFJs36Y\njTUWzDxvR1uFfIv7H2TkyGa1cRc2TtiLcxggGoG7NPTXScYvG3cQSsp4KWNYyzOD\nGkQsbGJ4GeS4qoUI7pzBsA1bFPZLkpALi/w+qZh1xn85NutY/WZKnDPBDkhvDSOu\nc6cWsaEYjJpwkHQ1yuypoKLZ0V6nvJrQTW9b9o2t6v5pwi9i8uKTNU4j9Ta81AyK\n42nlaZl0ZDgIeU/nguFF+iBw9KVVo1cwVTAPBgNVHRMBAf8EBTADAQH/MAsGA1Ud\nDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAdBgNVHQ4EFgQUjwIl9PWI\nGUAu8i+uQK2zkb0QMQowCwYJYIZIAWUDBAMCA0gAMEUCICC9Rkkc7zDw0HvRN5jO\n68lvdmxUijPSEnkYRDTnIq3OAiEA7toqD+34znIV+JW73zFXRnylpvzL2CAHMzIt\nYbXCw8o=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsjCCAVegAwIBAgIUcTP4tIZhZWR3d4Qf+c8cc6wJ13swCwYJYIZIAWUDBAMC\nMBoxGDAWBgNVBAMMD3g1MDktbGltYm8tcm9vdDAgFw03MDAxMDEwMDAwMDFaGA8y\nOTY5MDUwMzAwMDAwMVowFjEUMBIGA1UEAwwLZXhhbXBsZS5jb20wWTATBgcqhkjO\nPQIBBggqhkjOPQMBBwNCAATZE9fPQdv3Gsa8Qfv0Zn24Qido3HY/eXqk2Dp83g7K\nLCck8XnMIwKvMWDb40g/jEQocURCmWGqvgrFwWcr/F3Go3wwejAdBgNVHQ4EFgQU\na6e9cIrER0zD5ezpUJmfqfEZsfYwHwYDVR0jBBgwFoAUNjYlSpFZQZbopItNKn8Z\nDJJeDVkwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBYGA1UdEQQP\nMA2CC2V4YW1wbGUuY29tMAsGCWCGSAFlAwQDAgNIADBFAiAApIzDbWpVniebB8dR\nmurk/ocq1ddqn0E0Msgw2M8HtQIhANpuqJ+4cvOFtHHhYVQ+frtGaXbnXhucq7he\nk3As8gZ+\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIGUDLfN+TFLkOmL3yRmhH+yM2Tr5vnOPFS+BWKCrMd5doAoGCCqGSM49\nAwEHoUQDQgAE2RPXz0Hb9xrGvEH79GZ9uEInaNx2P3l6pNg6fN4OyiwnJPF5zCMC\nrzFg2+NIP4xEKHFEQplhqr4KxcFnK/xdxg==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBsTCCAVagAwIBAgITSWy9l9kN7bBU3N30rgW67mpXQjALBglghkgBZQMEAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOKXTtAGvW7l/UDfvZS8x6qx2sKrpKiXlTixNqSibPq1\n2vVSYMeotuo05b7mDcAgrh4R6I5O+6o/rm/jJ8AZm0qjfDB6MB0GA1UdDgQWBBRn\nPsW+VHOep+zmahpRyET+8jyTZzAfBgNVHSMEGDAWgBSPAiX09YgZQC7yL65ArbOR\nvRAxCjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0RBA8w\nDYILZXhhbXBsZS5jb20wCwYJYIZIAWUDBAMCA0gAMEUCICy5DADyV91sbswgsAus\nll6hU4nsCaNhvkOjZgt77UGSAiEA2rkYtaliiRX6qdHWXRFW1e4hJKUZg/lRoPS0\noF5I9UY=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIDWA221m75877V8UX5cEoaF86AGl18itRQaozzIwSlXMoAoGCCqGSM49\nAwEHoUQDQgAE4pdO0Aa9buX9QN+9lLzHqrHawqukqJeVOLE2pKJs+rXa9VJgx6i2\n6jTlvuYNwCCuHhHojk77qj+ub+MnwBmbSg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3523,14 +3660,15 @@ "features": [ "pedantic-webpki-subscriber-key" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert conveys a DSA key, which is not one of the permitted\npublic keys under CABF.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUZ6/QFE8B3OpqEQuoGpDgU7IXMxMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARoYbOiunZlDbXRFaGO/us09p+1+wXgeCSFOV+O\nzO7f4ZV0uOpB6rg7U4kU7kLYOF10Ng0TqHc40xUBmkukXC+Zo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU/uEieWm5TAPRd7lRu/z/UHnKlfUwCgYIKoZIzj0EAwIDSAAwRQIg\nMMDS3uZ07/4lU3RI4trgHI5I8C6SE0DsDHS2mEGRZ8ECIQD//l90LOHpFIqLzF8w\nI7iCax/bKbXFWLYBCjmHqATK+w==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUEkgxwmIWWQu37WjJ7pjORm5h0pEwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ7t7Iw/uORzd1dpVc2SJM+f71mtXhyZwcUVr8O\nrYxPnqT7kMvRLNBI8tbqtGDTgsO3yUc604Ybbk06KF0v8mRro1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUh3oj8CDH5QcgqZ+uBWcv2JAfFRkwCgYIKoZIzj0EAwIDSAAwRQIg\nLfZYJwZZoZ4UY8b+H9rZJECjJHNf2WaKHvgk3GnhTD8CIQDjnVTn9/szhDU3cB2x\nMEHnbZSO4xHBVADIAKlE+n9IQQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIGIDCCBcagAwIBAgIUND5tT1jxjjG8rpnxVpbMPap5400wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCCBMcwggM6Bgcq\nhkjOOAQBMIIDLQKCAYEA8AA5eVtbV1rTOFcx3lzqazKHTb5sa88DmIpcQMxg2Ulc\n4OYpPmlcJujp+iAprem1hYd8T9C4nqm1lAxIS6cPJs0QiOorVY6JseNihxgLVJrJ\nRtas6KLg0z9jajpXFrth5CKU6zg8CUR8iT/KgaXowqudUpQyJsvk7ZHg6Zy/evgH\n7sYPi4P39NZ13otoCv484SyMJn787byj2vVupWuE9Y7VsD9YCsTE2c8UgwKueCDJ\nm8JU0xnY1sArVQ8PwkBT/bXMXmjs3VAQbG0YuWq0IYUz4VZe4QG5TwbzW6ZfD/uu\naaUMriUuxBgzxsBqTcfMg7haSq3EQ1lXNCE8LHyvbiNnjIlAFHmBPtKgtUQ4MIeg\nLci6QPgBxzXE9uJ9tXZvYofr8a5getb282JUi1h0HgNLvbFGN0ejmxeYgVEP+j47\nGHptPz23oB6ohnkKkb/MMM3Bv4fK4Dx9s81VWG467jo3j0AyElkg3qeGzX+Ea3xL\nN2niKsTAegRO8Tt933WPAiEA7vIRRkUMfCmzn65kdW8yyRYbzhyiKjCVh9zzQOlg\nef0CggGBALvHNaU7RUd+2Kxxtl/DqXEv6P3McUN0gYwMkxPZDOXn/0/9KQwnZIK3\nKbRCZBMllItmyKIb7uzXMK/8I2ypYOOWbRXsE5ryDyLlwOonXMuHBZOLLzI7AUoA\nyI53TBkQMP+ahe5KT9Drr4csCU54Aab3UQzbm5kCLxpuWpK4aX6Ve56WjCrL90RU\nNuh9nkD26T3z9dWgHfm7bE1q4J/D+c62kIgCIahjyE/UGSvwdIsYoH31ny04hKEJ\n1BvKRzjzdNxqnVZzx3pXRsukiGif6vW0lh3IEzFA03r193KYFqjP9YNCEN+6w5TJ\ndRNzi4p+73WP8j6waBYLQLd8xwK/C29Tl2YM3ESuvw4bBporgkHFi6ZWt2+MRePY\nW00TuL4yySKZTEs3BrA5JIWOH84MHYCmzYF52I4+ifufmm/8iTJ+PCWLAzEmsrgL\noi2dv5LRDO2+bhTXEtPLkW+wnydw/PpQNCB5TdHBoj4xqnodtn0ouoPJ0uEHA2bQ\nwQTLXES88wOCAYUAAoIBgEDkksX5JPNxz6oyvcrcAdOt2CLbaSJu5yrwYAe0IHhx\nGmtAaZK9HpSbcBs4kCkdh4gOg7k6mM3VpFkyklauSq4D659w36HwChelNSc7s+3J\n9RVm0kFEy9d+Dah2VM26wkyZ8CZUSxa5u9qRV3yQtyYtOpvkGTrV3nwfDfKRShE0\npdUEaxcATJO8OnKHbrMxoSL2fGO7NhqhCLJKiZJ/U7US55NHa7veQiZQ0Mk04G46\nyihxkxwlIBFhzrRe2hwpLll7Fh/cUH7RaKZzRt94GFB+mxaMVZxp8D3QZJNMFJLu\nofj5KAbAH1UQAX/rVBmJEoZPivXXL0ljPPZ/pzk65wvESutlBZleKlDV9JRbcWlm\nySBc86+xo5cP0cbwh3hoQRAsbrh4iZrlmmt1mEfJQoNJ76C3dUBI3t6BjA2wt3hC\n/IDvKPKmRUxSIda+3uXSO6uBAtra2E4amXLwDDGNC1MbOmvA137g9s2FjV+gwa0D\nHnPmW4X4rdnbXiSXw06kraN8MHowHQYDVR0OBBYEFNW/vZWXRp/Qy4WCvpvXieL2\nWNtuMB8GA1UdIwQYMBaAFP7hInlpuUwD0Xe5Ubv8/1B5ypX1MAsGA1UdDwQEAwIH\ngDATBgNVHSUEDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAK\nBggqhkjOPQQDAgNIADBFAiA+YWm8G3FUyKmrMcHoK8t88o+Hc/ZR+/U+kaq13yqR\nngIhAIrG4zX01mCcgRz62bD4/5y906/pfg9SRGbWDnLlglRh\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN DSA PRIVATE KEY-----\nMIIE1wIBAAKCAYEA8AA5eVtbV1rTOFcx3lzqazKHTb5sa88DmIpcQMxg2Ulc4OYp\nPmlcJujp+iAprem1hYd8T9C4nqm1lAxIS6cPJs0QiOorVY6JseNihxgLVJrJRtas\n6KLg0z9jajpXFrth5CKU6zg8CUR8iT/KgaXowqudUpQyJsvk7ZHg6Zy/evgH7sYP\ni4P39NZ13otoCv484SyMJn787byj2vVupWuE9Y7VsD9YCsTE2c8UgwKueCDJm8JU\n0xnY1sArVQ8PwkBT/bXMXmjs3VAQbG0YuWq0IYUz4VZe4QG5TwbzW6ZfD/uuaaUM\nriUuxBgzxsBqTcfMg7haSq3EQ1lXNCE8LHyvbiNnjIlAFHmBPtKgtUQ4MIegLci6\nQPgBxzXE9uJ9tXZvYofr8a5getb282JUi1h0HgNLvbFGN0ejmxeYgVEP+j47GHpt\nPz23oB6ohnkKkb/MMM3Bv4fK4Dx9s81VWG467jo3j0AyElkg3qeGzX+Ea3xLN2ni\nKsTAegRO8Tt933WPAiEA7vIRRkUMfCmzn65kdW8yyRYbzhyiKjCVh9zzQOlgef0C\nggGBALvHNaU7RUd+2Kxxtl/DqXEv6P3McUN0gYwMkxPZDOXn/0/9KQwnZIK3KbRC\nZBMllItmyKIb7uzXMK/8I2ypYOOWbRXsE5ryDyLlwOonXMuHBZOLLzI7AUoAyI53\nTBkQMP+ahe5KT9Drr4csCU54Aab3UQzbm5kCLxpuWpK4aX6Ve56WjCrL90RUNuh9\nnkD26T3z9dWgHfm7bE1q4J/D+c62kIgCIahjyE/UGSvwdIsYoH31ny04hKEJ1BvK\nRzjzdNxqnVZzx3pXRsukiGif6vW0lh3IEzFA03r193KYFqjP9YNCEN+6w5TJdRNz\ni4p+73WP8j6waBYLQLd8xwK/C29Tl2YM3ESuvw4bBporgkHFi6ZWt2+MRePYW00T\nuL4yySKZTEs3BrA5JIWOH84MHYCmzYF52I4+ifufmm/8iTJ+PCWLAzEmsrgLoi2d\nv5LRDO2+bhTXEtPLkW+wnydw/PpQNCB5TdHBoj4xqnodtn0ouoPJ0uEHA2bQwQTL\nXES88wKCAYBA5JLF+STzcc+qMr3K3AHTrdgi22kibucq8GAHtCB4cRprQGmSvR6U\nm3AbOJApHYeIDoO5OpjN1aRZMpJWrkquA+ufcN+h8AoXpTUnO7PtyfUVZtJBRMvX\nfg2odlTNusJMmfAmVEsWubvakVd8kLcmLTqb5Bk61d58Hw3ykUoRNKXVBGsXAEyT\nvDpyh26zMaEi9nxjuzYaoQiySomSf1O1EueTR2u73kImUNDJNOBuOsoocZMcJSAR\nYc60XtocKS5ZexYf3FB+0Wimc0bfeBhQfpsWjFWcafA90GSTTBSS7qH4+SgGwB9V\nEAF/61QZiRKGT4r11y9JYzz2f6c5OucLxErrZQWZXipQ1fSUW3FpZskgXPOvsaOX\nD9HG8Id4aEEQLG64eIma5ZprdZhHyUKDSe+gt3VASN7egYwNsLd4QvyA7yjypkVM\nUiHWvt7l0jurgQLa2thOGply8AwxjQtTGzprwNd+4PbNhY1foMGtAx5z5luF+K3Z\n214kl8NOpK0CIQCR0dHKsQau+F1VZ4H3lMA5ekkKDHqKnLd2o/c2D0rT+w==\n-----END DSA PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIGHzCCBcWgAwIBAgIUNT1SH1rLh40A+NefhHR3gyhuVwIwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCCBMYwggM5Bgcq\nhkjOOAQBMIIDLAKCAYEA9eEDZ95+ObpCGij0B5UYDdWW2qmYULPcq3FoMkh53vvq\nQ6Vo3sGzqnX3OKd0pA4eSDev/0bvCKUEZQx2VLStlKQgQSbOLiUdNbaRgpq9Rv9x\nn5rgQhaCs2uQkwo3uUHpUCZcAxmpAfUbAjf4HHweIungr9+0Lfm6Cjkq+PA6cjfi\nsweQck14l/xopl7VhrSO9dFOfFGWUTbmLvfUeuba7/yhesRSP/PFRM/ukMgCp1z+\n+clID70V8WyIHNwm21/gUF1RPns7E/Tqm9K+QXxs1n37VqAQ8eB9yJ0xl/1nxiu/\nqYCLqCViGcgrxlw8WxSBNx8LPEPXyvNdP10f/5tbfLVGsRlO62QQlO9PuoK9gx8C\njIryjRe6ixA7FDYfvFIu4Jse/8xSDUm1xHFa/P0/8ZJCsrIUxK9qo6wMxEaRekGl\nQ/GbAdXdRGgaAVSPm5lF/PGSe/w2vxoU1NwujIvAad2o94U/9Gai83Acti1OSfxE\nQbnhe2m4weKgT4zzb2APAiEAvIiMPSRxgPLdETeu1imLBDf1ATCrWkIUxyvdnyxg\nozMCggGAYdLe22MAfYQrnaNQ9T1Bw70DYWrKvmrRKB8YjDyMEemBj8MLsmriTbWw\nBKhqolI/kP42PUEMhKu/G5IT1Qg965EnfHFtAJPKzKFRwD016aMbrOEcWB7Ouk0F\nUIOvq3RaMEVP0WVPKX8iNahrXKc74Qbyiq555PDnaKctkCgbycCEGJilEHBy/gDx\nLR6mu1D2DbUHxcZNUDgAG8s+a8nS/Knn+kUEYBFf65J27ShJBAQ2ON8RTzoCctFu\nqOGWWG52FdWQCmCpDQ/u+Jtaah+U8Jxvxzi6+xGSyDfraRhRa6KHNRWwsmvB/1Sk\nPnWuuQvM5UhqxvZD1LbqX0TYHtzrfzRV8C07+YaLJt3GMOUEGO5nMwnVnOsdUtwR\n0R40eL5RB8xbigUpznIROjRaQSBaJ2H/cgFJpIdisuFIrkSEVa+2yyUs44dAZs03\nJ/Mpn2uWI3P+8QagaeIB/1aIg+I2muFxckJeunJGGHg42UpAwk14qjhwI1UknCV7\n1uAO5EvKA4IBhQACggGAcdOrMRkgpLBmw04TT/PuTrpNACdCGUjiEb/Z1s1c/mF3\nrxnnNIy2TMmqRshEJVayYk5bbm5+04FNIUEelTI7oKVaicwl03jlR1iIp510GiuN\nZC0d0PUDA/d7ZkzznIOrG6EOwTwYh+fN+avpk6fKTLTpfPcl7rieDSR2nowHpsu0\nzWaCjMaVg/ixdR4+R6M752fsoCCSEgqL+IHOCtZNjERM8V2O0t6Tvv2KZt923G8X\nnqByGbXtxTF3El+a7xbyZjH20PpTsIZqywsDWWHi5YyL2t+JRUK8RVbSxInGZEsh\nB+gJIFYqdWj0gVW/C8wJCFiiCrsB1BWqGW5qXgNq3GI0ljx39TF0ukRF0/p2LyXx\njaswxQIhdxnFQkbRxStD+c4OihSeGxDqxO2Q6+V8D/aPTagdDYT/9InEUazHJ14f\nX0PEnjPKAcE5caGksy8vTsz3FFyR5V3zdI7UOq7+x8BCyK8a+n1eGF3gks4Lqsj/\nC6QOVfgaO/h8jmjPviAQo3wwejAdBgNVHQ4EFgQUBU7zkAFCqI45fgkGXP71etNw\nUdUwHwYDVR0jBBgwFoAUh3oj8CDH5QcgqZ+uBWcv2JAfFRkwCwYDVR0PBAQDAgeA\nMBMGA1UdJQQMMAoGCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoG\nCCqGSM49BAMCA0gAMEUCIQCOxPT6xoaxlNgcSOALiFBJc6Loi5jDga1e2xbMeH6o\n1gIgOhH+60EXgAw6JZQm0u4VzOj5soa5d/E/5vqpXDicxe0=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN DSA PRIVATE KEY-----\nMIIE1QIBAAKCAYEA9eEDZ95+ObpCGij0B5UYDdWW2qmYULPcq3FoMkh53vvqQ6Vo\n3sGzqnX3OKd0pA4eSDev/0bvCKUEZQx2VLStlKQgQSbOLiUdNbaRgpq9Rv9xn5rg\nQhaCs2uQkwo3uUHpUCZcAxmpAfUbAjf4HHweIungr9+0Lfm6Cjkq+PA6cjfisweQ\nck14l/xopl7VhrSO9dFOfFGWUTbmLvfUeuba7/yhesRSP/PFRM/ukMgCp1z++clI\nD70V8WyIHNwm21/gUF1RPns7E/Tqm9K+QXxs1n37VqAQ8eB9yJ0xl/1nxiu/qYCL\nqCViGcgrxlw8WxSBNx8LPEPXyvNdP10f/5tbfLVGsRlO62QQlO9PuoK9gx8CjIry\njRe6ixA7FDYfvFIu4Jse/8xSDUm1xHFa/P0/8ZJCsrIUxK9qo6wMxEaRekGlQ/Gb\nAdXdRGgaAVSPm5lF/PGSe/w2vxoU1NwujIvAad2o94U/9Gai83Acti1OSfxEQbnh\ne2m4weKgT4zzb2APAiEAvIiMPSRxgPLdETeu1imLBDf1ATCrWkIUxyvdnyxgozMC\nggGAYdLe22MAfYQrnaNQ9T1Bw70DYWrKvmrRKB8YjDyMEemBj8MLsmriTbWwBKhq\nolI/kP42PUEMhKu/G5IT1Qg965EnfHFtAJPKzKFRwD016aMbrOEcWB7Ouk0FUIOv\nq3RaMEVP0WVPKX8iNahrXKc74Qbyiq555PDnaKctkCgbycCEGJilEHBy/gDxLR6m\nu1D2DbUHxcZNUDgAG8s+a8nS/Knn+kUEYBFf65J27ShJBAQ2ON8RTzoCctFuqOGW\nWG52FdWQCmCpDQ/u+Jtaah+U8Jxvxzi6+xGSyDfraRhRa6KHNRWwsmvB/1SkPnWu\nuQvM5UhqxvZD1LbqX0TYHtzrfzRV8C07+YaLJt3GMOUEGO5nMwnVnOsdUtwR0R40\neL5RB8xbigUpznIROjRaQSBaJ2H/cgFJpIdisuFIrkSEVa+2yyUs44dAZs03J/Mp\nn2uWI3P+8QagaeIB/1aIg+I2muFxckJeunJGGHg42UpAwk14qjhwI1UknCV71uAO\n5EvKAoIBgHHTqzEZIKSwZsNOE0/z7k66TQAnQhlI4hG/2dbNXP5hd68Z5zSMtkzJ\nqkbIRCVWsmJOW25uftOBTSFBHpUyO6ClWonMJdN45UdYiKeddBorjWQtHdD1AwP3\ne2ZM85yDqxuhDsE8GIfnzfmr6ZOnyky06Xz3Je64ng0kdp6MB6bLtM1mgozGlYP4\nsXUePkejO+dn7KAgkhIKi/iBzgrWTYxETPFdjtLek779imbfdtxvF56gchm17cUx\ndxJfmu8W8mYx9tD6U7CGassLA1lh4uWMi9rfiUVCvEVW0sSJxmRLIQfoCSBWKnVo\n9IFVvwvMCQhYogq7AdQVqhlual4DatxiNJY8d/UxdLpERdP6di8l8Y2rMMUCIXcZ\nxUJG0cUrQ/nODooUnhsQ6sTtkOvlfA/2j02oHQ2E//SJxFGsxydeH19DxJ4zygHB\nOXGhpLMvL07M9xRckeVd83SO1Dqu/sfAQsivGvp9Xhhd4JLOC6rI/wukDlX4Gjv4\nfI5oz74gEAIgXrim+ydHT/2vqC0Y20pE9guC2aTJmNVT5ebI4yOZuxw=\n-----END DSA PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3547,14 +3685,15 @@ "id": "webpki::forbidden-weak-rsa-key-in-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert is signed with and conveys an RSA-1024 key, which is\nbelow the security margin (2048) required under CABF 6.1.5.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIICFjCCAX+gAwIBAgIUEzxljxZsQK/7v7CSmbEeUfenUegwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwgZ8w\nDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJf8G+uiqj97dPn1W2PK1BXemgabN+/q\nuJxSfcUy4bRarB2DEm0Ld3xDGHr1cegmKgk+Iwnd7lrHSL9PV8yBUbtzNT/J40bI\n62lU1pDw9ufYbADyXveRqQEXOyctm0fbyf/1KAGhx77Xi3Sx6OKSqhE3uiOpvq1Z\nQUS7vzY1+W/RAgMBAAGjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIE\nMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBSTq1S86tJzNFbKdxkx\nvn9WBMJCWjANBgkqhkiG9w0BAQsFAAOBgQAxpq8z4eY9YmKhNBr95sPmfYAwR4k/\nxlMhBsrZBN33Pu4mPeHbq51KX6PEl4vSld7e5gy9z8aO/8LP4DXELkLR9nsmxTbg\nMluAPtJEqqF6yo3mAgHZL1ojHCLhyE37+Z9Aok9BIsyeYFX3H2JH4dfFweLkbkho\nqiTlCqXPRQJ66w==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIICFjCCAX+gAwIBAgIUC4Ea4jg3Lavpt3yy8URmP0dSTyYwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwgZ8w\nDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMKqiMwG0Soe4YCjEaFCgT517GkbELbO\nsbkBp2akhi4h81BiqvY+RjSTeXyLlv1rQj65lOXHTJ1GWBfCsLm7uOVW41JsZZdn\nGt5mTePbjlTritcmHrKKV+/J5OTjKJG9nDGrFRTkr5onkf3Z9jZxIvLE1oqcMVOU\nXEr7xBXoqHNPAgMBAAGjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIE\nMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMB0GA1UdDgQWBBTOoW1TNqgIcf2WZ2FX\nY0Zaj1YndTANBgkqhkiG9w0BAQsFAAOBgQCml5lwI3mkrKB4WB4zEUDCSG+DnPf7\nGq19FU3toLOROA1ptFgKtzVPe5WrPxh7eV8mjI/0HAakEhhdWB4z1NAp0CYOd6NS\nvvC3P0r8GVwngYM/x6Fb+kqUu/jQr0FvZrpZ+s1El8zQ4lFuRCoyIOKlYSxnI2+g\n+n/prxq6A8AbAQ==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB8DCCAVmgAwIBAgIUHCTz4eW9PcjEXoNLr73ivdb70ngwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABCmxWN2davepqhQCIc95nXVMyM9fSxJRF88HiRAc\nAxYJyYI3rGasm/DSQOUhP/5kaamDnlxzePx+EKNU5pcWvN+jfDB6MB0GA1UdDgQW\nBBRyWDltS7kCXv5rp2SrUothbd/FGzAfBgNVHSMEGDAWgBSTq1S86tJzNFbKdxkx\nvn9WBMJCWjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wDQYJKoZIhvcNAQELBQADgYEAJg9WAFJhj0BQFBxF\nJE0t89umPJQQq5Mp2mLtUgVRphLrlvWXs6T7YZPaGCjCP/jc9AyVEfFloT7nZeS4\nZyuXoZeaeCn3vaYItCzpC2zmx7i295Nz45szVTTe1t3oiDdseVIJr19JcQpyxVNa\nSGM996AXOn9QaEaS9KvxIftpmM0=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILgjmHZLRjtinR8gLqREaRMHpMIg0wE5+3w2Z0dreDIzoAoGCCqGSM49\nAwEHoUQDQgAEKbFY3Z1q96mqFAIhz3mddUzIz19LElEXzweJEBwDFgnJgjesZqyb\n8NJA5SE//mRpqYOeXHN4/H4Qo1Tmlxa83w==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB8DCCAVmgAwIBAgIUbXkAhf16SldXnIWoBhMRERfUytcwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABPeCEAPZWKIws+q60z4QcPWEzx5XPKzCjlOSjVnK\nCgw/VR8X2tkWlow6JB70M05VrO1UsKqmlSOJYwqlUv9ghW2jfDB6MB0GA1UdDgQW\nBBTf7fCZZmOWTXhQ5Uk6dke9GAflLDAfBgNVHSMEGDAWgBTOoW1TNqgIcf2WZ2FX\nY0Zaj1YndTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wDQYJKoZIhvcNAQELBQADgYEABNYpSIKzuMu2QaJL\nA82YDt8GJz8y5U1TdUveMxu7FIPf0ul+ShQnMw3GmP2JaEdQIjWOJhO/AIv+EYrx\nyAPGLa5kVd417cG1i14pWmth1cc+qg8xzyv2HGGJw4k6e5K33SddOIMGbJHJiWCh\nRcBuIGdCSKqZpnTgvoLnTvq1lTY=\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIPLY+weaHOYDgASLWh77Q57xN4CdGcMqj5RpQlrshwa3oAoGCCqGSM49\nAwEHoUQDQgAE94IQA9lYojCz6rrTPhBw9YTPHlc8rMKOU5KNWcoKDD9VHxfa2RaW\njDokHvQzTlWs7VSwqqaVI4ljCqVS/2CFbQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3573,14 +3712,15 @@ "features": [ "pedantic-webpki-subscriber-key" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert conveys an RSA 1024 key, which is below the security margin\n(2048) required under CABF 6.1.5.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUIq8FosmxMuq1qnFucBl+uXDIoUswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARMYwV8lPvOlDIdvd5UVNGiCoEdzO0Y58s6E/AD\nIYZ6D1b4iDSyN4wpuk9og5L6dQbG40u4ddzMgpuJ4QysA8zzo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUcC3U8TWMhJVSZQ6oc+SUjB2puLEwCgYIKoZIzj0EAwIDSAAwRQIg\nFiR8hMWQ16glOSI+0fdQfjoVbDO9d3iD45A+lZr0UAUCIQC4oYA+9rmlDHjyzGFz\nBmEzdKpoTQN76EGB+FB++A9COg==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUFDg1P3DgN2PQXvTICrcUFD3wYxMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATW9yvCUaa7O637/KiuYGmJK3NRhSPYnxhXQHTD\ngYmLCB6sdBxjeNLMgb5bA1J6voYoLSsKQeOzQsbdOJahJDmto1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUWYUFjB3EnvZuR/OzUnHiDwwAVW8wCgYIKoZIzj0EAwIDSAAwRQIg\nXlzjCHUpjiQPhuIJcOUfCwaFjn3nZov0+YmW+SqWo1cCIQDg/k+QHKroha0W6Nc6\n50NgYXIzdAetwVQSvAKLBjVOqw==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB9jCCAZ2gAwIBAgIUQQyef4YHaGq6Y0AMMhmCCEZpqzowCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCBnzANBgkqhkiG\n9w0BAQEFAAOBjQAwgYkCgYEAt4LU8ZsDAb1cFTTGG1nra4yXejk2LlZdYAKycU0q\nbPMSana6tfTNG0w8F9BWIv0ko9HvT4psNzAUpPIKxuUwxuzZ6LZkFseWZAjOPC5X\nzbuDkKRE78vLunTXWV4bKeVDTw3YFhBW/P99yhgba7dYA4tvO/EZC3Vvc4g1Q4il\nF/sCAwEAAaN8MHowHQYDVR0OBBYEFJ1lbMfOSWJaAaWeTFPZj/Q0y0R1MB8GA1Ud\nIwQYMBaAFHAt1PE1jISVUmUOqHPklIwdqbixMAsGA1UdDwQEAwIHgDATBgNVHSUE\nDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQD\nAgNHADBEAiAn14l/v0CxNiDYmJNfoTRNbViA+MEO7UL5inBkh/LpXAIgQYrJWjjk\ndKYwEYb6CUB0er9WTjF4BvUg/FbHViF3Ex0=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN RSA PRIVATE KEY-----\nMIICXgIBAAKBgQC3gtTxmwMBvVwVNMYbWetrjJd6OTYuVl1gArJxTSps8xJqdrq1\n9M0bTDwX0FYi/SSj0e9Pimw3MBSk8grG5TDG7NnotmQWx5ZkCM48LlfNu4OQpETv\ny8u6dNdZXhsp5UNPDdgWEFb8/33KGBtrt1gDi2878RkLdW9ziDVDiKUX+wIDAQAB\nAoGAaPqkPM6ziqQ78Dmvdugav/y+jwH5l8p6QjlowV4mfgsTpuni58JyL0KOQgVB\nsWRlOH4ZS8RhIbUUqkN4nM1x9/EmOAHSCgHb3Zx6+EYWRZ3kWWb9UcNkjFxR+Mz6\n8InfX/nyh9pu8IdyccTBrLxQmut8fntmBJsvyVAiFUD7aWECQQDwcKZlUny/MT6u\ncuH5fxKGob+CT7IDGIwa4YHway54ZDjQJuELOrszQiNpzAo33ZMXTwbbY6LIKbPQ\nJi452UNRAkEAw2MLUjxv0+ZjjLRt5hzN/zf7NpMUTdKLjwVTyTBBUHPerwZkPqkn\nDHXR6Nbbn018p7l4CX1HupeAM9+2b1QbiwJBAK9RxNL+yb1zv/veAw407SJEUOtJ\nB0kgnhB/vIq87J6WnaKRpujUQ2oF4OKlCBJiO330ftB8H1cKqXWuUWiXFnECQQCU\nr/3Aki+DsRLW08PCVu9IpoBs8paD9pKvvx0YwLkjkVnIFfQZXz5RFCQurbsqSpxv\nQwwfJJB+ZaZxU3CQ3g+rAkEAtzarKcMc2JogrwLjgoW0qXMOmlyzYragrNbbv95g\n+dT0eI9qUBk7cDpxlQdrJWvhqn0Ab/16vo6YxxS1VOItFQ==\n-----END RSA PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIB9zCCAZ2gAwIBAgIUJoAwUH0pTxZUTOVIBGQzcrUCov0wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCBnzANBgkqhkiG\n9w0BAQEFAAOBjQAwgYkCgYEAsMZA/jBgXnqsqvLE8cKNVqKPflm4gZQMYUEu0haG\nSlx6MsNSflvT0FxduBBGQR/03hfTw8GNRzbUfOfDDzTESPJKcM/b5iSgqkSur+q8\nIHrxT4ZIagh1u3pYAbTGjHB1VFsa3Rs7lzaQJz1PiT9NZBI454UFUmsjlyD/HsGg\nuQECAwEAAaN8MHowHQYDVR0OBBYEFKDJfLPTqAtiisUPT2vdMifWWvXjMB8GA1Ud\nIwQYMBaAFFmFBYwdxJ72bkfzs1Jx4g8MAFVvMAsGA1UdDwQEAwIHgDATBgNVHSUE\nDDAKBggrBgEFBQcDATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQD\nAgNIADBFAiAj7FvTiporH7meBb9ylxYgIV1ImDqjxJplY11sYK2EUgIhAJiscuDm\nTctHdbo8X9bbfCSo5PvfmooGN/ZOEc5xPsJR\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN RSA PRIVATE KEY-----\nMIICXAIBAAKBgQCwxkD+MGBeeqyq8sTxwo1Woo9+WbiBlAxhQS7SFoZKXHoyw1J+\nW9PQXF24EEZBH/TeF9PDwY1HNtR858MPNMRI8kpwz9vmJKCqRK6v6rwgevFPhkhq\nCHW7elgBtMaMcHVUWxrdGzuXNpAnPU+JP01kEjjnhQVSayOXIP8ewaC5AQIDAQAB\nAoGAU06K8H+R2tSLLODN6XUbMJnZb90Oc5p2nxqd2wocbUzZlbSw2rWhw47T59tb\nkHNj7YpjFNzRHJ99UgPSzAa8/S8XMPjwELLlP1IyLKzzhprQiIsgJwXQNA4qKL7x\nVkWxb9eDgOE6G4Inx+UFZyvpLWCTecyNHSagdEhw3+2BCZUCQQDWKDeKgDZCMf2F\niO3ocghtpjEGCWdFEgeJwOAk/+4303GjqeolQmT3Myp6hB7gfto0+PZZV/3fXSLR\nRTxFfz3PAkEA01A3wuRUxjFaM/dGdpAwFi+p43L9HE07pkVlVqHQXkhWTfJVjNrU\nCODjBppYGWS0Xw/loeJyi5zagUzZwO2gLwJAXI1G65lbWaJHIYW646EcmV6ggy5f\nLg+LqHHtrK/aoM/FpeiR44ZdIiQ/sHEW8wh/fzM1LAmGExkqKezVDmfeKwJAJBO9\nAWwkQRYp9VdRU2q4mwEWOzvllNBmz7NnYswLnB0zhulJy9uMeduTRwxQ4Dz+QoCf\nTu0va0CjWZH6V2L6hwJBALtqPu5Ith5UC3H/Y0bDDI8gzFUBNDZJ6h9oNMsu6KKk\nTkrNbk3xKwQ83pRpwGwH58ic9Z27K+rXk3ihKzb3Bz8=\n-----END RSA PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3597,14 +3737,15 @@ "id": "webpki::forbidden-rsa-not-divisable-by-8-in-root", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe root cert is signed with and conveys an RSA-2052 key, which is\nabove the security margin (2048) but not divisible by 8, as is required\nunder CABF 6.1.5.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIDHDCCAgOgAwIBAgIUFpHvZo96PePcXfxK9qGjnt5HiaEwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwggEi\nMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQruRhRFN9n5OxUMH0GUAep/c05Z\nqRdI3Ift2eEb8czs4xe5LHlCNPTsA20NpZk29NHLUe6DpEQzymnSrwtAQRT3fQlC\nb1skJCRQU2MpmCkhWzT2R6lh1WE46Mf/OTSpNBqMEMSpZVOdiOQYXwaqQldnXZja\noiBHKIt+sNOsK2SAZ+whydN59iazWSeVgHZtt3mGT1OtK9O0JTnrW9Cy9N9nex2Q\nIghfNEtEXoHW5ko4jrEm0nlpfgyf+6xgukFGemKdBLVHG/fg7Lr85IkO4txM6qdx\n8YTtJQIlGM3hwZvk1WeQrQuQ38NX2A1f0t9SH7RjLyVGuKqSVnUp+tHmKl7FAgMB\nAAGjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2C\nC2V4YW1wbGUuY29tMB0GA1UdDgQWBBQbPl9X996dvO8MaRxK6jvzvmM+sTANBgkq\nhkiG9w0BAQsFAAOCAQIAClnAJhbkNWXHAj+sadv2peaj94HmTUQFgkD01wWNmBgO\nfRHJs9oVpFsM1JeECF0dsyGRfPDVCvMBwfSyO3Gg0+rRYzrQCUuOohXupM3vm7mW\nSaE0ochMYJ0cVSat96NaBLXnAPkQ+oQnXe5OSWUOoMF31TXryqpBrvgeFDybVRTG\n5yn0p0YoHU+RaHIYRzFJlJQicmSv/rMlp2kBc58akLrGtFuagJJN6TC78hPw2v4S\nAsEy0OHetPCEYPzMGow+qnHiYL+NW29ciTwFV4C3ed8WHo/zRe9r+xhz0QgkU5qU\nkz43SSJgBywBpAWnUA/YZRChxfTRxC/PwBw3QWtJMcQ=\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIDHDCCAgOgAwIBAgIUWRvdXQB6VOdpfWjvyBWDQxM5LEUwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwggEi\nMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQxaG1d/ZxMQtIbyTfRIm8t5WQ7C\nnjr98B2bwWZ8IkYj45PFdTONEN9c5TsE9+fcM+UYe8yGgmgAOak8BT8luNq7c7vS\nkjVPUWpG7h3HO+7MQ3KMIjxUcArKnvWhgvw7P3ECEmQ6srsgRFAPHpSAt1r5r6tZ\n9Kw6DRAbmCb0VdIXMGJTYFOHTIhttjKxYby9kJ6qU1fVsUBGD6u5pKjfNXMKC3kR\nuQnQ3lnKu16r0zoo8WjWTYt1GhcZIp+la2n66FPBTrg4G7ZuYBgacTX+OK2cBPax\n0aw/d4M9uiIgMGJnRgkOluJfVDycPVsrT5dfr7GRnGCy16PFIrMI89xJK4EpAgMB\nAAGjVzBVMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgIEMBYGA1UdEQQPMA2C\nC2V4YW1wbGUuY29tMB0GA1UdDgQWBBS/l8ISmdQ50Hb5FD3guYPp36pkcjANBgkq\nhkiG9w0BAQsFAAOCAQIABSBf+U495Fda5lmMTdaE6zz7S55puag9Zveq5MjBxlee\n+znvfqkOXfuZc1fMSpCrRc0X3/i+qiRd1OqorT5HUDRjy7ghpSWXZBt0fDMsJ2Ra\nczqcXEcyQ/F7TFp084fG17wba8gN9Iu1AztlWx7Usk4d0usL+QX6Do2Vl7hyuSEw\nRWW16V7n14iktPrZsgLjKMPKWhDnijGie/v6hAdypmnlNPvqMFnt0wj6k8WRerYK\nx2pCVXD9OLdmjmP/g7ikj1JdF5xzXLJvViOaqDGQAVyBS3m44EduxfaaWxWJ5N3h\nNiQgEPkOmGmLpN7MlAxdAZLHJLenfegZ+Ix8NNBqbVo=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICcjCCAVmgAwIBAgIULjYBbbsEM/LM7aS1s4T2ODCHNW8wDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABDJ76Cf0GEYtYbUhu8uHSSq2F2aZ6PAcxsYTjxb5\n/5bb7mc+BEfuX3jcJoPa7wQcfVSPXU01FbUflOCO8vRZce6jfDB6MB0GA1UdDgQW\nBBR8FN0MgOna6Zf+zrnjxPRKZNfsxDAfBgNVHSMEGDAWgBQbPl9X996dvO8MaRxK\n6jvzvmM+sTALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wDQYJKoZIhvcNAQELBQADggECAAIZ1bUEvIZQHDAG\nlgmNO5AHgcACLx2Cy+0+QZCxZLxBBH3eXeCwoCrN/lQVAEELvrV/JSbHZ+r1MWTR\naASDPIzLEDSAbNuKm/3FUT6YOP8RmKCTfKDy6hGIqF6rZ/FHsrYXM352p1eC/hh3\nmYiSDbUN+s/ZB92JY/2mjkkmX2jKVOl3oj7Mvx2dmAY2JTsLSaxUwOrJ8udCo8wr\nASGwvoZDCbJeZIBDHiSPGyq6EzG52eJVZcNPUgXo12eulOuBxtJFc3YgTpfUF245\n033VaX928GgiTzxnb3v4yrf8fDfz7s5gW9jGHFFrBVsouCkqfmllNHzqYIxapBTL\n3oRCKQIU\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIIigNEh0AerOHPmwsYTwoPwYaxGLg2AJSWR7slEHKUYxoAoGCCqGSM49\nAwEHoUQDQgAEMnvoJ/QYRi1htSG7y4dJKrYXZpno8BzGxhOPFvn/ltvuZz4ER+5f\neNwmg9rvBBx9VI9dTTUVtR+U4I7y9Flx7g==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICcjCCAVmgAwIBAgIUGuoiktopFJ96yNzU8LTT/S/uFeEwDQYJKoZIhvcNAQEL\nBQAwGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoY\nDzI5NjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqG\nSM49AgEGCCqGSM49AwEHA0IABCqpVfnhfAztcmhTZKjeA7dvN9uuEZw3GNINpSUv\nobRJsJvVEhuVgHTEd6OHduyk3OMOcpGEfYM3dWmHpPtMNvKjfDB6MB0GA1UdDgQW\nBBRyxqAIa/4L9cQG0FU1Erd+15s4UTAfBgNVHSMEGDAWgBS/l8ISmdQ50Hb5FD3g\nuYPp36pkcjALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwFgYDVR0R\nBA8wDYILZXhhbXBsZS5jb20wDQYJKoZIhvcNAQELBQADggECAAnx4lm1sZKFAvno\n5ndbUgBPkeyoLkwpJ4Py9SEwXsErA34KBJZd/SEVwIoO6SANrRiA2VlIlC3Y++Bl\nR/FjxsVLRs5pWUZyuU55PT+wPyVxlXWWfCRRY9HbV6OeCLSZ+rOKkjdOkgpCO8tn\nIS4FeyJ1+vAi7UQcT28+J4f1RpDVlGgSIMHHnPiKO5li5qbp/ZO3nV27H6vfvcPG\nIkatLtVGmKVJVpYTbsqLbdSK56BX0kXCFExmpjDW1jFDoFMfWUZs4TSBGCYKXTQ5\n0Vr37ZxwnB3HUhMtJof9wPdl5u4JAGwGAiPT6XeK3PWtG7fUH2zqT16RYsm+eoqD\nNUmyXCIx\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIM+uT9rcpBWY3Xu81P83L6tvW/Q0hTEN7+dakc3TU9D/oAoGCCqGSM49\nAwEHoUQDQgAEKqlV+eF8DO1yaFNkqN4Dt283264RnDcY0g2lJS+htEmwm9USG5WA\ndMR3o4d27KTc4w5ykYR9gzd1aYek+0w28g==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3623,14 +3764,15 @@ "features": [ "pedantic-webpki-subscriber-key" ], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE cert conveys an RSA-2052 key, which is above the security margin\n(2048) but not divisible by 8, as is required under CABF 6.1.5.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUSO2qR27cGVoZetRwy6WY/+MH9jAwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASNUnC5d0YC3KmTAOITxn1LUZp/HReqrzzgshmA\niL5CXFM3M8k0sWgOnrNf2Qw1NfFawTzvemkmbXUtGBdFmNxVo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU6/6rflWkLml1E2FXyD0VqoXjuMEwCgYIKoZIzj0EAwIDSAAwRQIg\nVRU3gY/sLcG/w8bhBkveJovttMM9vzj5kQb+izGWqbUCIQCmOcZwFklQrT9XNnGu\noR+yHW5szTC2NU4Ty0k4mXKk/Q==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUbXucKnWOvpfQVb3fbfs7f1GhJzswCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAASww4If0ejseTI9d36kIFu0+E082K4tUZpufP71\nfLhXsYOIdQ091gSzHEA5YgqpKdZ4e8FEmaX6Y4oi27S2a+lHo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUDGm1C74ZE+82491QaAuP7hu7nwwwCgYIKoZIzj0EAwIDSAAwRQIg\nJK8ycwSLUET02+9M7CkosXCxJf6c+Kjf1T5dVq3fTY4CIQDRI+4XRoW6QB0YR6RM\nccS9SH+niMmCIoLSN4DqUmquew==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICfDCCAiGgAwIBAgIUTMxuPJVK9xwJ3SzG7VDWfdla+2gwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCCASIwDQYJKoZI\nhvcNAQEBBQADggEPADCCAQoCggEBDGx6Z/L7oAEQw+flciaqsFOh556zInxOGoeD\nQOmF/K7sjCR1Exv33zLESAGoz16CLUN6BgIFhhmBW1eS5lq/k905KqRUQD9+VSBN\nDkQd8h21NGaoKu1aq9fu9+BQoz/cUgm67uw1VJspzB7U9zSeRbsE5XHeEMqBxpJC\nqQtxyKd32tz5BxI4e4mz9Zf64v0EUe7kUJ51Tl5wfOzlDfsFDUdxqfUjPYIBLAvx\nOF1JZrgIjx4rda5XshPjW0z7IfKjjdDHkO6c5v+3LnoQ2zVAVcU6HaB5q2UlT1kh\nEHkTjsyPVhW2sVsvyG7l+3dobB6rYNHCKBshSUv8QsyPJYEeVIkCAwEAAaN8MHow\nHQYDVR0OBBYEFMqjxY6f2UPX8aZsSoRhuZDFwDTdMB8GA1UdIwQYMBaAFOv+q35V\npC5pdRNhV8g9FaqF47jBMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcD\nATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNJADBGAiEAkIav\nG9Spxkrq6nv7iYE+1eJDDBCun5GNH6MK5/2tlBYCIQCjvUHuaULux9CchDzwFtgt\n7FhooeACV8sLLVwa07ce8w==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN RSA PRIVATE KEY-----\nMIIEpQIBAAKCAQEMbHpn8vugARDD5+VyJqqwU6HnnrMifE4ah4NA6YX8ruyMJHUT\nG/ffMsRIAajPXoItQ3oGAgWGGYFbV5LmWr+T3TkqpFRAP35VIE0ORB3yHbU0Zqgq\n7Vqr1+734FCjP9xSCbru7DVUmynMHtT3NJ5FuwTlcd4QyoHGkkKpC3HIp3fa3PkH\nEjh7ibP1l/ri/QRR7uRQnnVOXnB87OUN+wUNR3Gp9SM9ggEsC/E4XUlmuAiPHit1\nrleyE+NbTPsh8qON0MeQ7pzm/7cuehDbNUBVxTodoHmrZSVPWSEQeROOzI9WFbax\nWy/IbuX7d2hsHqtg0cIoGyFJS/xCzI8lgR5UiQIDAQABAoIBAEOqkwhDZuhpj+bL\nez3sBxZbF89zkOSY0M2t8t/vtCw7PNFlwENUZxDwcMvAPgaNDyN5YXlXiWkvgbRU\n8XEK1GgyLYBo3nkQr1pMPrp08frEfoSUnV0xaaiNcq6jaJBqQpXnE+ronjqIOB82\neWVK3MGZiBF/ylb/Tdc8yICa1MxjL2rfFjm6wHWDmCx/IcXVlf69tOI0qRzpHNXc\nAH2XGn41zt2Vh4DQa8hs3AKpNRwmtWU7DdUWCvOgDnMYEFm2DHfSbvEUX2GXjqnz\nYPF5MWTYxqECkrljs/ITlmNuZCXhr1yTLeR2QBm9DLLejSye0thAKgcU4ZTsp/iO\nvN42W9ECgYED98zCSooAdbSvivQHC3Ypz3Q1JAHaHQSckpI6muAnlIv19IIA2WMj\nPm6/eYHdaRL4dYT6MGUlB01rRKDe84ge8RL1Cys9WxWYpyNXS/TAuH/quaojj1SS\nZkJZocGR8Ptr30uQehx9qDUlGojU8EK9Qgb8/7Qpcn6M7w5NgsBYKZ0CgYEDIYnJ\nefrpd+vlcgdoYO1b6wKab2Wrx9wFKr3mqt81VvQZaFOqi5fAQkgxHWB99uh6PjUM\nO6bbY4nB0ilqMOfIU+/m8g3rHtzJ9t/dzzuzK08SKguJI1q7Lgpw7r52Xyi/HMcc\nxDGC9bGOP0GUJiW85CYUPQrwnjpjeTg4cFVTiN0CgYEBSeTx5ItVAuUfbZ06/Hnv\nsjQnXf5L+8iXoPJkng/WSuP5iOL/q5oKxCfrf2axpYJHtsLtDfKLSAfYon0sayL2\nCY0CkBIG5yHoZb+QhlaCkGjarlmXGuF4ekVqHqJi50SAEBDWZxIBrTM1TZzKqwzB\nskPavqCgJVL8KlcWzTPybfECgYEBm/prUUQTPi1EiKCgGLnHdfqnkDxM1/QRv89N\nwWPq0Z+zc3kVfpxoGGlsvTG8bO0+77xqZjq0JuxGcBQTXcG0qNf091MKF5naQQb9\nxidkRw1kQ7IcMczPyrFZLI0+4FhcKpl5AqqEKm6xs3esgxMAjK+51UpLNLjEKiko\ncSyaPA0CgYECT8B7oA+KpeXVajsRq8ACGO72lVi/Ykhpl8t/JmPl73iD5O869Zdi\ngk0lCMlGTE6tl/YBVSIvcKhIzalkvbDbT9wxbgyYwrGEo0SSrwaotbajifTDc7yG\nlCKW1MdUGADgMsxhrN2HESpaCal6eiPsGE7DA+aGVsjkC5BmEkX1ZOo=\n-----END RSA PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICezCCAiGgAwIBAgIUFbMcf1G+QyGM04J2c6sV/P9/fFgwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTCCASIwDQYJKoZI\nhvcNAQEBBQADggEPADCCAQoCggEBClNFQiSiaDjUUvSX2NTTEuMoXJSFA+I3R5/Y\nrrB4BoSB1eVVAtPUgg4Yiz+fXwYb6MGrHdaBzFa3F76DpZqWebEKo0jaWeKxUc8g\no4HbUtm6fFnjP+wV9rO/uQf0012O8Fee8T+bud8jkZSpakoLZKYQuLKDnl2A5xcw\nyn5rNy0PD7WgIQ/e/tL2RpnYzBNvQeVsr3HIrWWTeVav+6dCvha8wrmU2nKOsTyG\nWHYfbf/g9Enz/zOhvaTK36BoufnbEW/3LFspwSgrlE5EDqQjfJBXgwqN6yZ1nybi\nhx41QungGoHfhYT1jR2GLluS06WbFxmsiHRhELxg502TT7EmvgMCAwEAAaN8MHow\nHQYDVR0OBBYEFN7/xcf6pTFf06SFSC4lbXizKOBgMB8GA1UdIwQYMBaAFAxptQu+\nGRPvNuPdUGgLj+4bu58MMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcD\nATAWBgNVHREEDzANggtleGFtcGxlLmNvbTAKBggqhkjOPQQDAgNIADBFAiEA/WXe\nr/LIZ9F7Qwtaly0I8TX7t3fBPf5FKPnyoREWzsACIH87Cl1CJdeW4DvuxTCYgHyb\nb9vp/eeFSFeVBmyTwnrm\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN RSA PRIVATE KEY-----\nMIIEpQIBAAKCAQEKU0VCJKJoONRS9JfY1NMS4yhclIUD4jdHn9iusHgGhIHV5VUC\n09SCDhiLP59fBhvowasd1oHMVrcXvoOlmpZ5sQqjSNpZ4rFRzyCjgdtS2bp8WeM/\n7BX2s7+5B/TTXY7wV57xP5u53yORlKlqSgtkphC4soOeXYDnFzDKfms3LQ8PtaAh\nD97+0vZGmdjME29B5WyvccitZZN5Vq/7p0K+FrzCuZTaco6xPIZYdh9t/+D0SfP/\nM6G9pMrfoGi5+dsRb/csWynBKCuUTkQOpCN8kFeDCo3rJnWfJuKHHjVC6eAagd+F\nhPWNHYYuW5LTpZsXGayIdGEQvGDnTZNPsSa+AwIDAQABAoIBAQLY3l60SmJR1V6A\nmsSMPx3UrKMGwz0EanjiH3ZgK+CkNkccg1oRvmYUa/kt1Iz32sdObBiAt274tGkk\nPBn0rCynQIcxBiDGDV5BLr9XhfptFmrGwI62U4IhI6tqgbys7kbg6m+cuhzBZoX0\nx9iKzWR2FGNRulB3eR1//BDCVl8zGE6qXeVG+KpPPJ5BlpjxrJIEG2Qj95YefMny\npU4XxmYYXJiQG9uPuUx4fAhLfvlVE32pbf5QduYgFrSJo7a7Z/HWPK60R/6r0w4l\n08LptkvZYZSnBcUsuiEc2UtvCobT74dAPMuOYmF3pKrOVA7/WIsXb9ANC29d5b0y\nTD2O2BMNAoGBA3bbGBXh4kwPhBmKZes7Ww9VL0m8lMLCCeOkVVn5D/h4Uoh24DFi\nUAHvwYf+ZlYzA/i6ixuXDK46+r4N5ijrQWWWWuru+G3gKpezslXmUFAHWbaGjy24\nuVCJTV8w4BwLXGumjRpNF8Wcmi0V10TV2Gl0bI4B4uUOMSBp92zB5n8vAoGBAvsB\nzj+Cs0d+QODsKdaTtOv1M67bEK9C3PsKdKE53E4IghWITdzeAA3pBrtL1xWwVeK8\nSQbD2raCC9iOXOiEE3WpprmbaXyl/eKBMwTTw9ak+iwDj4GQObE0LNOpyjibAjJO\nUDusvH+ePlaUbvqsJ10a8vcc+SOxdRxffbcMGRltAoGALd+7aTZb/E85KBEOoJJb\nbXmcjpXgpAphdJMFjzfg6ZtfuYtcoXFSbic2vZAdPww4gl8z3uN7Vm/alIYnh6pT\noaubXFesJhLYYSx8ZxEYymr26wge0+CgRVg01l2y2gCEcVUWK2wddK1bFEXy8q6V\nGS9ahiX21J5dUC3rDIcjIyUCgYEBU7CdGwdcO5MI3Vom0kIWRQp4RPuAdRaGfTlN\nbU3uN8tv5pg1WgR377lz5sS/8Ab+ZaA/vsRJRgGltnbDBD1w0GyELpPzJaxc2I9+\noEKLKK9wNVIsfJkyJiM9ZcpsnkDcfHsDG14u2X4g8LjKo80rBTdvPfbnMC3cHpKg\nzHKVZg0CgYEAmsBUCLLvXN4mh2f6+BulOdfeveHwgedcT4whfyuOjsGzf3PT6vqU\nXQ1S7CqXBfqKomDMUsWR/dktOOxnmtQway96ObYSVT9aVoQxz70PyhctDLbA19ix\n67rgwZZOaBTyWu7/f+BFnlMZCQdKc7dRBq2nCWakePSpHgIiKdH9tl0=\n-----END RSA PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3647,14 +3789,15 @@ "id": "webpki::v1-cert", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThis chain is correctly constructed, but the EE cert is marked with\nversion 2 (ordinal 1) rather than version 3 (ordinal 2). This is invalid,\nper CABF 7.1.1:\n\n> Certificates MUST be of type X.509 v3.", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUNw82a5Ke5xqkmNJJrfSqsm0h7sMwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAS8gOIg6fGawqo5dyaQ6dj4r1+KRY90o1/MRMlh\nerogZSppU+uhs/2dOhbXt/w0be8i136C+Kgb/Rk+sCSohIBho1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUpSLWokFShxnk/Ovees0936gF2mUwCgYIKoZIzj0EAwIDSAAwRQIh\nANRm1aMhm2TmbolCmwn6VqBF4STpXJWTzqnYBfcbKlG9AiBC/3ZjygYUW+mTR7b6\nPNMWVeM1w/D5F9P3xyQ3jPq9Aw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUIomhVqV2qikhwC8zJ0uMPBBuH0wwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAATw0Hl/FwfZOG2kFzpOe1S7Kt/LBxkeZOdZOoMo\nBoXZv0hUNoOZsBT6MmmIEQekfuCWjcBnw78Ws3HZbKJxzwJUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUt+TQGl4Z5KJxWcB9b3qbPQABf4wwCgYIKoZIzj0EAwIDSAAwRQIg\nHpuYTvKbuYSxfGbAVfw0UI3zMyDigI8KAMrgxYvhAc4CIQCkJvRYcuHFX4c0bkXd\n3AP3xZntS98nUs3XYsG6nkBvdA==\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBLTCB0wIUWhAXg7tPsNxh+ZwCfjbWFTuBv1MwCgYIKoZIzj0EAwIwGjEYMBYG\nA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAz\nMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABLRqlfj1Zbc0p1UIVvAVGzDFv0NWYJqwrXFF7NSQiZ+fljVFlqEw\ncmB1NS9KC5+0/bZNCc5ytb3WFoGJrX3rejcwCgYIKoZIzj0EAwIDSQAwRgIhANDZ\nj4cE5wnp0VaaHeMt3E8qQ0npULcHbQOqJTAiPWvaAiEAntkZDBEJkamaXPmZnDer\nwn3atTvN9wwC3l6eSxhIvDs=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIKV+vG++sOSl3K30Ia9nmrKhUIk6/wSeiMp3AsIUMF00oAoGCCqGSM49\nAwEHoUQDQgAEtGqV+PVltzSnVQhW8BUbMMW/Q1ZgmrCtcUXs1JCJn5+WNUWWoTBy\nYHU1L0oLn7T9tk0JznK1vdYWgYmtfet6Nw==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBLDCB0wIUFqxAUEMICuX+0veUELIfh2u+fsMwCgYIKoZIzj0EAwIwGjEYMBYG\nA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5NjkwNTAz\nMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqG\nSM49AwEHA0IABAsKpigb9NO4pAm60H6Sv2bsH9NdHqLXJ6ePmjqSKO61J4+99+FE\neV0tB/WATHuwGn5PaLJnIHmMrnpuGJFyXpEwCgYIKoZIzj0EAwIDSAAwRQIhAJIz\navEGt/7EyGszg2MoCWafODwr1E8mFgzG7juSYRS8AiAdr33bs8a2oey4Ps4PhjZx\nH409p5Pv/YLE7NX7Bb3s5Q==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIEwssAz9kHGHyUjob9ehp5+GHEJB8p3SPWL4J0pr82WKoAoGCCqGSM49\nAwEHoUQDQgAECwqmKBv007ikCbrQfpK/Zuwf010eotcnp4+aOpIo7rUnj7334UR5\nXS0H9YBMe7Aafk9osmcgeYyuem4YkXJekQ==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3671,14 +3814,15 @@ "id": "webpki::ee-basicconstraints-ca", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> EE\n```\n\nThe EE certificate has `keyUsage.keyCertSign=FALSE` but\n`basicConstraints.cA=TRUE`, which is explicitly forbidden under\nCABF 7.1.2.7.8:\n\n> cA MUST be FALSE", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjzCCATWgAwIBAgIUFCGJjl2L8o6Uo23l4WUAoAwMovkwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARPc+y57i23tumgnd9LZYWM/RH23Cst1hLCT1S1\n0c1b4UhBHmbqeGzct+USHfELRq8uQIg/SwSG7xD1ZRMthoHro1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUcUi59RNYOHftOcc/3QYS30uTnlEwCgYIKoZIzj0EAwIDSAAwRQIh\nAMuyeG6JjedF4vznb7ljJkUs5a7XLkxOqmFMd8CxZzi5AiApyhJJe31wqnKBTtab\nkWlDBtu7v1GSJFUlOraiwwYvOw==\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUbIqtXQxY6P4vG2671I4gfLgPXV4wCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQ8mn4llwkMk62K8EUcnAipk0dYx4E3mf5ecjf6\n6/K0VU1DDYDK5gELfylL59mRUWLQzpKSGjMScySQzCcx+xO5o1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQU8ZhL59uBx0Qe+/9r6kuXnJ6svy4wCgYIKoZIzj0EAwIDSQAwRgIh\nAJsm9oZrH9cCk3DNd7+CiT7kTIB/8aOocmEG20yXRW7wAiEAzIR6jM6uZVsQkZq8\n8DeBABFrFZfen6ilz1k2Hzt3h58=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwzCCAWmgAwIBAgIUUySv/+9O3P2A9lmya8rW1IJPz5YwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABOoS5PXAqBjF+r/REKvkvYxtd2Og7ygpZOqAytfoLlCe\ndbfnbW2WNL0GgsJiO7uM64M1KwZaNgv2P0IgGPfIkyyjgY4wgYswHQYDVR0OBBYE\nFM7MfacO6pPDXecE5a4VJ14TS+AKMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgw\nFoAUcUi59RNYOHftOcc/3QYS30uTnlEwCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoG\nCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0gA\nMEUCIQCxLi+VEy5SfM9Pl14CaOPc5mOUOtkyd44HxfLgoJAWwwIgAdGks3aWJDQY\nXSaAoo2DFhTghnZbeTET61NMXbXP8YQ=\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIJRkal9Nc77mV/LSeO1k1npqHpVy7S30PSWd6VjwTn/uoAoGCCqGSM49\nAwEHoUQDQgAE6hLk9cCoGMX6v9EQq+S9jG13Y6DvKClk6oDK1+guUJ51t+dtbZY0\nvQaCwmI7u4zrgzUrBlo2C/Y/QiAY98iTLA==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIIBwjCCAWmgAwIBAgIUVyVypOIVkqCrmcA/YSd3jqMHL1UwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAWMRQwEgYDVQQDDAtleGFtcGxlLmNvbTBZMBMGByqGSM49\nAgEGCCqGSM49AwEHA0IABN3keg8D2GlZEECfpwqq+VDSKuThhosypA6xxtWpdr1e\noj68YimhylLtBL497ZxDGETcDMuFfjTqMoHQbEuIly6jgY4wgYswHQYDVR0OBBYE\nFNcEIh30DL5QruFj8wYgfsMrtABqMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgw\nFoAU8ZhL59uBx0Qe+/9r6kuXnJ6svy4wCwYDVR0PBAQDAgeAMBMGA1UdJQQMMAoG\nCCsGAQUFBwMBMBYGA1UdEQQPMA2CC2V4YW1wbGUuY29tMAoGCCqGSM49BAMCA0cA\nMEQCIQC/NijMbHe1fbUpNWwPn9SQvM9yb3Dzgx/+be5sZ4bbuwIfIMnHqQIYwNOa\nqkdZHkvqNV1wmXS7oVu1932hXSey2Q==\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIAj/dAgfGu6WtV7fb8aYJIvtDDB8S85c/6Eb1e718zgWoAoGCCqGSM49\nAwEHoUQDQgAE3eR6DwPYaVkQQJ+nCqr5UNIq5OGGizKkDrHG1al2vV6iPrxiKaHK\nUu0Evj3tnEMYRNwMy4V+NOoygdBsS4iXLg==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3697,14 +3841,15 @@ "rfc5280::ca-as-leaf" ], "features": [], + "importance": "undetermined", "description": "Produces the following **invalid** chain:\n\n```\nroot -> ICA\n```\n\nThe ICA is in leaf position, despite being a CA certificate,\nwhich is explicitly forbidden under CABF 7.1.2.7.11 (`keyUsage.keyCertSign` must NOT be\npermitted) and 7.1.2.7.8 (`basicConstraints.cA` MUST be false`).", "validation_kind": "SERVER", "trusted_certs": [ - "-----BEGIN CERTIFICATE-----\nMIIBjjCCATWgAwIBAgIURZWdYy0LR0cV5RV4w+rhXB8Jt4kwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAARC2RE5rqJ1pOU7EZpVhrYOGjkpgI1shPGzg8QE\nEkMCunm1T+525CqWLP9pBu/GIGHOwYeANzf1pHdxOD/T68geo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUiKL+pxu+lUcUqau6M2kE0iTFvnUwCgYIKoZIzj0EAwIDRwAwRAIg\nRoZ9OjveJdgQP0YDiDAJBjrEQP1IHExgcbGGyzyYSPECIFr4G6bqTKRHmLJfLmfX\nwHnIeBbPO7P/rAJtROq0v3gi\n-----END CERTIFICATE-----\n" + "-----BEGIN CERTIFICATE-----\nMIIBkDCCATWgAwIBAgIUJ7PhevKsJLOXdY/ouVoyizaOSIQwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjAaMRgwFgYDVQQDDA94NTA5LWxpbWJvLXJvb3QwWTATBgcq\nhkjOPQIBBggqhkjOPQMBBwNCAAQUa35WJaOwlGnDDZYDhzfLVkgbsFFPisiKXJtn\nezeZNDqMXJg7hzNplt66oGyLuEOqUwWA47NFdBkiVeXHcCfUo1cwVTAPBgNVHRMB\nAf8EBTADAQH/MAsGA1UdDwQEAwICBDAWBgNVHREEDzANggtleGFtcGxlLmNvbTAd\nBgNVHQ4EFgQUutskMJwx0iqI7ErWHvvRIh92M3QwCgYIKoZIzj0EAwIDSQAwRgIh\nAOT/lmOxNvX7LDWLffTL5k0cX3r1QsKOl85AcQQPjQjdAiEA55VXTyHfSIwQzpqr\neGsW/WDBBDO0aqZroJL5HJW50gc=\n-----END CERTIFICATE-----\n" ], "untrusted_intermediates": [], - "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICBDCCAamgAwIBAgIUNd+Hviab9CvpJ/7bdaoBUza8qugwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAzOTcyNTY4ODQ1OTgxNDU0MjIzMTA2\nMjk3NzgxOTkzMDkyODg4NDczNzk2NDIyNDkxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABKzoIegYobQrZGO+vvgeBSPEeHS+sknb7chDKaaYzv2lwJlxq8TQCdra4Xsf\nCEabahauCljItWAMPu3P9xQR6Z2jezB5MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBkGA1UdEQQSMBCCDmNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFIii\n/qcbvpVHFKmrujNpBNIkxb51MB0GA1UdDgQWBBRkRaFzzEpj6CtaygsQ+C+0Rhc3\n1jAKBggqhkjOPQQDAgNJADBGAiEA/iH80xIAyyhh6/DM0b8ZmjGZ02vHqEyyap3g\nmb4Mc2cCIQCEyb+eNDqhD4xYvOxD41OhhAIEF22bIYLpyjZQhCBPUQ==\n-----END CERTIFICATE-----\n", - "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEILXJpH71sV27BwyEmGD5EQJ+hk8rrB5AiHMAcg1i/s7DoAoGCCqGSM49\nAwEHoUQDQgAErOgh6BihtCtkY76++B4FI8R4dL6ySdvtyEMpppjO/aXAmXGrxNAJ\n2trhex8IRptqFq4KWMi1YAw+7c/3FBHpnQ==\n-----END EC PRIVATE KEY-----\n", + "peer_certificate": "-----BEGIN CERTIFICATE-----\nMIICAzCCAamgAwIBAgIUSpSE5gVO0HoBGcP2ONVVXUoQLYYwCgYIKoZIzj0EAwIw\nGjEYMBYGA1UEAwwPeDUwOS1saW1iby1yb290MCAXDTcwMDEwMTAwMDAwMVoYDzI5\nNjkwNTAzMDAwMDAxWjBqMTkwNwYDVQQLDDAyMjY2NjIxMTU1NTQwMTcxMjc4MzI0\nOTQzNTEyMTc2MjE0NTU0ODEwNDUxNDE2MzYxLTArBgNVBAMMJHg1MDktbGltYm8t\naW50ZXJtZWRpYXRlLXBhdGhsZW4tTm9uZTBZMBMGByqGSM49AgEGCCqGSM49AwEH\nA0IABA5/TFeik4FBkuU1sawW6kTnhWrIpGdAuNxhCNrkuFgWWWZl8kFEVtvNInlC\nNJsJDG2f8UBm/cNv3PcaRXMFL+ujezB5MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P\nBAQDAgIEMBkGA1UdEQQSMBCCDmNhLmV4YW1wbGUuY29tMB8GA1UdIwQYMBaAFLrb\nJDCcMdIqiOxK1h770SIfdjN0MB0GA1UdDgQWBBQtVNsIMS2TNr2GxvCFbkatp/Hv\nUDAKBggqhkjOPQQDAgNIADBFAiAb/CzRToX9fQsXlWT3jQN9ENeQQrXhV7CnkaV0\n6TQ4fwIhAKDasx8NMUTUcnGjt4iyyXoYybtBNyJxkPy1+95zavgB\n-----END CERTIFICATE-----\n", + "peer_certificate_key": "-----BEGIN EC PRIVATE KEY-----\nMHcCAQEEIMp08pqQx4cazQMaaJGHZ7TIKu5CPqrgqFkElsyzf0A8oAoGCCqGSM49\nAwEHoUQDQgAEDn9MV6KTgUGS5TWxrBbqROeFasikZ0C43GEI2uS4WBZZZmXyQURW\n280ieUI0mwkMbZ/xQGb9w2/c9xpFcwUv6w==\n-----END EC PRIVATE KEY-----\n", "validation_time": null, "signature_algorithms": [], "key_usage": [], @@ -3721,6 +3866,7 @@ "id": "bettertls::nameconstraints::tc0", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `0` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3748,6 +3894,7 @@ "id": "bettertls::nameconstraints::tc1", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3775,6 +3922,7 @@ "id": "bettertls::nameconstraints::tc2", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3802,6 +3950,7 @@ "id": "bettertls::nameconstraints::tc3", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3829,6 +3978,7 @@ "id": "bettertls::nameconstraints::tc4", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3856,6 +4006,7 @@ "id": "bettertls::nameconstraints::tc5", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3883,6 +4034,7 @@ "id": "bettertls::nameconstraints::tc6", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3910,6 +4062,7 @@ "id": "bettertls::nameconstraints::tc7", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3937,6 +4090,7 @@ "id": "bettertls::nameconstraints::tc8", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3964,6 +4118,7 @@ "id": "bettertls::nameconstraints::tc9", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -3991,6 +4146,7 @@ "id": "bettertls::nameconstraints::tc10", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `10` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4018,6 +4174,7 @@ "id": "bettertls::nameconstraints::tc11", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `11` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4045,6 +4202,7 @@ "id": "bettertls::nameconstraints::tc12", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `12` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4072,6 +4230,7 @@ "id": "bettertls::nameconstraints::tc13", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `13` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4099,6 +4258,7 @@ "id": "bettertls::nameconstraints::tc14", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `14` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4126,6 +4286,7 @@ "id": "bettertls::nameconstraints::tc15", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `15` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4153,6 +4314,7 @@ "id": "bettertls::nameconstraints::tc16", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `16` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4180,6 +4342,7 @@ "id": "bettertls::nameconstraints::tc17", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `17` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4207,6 +4370,7 @@ "id": "bettertls::nameconstraints::tc18", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `18` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4234,6 +4398,7 @@ "id": "bettertls::nameconstraints::tc19", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `19` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4261,6 +4426,7 @@ "id": "bettertls::nameconstraints::tc20", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `20` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4288,6 +4454,7 @@ "id": "bettertls::nameconstraints::tc21", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `21` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4315,6 +4482,7 @@ "id": "bettertls::nameconstraints::tc22", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `22` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4342,6 +4510,7 @@ "id": "bettertls::nameconstraints::tc23", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `23` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4369,6 +4538,7 @@ "id": "bettertls::nameconstraints::tc24", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `24` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4396,6 +4566,7 @@ "id": "bettertls::nameconstraints::tc25", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `25` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4423,6 +4594,7 @@ "id": "bettertls::nameconstraints::tc26", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `26` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4450,6 +4622,7 @@ "id": "bettertls::nameconstraints::tc27", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `27` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4477,6 +4650,7 @@ "id": "bettertls::nameconstraints::tc28", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `28` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4504,6 +4678,7 @@ "id": "bettertls::nameconstraints::tc29", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `29` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4531,6 +4706,7 @@ "id": "bettertls::nameconstraints::tc30", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `30` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4558,6 +4734,7 @@ "id": "bettertls::nameconstraints::tc31", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `31` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4585,6 +4762,7 @@ "id": "bettertls::nameconstraints::tc32", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `32` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4612,6 +4790,7 @@ "id": "bettertls::nameconstraints::tc33", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `33` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4639,6 +4818,7 @@ "id": "bettertls::nameconstraints::tc34", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `34` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4666,6 +4846,7 @@ "id": "bettertls::nameconstraints::tc35", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `35` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4693,6 +4874,7 @@ "id": "bettertls::nameconstraints::tc36", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `36` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4720,6 +4902,7 @@ "id": "bettertls::nameconstraints::tc37", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `37` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4747,6 +4930,7 @@ "id": "bettertls::nameconstraints::tc38", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `38` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4774,6 +4958,7 @@ "id": "bettertls::nameconstraints::tc39", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `39` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4801,6 +4986,7 @@ "id": "bettertls::nameconstraints::tc40", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `40` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4828,6 +5014,7 @@ "id": "bettertls::nameconstraints::tc41", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `41` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4855,6 +5042,7 @@ "id": "bettertls::nameconstraints::tc42", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `42` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4882,6 +5070,7 @@ "id": "bettertls::nameconstraints::tc43", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `43` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4909,6 +5098,7 @@ "id": "bettertls::nameconstraints::tc44", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `44` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4936,6 +5126,7 @@ "id": "bettertls::nameconstraints::tc45", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `45` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4963,6 +5154,7 @@ "id": "bettertls::nameconstraints::tc46", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `46` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -4990,6 +5182,7 @@ "id": "bettertls::nameconstraints::tc47", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `47` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5017,6 +5210,7 @@ "id": "bettertls::nameconstraints::tc48", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `48` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5044,6 +5238,7 @@ "id": "bettertls::nameconstraints::tc49", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `49` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5071,6 +5266,7 @@ "id": "bettertls::nameconstraints::tc50", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `50` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5098,6 +5294,7 @@ "id": "bettertls::nameconstraints::tc51", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `51` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5125,6 +5322,7 @@ "id": "bettertls::nameconstraints::tc52", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `52` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5152,6 +5350,7 @@ "id": "bettertls::nameconstraints::tc53", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `53` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5179,6 +5378,7 @@ "id": "bettertls::nameconstraints::tc54", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `54` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5206,6 +5406,7 @@ "id": "bettertls::nameconstraints::tc55", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `55` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5233,6 +5434,7 @@ "id": "bettertls::nameconstraints::tc56", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `56` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5260,6 +5462,7 @@ "id": "bettertls::nameconstraints::tc57", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `57` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5287,6 +5490,7 @@ "id": "bettertls::nameconstraints::tc58", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `58` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5314,6 +5518,7 @@ "id": "bettertls::nameconstraints::tc59", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `59` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5341,6 +5546,7 @@ "id": "bettertls::nameconstraints::tc60", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `60` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5368,6 +5574,7 @@ "id": "bettertls::nameconstraints::tc61", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `61` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5395,6 +5602,7 @@ "id": "bettertls::nameconstraints::tc62", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `62` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5422,6 +5630,7 @@ "id": "bettertls::nameconstraints::tc63", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `63` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5449,6 +5658,7 @@ "id": "bettertls::nameconstraints::tc64", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `64` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5476,6 +5686,7 @@ "id": "bettertls::nameconstraints::tc65", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `65` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5503,6 +5714,7 @@ "id": "bettertls::nameconstraints::tc66", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `66` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5530,6 +5742,7 @@ "id": "bettertls::nameconstraints::tc67", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `67` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5557,6 +5770,7 @@ "id": "bettertls::nameconstraints::tc68", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `68` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5584,6 +5798,7 @@ "id": "bettertls::nameconstraints::tc69", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `69` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5611,6 +5826,7 @@ "id": "bettertls::nameconstraints::tc70", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `70` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5638,6 +5854,7 @@ "id": "bettertls::nameconstraints::tc71", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `71` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5665,6 +5882,7 @@ "id": "bettertls::nameconstraints::tc72", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `72` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5692,6 +5910,7 @@ "id": "bettertls::nameconstraints::tc73", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `73` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5719,6 +5938,7 @@ "id": "bettertls::nameconstraints::tc74", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `74` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5746,6 +5966,7 @@ "id": "bettertls::nameconstraints::tc75", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `75` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5773,6 +5994,7 @@ "id": "bettertls::nameconstraints::tc76", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `76` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5800,6 +6022,7 @@ "id": "bettertls::nameconstraints::tc77", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `77` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5827,6 +6050,7 @@ "id": "bettertls::nameconstraints::tc78", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `78` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5854,6 +6078,7 @@ "id": "bettertls::nameconstraints::tc79", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `79` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5881,6 +6106,7 @@ "id": "bettertls::nameconstraints::tc80", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `80` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5908,6 +6134,7 @@ "id": "bettertls::nameconstraints::tc81", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `81` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5935,6 +6162,7 @@ "id": "bettertls::nameconstraints::tc82", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `82` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5962,6 +6190,7 @@ "id": "bettertls::nameconstraints::tc83", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `83` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -5989,6 +6218,7 @@ "id": "bettertls::nameconstraints::tc84", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `84` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6016,6 +6246,7 @@ "id": "bettertls::nameconstraints::tc85", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `85` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6043,6 +6274,7 @@ "id": "bettertls::nameconstraints::tc86", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `86` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6070,6 +6302,7 @@ "id": "bettertls::nameconstraints::tc87", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `87` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6097,6 +6330,7 @@ "id": "bettertls::nameconstraints::tc88", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `88` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6124,6 +6358,7 @@ "id": "bettertls::nameconstraints::tc89", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `89` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6151,6 +6386,7 @@ "id": "bettertls::nameconstraints::tc90", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `90` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6178,6 +6414,7 @@ "id": "bettertls::nameconstraints::tc91", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `91` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6205,6 +6442,7 @@ "id": "bettertls::nameconstraints::tc92", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `92` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6232,6 +6470,7 @@ "id": "bettertls::nameconstraints::tc93", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `93` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6259,6 +6498,7 @@ "id": "bettertls::nameconstraints::tc94", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `94` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6286,6 +6526,7 @@ "id": "bettertls::nameconstraints::tc95", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `95` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6313,6 +6554,7 @@ "id": "bettertls::nameconstraints::tc96", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `96` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6340,6 +6582,7 @@ "id": "bettertls::nameconstraints::tc97", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `97` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6367,6 +6610,7 @@ "id": "bettertls::nameconstraints::tc98", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `98` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6394,6 +6638,7 @@ "id": "bettertls::nameconstraints::tc99", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `99` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6421,6 +6666,7 @@ "id": "bettertls::nameconstraints::tc100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6448,6 +6694,7 @@ "id": "bettertls::nameconstraints::tc101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6475,6 +6722,7 @@ "id": "bettertls::nameconstraints::tc102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6502,6 +6750,7 @@ "id": "bettertls::nameconstraints::tc103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6529,6 +6778,7 @@ "id": "bettertls::nameconstraints::tc104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6556,6 +6806,7 @@ "id": "bettertls::nameconstraints::tc105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6583,6 +6834,7 @@ "id": "bettertls::nameconstraints::tc106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6610,6 +6862,7 @@ "id": "bettertls::nameconstraints::tc107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6637,6 +6890,7 @@ "id": "bettertls::nameconstraints::tc108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6664,6 +6918,7 @@ "id": "bettertls::nameconstraints::tc109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6691,6 +6946,7 @@ "id": "bettertls::nameconstraints::tc110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6718,6 +6974,7 @@ "id": "bettertls::nameconstraints::tc111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6745,6 +7002,7 @@ "id": "bettertls::nameconstraints::tc112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6772,6 +7030,7 @@ "id": "bettertls::nameconstraints::tc113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6799,6 +7058,7 @@ "id": "bettertls::nameconstraints::tc114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6826,6 +7086,7 @@ "id": "bettertls::nameconstraints::tc115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6853,6 +7114,7 @@ "id": "bettertls::nameconstraints::tc116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6880,6 +7142,7 @@ "id": "bettertls::nameconstraints::tc117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6907,6 +7170,7 @@ "id": "bettertls::nameconstraints::tc118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6934,6 +7198,7 @@ "id": "bettertls::nameconstraints::tc119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6961,6 +7226,7 @@ "id": "bettertls::nameconstraints::tc120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -6988,6 +7254,7 @@ "id": "bettertls::nameconstraints::tc121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7015,6 +7282,7 @@ "id": "bettertls::nameconstraints::tc122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7042,6 +7310,7 @@ "id": "bettertls::nameconstraints::tc123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7069,6 +7338,7 @@ "id": "bettertls::nameconstraints::tc124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7096,6 +7366,7 @@ "id": "bettertls::nameconstraints::tc125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7123,6 +7394,7 @@ "id": "bettertls::nameconstraints::tc126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7150,6 +7422,7 @@ "id": "bettertls::nameconstraints::tc127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7177,6 +7450,7 @@ "id": "bettertls::nameconstraints::tc128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7204,6 +7478,7 @@ "id": "bettertls::nameconstraints::tc129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7231,6 +7506,7 @@ "id": "bettertls::nameconstraints::tc130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7258,6 +7534,7 @@ "id": "bettertls::nameconstraints::tc131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7285,6 +7562,7 @@ "id": "bettertls::nameconstraints::tc132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7312,6 +7590,7 @@ "id": "bettertls::nameconstraints::tc133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7339,6 +7618,7 @@ "id": "bettertls::nameconstraints::tc134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7366,6 +7646,7 @@ "id": "bettertls::nameconstraints::tc135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7393,6 +7674,7 @@ "id": "bettertls::nameconstraints::tc136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7420,6 +7702,7 @@ "id": "bettertls::nameconstraints::tc137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7447,6 +7730,7 @@ "id": "bettertls::nameconstraints::tc138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7474,6 +7758,7 @@ "id": "bettertls::nameconstraints::tc139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7501,6 +7786,7 @@ "id": "bettertls::nameconstraints::tc140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7528,6 +7814,7 @@ "id": "bettertls::nameconstraints::tc141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7555,6 +7842,7 @@ "id": "bettertls::nameconstraints::tc142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7582,6 +7870,7 @@ "id": "bettertls::nameconstraints::tc143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7609,6 +7898,7 @@ "id": "bettertls::nameconstraints::tc144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7636,6 +7926,7 @@ "id": "bettertls::nameconstraints::tc145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7663,6 +7954,7 @@ "id": "bettertls::nameconstraints::tc146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7690,6 +7982,7 @@ "id": "bettertls::nameconstraints::tc147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7717,6 +8010,7 @@ "id": "bettertls::nameconstraints::tc148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7744,6 +8038,7 @@ "id": "bettertls::nameconstraints::tc149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7771,6 +8066,7 @@ "id": "bettertls::nameconstraints::tc150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7798,6 +8094,7 @@ "id": "bettertls::nameconstraints::tc151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7825,6 +8122,7 @@ "id": "bettertls::nameconstraints::tc152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7852,6 +8150,7 @@ "id": "bettertls::nameconstraints::tc153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7879,6 +8178,7 @@ "id": "bettertls::nameconstraints::tc154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7906,6 +8206,7 @@ "id": "bettertls::nameconstraints::tc155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7933,6 +8234,7 @@ "id": "bettertls::nameconstraints::tc156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7960,6 +8262,7 @@ "id": "bettertls::nameconstraints::tc157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -7987,6 +8290,7 @@ "id": "bettertls::nameconstraints::tc158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8014,6 +8318,7 @@ "id": "bettertls::nameconstraints::tc159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8041,6 +8346,7 @@ "id": "bettertls::nameconstraints::tc160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8068,6 +8374,7 @@ "id": "bettertls::nameconstraints::tc161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8095,6 +8402,7 @@ "id": "bettertls::nameconstraints::tc162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8122,6 +8430,7 @@ "id": "bettertls::nameconstraints::tc163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8149,6 +8458,7 @@ "id": "bettertls::nameconstraints::tc164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8176,6 +8486,7 @@ "id": "bettertls::nameconstraints::tc165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8203,6 +8514,7 @@ "id": "bettertls::nameconstraints::tc166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8230,6 +8542,7 @@ "id": "bettertls::nameconstraints::tc167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8257,6 +8570,7 @@ "id": "bettertls::nameconstraints::tc168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8284,6 +8598,7 @@ "id": "bettertls::nameconstraints::tc169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8311,6 +8626,7 @@ "id": "bettertls::nameconstraints::tc170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8338,6 +8654,7 @@ "id": "bettertls::nameconstraints::tc171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8365,6 +8682,7 @@ "id": "bettertls::nameconstraints::tc172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8392,6 +8710,7 @@ "id": "bettertls::nameconstraints::tc173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8419,6 +8738,7 @@ "id": "bettertls::nameconstraints::tc174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8446,6 +8766,7 @@ "id": "bettertls::nameconstraints::tc175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8473,6 +8794,7 @@ "id": "bettertls::nameconstraints::tc176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8500,6 +8822,7 @@ "id": "bettertls::nameconstraints::tc177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8527,6 +8850,7 @@ "id": "bettertls::nameconstraints::tc178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8554,6 +8878,7 @@ "id": "bettertls::nameconstraints::tc179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8581,6 +8906,7 @@ "id": "bettertls::nameconstraints::tc180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8608,6 +8934,7 @@ "id": "bettertls::nameconstraints::tc181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8635,6 +8962,7 @@ "id": "bettertls::nameconstraints::tc182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8662,6 +8990,7 @@ "id": "bettertls::nameconstraints::tc183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8689,6 +9018,7 @@ "id": "bettertls::nameconstraints::tc184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8716,6 +9046,7 @@ "id": "bettertls::nameconstraints::tc185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8743,6 +9074,7 @@ "id": "bettertls::nameconstraints::tc186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8770,6 +9102,7 @@ "id": "bettertls::nameconstraints::tc187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8797,6 +9130,7 @@ "id": "bettertls::nameconstraints::tc188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8824,6 +9158,7 @@ "id": "bettertls::nameconstraints::tc189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8851,6 +9186,7 @@ "id": "bettertls::nameconstraints::tc190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8878,6 +9214,7 @@ "id": "bettertls::nameconstraints::tc191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8905,6 +9242,7 @@ "id": "bettertls::nameconstraints::tc192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8932,6 +9270,7 @@ "id": "bettertls::nameconstraints::tc193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8959,6 +9298,7 @@ "id": "bettertls::nameconstraints::tc194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -8986,6 +9326,7 @@ "id": "bettertls::nameconstraints::tc195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9013,6 +9354,7 @@ "id": "bettertls::nameconstraints::tc196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9040,6 +9382,7 @@ "id": "bettertls::nameconstraints::tc197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9067,6 +9410,7 @@ "id": "bettertls::nameconstraints::tc198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9094,6 +9438,7 @@ "id": "bettertls::nameconstraints::tc199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9121,6 +9466,7 @@ "id": "bettertls::nameconstraints::tc200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9148,6 +9494,7 @@ "id": "bettertls::nameconstraints::tc201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9175,6 +9522,7 @@ "id": "bettertls::nameconstraints::tc202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9202,6 +9550,7 @@ "id": "bettertls::nameconstraints::tc203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9229,6 +9578,7 @@ "id": "bettertls::nameconstraints::tc204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9256,6 +9606,7 @@ "id": "bettertls::nameconstraints::tc205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9283,6 +9634,7 @@ "id": "bettertls::nameconstraints::tc206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9310,6 +9662,7 @@ "id": "bettertls::nameconstraints::tc207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9337,6 +9690,7 @@ "id": "bettertls::nameconstraints::tc208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9364,6 +9718,7 @@ "id": "bettertls::nameconstraints::tc209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9391,6 +9746,7 @@ "id": "bettertls::nameconstraints::tc210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9418,6 +9774,7 @@ "id": "bettertls::nameconstraints::tc211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9445,6 +9802,7 @@ "id": "bettertls::nameconstraints::tc212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9472,6 +9830,7 @@ "id": "bettertls::nameconstraints::tc213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9499,6 +9858,7 @@ "id": "bettertls::nameconstraints::tc214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9526,6 +9886,7 @@ "id": "bettertls::nameconstraints::tc215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9553,6 +9914,7 @@ "id": "bettertls::nameconstraints::tc216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9580,6 +9942,7 @@ "id": "bettertls::nameconstraints::tc217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9607,6 +9970,7 @@ "id": "bettertls::nameconstraints::tc218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9634,6 +9998,7 @@ "id": "bettertls::nameconstraints::tc219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9661,6 +10026,7 @@ "id": "bettertls::nameconstraints::tc220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9688,6 +10054,7 @@ "id": "bettertls::nameconstraints::tc221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9715,6 +10082,7 @@ "id": "bettertls::nameconstraints::tc222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9742,6 +10110,7 @@ "id": "bettertls::nameconstraints::tc223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9769,6 +10138,7 @@ "id": "bettertls::nameconstraints::tc224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9796,6 +10166,7 @@ "id": "bettertls::nameconstraints::tc225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9823,6 +10194,7 @@ "id": "bettertls::nameconstraints::tc226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9850,6 +10222,7 @@ "id": "bettertls::nameconstraints::tc227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9877,6 +10250,7 @@ "id": "bettertls::nameconstraints::tc228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9904,6 +10278,7 @@ "id": "bettertls::nameconstraints::tc229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9931,6 +10306,7 @@ "id": "bettertls::nameconstraints::tc230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9958,6 +10334,7 @@ "id": "bettertls::nameconstraints::tc231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -9985,6 +10362,7 @@ "id": "bettertls::nameconstraints::tc232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10012,6 +10390,7 @@ "id": "bettertls::nameconstraints::tc233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10039,6 +10418,7 @@ "id": "bettertls::nameconstraints::tc234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10066,6 +10446,7 @@ "id": "bettertls::nameconstraints::tc235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10093,6 +10474,7 @@ "id": "bettertls::nameconstraints::tc236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10120,6 +10502,7 @@ "id": "bettertls::nameconstraints::tc237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10147,6 +10530,7 @@ "id": "bettertls::nameconstraints::tc238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10174,6 +10558,7 @@ "id": "bettertls::nameconstraints::tc239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10201,6 +10586,7 @@ "id": "bettertls::nameconstraints::tc240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10228,6 +10614,7 @@ "id": "bettertls::nameconstraints::tc241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10255,6 +10642,7 @@ "id": "bettertls::nameconstraints::tc242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10282,6 +10670,7 @@ "id": "bettertls::nameconstraints::tc243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10309,6 +10698,7 @@ "id": "bettertls::nameconstraints::tc244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10336,6 +10726,7 @@ "id": "bettertls::nameconstraints::tc245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10363,6 +10754,7 @@ "id": "bettertls::nameconstraints::tc246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10390,6 +10782,7 @@ "id": "bettertls::nameconstraints::tc247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10417,6 +10810,7 @@ "id": "bettertls::nameconstraints::tc248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10444,6 +10838,7 @@ "id": "bettertls::nameconstraints::tc249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10471,6 +10866,7 @@ "id": "bettertls::nameconstraints::tc250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10498,6 +10894,7 @@ "id": "bettertls::nameconstraints::tc251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10525,6 +10922,7 @@ "id": "bettertls::nameconstraints::tc252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10552,6 +10950,7 @@ "id": "bettertls::nameconstraints::tc253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10579,6 +10978,7 @@ "id": "bettertls::nameconstraints::tc254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10606,6 +11006,7 @@ "id": "bettertls::nameconstraints::tc255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10633,6 +11034,7 @@ "id": "bettertls::nameconstraints::tc256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10660,6 +11062,7 @@ "id": "bettertls::nameconstraints::tc257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10687,6 +11090,7 @@ "id": "bettertls::nameconstraints::tc258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10714,6 +11118,7 @@ "id": "bettertls::nameconstraints::tc259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10741,6 +11146,7 @@ "id": "bettertls::nameconstraints::tc260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10768,6 +11174,7 @@ "id": "bettertls::nameconstraints::tc261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10795,6 +11202,7 @@ "id": "bettertls::nameconstraints::tc262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10822,6 +11230,7 @@ "id": "bettertls::nameconstraints::tc263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10849,6 +11258,7 @@ "id": "bettertls::nameconstraints::tc264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10876,6 +11286,7 @@ "id": "bettertls::nameconstraints::tc265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10903,6 +11314,7 @@ "id": "bettertls::nameconstraints::tc266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10930,6 +11342,7 @@ "id": "bettertls::nameconstraints::tc267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10957,6 +11370,7 @@ "id": "bettertls::nameconstraints::tc268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -10984,6 +11398,7 @@ "id": "bettertls::nameconstraints::tc269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11011,6 +11426,7 @@ "id": "bettertls::nameconstraints::tc270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11038,6 +11454,7 @@ "id": "bettertls::nameconstraints::tc271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11065,6 +11482,7 @@ "id": "bettertls::nameconstraints::tc272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11092,6 +11510,7 @@ "id": "bettertls::nameconstraints::tc273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11119,6 +11538,7 @@ "id": "bettertls::nameconstraints::tc274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11146,6 +11566,7 @@ "id": "bettertls::nameconstraints::tc275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11173,6 +11594,7 @@ "id": "bettertls::nameconstraints::tc276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11200,6 +11622,7 @@ "id": "bettertls::nameconstraints::tc277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11227,6 +11650,7 @@ "id": "bettertls::nameconstraints::tc278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11254,6 +11678,7 @@ "id": "bettertls::nameconstraints::tc279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11281,6 +11706,7 @@ "id": "bettertls::nameconstraints::tc280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11308,6 +11734,7 @@ "id": "bettertls::nameconstraints::tc281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11335,6 +11762,7 @@ "id": "bettertls::nameconstraints::tc282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11362,6 +11790,7 @@ "id": "bettertls::nameconstraints::tc283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11389,6 +11818,7 @@ "id": "bettertls::nameconstraints::tc284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11416,6 +11846,7 @@ "id": "bettertls::nameconstraints::tc285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11443,6 +11874,7 @@ "id": "bettertls::nameconstraints::tc286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11470,6 +11902,7 @@ "id": "bettertls::nameconstraints::tc287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11497,6 +11930,7 @@ "id": "bettertls::nameconstraints::tc288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11524,6 +11958,7 @@ "id": "bettertls::nameconstraints::tc289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11551,6 +11986,7 @@ "id": "bettertls::nameconstraints::tc290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11578,6 +12014,7 @@ "id": "bettertls::nameconstraints::tc291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11605,6 +12042,7 @@ "id": "bettertls::nameconstraints::tc292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11632,6 +12070,7 @@ "id": "bettertls::nameconstraints::tc293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11659,6 +12098,7 @@ "id": "bettertls::nameconstraints::tc294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11686,6 +12126,7 @@ "id": "bettertls::nameconstraints::tc295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11713,6 +12154,7 @@ "id": "bettertls::nameconstraints::tc296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11740,6 +12182,7 @@ "id": "bettertls::nameconstraints::tc297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11767,6 +12210,7 @@ "id": "bettertls::nameconstraints::tc298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11794,6 +12238,7 @@ "id": "bettertls::nameconstraints::tc299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11821,6 +12266,7 @@ "id": "bettertls::nameconstraints::tc300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11848,6 +12294,7 @@ "id": "bettertls::nameconstraints::tc301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11875,6 +12322,7 @@ "id": "bettertls::nameconstraints::tc302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11902,6 +12350,7 @@ "id": "bettertls::nameconstraints::tc303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11929,6 +12378,7 @@ "id": "bettertls::nameconstraints::tc304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11956,6 +12406,7 @@ "id": "bettertls::nameconstraints::tc305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -11983,6 +12434,7 @@ "id": "bettertls::nameconstraints::tc306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12010,6 +12462,7 @@ "id": "bettertls::nameconstraints::tc307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12037,6 +12490,7 @@ "id": "bettertls::nameconstraints::tc308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12064,6 +12518,7 @@ "id": "bettertls::nameconstraints::tc309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12091,6 +12546,7 @@ "id": "bettertls::nameconstraints::tc310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12118,6 +12574,7 @@ "id": "bettertls::nameconstraints::tc311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12145,6 +12602,7 @@ "id": "bettertls::nameconstraints::tc312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12172,6 +12630,7 @@ "id": "bettertls::nameconstraints::tc313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12199,6 +12658,7 @@ "id": "bettertls::nameconstraints::tc314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12226,6 +12686,7 @@ "id": "bettertls::nameconstraints::tc315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12253,6 +12714,7 @@ "id": "bettertls::nameconstraints::tc316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12280,6 +12742,7 @@ "id": "bettertls::nameconstraints::tc317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12307,6 +12770,7 @@ "id": "bettertls::nameconstraints::tc318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12334,6 +12798,7 @@ "id": "bettertls::nameconstraints::tc319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12361,6 +12826,7 @@ "id": "bettertls::nameconstraints::tc320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12388,6 +12854,7 @@ "id": "bettertls::nameconstraints::tc321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12415,6 +12882,7 @@ "id": "bettertls::nameconstraints::tc322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12442,6 +12910,7 @@ "id": "bettertls::nameconstraints::tc323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12469,6 +12938,7 @@ "id": "bettertls::nameconstraints::tc324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12496,6 +12966,7 @@ "id": "bettertls::nameconstraints::tc325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12523,6 +12994,7 @@ "id": "bettertls::nameconstraints::tc326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12550,6 +13022,7 @@ "id": "bettertls::nameconstraints::tc327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12577,6 +13050,7 @@ "id": "bettertls::nameconstraints::tc328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12604,6 +13078,7 @@ "id": "bettertls::nameconstraints::tc329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12631,6 +13106,7 @@ "id": "bettertls::nameconstraints::tc330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12658,6 +13134,7 @@ "id": "bettertls::nameconstraints::tc331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12685,6 +13162,7 @@ "id": "bettertls::nameconstraints::tc332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12712,6 +13190,7 @@ "id": "bettertls::nameconstraints::tc333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12739,6 +13218,7 @@ "id": "bettertls::nameconstraints::tc334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12766,6 +13246,7 @@ "id": "bettertls::nameconstraints::tc335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12793,6 +13274,7 @@ "id": "bettertls::nameconstraints::tc336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12820,6 +13302,7 @@ "id": "bettertls::nameconstraints::tc337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12847,6 +13330,7 @@ "id": "bettertls::nameconstraints::tc338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12874,6 +13358,7 @@ "id": "bettertls::nameconstraints::tc339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12901,6 +13386,7 @@ "id": "bettertls::nameconstraints::tc340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12928,6 +13414,7 @@ "id": "bettertls::nameconstraints::tc341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12955,6 +13442,7 @@ "id": "bettertls::nameconstraints::tc342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -12982,6 +13470,7 @@ "id": "bettertls::nameconstraints::tc343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13009,6 +13498,7 @@ "id": "bettertls::nameconstraints::tc344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13036,6 +13526,7 @@ "id": "bettertls::nameconstraints::tc345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13063,6 +13554,7 @@ "id": "bettertls::nameconstraints::tc346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13090,6 +13582,7 @@ "id": "bettertls::nameconstraints::tc347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13117,6 +13610,7 @@ "id": "bettertls::nameconstraints::tc348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13144,6 +13638,7 @@ "id": "bettertls::nameconstraints::tc349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13171,6 +13666,7 @@ "id": "bettertls::nameconstraints::tc350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13198,6 +13694,7 @@ "id": "bettertls::nameconstraints::tc351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13225,6 +13722,7 @@ "id": "bettertls::nameconstraints::tc352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13252,6 +13750,7 @@ "id": "bettertls::nameconstraints::tc353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13279,6 +13778,7 @@ "id": "bettertls::nameconstraints::tc354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13306,6 +13806,7 @@ "id": "bettertls::nameconstraints::tc355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13333,6 +13834,7 @@ "id": "bettertls::nameconstraints::tc356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13360,6 +13862,7 @@ "id": "bettertls::nameconstraints::tc357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13387,6 +13890,7 @@ "id": "bettertls::nameconstraints::tc358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13414,6 +13918,7 @@ "id": "bettertls::nameconstraints::tc359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13441,6 +13946,7 @@ "id": "bettertls::nameconstraints::tc360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13468,6 +13974,7 @@ "id": "bettertls::nameconstraints::tc361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13495,6 +14002,7 @@ "id": "bettertls::nameconstraints::tc362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13522,6 +14030,7 @@ "id": "bettertls::nameconstraints::tc363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13549,6 +14058,7 @@ "id": "bettertls::nameconstraints::tc364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13576,6 +14086,7 @@ "id": "bettertls::nameconstraints::tc365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13603,6 +14114,7 @@ "id": "bettertls::nameconstraints::tc366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13630,6 +14142,7 @@ "id": "bettertls::nameconstraints::tc367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13657,6 +14170,7 @@ "id": "bettertls::nameconstraints::tc368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13684,6 +14198,7 @@ "id": "bettertls::nameconstraints::tc369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13711,6 +14226,7 @@ "id": "bettertls::nameconstraints::tc370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13738,6 +14254,7 @@ "id": "bettertls::nameconstraints::tc371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13765,6 +14282,7 @@ "id": "bettertls::nameconstraints::tc372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13792,6 +14310,7 @@ "id": "bettertls::nameconstraints::tc373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13819,6 +14338,7 @@ "id": "bettertls::nameconstraints::tc374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13846,6 +14366,7 @@ "id": "bettertls::nameconstraints::tc375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13873,6 +14394,7 @@ "id": "bettertls::nameconstraints::tc376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13900,6 +14422,7 @@ "id": "bettertls::nameconstraints::tc377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13927,6 +14450,7 @@ "id": "bettertls::nameconstraints::tc378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13954,6 +14478,7 @@ "id": "bettertls::nameconstraints::tc379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -13981,6 +14506,7 @@ "id": "bettertls::nameconstraints::tc380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14008,6 +14534,7 @@ "id": "bettertls::nameconstraints::tc381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14035,6 +14562,7 @@ "id": "bettertls::nameconstraints::tc382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14062,6 +14590,7 @@ "id": "bettertls::nameconstraints::tc383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14089,6 +14618,7 @@ "id": "bettertls::nameconstraints::tc384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14116,6 +14646,7 @@ "id": "bettertls::nameconstraints::tc385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14143,6 +14674,7 @@ "id": "bettertls::nameconstraints::tc386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14170,6 +14702,7 @@ "id": "bettertls::nameconstraints::tc387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14197,6 +14730,7 @@ "id": "bettertls::nameconstraints::tc388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14224,6 +14758,7 @@ "id": "bettertls::nameconstraints::tc389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14251,6 +14786,7 @@ "id": "bettertls::nameconstraints::tc390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14278,6 +14814,7 @@ "id": "bettertls::nameconstraints::tc391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14305,6 +14842,7 @@ "id": "bettertls::nameconstraints::tc392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14332,6 +14870,7 @@ "id": "bettertls::nameconstraints::tc393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14359,6 +14898,7 @@ "id": "bettertls::nameconstraints::tc394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14386,6 +14926,7 @@ "id": "bettertls::nameconstraints::tc395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14413,6 +14954,7 @@ "id": "bettertls::nameconstraints::tc396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14440,6 +14982,7 @@ "id": "bettertls::nameconstraints::tc397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14467,6 +15010,7 @@ "id": "bettertls::nameconstraints::tc398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14494,6 +15038,7 @@ "id": "bettertls::nameconstraints::tc399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14521,6 +15066,7 @@ "id": "bettertls::nameconstraints::tc400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14548,6 +15094,7 @@ "id": "bettertls::nameconstraints::tc401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14575,6 +15122,7 @@ "id": "bettertls::nameconstraints::tc402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14602,6 +15150,7 @@ "id": "bettertls::nameconstraints::tc403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14629,6 +15178,7 @@ "id": "bettertls::nameconstraints::tc404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14656,6 +15206,7 @@ "id": "bettertls::nameconstraints::tc405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14683,6 +15234,7 @@ "id": "bettertls::nameconstraints::tc406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14710,6 +15262,7 @@ "id": "bettertls::nameconstraints::tc407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14737,6 +15290,7 @@ "id": "bettertls::nameconstraints::tc408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14764,6 +15318,7 @@ "id": "bettertls::nameconstraints::tc409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14791,6 +15346,7 @@ "id": "bettertls::nameconstraints::tc410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14818,6 +15374,7 @@ "id": "bettertls::nameconstraints::tc411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14845,6 +15402,7 @@ "id": "bettertls::nameconstraints::tc412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14872,6 +15430,7 @@ "id": "bettertls::nameconstraints::tc413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14899,6 +15458,7 @@ "id": "bettertls::nameconstraints::tc414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14926,6 +15486,7 @@ "id": "bettertls::nameconstraints::tc415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14953,6 +15514,7 @@ "id": "bettertls::nameconstraints::tc416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -14980,6 +15542,7 @@ "id": "bettertls::nameconstraints::tc417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15007,6 +15570,7 @@ "id": "bettertls::nameconstraints::tc418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15034,6 +15598,7 @@ "id": "bettertls::nameconstraints::tc419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15061,6 +15626,7 @@ "id": "bettertls::nameconstraints::tc420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15088,6 +15654,7 @@ "id": "bettertls::nameconstraints::tc421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15115,6 +15682,7 @@ "id": "bettertls::nameconstraints::tc422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15142,6 +15710,7 @@ "id": "bettertls::nameconstraints::tc423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15169,6 +15738,7 @@ "id": "bettertls::nameconstraints::tc424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15196,6 +15766,7 @@ "id": "bettertls::nameconstraints::tc425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15223,6 +15794,7 @@ "id": "bettertls::nameconstraints::tc426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15250,6 +15822,7 @@ "id": "bettertls::nameconstraints::tc427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15277,6 +15850,7 @@ "id": "bettertls::nameconstraints::tc428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15304,6 +15878,7 @@ "id": "bettertls::nameconstraints::tc429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15331,6 +15906,7 @@ "id": "bettertls::nameconstraints::tc430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15358,6 +15934,7 @@ "id": "bettertls::nameconstraints::tc431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15385,6 +15962,7 @@ "id": "bettertls::nameconstraints::tc432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15412,6 +15990,7 @@ "id": "bettertls::nameconstraints::tc433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15439,6 +16018,7 @@ "id": "bettertls::nameconstraints::tc434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15466,6 +16046,7 @@ "id": "bettertls::nameconstraints::tc435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15493,6 +16074,7 @@ "id": "bettertls::nameconstraints::tc436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15520,6 +16102,7 @@ "id": "bettertls::nameconstraints::tc437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15547,6 +16130,7 @@ "id": "bettertls::nameconstraints::tc438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15574,6 +16158,7 @@ "id": "bettertls::nameconstraints::tc439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15601,6 +16186,7 @@ "id": "bettertls::nameconstraints::tc440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15628,6 +16214,7 @@ "id": "bettertls::nameconstraints::tc441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15655,6 +16242,7 @@ "id": "bettertls::nameconstraints::tc442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15682,6 +16270,7 @@ "id": "bettertls::nameconstraints::tc443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15709,6 +16298,7 @@ "id": "bettertls::nameconstraints::tc444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15736,6 +16326,7 @@ "id": "bettertls::nameconstraints::tc445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15763,6 +16354,7 @@ "id": "bettertls::nameconstraints::tc446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15790,6 +16382,7 @@ "id": "bettertls::nameconstraints::tc447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15817,6 +16410,7 @@ "id": "bettertls::nameconstraints::tc448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15844,6 +16438,7 @@ "id": "bettertls::nameconstraints::tc449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15871,6 +16466,7 @@ "id": "bettertls::nameconstraints::tc450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15898,6 +16494,7 @@ "id": "bettertls::nameconstraints::tc451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15925,6 +16522,7 @@ "id": "bettertls::nameconstraints::tc452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15952,6 +16550,7 @@ "id": "bettertls::nameconstraints::tc453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -15979,6 +16578,7 @@ "id": "bettertls::nameconstraints::tc454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16006,6 +16606,7 @@ "id": "bettertls::nameconstraints::tc455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16033,6 +16634,7 @@ "id": "bettertls::nameconstraints::tc456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16060,6 +16662,7 @@ "id": "bettertls::nameconstraints::tc457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16087,6 +16690,7 @@ "id": "bettertls::nameconstraints::tc458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16114,6 +16718,7 @@ "id": "bettertls::nameconstraints::tc459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16141,6 +16746,7 @@ "id": "bettertls::nameconstraints::tc460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16168,6 +16774,7 @@ "id": "bettertls::nameconstraints::tc461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16195,6 +16802,7 @@ "id": "bettertls::nameconstraints::tc462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16222,6 +16830,7 @@ "id": "bettertls::nameconstraints::tc463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16249,6 +16858,7 @@ "id": "bettertls::nameconstraints::tc464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16276,6 +16886,7 @@ "id": "bettertls::nameconstraints::tc465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16303,6 +16914,7 @@ "id": "bettertls::nameconstraints::tc466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16330,6 +16942,7 @@ "id": "bettertls::nameconstraints::tc467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16357,6 +16970,7 @@ "id": "bettertls::nameconstraints::tc468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16384,6 +16998,7 @@ "id": "bettertls::nameconstraints::tc469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16411,6 +17026,7 @@ "id": "bettertls::nameconstraints::tc470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16438,6 +17054,7 @@ "id": "bettertls::nameconstraints::tc471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16465,6 +17082,7 @@ "id": "bettertls::nameconstraints::tc472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16492,6 +17110,7 @@ "id": "bettertls::nameconstraints::tc473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16519,6 +17138,7 @@ "id": "bettertls::nameconstraints::tc474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16546,6 +17166,7 @@ "id": "bettertls::nameconstraints::tc475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16573,6 +17194,7 @@ "id": "bettertls::nameconstraints::tc476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16600,6 +17222,7 @@ "id": "bettertls::nameconstraints::tc477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16627,6 +17250,7 @@ "id": "bettertls::nameconstraints::tc478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16654,6 +17278,7 @@ "id": "bettertls::nameconstraints::tc479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16681,6 +17306,7 @@ "id": "bettertls::nameconstraints::tc480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16708,6 +17334,7 @@ "id": "bettertls::nameconstraints::tc481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16735,6 +17362,7 @@ "id": "bettertls::nameconstraints::tc482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16762,6 +17390,7 @@ "id": "bettertls::nameconstraints::tc483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16789,6 +17418,7 @@ "id": "bettertls::nameconstraints::tc484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16816,6 +17446,7 @@ "id": "bettertls::nameconstraints::tc485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16843,6 +17474,7 @@ "id": "bettertls::nameconstraints::tc486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16870,6 +17502,7 @@ "id": "bettertls::nameconstraints::tc487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16897,6 +17530,7 @@ "id": "bettertls::nameconstraints::tc488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16924,6 +17558,7 @@ "id": "bettertls::nameconstraints::tc489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16951,6 +17586,7 @@ "id": "bettertls::nameconstraints::tc490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -16978,6 +17614,7 @@ "id": "bettertls::nameconstraints::tc491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17005,6 +17642,7 @@ "id": "bettertls::nameconstraints::tc492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17032,6 +17670,7 @@ "id": "bettertls::nameconstraints::tc493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17059,6 +17698,7 @@ "id": "bettertls::nameconstraints::tc494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17086,6 +17726,7 @@ "id": "bettertls::nameconstraints::tc495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17113,6 +17754,7 @@ "id": "bettertls::nameconstraints::tc496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17140,6 +17782,7 @@ "id": "bettertls::nameconstraints::tc497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17167,6 +17810,7 @@ "id": "bettertls::nameconstraints::tc498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17194,6 +17838,7 @@ "id": "bettertls::nameconstraints::tc499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17221,6 +17866,7 @@ "id": "bettertls::nameconstraints::tc500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17248,6 +17894,7 @@ "id": "bettertls::nameconstraints::tc501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17275,6 +17922,7 @@ "id": "bettertls::nameconstraints::tc502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17302,6 +17950,7 @@ "id": "bettertls::nameconstraints::tc503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17329,6 +17978,7 @@ "id": "bettertls::nameconstraints::tc504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17356,6 +18006,7 @@ "id": "bettertls::nameconstraints::tc505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17383,6 +18034,7 @@ "id": "bettertls::nameconstraints::tc506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17410,6 +18062,7 @@ "id": "bettertls::nameconstraints::tc507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17437,6 +18090,7 @@ "id": "bettertls::nameconstraints::tc508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17464,6 +18118,7 @@ "id": "bettertls::nameconstraints::tc509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17491,6 +18146,7 @@ "id": "bettertls::nameconstraints::tc510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17518,6 +18174,7 @@ "id": "bettertls::nameconstraints::tc511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17545,6 +18202,7 @@ "id": "bettertls::nameconstraints::tc512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17572,6 +18230,7 @@ "id": "bettertls::nameconstraints::tc513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17599,6 +18258,7 @@ "id": "bettertls::nameconstraints::tc514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17626,6 +18286,7 @@ "id": "bettertls::nameconstraints::tc515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17653,6 +18314,7 @@ "id": "bettertls::nameconstraints::tc516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17680,6 +18342,7 @@ "id": "bettertls::nameconstraints::tc517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17707,6 +18370,7 @@ "id": "bettertls::nameconstraints::tc518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17734,6 +18398,7 @@ "id": "bettertls::nameconstraints::tc519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17761,6 +18426,7 @@ "id": "bettertls::nameconstraints::tc520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17788,6 +18454,7 @@ "id": "bettertls::nameconstraints::tc521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17815,6 +18482,7 @@ "id": "bettertls::nameconstraints::tc522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17842,6 +18510,7 @@ "id": "bettertls::nameconstraints::tc523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17869,6 +18538,7 @@ "id": "bettertls::nameconstraints::tc524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17896,6 +18566,7 @@ "id": "bettertls::nameconstraints::tc525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17923,6 +18594,7 @@ "id": "bettertls::nameconstraints::tc526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17950,6 +18622,7 @@ "id": "bettertls::nameconstraints::tc527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -17977,6 +18650,7 @@ "id": "bettertls::nameconstraints::tc528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18004,6 +18678,7 @@ "id": "bettertls::nameconstraints::tc529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18031,6 +18706,7 @@ "id": "bettertls::nameconstraints::tc530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18058,6 +18734,7 @@ "id": "bettertls::nameconstraints::tc531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18085,6 +18762,7 @@ "id": "bettertls::nameconstraints::tc532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18112,6 +18790,7 @@ "id": "bettertls::nameconstraints::tc533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18139,6 +18818,7 @@ "id": "bettertls::nameconstraints::tc534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18166,6 +18846,7 @@ "id": "bettertls::nameconstraints::tc535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18193,6 +18874,7 @@ "id": "bettertls::nameconstraints::tc536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18220,6 +18902,7 @@ "id": "bettertls::nameconstraints::tc537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18247,6 +18930,7 @@ "id": "bettertls::nameconstraints::tc538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18274,6 +18958,7 @@ "id": "bettertls::nameconstraints::tc539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18301,6 +18986,7 @@ "id": "bettertls::nameconstraints::tc540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18328,6 +19014,7 @@ "id": "bettertls::nameconstraints::tc541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18355,6 +19042,7 @@ "id": "bettertls::nameconstraints::tc542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18382,6 +19070,7 @@ "id": "bettertls::nameconstraints::tc543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18409,6 +19098,7 @@ "id": "bettertls::nameconstraints::tc544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18436,6 +19126,7 @@ "id": "bettertls::nameconstraints::tc545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18463,6 +19154,7 @@ "id": "bettertls::nameconstraints::tc546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18490,6 +19182,7 @@ "id": "bettertls::nameconstraints::tc547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18517,6 +19210,7 @@ "id": "bettertls::nameconstraints::tc548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18544,6 +19238,7 @@ "id": "bettertls::nameconstraints::tc549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18571,6 +19266,7 @@ "id": "bettertls::nameconstraints::tc550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18598,6 +19294,7 @@ "id": "bettertls::nameconstraints::tc551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18625,6 +19322,7 @@ "id": "bettertls::nameconstraints::tc552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18652,6 +19350,7 @@ "id": "bettertls::nameconstraints::tc553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18679,6 +19378,7 @@ "id": "bettertls::nameconstraints::tc554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18706,6 +19406,7 @@ "id": "bettertls::nameconstraints::tc555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18733,6 +19434,7 @@ "id": "bettertls::nameconstraints::tc556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18760,6 +19462,7 @@ "id": "bettertls::nameconstraints::tc557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18787,6 +19490,7 @@ "id": "bettertls::nameconstraints::tc558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18814,6 +19518,7 @@ "id": "bettertls::nameconstraints::tc559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18841,6 +19546,7 @@ "id": "bettertls::nameconstraints::tc560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18868,6 +19574,7 @@ "id": "bettertls::nameconstraints::tc561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18895,6 +19602,7 @@ "id": "bettertls::nameconstraints::tc562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18922,6 +19630,7 @@ "id": "bettertls::nameconstraints::tc563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18949,6 +19658,7 @@ "id": "bettertls::nameconstraints::tc564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -18976,6 +19686,7 @@ "id": "bettertls::nameconstraints::tc565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19003,6 +19714,7 @@ "id": "bettertls::nameconstraints::tc566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19030,6 +19742,7 @@ "id": "bettertls::nameconstraints::tc567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19057,6 +19770,7 @@ "id": "bettertls::nameconstraints::tc568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19084,6 +19798,7 @@ "id": "bettertls::nameconstraints::tc569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19111,6 +19826,7 @@ "id": "bettertls::nameconstraints::tc570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19138,6 +19854,7 @@ "id": "bettertls::nameconstraints::tc571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19165,6 +19882,7 @@ "id": "bettertls::nameconstraints::tc572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19192,6 +19910,7 @@ "id": "bettertls::nameconstraints::tc573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19219,6 +19938,7 @@ "id": "bettertls::nameconstraints::tc574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19246,6 +19966,7 @@ "id": "bettertls::nameconstraints::tc575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19273,6 +19994,7 @@ "id": "bettertls::nameconstraints::tc576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19300,6 +20022,7 @@ "id": "bettertls::nameconstraints::tc577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19327,6 +20050,7 @@ "id": "bettertls::nameconstraints::tc578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19354,6 +20078,7 @@ "id": "bettertls::nameconstraints::tc579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19381,6 +20106,7 @@ "id": "bettertls::nameconstraints::tc580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19408,6 +20134,7 @@ "id": "bettertls::nameconstraints::tc581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19435,6 +20162,7 @@ "id": "bettertls::nameconstraints::tc582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19462,6 +20190,7 @@ "id": "bettertls::nameconstraints::tc583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19489,6 +20218,7 @@ "id": "bettertls::nameconstraints::tc584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19516,6 +20246,7 @@ "id": "bettertls::nameconstraints::tc585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19543,6 +20274,7 @@ "id": "bettertls::nameconstraints::tc586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19570,6 +20302,7 @@ "id": "bettertls::nameconstraints::tc587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19597,6 +20330,7 @@ "id": "bettertls::nameconstraints::tc588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19624,6 +20358,7 @@ "id": "bettertls::nameconstraints::tc589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19651,6 +20386,7 @@ "id": "bettertls::nameconstraints::tc590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19678,6 +20414,7 @@ "id": "bettertls::nameconstraints::tc591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19705,6 +20442,7 @@ "id": "bettertls::nameconstraints::tc592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19732,6 +20470,7 @@ "id": "bettertls::nameconstraints::tc593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19759,6 +20498,7 @@ "id": "bettertls::nameconstraints::tc594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19786,6 +20526,7 @@ "id": "bettertls::nameconstraints::tc595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19813,6 +20554,7 @@ "id": "bettertls::nameconstraints::tc596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19840,6 +20582,7 @@ "id": "bettertls::nameconstraints::tc597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19867,6 +20610,7 @@ "id": "bettertls::nameconstraints::tc598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19894,6 +20638,7 @@ "id": "bettertls::nameconstraints::tc599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19921,6 +20666,7 @@ "id": "bettertls::nameconstraints::tc600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19948,6 +20694,7 @@ "id": "bettertls::nameconstraints::tc601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -19975,6 +20722,7 @@ "id": "bettertls::nameconstraints::tc602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20002,6 +20750,7 @@ "id": "bettertls::nameconstraints::tc603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20029,6 +20778,7 @@ "id": "bettertls::nameconstraints::tc604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20056,6 +20806,7 @@ "id": "bettertls::nameconstraints::tc605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20083,6 +20834,7 @@ "id": "bettertls::nameconstraints::tc606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20110,6 +20862,7 @@ "id": "bettertls::nameconstraints::tc607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20137,6 +20890,7 @@ "id": "bettertls::nameconstraints::tc608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20164,6 +20918,7 @@ "id": "bettertls::nameconstraints::tc609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20191,6 +20946,7 @@ "id": "bettertls::nameconstraints::tc610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20218,6 +20974,7 @@ "id": "bettertls::nameconstraints::tc611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20245,6 +21002,7 @@ "id": "bettertls::nameconstraints::tc612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20272,6 +21030,7 @@ "id": "bettertls::nameconstraints::tc613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20299,6 +21058,7 @@ "id": "bettertls::nameconstraints::tc614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20326,6 +21086,7 @@ "id": "bettertls::nameconstraints::tc615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20353,6 +21114,7 @@ "id": "bettertls::nameconstraints::tc616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20380,6 +21142,7 @@ "id": "bettertls::nameconstraints::tc617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20407,6 +21170,7 @@ "id": "bettertls::nameconstraints::tc618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20434,6 +21198,7 @@ "id": "bettertls::nameconstraints::tc619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20461,6 +21226,7 @@ "id": "bettertls::nameconstraints::tc620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20488,6 +21254,7 @@ "id": "bettertls::nameconstraints::tc621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20515,6 +21282,7 @@ "id": "bettertls::nameconstraints::tc622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20542,6 +21310,7 @@ "id": "bettertls::nameconstraints::tc623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20569,6 +21338,7 @@ "id": "bettertls::nameconstraints::tc624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20596,6 +21366,7 @@ "id": "bettertls::nameconstraints::tc625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20623,6 +21394,7 @@ "id": "bettertls::nameconstraints::tc626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20650,6 +21422,7 @@ "id": "bettertls::nameconstraints::tc627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20677,6 +21450,7 @@ "id": "bettertls::nameconstraints::tc628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20704,6 +21478,7 @@ "id": "bettertls::nameconstraints::tc629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20731,6 +21506,7 @@ "id": "bettertls::nameconstraints::tc630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20758,6 +21534,7 @@ "id": "bettertls::nameconstraints::tc631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20785,6 +21562,7 @@ "id": "bettertls::nameconstraints::tc632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20812,6 +21590,7 @@ "id": "bettertls::nameconstraints::tc633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20839,6 +21618,7 @@ "id": "bettertls::nameconstraints::tc634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20866,6 +21646,7 @@ "id": "bettertls::nameconstraints::tc635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20893,6 +21674,7 @@ "id": "bettertls::nameconstraints::tc636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20920,6 +21702,7 @@ "id": "bettertls::nameconstraints::tc637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20947,6 +21730,7 @@ "id": "bettertls::nameconstraints::tc638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -20974,6 +21758,7 @@ "id": "bettertls::nameconstraints::tc639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21001,6 +21786,7 @@ "id": "bettertls::nameconstraints::tc640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21028,6 +21814,7 @@ "id": "bettertls::nameconstraints::tc641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21055,6 +21842,7 @@ "id": "bettertls::nameconstraints::tc642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21082,6 +21870,7 @@ "id": "bettertls::nameconstraints::tc643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21109,6 +21898,7 @@ "id": "bettertls::nameconstraints::tc644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21136,6 +21926,7 @@ "id": "bettertls::nameconstraints::tc645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21163,6 +21954,7 @@ "id": "bettertls::nameconstraints::tc646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21190,6 +21982,7 @@ "id": "bettertls::nameconstraints::tc647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21217,6 +22010,7 @@ "id": "bettertls::nameconstraints::tc648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21244,6 +22038,7 @@ "id": "bettertls::nameconstraints::tc649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21271,6 +22066,7 @@ "id": "bettertls::nameconstraints::tc650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21298,6 +22094,7 @@ "id": "bettertls::nameconstraints::tc651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21325,6 +22122,7 @@ "id": "bettertls::nameconstraints::tc652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21352,6 +22150,7 @@ "id": "bettertls::nameconstraints::tc653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21379,6 +22178,7 @@ "id": "bettertls::nameconstraints::tc654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21406,6 +22206,7 @@ "id": "bettertls::nameconstraints::tc655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21433,6 +22234,7 @@ "id": "bettertls::nameconstraints::tc656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21460,6 +22262,7 @@ "id": "bettertls::nameconstraints::tc657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21487,6 +22290,7 @@ "id": "bettertls::nameconstraints::tc658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21514,6 +22318,7 @@ "id": "bettertls::nameconstraints::tc659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21541,6 +22346,7 @@ "id": "bettertls::nameconstraints::tc660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21568,6 +22374,7 @@ "id": "bettertls::nameconstraints::tc661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21595,6 +22402,7 @@ "id": "bettertls::nameconstraints::tc662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21622,6 +22430,7 @@ "id": "bettertls::nameconstraints::tc663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21649,6 +22458,7 @@ "id": "bettertls::nameconstraints::tc664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21676,6 +22486,7 @@ "id": "bettertls::nameconstraints::tc665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21703,6 +22514,7 @@ "id": "bettertls::nameconstraints::tc666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21730,6 +22542,7 @@ "id": "bettertls::nameconstraints::tc667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21757,6 +22570,7 @@ "id": "bettertls::nameconstraints::tc668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21784,6 +22598,7 @@ "id": "bettertls::nameconstraints::tc669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21811,6 +22626,7 @@ "id": "bettertls::nameconstraints::tc670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21838,6 +22654,7 @@ "id": "bettertls::nameconstraints::tc671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21865,6 +22682,7 @@ "id": "bettertls::nameconstraints::tc672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21892,6 +22710,7 @@ "id": "bettertls::nameconstraints::tc673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21919,6 +22738,7 @@ "id": "bettertls::nameconstraints::tc674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21946,6 +22766,7 @@ "id": "bettertls::nameconstraints::tc675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -21973,6 +22794,7 @@ "id": "bettertls::nameconstraints::tc676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22000,6 +22822,7 @@ "id": "bettertls::nameconstraints::tc677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22027,6 +22850,7 @@ "id": "bettertls::nameconstraints::tc678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22054,6 +22878,7 @@ "id": "bettertls::nameconstraints::tc679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22081,6 +22906,7 @@ "id": "bettertls::nameconstraints::tc680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22108,6 +22934,7 @@ "id": "bettertls::nameconstraints::tc681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22135,6 +22962,7 @@ "id": "bettertls::nameconstraints::tc682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22162,6 +22990,7 @@ "id": "bettertls::nameconstraints::tc683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22189,6 +23018,7 @@ "id": "bettertls::nameconstraints::tc684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22216,6 +23046,7 @@ "id": "bettertls::nameconstraints::tc685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22243,6 +23074,7 @@ "id": "bettertls::nameconstraints::tc686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22270,6 +23102,7 @@ "id": "bettertls::nameconstraints::tc687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22297,6 +23130,7 @@ "id": "bettertls::nameconstraints::tc688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22324,6 +23158,7 @@ "id": "bettertls::nameconstraints::tc689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22351,6 +23186,7 @@ "id": "bettertls::nameconstraints::tc690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22378,6 +23214,7 @@ "id": "bettertls::nameconstraints::tc691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22405,6 +23242,7 @@ "id": "bettertls::nameconstraints::tc692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22432,6 +23270,7 @@ "id": "bettertls::nameconstraints::tc693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22459,6 +23298,7 @@ "id": "bettertls::nameconstraints::tc694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22486,6 +23326,7 @@ "id": "bettertls::nameconstraints::tc695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22513,6 +23354,7 @@ "id": "bettertls::nameconstraints::tc696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22540,6 +23382,7 @@ "id": "bettertls::nameconstraints::tc697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22567,6 +23410,7 @@ "id": "bettertls::nameconstraints::tc698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22594,6 +23438,7 @@ "id": "bettertls::nameconstraints::tc699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22621,6 +23466,7 @@ "id": "bettertls::nameconstraints::tc700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22648,6 +23494,7 @@ "id": "bettertls::nameconstraints::tc701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22675,6 +23522,7 @@ "id": "bettertls::nameconstraints::tc702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22702,6 +23550,7 @@ "id": "bettertls::nameconstraints::tc703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22729,6 +23578,7 @@ "id": "bettertls::nameconstraints::tc704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22756,6 +23606,7 @@ "id": "bettertls::nameconstraints::tc705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22783,6 +23634,7 @@ "id": "bettertls::nameconstraints::tc706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22810,6 +23662,7 @@ "id": "bettertls::nameconstraints::tc707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22837,6 +23690,7 @@ "id": "bettertls::nameconstraints::tc708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22864,6 +23718,7 @@ "id": "bettertls::nameconstraints::tc709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22891,6 +23746,7 @@ "id": "bettertls::nameconstraints::tc710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22918,6 +23774,7 @@ "id": "bettertls::nameconstraints::tc711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22945,6 +23802,7 @@ "id": "bettertls::nameconstraints::tc712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22972,6 +23830,7 @@ "id": "bettertls::nameconstraints::tc713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -22999,6 +23858,7 @@ "id": "bettertls::nameconstraints::tc714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23026,6 +23886,7 @@ "id": "bettertls::nameconstraints::tc715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23053,6 +23914,7 @@ "id": "bettertls::nameconstraints::tc716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23080,6 +23942,7 @@ "id": "bettertls::nameconstraints::tc717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23107,6 +23970,7 @@ "id": "bettertls::nameconstraints::tc718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23134,6 +23998,7 @@ "id": "bettertls::nameconstraints::tc719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23161,6 +24026,7 @@ "id": "bettertls::nameconstraints::tc720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23188,6 +24054,7 @@ "id": "bettertls::nameconstraints::tc721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23215,6 +24082,7 @@ "id": "bettertls::nameconstraints::tc722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23242,6 +24110,7 @@ "id": "bettertls::nameconstraints::tc723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23269,6 +24138,7 @@ "id": "bettertls::nameconstraints::tc724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23296,6 +24166,7 @@ "id": "bettertls::nameconstraints::tc725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23323,6 +24194,7 @@ "id": "bettertls::nameconstraints::tc726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23350,6 +24222,7 @@ "id": "bettertls::nameconstraints::tc727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23377,6 +24250,7 @@ "id": "bettertls::nameconstraints::tc728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23404,6 +24278,7 @@ "id": "bettertls::nameconstraints::tc729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23431,6 +24306,7 @@ "id": "bettertls::nameconstraints::tc730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23458,6 +24334,7 @@ "id": "bettertls::nameconstraints::tc731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23485,6 +24362,7 @@ "id": "bettertls::nameconstraints::tc732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23512,6 +24390,7 @@ "id": "bettertls::nameconstraints::tc733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23539,6 +24418,7 @@ "id": "bettertls::nameconstraints::tc734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23566,6 +24446,7 @@ "id": "bettertls::nameconstraints::tc735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23593,6 +24474,7 @@ "id": "bettertls::nameconstraints::tc736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23620,6 +24502,7 @@ "id": "bettertls::nameconstraints::tc737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23647,6 +24530,7 @@ "id": "bettertls::nameconstraints::tc738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23674,6 +24558,7 @@ "id": "bettertls::nameconstraints::tc739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23701,6 +24586,7 @@ "id": "bettertls::nameconstraints::tc740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23728,6 +24614,7 @@ "id": "bettertls::nameconstraints::tc741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23755,6 +24642,7 @@ "id": "bettertls::nameconstraints::tc742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23782,6 +24670,7 @@ "id": "bettertls::nameconstraints::tc743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23809,6 +24698,7 @@ "id": "bettertls::nameconstraints::tc744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23836,6 +24726,7 @@ "id": "bettertls::nameconstraints::tc745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23863,6 +24754,7 @@ "id": "bettertls::nameconstraints::tc746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23890,6 +24782,7 @@ "id": "bettertls::nameconstraints::tc747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23917,6 +24810,7 @@ "id": "bettertls::nameconstraints::tc748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23944,6 +24838,7 @@ "id": "bettertls::nameconstraints::tc749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23971,6 +24866,7 @@ "id": "bettertls::nameconstraints::tc750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -23998,6 +24894,7 @@ "id": "bettertls::nameconstraints::tc751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24025,6 +24922,7 @@ "id": "bettertls::nameconstraints::tc752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24052,6 +24950,7 @@ "id": "bettertls::nameconstraints::tc753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24079,6 +24978,7 @@ "id": "bettertls::nameconstraints::tc754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24106,6 +25006,7 @@ "id": "bettertls::nameconstraints::tc755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24133,6 +25034,7 @@ "id": "bettertls::nameconstraints::tc756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24160,6 +25062,7 @@ "id": "bettertls::nameconstraints::tc757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24187,6 +25090,7 @@ "id": "bettertls::nameconstraints::tc758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24214,6 +25118,7 @@ "id": "bettertls::nameconstraints::tc759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24241,6 +25146,7 @@ "id": "bettertls::nameconstraints::tc760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24268,6 +25174,7 @@ "id": "bettertls::nameconstraints::tc761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24295,6 +25202,7 @@ "id": "bettertls::nameconstraints::tc762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24322,6 +25230,7 @@ "id": "bettertls::nameconstraints::tc763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24349,6 +25258,7 @@ "id": "bettertls::nameconstraints::tc764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24376,6 +25286,7 @@ "id": "bettertls::nameconstraints::tc765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24403,6 +25314,7 @@ "id": "bettertls::nameconstraints::tc766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24430,6 +25342,7 @@ "id": "bettertls::nameconstraints::tc767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24457,6 +25370,7 @@ "id": "bettertls::nameconstraints::tc768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24484,6 +25398,7 @@ "id": "bettertls::nameconstraints::tc769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24511,6 +25426,7 @@ "id": "bettertls::nameconstraints::tc770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24538,6 +25454,7 @@ "id": "bettertls::nameconstraints::tc771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24565,6 +25482,7 @@ "id": "bettertls::nameconstraints::tc772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24592,6 +25510,7 @@ "id": "bettertls::nameconstraints::tc773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24619,6 +25538,7 @@ "id": "bettertls::nameconstraints::tc774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24646,6 +25566,7 @@ "id": "bettertls::nameconstraints::tc775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24673,6 +25594,7 @@ "id": "bettertls::nameconstraints::tc776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24700,6 +25622,7 @@ "id": "bettertls::nameconstraints::tc777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24727,6 +25650,7 @@ "id": "bettertls::nameconstraints::tc778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24754,6 +25678,7 @@ "id": "bettertls::nameconstraints::tc779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24781,6 +25706,7 @@ "id": "bettertls::nameconstraints::tc780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24808,6 +25734,7 @@ "id": "bettertls::nameconstraints::tc781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24835,6 +25762,7 @@ "id": "bettertls::nameconstraints::tc782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24862,6 +25790,7 @@ "id": "bettertls::nameconstraints::tc783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24889,6 +25818,7 @@ "id": "bettertls::nameconstraints::tc784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24916,6 +25846,7 @@ "id": "bettertls::nameconstraints::tc785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24943,6 +25874,7 @@ "id": "bettertls::nameconstraints::tc786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24970,6 +25902,7 @@ "id": "bettertls::nameconstraints::tc787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -24997,6 +25930,7 @@ "id": "bettertls::nameconstraints::tc788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25024,6 +25958,7 @@ "id": "bettertls::nameconstraints::tc789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25051,6 +25986,7 @@ "id": "bettertls::nameconstraints::tc790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25078,6 +26014,7 @@ "id": "bettertls::nameconstraints::tc791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25105,6 +26042,7 @@ "id": "bettertls::nameconstraints::tc792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25132,6 +26070,7 @@ "id": "bettertls::nameconstraints::tc793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25159,6 +26098,7 @@ "id": "bettertls::nameconstraints::tc794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25186,6 +26126,7 @@ "id": "bettertls::nameconstraints::tc795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25213,6 +26154,7 @@ "id": "bettertls::nameconstraints::tc796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25240,6 +26182,7 @@ "id": "bettertls::nameconstraints::tc797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25267,6 +26210,7 @@ "id": "bettertls::nameconstraints::tc798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25294,6 +26238,7 @@ "id": "bettertls::nameconstraints::tc799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25321,6 +26266,7 @@ "id": "bettertls::nameconstraints::tc800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25348,6 +26294,7 @@ "id": "bettertls::nameconstraints::tc801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25375,6 +26322,7 @@ "id": "bettertls::nameconstraints::tc802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25402,6 +26350,7 @@ "id": "bettertls::nameconstraints::tc803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25429,6 +26378,7 @@ "id": "bettertls::nameconstraints::tc804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25456,6 +26406,7 @@ "id": "bettertls::nameconstraints::tc805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25483,6 +26434,7 @@ "id": "bettertls::nameconstraints::tc806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25510,6 +26462,7 @@ "id": "bettertls::nameconstraints::tc807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25537,6 +26490,7 @@ "id": "bettertls::nameconstraints::tc808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25564,6 +26518,7 @@ "id": "bettertls::nameconstraints::tc809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25591,6 +26546,7 @@ "id": "bettertls::nameconstraints::tc810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25618,6 +26574,7 @@ "id": "bettertls::nameconstraints::tc811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25645,6 +26602,7 @@ "id": "bettertls::nameconstraints::tc812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25672,6 +26630,7 @@ "id": "bettertls::nameconstraints::tc813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25699,6 +26658,7 @@ "id": "bettertls::nameconstraints::tc814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25726,6 +26686,7 @@ "id": "bettertls::nameconstraints::tc815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25753,6 +26714,7 @@ "id": "bettertls::nameconstraints::tc816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25780,6 +26742,7 @@ "id": "bettertls::nameconstraints::tc817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25807,6 +26770,7 @@ "id": "bettertls::nameconstraints::tc818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25834,6 +26798,7 @@ "id": "bettertls::nameconstraints::tc819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25861,6 +26826,7 @@ "id": "bettertls::nameconstraints::tc820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25888,6 +26854,7 @@ "id": "bettertls::nameconstraints::tc821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25915,6 +26882,7 @@ "id": "bettertls::nameconstraints::tc822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25942,6 +26910,7 @@ "id": "bettertls::nameconstraints::tc823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25969,6 +26938,7 @@ "id": "bettertls::nameconstraints::tc824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -25996,6 +26966,7 @@ "id": "bettertls::nameconstraints::tc825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26023,6 +26994,7 @@ "id": "bettertls::nameconstraints::tc826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26050,6 +27022,7 @@ "id": "bettertls::nameconstraints::tc827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26077,6 +27050,7 @@ "id": "bettertls::nameconstraints::tc828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26104,6 +27078,7 @@ "id": "bettertls::nameconstraints::tc829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26131,6 +27106,7 @@ "id": "bettertls::nameconstraints::tc830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26158,6 +27134,7 @@ "id": "bettertls::nameconstraints::tc831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26185,6 +27162,7 @@ "id": "bettertls::nameconstraints::tc832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26212,6 +27190,7 @@ "id": "bettertls::nameconstraints::tc833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26239,6 +27218,7 @@ "id": "bettertls::nameconstraints::tc834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26266,6 +27246,7 @@ "id": "bettertls::nameconstraints::tc835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26293,6 +27274,7 @@ "id": "bettertls::nameconstraints::tc836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26320,6 +27302,7 @@ "id": "bettertls::nameconstraints::tc837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26347,6 +27330,7 @@ "id": "bettertls::nameconstraints::tc838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26374,6 +27358,7 @@ "id": "bettertls::nameconstraints::tc839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26401,6 +27386,7 @@ "id": "bettertls::nameconstraints::tc840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26428,6 +27414,7 @@ "id": "bettertls::nameconstraints::tc841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26455,6 +27442,7 @@ "id": "bettertls::nameconstraints::tc842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26482,6 +27470,7 @@ "id": "bettertls::nameconstraints::tc843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26509,6 +27498,7 @@ "id": "bettertls::nameconstraints::tc844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26536,6 +27526,7 @@ "id": "bettertls::nameconstraints::tc845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26563,6 +27554,7 @@ "id": "bettertls::nameconstraints::tc846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26590,6 +27582,7 @@ "id": "bettertls::nameconstraints::tc847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26617,6 +27610,7 @@ "id": "bettertls::nameconstraints::tc848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26644,6 +27638,7 @@ "id": "bettertls::nameconstraints::tc849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26671,6 +27666,7 @@ "id": "bettertls::nameconstraints::tc850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26698,6 +27694,7 @@ "id": "bettertls::nameconstraints::tc851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26725,6 +27722,7 @@ "id": "bettertls::nameconstraints::tc852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26752,6 +27750,7 @@ "id": "bettertls::nameconstraints::tc853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26779,6 +27778,7 @@ "id": "bettertls::nameconstraints::tc854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26806,6 +27806,7 @@ "id": "bettertls::nameconstraints::tc855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26833,6 +27834,7 @@ "id": "bettertls::nameconstraints::tc856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26860,6 +27862,7 @@ "id": "bettertls::nameconstraints::tc857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26887,6 +27890,7 @@ "id": "bettertls::nameconstraints::tc858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26914,6 +27918,7 @@ "id": "bettertls::nameconstraints::tc859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26941,6 +27946,7 @@ "id": "bettertls::nameconstraints::tc860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26968,6 +27974,7 @@ "id": "bettertls::nameconstraints::tc861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -26995,6 +28002,7 @@ "id": "bettertls::nameconstraints::tc862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27022,6 +28030,7 @@ "id": "bettertls::nameconstraints::tc863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27049,6 +28058,7 @@ "id": "bettertls::nameconstraints::tc864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27076,6 +28086,7 @@ "id": "bettertls::nameconstraints::tc865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27103,6 +28114,7 @@ "id": "bettertls::nameconstraints::tc866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27130,6 +28142,7 @@ "id": "bettertls::nameconstraints::tc867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27157,6 +28170,7 @@ "id": "bettertls::nameconstraints::tc868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27184,6 +28198,7 @@ "id": "bettertls::nameconstraints::tc869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27211,6 +28226,7 @@ "id": "bettertls::nameconstraints::tc870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27238,6 +28254,7 @@ "id": "bettertls::nameconstraints::tc871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27265,6 +28282,7 @@ "id": "bettertls::nameconstraints::tc872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27292,6 +28310,7 @@ "id": "bettertls::nameconstraints::tc873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27319,6 +28338,7 @@ "id": "bettertls::nameconstraints::tc874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27346,6 +28366,7 @@ "id": "bettertls::nameconstraints::tc875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27373,6 +28394,7 @@ "id": "bettertls::nameconstraints::tc876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27400,6 +28422,7 @@ "id": "bettertls::nameconstraints::tc877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27427,6 +28450,7 @@ "id": "bettertls::nameconstraints::tc878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27454,6 +28478,7 @@ "id": "bettertls::nameconstraints::tc879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27481,6 +28506,7 @@ "id": "bettertls::nameconstraints::tc880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27508,6 +28534,7 @@ "id": "bettertls::nameconstraints::tc881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27535,6 +28562,7 @@ "id": "bettertls::nameconstraints::tc882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27562,6 +28590,7 @@ "id": "bettertls::nameconstraints::tc883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27589,6 +28618,7 @@ "id": "bettertls::nameconstraints::tc884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27616,6 +28646,7 @@ "id": "bettertls::nameconstraints::tc885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27643,6 +28674,7 @@ "id": "bettertls::nameconstraints::tc886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27670,6 +28702,7 @@ "id": "bettertls::nameconstraints::tc887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27697,6 +28730,7 @@ "id": "bettertls::nameconstraints::tc888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27724,6 +28758,7 @@ "id": "bettertls::nameconstraints::tc889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27751,6 +28786,7 @@ "id": "bettertls::nameconstraints::tc890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27778,6 +28814,7 @@ "id": "bettertls::nameconstraints::tc891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27805,6 +28842,7 @@ "id": "bettertls::nameconstraints::tc892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27832,6 +28870,7 @@ "id": "bettertls::nameconstraints::tc893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27859,6 +28898,7 @@ "id": "bettertls::nameconstraints::tc894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27886,6 +28926,7 @@ "id": "bettertls::nameconstraints::tc895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27913,6 +28954,7 @@ "id": "bettertls::nameconstraints::tc896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27940,6 +28982,7 @@ "id": "bettertls::nameconstraints::tc897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27967,6 +29010,7 @@ "id": "bettertls::nameconstraints::tc898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -27994,6 +29038,7 @@ "id": "bettertls::nameconstraints::tc899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28021,6 +29066,7 @@ "id": "bettertls::nameconstraints::tc900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28048,6 +29094,7 @@ "id": "bettertls::nameconstraints::tc901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28075,6 +29122,7 @@ "id": "bettertls::nameconstraints::tc902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28102,6 +29150,7 @@ "id": "bettertls::nameconstraints::tc903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28129,6 +29178,7 @@ "id": "bettertls::nameconstraints::tc904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28156,6 +29206,7 @@ "id": "bettertls::nameconstraints::tc905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28183,6 +29234,7 @@ "id": "bettertls::nameconstraints::tc906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28210,6 +29262,7 @@ "id": "bettertls::nameconstraints::tc907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28237,6 +29290,7 @@ "id": "bettertls::nameconstraints::tc908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28264,6 +29318,7 @@ "id": "bettertls::nameconstraints::tc909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28291,6 +29346,7 @@ "id": "bettertls::nameconstraints::tc910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28318,6 +29374,7 @@ "id": "bettertls::nameconstraints::tc911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28345,6 +29402,7 @@ "id": "bettertls::nameconstraints::tc912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28372,6 +29430,7 @@ "id": "bettertls::nameconstraints::tc913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28399,6 +29458,7 @@ "id": "bettertls::nameconstraints::tc914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28426,6 +29486,7 @@ "id": "bettertls::nameconstraints::tc915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28453,6 +29514,7 @@ "id": "bettertls::nameconstraints::tc916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28480,6 +29542,7 @@ "id": "bettertls::nameconstraints::tc917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28507,6 +29570,7 @@ "id": "bettertls::nameconstraints::tc918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28534,6 +29598,7 @@ "id": "bettertls::nameconstraints::tc919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28561,6 +29626,7 @@ "id": "bettertls::nameconstraints::tc920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28588,6 +29654,7 @@ "id": "bettertls::nameconstraints::tc921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28615,6 +29682,7 @@ "id": "bettertls::nameconstraints::tc922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28642,6 +29710,7 @@ "id": "bettertls::nameconstraints::tc923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28669,6 +29738,7 @@ "id": "bettertls::nameconstraints::tc924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28696,6 +29766,7 @@ "id": "bettertls::nameconstraints::tc925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28723,6 +29794,7 @@ "id": "bettertls::nameconstraints::tc926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28750,6 +29822,7 @@ "id": "bettertls::nameconstraints::tc927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28777,6 +29850,7 @@ "id": "bettertls::nameconstraints::tc928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28804,6 +29878,7 @@ "id": "bettertls::nameconstraints::tc929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28831,6 +29906,7 @@ "id": "bettertls::nameconstraints::tc930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28858,6 +29934,7 @@ "id": "bettertls::nameconstraints::tc931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28885,6 +29962,7 @@ "id": "bettertls::nameconstraints::tc932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28912,6 +29990,7 @@ "id": "bettertls::nameconstraints::tc933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28939,6 +30018,7 @@ "id": "bettertls::nameconstraints::tc934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28966,6 +30046,7 @@ "id": "bettertls::nameconstraints::tc935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -28993,6 +30074,7 @@ "id": "bettertls::nameconstraints::tc936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29020,6 +30102,7 @@ "id": "bettertls::nameconstraints::tc937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29047,6 +30130,7 @@ "id": "bettertls::nameconstraints::tc938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29074,6 +30158,7 @@ "id": "bettertls::nameconstraints::tc939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29101,6 +30186,7 @@ "id": "bettertls::nameconstraints::tc940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29128,6 +30214,7 @@ "id": "bettertls::nameconstraints::tc941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29155,6 +30242,7 @@ "id": "bettertls::nameconstraints::tc942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29182,6 +30270,7 @@ "id": "bettertls::nameconstraints::tc943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29209,6 +30298,7 @@ "id": "bettertls::nameconstraints::tc944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29236,6 +30326,7 @@ "id": "bettertls::nameconstraints::tc945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29263,6 +30354,7 @@ "id": "bettertls::nameconstraints::tc946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29290,6 +30382,7 @@ "id": "bettertls::nameconstraints::tc947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29317,6 +30410,7 @@ "id": "bettertls::nameconstraints::tc948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29344,6 +30438,7 @@ "id": "bettertls::nameconstraints::tc949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29371,6 +30466,7 @@ "id": "bettertls::nameconstraints::tc950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29398,6 +30494,7 @@ "id": "bettertls::nameconstraints::tc951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29425,6 +30522,7 @@ "id": "bettertls::nameconstraints::tc952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29452,6 +30550,7 @@ "id": "bettertls::nameconstraints::tc953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29479,6 +30578,7 @@ "id": "bettertls::nameconstraints::tc954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29506,6 +30606,7 @@ "id": "bettertls::nameconstraints::tc955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29533,6 +30634,7 @@ "id": "bettertls::nameconstraints::tc956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29560,6 +30662,7 @@ "id": "bettertls::nameconstraints::tc957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29587,6 +30690,7 @@ "id": "bettertls::nameconstraints::tc958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29614,6 +30718,7 @@ "id": "bettertls::nameconstraints::tc959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29641,6 +30746,7 @@ "id": "bettertls::nameconstraints::tc960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29668,6 +30774,7 @@ "id": "bettertls::nameconstraints::tc961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29695,6 +30802,7 @@ "id": "bettertls::nameconstraints::tc962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29722,6 +30830,7 @@ "id": "bettertls::nameconstraints::tc963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29749,6 +30858,7 @@ "id": "bettertls::nameconstraints::tc964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29776,6 +30886,7 @@ "id": "bettertls::nameconstraints::tc965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29803,6 +30914,7 @@ "id": "bettertls::nameconstraints::tc966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29830,6 +30942,7 @@ "id": "bettertls::nameconstraints::tc967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29857,6 +30970,7 @@ "id": "bettertls::nameconstraints::tc968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29884,6 +30998,7 @@ "id": "bettertls::nameconstraints::tc969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29911,6 +31026,7 @@ "id": "bettertls::nameconstraints::tc970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29938,6 +31054,7 @@ "id": "bettertls::nameconstraints::tc971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29965,6 +31082,7 @@ "id": "bettertls::nameconstraints::tc972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -29992,6 +31110,7 @@ "id": "bettertls::nameconstraints::tc973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30019,6 +31138,7 @@ "id": "bettertls::nameconstraints::tc974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30046,6 +31166,7 @@ "id": "bettertls::nameconstraints::tc975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30073,6 +31194,7 @@ "id": "bettertls::nameconstraints::tc976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30100,6 +31222,7 @@ "id": "bettertls::nameconstraints::tc977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30127,6 +31250,7 @@ "id": "bettertls::nameconstraints::tc978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30154,6 +31278,7 @@ "id": "bettertls::nameconstraints::tc979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30181,6 +31306,7 @@ "id": "bettertls::nameconstraints::tc980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30208,6 +31334,7 @@ "id": "bettertls::nameconstraints::tc981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30235,6 +31362,7 @@ "id": "bettertls::nameconstraints::tc982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30262,6 +31390,7 @@ "id": "bettertls::nameconstraints::tc983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30289,6 +31418,7 @@ "id": "bettertls::nameconstraints::tc984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30316,6 +31446,7 @@ "id": "bettertls::nameconstraints::tc985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30343,6 +31474,7 @@ "id": "bettertls::nameconstraints::tc986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30370,6 +31502,7 @@ "id": "bettertls::nameconstraints::tc987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30397,6 +31530,7 @@ "id": "bettertls::nameconstraints::tc988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30424,6 +31558,7 @@ "id": "bettertls::nameconstraints::tc989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30451,6 +31586,7 @@ "id": "bettertls::nameconstraints::tc990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30478,6 +31614,7 @@ "id": "bettertls::nameconstraints::tc991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30505,6 +31642,7 @@ "id": "bettertls::nameconstraints::tc992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30532,6 +31670,7 @@ "id": "bettertls::nameconstraints::tc993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30559,6 +31698,7 @@ "id": "bettertls::nameconstraints::tc994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30586,6 +31726,7 @@ "id": "bettertls::nameconstraints::tc995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30613,6 +31754,7 @@ "id": "bettertls::nameconstraints::tc996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30640,6 +31782,7 @@ "id": "bettertls::nameconstraints::tc997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30667,6 +31810,7 @@ "id": "bettertls::nameconstraints::tc998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30694,6 +31838,7 @@ "id": "bettertls::nameconstraints::tc999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30721,6 +31866,7 @@ "id": "bettertls::nameconstraints::tc1000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30748,6 +31894,7 @@ "id": "bettertls::nameconstraints::tc1001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30775,6 +31922,7 @@ "id": "bettertls::nameconstraints::tc1002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30802,6 +31950,7 @@ "id": "bettertls::nameconstraints::tc1003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30829,6 +31978,7 @@ "id": "bettertls::nameconstraints::tc1004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30856,6 +32006,7 @@ "id": "bettertls::nameconstraints::tc1005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30883,6 +32034,7 @@ "id": "bettertls::nameconstraints::tc1006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30910,6 +32062,7 @@ "id": "bettertls::nameconstraints::tc1007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30937,6 +32090,7 @@ "id": "bettertls::nameconstraints::tc1008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30964,6 +32118,7 @@ "id": "bettertls::nameconstraints::tc1009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -30991,6 +32146,7 @@ "id": "bettertls::nameconstraints::tc1010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31018,6 +32174,7 @@ "id": "bettertls::nameconstraints::tc1011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31045,6 +32202,7 @@ "id": "bettertls::nameconstraints::tc1012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31072,6 +32230,7 @@ "id": "bettertls::nameconstraints::tc1013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31099,6 +32258,7 @@ "id": "bettertls::nameconstraints::tc1014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31126,6 +32286,7 @@ "id": "bettertls::nameconstraints::tc1015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31153,6 +32314,7 @@ "id": "bettertls::nameconstraints::tc1016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31180,6 +32342,7 @@ "id": "bettertls::nameconstraints::tc1017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31207,6 +32370,7 @@ "id": "bettertls::nameconstraints::tc1018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31234,6 +32398,7 @@ "id": "bettertls::nameconstraints::tc1019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31261,6 +32426,7 @@ "id": "bettertls::nameconstraints::tc1020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31288,6 +32454,7 @@ "id": "bettertls::nameconstraints::tc1021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31315,6 +32482,7 @@ "id": "bettertls::nameconstraints::tc1022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31342,6 +32510,7 @@ "id": "bettertls::nameconstraints::tc1023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31369,6 +32538,7 @@ "id": "bettertls::nameconstraints::tc1024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31396,6 +32566,7 @@ "id": "bettertls::nameconstraints::tc1025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31423,6 +32594,7 @@ "id": "bettertls::nameconstraints::tc1026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31450,6 +32622,7 @@ "id": "bettertls::nameconstraints::tc1027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31477,6 +32650,7 @@ "id": "bettertls::nameconstraints::tc1028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31504,6 +32678,7 @@ "id": "bettertls::nameconstraints::tc1029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31531,6 +32706,7 @@ "id": "bettertls::nameconstraints::tc1030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31558,6 +32734,7 @@ "id": "bettertls::nameconstraints::tc1031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31585,6 +32762,7 @@ "id": "bettertls::nameconstraints::tc1032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31612,6 +32790,7 @@ "id": "bettertls::nameconstraints::tc1033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31639,6 +32818,7 @@ "id": "bettertls::nameconstraints::tc1034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31666,6 +32846,7 @@ "id": "bettertls::nameconstraints::tc1035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31693,6 +32874,7 @@ "id": "bettertls::nameconstraints::tc1036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31720,6 +32902,7 @@ "id": "bettertls::nameconstraints::tc1037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31747,6 +32930,7 @@ "id": "bettertls::nameconstraints::tc1038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31774,6 +32958,7 @@ "id": "bettertls::nameconstraints::tc1039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31801,6 +32986,7 @@ "id": "bettertls::nameconstraints::tc1040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31828,6 +33014,7 @@ "id": "bettertls::nameconstraints::tc1041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31855,6 +33042,7 @@ "id": "bettertls::nameconstraints::tc1042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31882,6 +33070,7 @@ "id": "bettertls::nameconstraints::tc1043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31909,6 +33098,7 @@ "id": "bettertls::nameconstraints::tc1044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31936,6 +33126,7 @@ "id": "bettertls::nameconstraints::tc1045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31963,6 +33154,7 @@ "id": "bettertls::nameconstraints::tc1046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -31990,6 +33182,7 @@ "id": "bettertls::nameconstraints::tc1047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32017,6 +33210,7 @@ "id": "bettertls::nameconstraints::tc1048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32044,6 +33238,7 @@ "id": "bettertls::nameconstraints::tc1049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32071,6 +33266,7 @@ "id": "bettertls::nameconstraints::tc1050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32098,6 +33294,7 @@ "id": "bettertls::nameconstraints::tc1051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32125,6 +33322,7 @@ "id": "bettertls::nameconstraints::tc1052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32152,6 +33350,7 @@ "id": "bettertls::nameconstraints::tc1053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32179,6 +33378,7 @@ "id": "bettertls::nameconstraints::tc1054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32206,6 +33406,7 @@ "id": "bettertls::nameconstraints::tc1055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32233,6 +33434,7 @@ "id": "bettertls::nameconstraints::tc1056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32260,6 +33462,7 @@ "id": "bettertls::nameconstraints::tc1057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32287,6 +33490,7 @@ "id": "bettertls::nameconstraints::tc1058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32314,6 +33518,7 @@ "id": "bettertls::nameconstraints::tc1059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32341,6 +33546,7 @@ "id": "bettertls::nameconstraints::tc1060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32368,6 +33574,7 @@ "id": "bettertls::nameconstraints::tc1061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32395,6 +33602,7 @@ "id": "bettertls::nameconstraints::tc1062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32422,6 +33630,7 @@ "id": "bettertls::nameconstraints::tc1063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32449,6 +33658,7 @@ "id": "bettertls::nameconstraints::tc1064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32476,6 +33686,7 @@ "id": "bettertls::nameconstraints::tc1065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32503,6 +33714,7 @@ "id": "bettertls::nameconstraints::tc1066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32530,6 +33742,7 @@ "id": "bettertls::nameconstraints::tc1067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32557,6 +33770,7 @@ "id": "bettertls::nameconstraints::tc1068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32584,6 +33798,7 @@ "id": "bettertls::nameconstraints::tc1069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32611,6 +33826,7 @@ "id": "bettertls::nameconstraints::tc1070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32638,6 +33854,7 @@ "id": "bettertls::nameconstraints::tc1071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32665,6 +33882,7 @@ "id": "bettertls::nameconstraints::tc1072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32692,6 +33910,7 @@ "id": "bettertls::nameconstraints::tc1073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32719,6 +33938,7 @@ "id": "bettertls::nameconstraints::tc1074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32746,6 +33966,7 @@ "id": "bettertls::nameconstraints::tc1075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32773,6 +33994,7 @@ "id": "bettertls::nameconstraints::tc1076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32800,6 +34022,7 @@ "id": "bettertls::nameconstraints::tc1077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32827,6 +34050,7 @@ "id": "bettertls::nameconstraints::tc1078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32854,6 +34078,7 @@ "id": "bettertls::nameconstraints::tc1079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32881,6 +34106,7 @@ "id": "bettertls::nameconstraints::tc1080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32908,6 +34134,7 @@ "id": "bettertls::nameconstraints::tc1081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32935,6 +34162,7 @@ "id": "bettertls::nameconstraints::tc1082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32962,6 +34190,7 @@ "id": "bettertls::nameconstraints::tc1083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -32989,6 +34218,7 @@ "id": "bettertls::nameconstraints::tc1084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33016,6 +34246,7 @@ "id": "bettertls::nameconstraints::tc1085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33043,6 +34274,7 @@ "id": "bettertls::nameconstraints::tc1086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33070,6 +34302,7 @@ "id": "bettertls::nameconstraints::tc1087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33097,6 +34330,7 @@ "id": "bettertls::nameconstraints::tc1088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33124,6 +34358,7 @@ "id": "bettertls::nameconstraints::tc1089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33151,6 +34386,7 @@ "id": "bettertls::nameconstraints::tc1090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33178,6 +34414,7 @@ "id": "bettertls::nameconstraints::tc1091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33205,6 +34442,7 @@ "id": "bettertls::nameconstraints::tc1092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33232,6 +34470,7 @@ "id": "bettertls::nameconstraints::tc1093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33259,6 +34498,7 @@ "id": "bettertls::nameconstraints::tc1094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33286,6 +34526,7 @@ "id": "bettertls::nameconstraints::tc1095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33313,6 +34554,7 @@ "id": "bettertls::nameconstraints::tc1096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33340,6 +34582,7 @@ "id": "bettertls::nameconstraints::tc1097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33367,6 +34610,7 @@ "id": "bettertls::nameconstraints::tc1098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33394,6 +34638,7 @@ "id": "bettertls::nameconstraints::tc1099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33421,6 +34666,7 @@ "id": "bettertls::nameconstraints::tc1100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33448,6 +34694,7 @@ "id": "bettertls::nameconstraints::tc1101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33475,6 +34722,7 @@ "id": "bettertls::nameconstraints::tc1102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33502,6 +34750,7 @@ "id": "bettertls::nameconstraints::tc1103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33529,6 +34778,7 @@ "id": "bettertls::nameconstraints::tc1104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33556,6 +34806,7 @@ "id": "bettertls::nameconstraints::tc1105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33583,6 +34834,7 @@ "id": "bettertls::nameconstraints::tc1106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33610,6 +34862,7 @@ "id": "bettertls::nameconstraints::tc1107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33637,6 +34890,7 @@ "id": "bettertls::nameconstraints::tc1108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33664,6 +34918,7 @@ "id": "bettertls::nameconstraints::tc1109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33691,6 +34946,7 @@ "id": "bettertls::nameconstraints::tc1110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33718,6 +34974,7 @@ "id": "bettertls::nameconstraints::tc1111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33745,6 +35002,7 @@ "id": "bettertls::nameconstraints::tc1112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33772,6 +35030,7 @@ "id": "bettertls::nameconstraints::tc1113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33799,6 +35058,7 @@ "id": "bettertls::nameconstraints::tc1114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33826,6 +35086,7 @@ "id": "bettertls::nameconstraints::tc1115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33853,6 +35114,7 @@ "id": "bettertls::nameconstraints::tc1116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33880,6 +35142,7 @@ "id": "bettertls::nameconstraints::tc1117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33907,6 +35170,7 @@ "id": "bettertls::nameconstraints::tc1118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33934,6 +35198,7 @@ "id": "bettertls::nameconstraints::tc1119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33961,6 +35226,7 @@ "id": "bettertls::nameconstraints::tc1120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -33988,6 +35254,7 @@ "id": "bettertls::nameconstraints::tc1121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34015,6 +35282,7 @@ "id": "bettertls::nameconstraints::tc1122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34042,6 +35310,7 @@ "id": "bettertls::nameconstraints::tc1123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34069,6 +35338,7 @@ "id": "bettertls::nameconstraints::tc1124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34096,6 +35366,7 @@ "id": "bettertls::nameconstraints::tc1125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34123,6 +35394,7 @@ "id": "bettertls::nameconstraints::tc1126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34150,6 +35422,7 @@ "id": "bettertls::nameconstraints::tc1127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34177,6 +35450,7 @@ "id": "bettertls::nameconstraints::tc1128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34204,6 +35478,7 @@ "id": "bettertls::nameconstraints::tc1129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34231,6 +35506,7 @@ "id": "bettertls::nameconstraints::tc1130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34258,6 +35534,7 @@ "id": "bettertls::nameconstraints::tc1131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34285,6 +35562,7 @@ "id": "bettertls::nameconstraints::tc1132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34312,6 +35590,7 @@ "id": "bettertls::nameconstraints::tc1133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34339,6 +35618,7 @@ "id": "bettertls::nameconstraints::tc1134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34366,6 +35646,7 @@ "id": "bettertls::nameconstraints::tc1135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34393,6 +35674,7 @@ "id": "bettertls::nameconstraints::tc1136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34420,6 +35702,7 @@ "id": "bettertls::nameconstraints::tc1137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34447,6 +35730,7 @@ "id": "bettertls::nameconstraints::tc1138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34474,6 +35758,7 @@ "id": "bettertls::nameconstraints::tc1139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34501,6 +35786,7 @@ "id": "bettertls::nameconstraints::tc1140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34528,6 +35814,7 @@ "id": "bettertls::nameconstraints::tc1141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34555,6 +35842,7 @@ "id": "bettertls::nameconstraints::tc1142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34582,6 +35870,7 @@ "id": "bettertls::nameconstraints::tc1143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34609,6 +35898,7 @@ "id": "bettertls::nameconstraints::tc1144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34636,6 +35926,7 @@ "id": "bettertls::nameconstraints::tc1145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34663,6 +35954,7 @@ "id": "bettertls::nameconstraints::tc1146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34690,6 +35982,7 @@ "id": "bettertls::nameconstraints::tc1147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34717,6 +36010,7 @@ "id": "bettertls::nameconstraints::tc1148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34744,6 +36038,7 @@ "id": "bettertls::nameconstraints::tc1149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34771,6 +36066,7 @@ "id": "bettertls::nameconstraints::tc1150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34798,6 +36094,7 @@ "id": "bettertls::nameconstraints::tc1151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34825,6 +36122,7 @@ "id": "bettertls::nameconstraints::tc1152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34852,6 +36150,7 @@ "id": "bettertls::nameconstraints::tc1153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34879,6 +36178,7 @@ "id": "bettertls::nameconstraints::tc1154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34906,6 +36206,7 @@ "id": "bettertls::nameconstraints::tc1155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34933,6 +36234,7 @@ "id": "bettertls::nameconstraints::tc1156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34960,6 +36262,7 @@ "id": "bettertls::nameconstraints::tc1157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -34987,6 +36290,7 @@ "id": "bettertls::nameconstraints::tc1158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35014,6 +36318,7 @@ "id": "bettertls::nameconstraints::tc1159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35041,6 +36346,7 @@ "id": "bettertls::nameconstraints::tc1160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35068,6 +36374,7 @@ "id": "bettertls::nameconstraints::tc1161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35095,6 +36402,7 @@ "id": "bettertls::nameconstraints::tc1162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35122,6 +36430,7 @@ "id": "bettertls::nameconstraints::tc1163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35149,6 +36458,7 @@ "id": "bettertls::nameconstraints::tc1164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35176,6 +36486,7 @@ "id": "bettertls::nameconstraints::tc1165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35203,6 +36514,7 @@ "id": "bettertls::nameconstraints::tc1166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35230,6 +36542,7 @@ "id": "bettertls::nameconstraints::tc1167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35257,6 +36570,7 @@ "id": "bettertls::nameconstraints::tc1168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35284,6 +36598,7 @@ "id": "bettertls::nameconstraints::tc1169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35311,6 +36626,7 @@ "id": "bettertls::nameconstraints::tc1170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35338,6 +36654,7 @@ "id": "bettertls::nameconstraints::tc1171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35365,6 +36682,7 @@ "id": "bettertls::nameconstraints::tc1172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35392,6 +36710,7 @@ "id": "bettertls::nameconstraints::tc1173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35419,6 +36738,7 @@ "id": "bettertls::nameconstraints::tc1174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35446,6 +36766,7 @@ "id": "bettertls::nameconstraints::tc1175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35473,6 +36794,7 @@ "id": "bettertls::nameconstraints::tc1176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35500,6 +36822,7 @@ "id": "bettertls::nameconstraints::tc1177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35527,6 +36850,7 @@ "id": "bettertls::nameconstraints::tc1178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35554,6 +36878,7 @@ "id": "bettertls::nameconstraints::tc1179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35581,6 +36906,7 @@ "id": "bettertls::nameconstraints::tc1180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35608,6 +36934,7 @@ "id": "bettertls::nameconstraints::tc1181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35635,6 +36962,7 @@ "id": "bettertls::nameconstraints::tc1182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35662,6 +36990,7 @@ "id": "bettertls::nameconstraints::tc1183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35689,6 +37018,7 @@ "id": "bettertls::nameconstraints::tc1184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35716,6 +37046,7 @@ "id": "bettertls::nameconstraints::tc1185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35743,6 +37074,7 @@ "id": "bettertls::nameconstraints::tc1186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35770,6 +37102,7 @@ "id": "bettertls::nameconstraints::tc1187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35797,6 +37130,7 @@ "id": "bettertls::nameconstraints::tc1188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35824,6 +37158,7 @@ "id": "bettertls::nameconstraints::tc1189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35851,6 +37186,7 @@ "id": "bettertls::nameconstraints::tc1190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35878,6 +37214,7 @@ "id": "bettertls::nameconstraints::tc1191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35905,6 +37242,7 @@ "id": "bettertls::nameconstraints::tc1192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35932,6 +37270,7 @@ "id": "bettertls::nameconstraints::tc1193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35959,6 +37298,7 @@ "id": "bettertls::nameconstraints::tc1194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -35986,6 +37326,7 @@ "id": "bettertls::nameconstraints::tc1195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36013,6 +37354,7 @@ "id": "bettertls::nameconstraints::tc1196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36040,6 +37382,7 @@ "id": "bettertls::nameconstraints::tc1197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36067,6 +37410,7 @@ "id": "bettertls::nameconstraints::tc1198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36094,6 +37438,7 @@ "id": "bettertls::nameconstraints::tc1199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36121,6 +37466,7 @@ "id": "bettertls::nameconstraints::tc1200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36148,6 +37494,7 @@ "id": "bettertls::nameconstraints::tc1201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36175,6 +37522,7 @@ "id": "bettertls::nameconstraints::tc1202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36202,6 +37550,7 @@ "id": "bettertls::nameconstraints::tc1203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36229,6 +37578,7 @@ "id": "bettertls::nameconstraints::tc1204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36256,6 +37606,7 @@ "id": "bettertls::nameconstraints::tc1205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36283,6 +37634,7 @@ "id": "bettertls::nameconstraints::tc1206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36310,6 +37662,7 @@ "id": "bettertls::nameconstraints::tc1207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36337,6 +37690,7 @@ "id": "bettertls::nameconstraints::tc1208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36364,6 +37718,7 @@ "id": "bettertls::nameconstraints::tc1209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36391,6 +37746,7 @@ "id": "bettertls::nameconstraints::tc1210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36418,6 +37774,7 @@ "id": "bettertls::nameconstraints::tc1211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36445,6 +37802,7 @@ "id": "bettertls::nameconstraints::tc1212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36472,6 +37830,7 @@ "id": "bettertls::nameconstraints::tc1213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36499,6 +37858,7 @@ "id": "bettertls::nameconstraints::tc1214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36526,6 +37886,7 @@ "id": "bettertls::nameconstraints::tc1215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36553,6 +37914,7 @@ "id": "bettertls::nameconstraints::tc1216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36580,6 +37942,7 @@ "id": "bettertls::nameconstraints::tc1217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36607,6 +37970,7 @@ "id": "bettertls::nameconstraints::tc1218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36634,6 +37998,7 @@ "id": "bettertls::nameconstraints::tc1219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36661,6 +38026,7 @@ "id": "bettertls::nameconstraints::tc1220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36688,6 +38054,7 @@ "id": "bettertls::nameconstraints::tc1221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36715,6 +38082,7 @@ "id": "bettertls::nameconstraints::tc1222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36742,6 +38110,7 @@ "id": "bettertls::nameconstraints::tc1223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36769,6 +38138,7 @@ "id": "bettertls::nameconstraints::tc1224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36796,6 +38166,7 @@ "id": "bettertls::nameconstraints::tc1225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36823,6 +38194,7 @@ "id": "bettertls::nameconstraints::tc1226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36850,6 +38222,7 @@ "id": "bettertls::nameconstraints::tc1227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36877,6 +38250,7 @@ "id": "bettertls::nameconstraints::tc1228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36904,6 +38278,7 @@ "id": "bettertls::nameconstraints::tc1229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36931,6 +38306,7 @@ "id": "bettertls::nameconstraints::tc1230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36958,6 +38334,7 @@ "id": "bettertls::nameconstraints::tc1231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -36985,6 +38362,7 @@ "id": "bettertls::nameconstraints::tc1232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37012,6 +38390,7 @@ "id": "bettertls::nameconstraints::tc1233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37039,6 +38418,7 @@ "id": "bettertls::nameconstraints::tc1234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37066,6 +38446,7 @@ "id": "bettertls::nameconstraints::tc1235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37093,6 +38474,7 @@ "id": "bettertls::nameconstraints::tc1236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37120,6 +38502,7 @@ "id": "bettertls::nameconstraints::tc1237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37147,6 +38530,7 @@ "id": "bettertls::nameconstraints::tc1238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37174,6 +38558,7 @@ "id": "bettertls::nameconstraints::tc1239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37201,6 +38586,7 @@ "id": "bettertls::nameconstraints::tc1240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37228,6 +38614,7 @@ "id": "bettertls::nameconstraints::tc1241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37255,6 +38642,7 @@ "id": "bettertls::nameconstraints::tc1242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37282,6 +38670,7 @@ "id": "bettertls::nameconstraints::tc1243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37309,6 +38698,7 @@ "id": "bettertls::nameconstraints::tc1244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37336,6 +38726,7 @@ "id": "bettertls::nameconstraints::tc1245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37363,6 +38754,7 @@ "id": "bettertls::nameconstraints::tc1246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37390,6 +38782,7 @@ "id": "bettertls::nameconstraints::tc1247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37417,6 +38810,7 @@ "id": "bettertls::nameconstraints::tc1248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37444,6 +38838,7 @@ "id": "bettertls::nameconstraints::tc1249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37471,6 +38866,7 @@ "id": "bettertls::nameconstraints::tc1250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37498,6 +38894,7 @@ "id": "bettertls::nameconstraints::tc1251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37525,6 +38922,7 @@ "id": "bettertls::nameconstraints::tc1252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37552,6 +38950,7 @@ "id": "bettertls::nameconstraints::tc1253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37579,6 +38978,7 @@ "id": "bettertls::nameconstraints::tc1254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37606,6 +39006,7 @@ "id": "bettertls::nameconstraints::tc1255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37633,6 +39034,7 @@ "id": "bettertls::nameconstraints::tc1256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37660,6 +39062,7 @@ "id": "bettertls::nameconstraints::tc1257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37687,6 +39090,7 @@ "id": "bettertls::nameconstraints::tc1258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37714,6 +39118,7 @@ "id": "bettertls::nameconstraints::tc1259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37741,6 +39146,7 @@ "id": "bettertls::nameconstraints::tc1260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37768,6 +39174,7 @@ "id": "bettertls::nameconstraints::tc1261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37795,6 +39202,7 @@ "id": "bettertls::nameconstraints::tc1262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37822,6 +39230,7 @@ "id": "bettertls::nameconstraints::tc1263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37849,6 +39258,7 @@ "id": "bettertls::nameconstraints::tc1264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37876,6 +39286,7 @@ "id": "bettertls::nameconstraints::tc1265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37903,6 +39314,7 @@ "id": "bettertls::nameconstraints::tc1266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37930,6 +39342,7 @@ "id": "bettertls::nameconstraints::tc1267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37957,6 +39370,7 @@ "id": "bettertls::nameconstraints::tc1268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -37984,6 +39398,7 @@ "id": "bettertls::nameconstraints::tc1269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38011,6 +39426,7 @@ "id": "bettertls::nameconstraints::tc1270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38038,6 +39454,7 @@ "id": "bettertls::nameconstraints::tc1271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38065,6 +39482,7 @@ "id": "bettertls::nameconstraints::tc1272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38092,6 +39510,7 @@ "id": "bettertls::nameconstraints::tc1273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38119,6 +39538,7 @@ "id": "bettertls::nameconstraints::tc1274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38146,6 +39566,7 @@ "id": "bettertls::nameconstraints::tc1275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38173,6 +39594,7 @@ "id": "bettertls::nameconstraints::tc1276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38200,6 +39622,7 @@ "id": "bettertls::nameconstraints::tc1277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38227,6 +39650,7 @@ "id": "bettertls::nameconstraints::tc1278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38254,6 +39678,7 @@ "id": "bettertls::nameconstraints::tc1279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38281,6 +39706,7 @@ "id": "bettertls::nameconstraints::tc1280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38308,6 +39734,7 @@ "id": "bettertls::nameconstraints::tc1281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38335,6 +39762,7 @@ "id": "bettertls::nameconstraints::tc1282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38362,6 +39790,7 @@ "id": "bettertls::nameconstraints::tc1283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38389,6 +39818,7 @@ "id": "bettertls::nameconstraints::tc1284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38416,6 +39846,7 @@ "id": "bettertls::nameconstraints::tc1285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38443,6 +39874,7 @@ "id": "bettertls::nameconstraints::tc1286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38470,6 +39902,7 @@ "id": "bettertls::nameconstraints::tc1287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38497,6 +39930,7 @@ "id": "bettertls::nameconstraints::tc1288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38524,6 +39958,7 @@ "id": "bettertls::nameconstraints::tc1289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38551,6 +39986,7 @@ "id": "bettertls::nameconstraints::tc1290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38578,6 +40014,7 @@ "id": "bettertls::nameconstraints::tc1291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38605,6 +40042,7 @@ "id": "bettertls::nameconstraints::tc1292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38632,6 +40070,7 @@ "id": "bettertls::nameconstraints::tc1293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38659,6 +40098,7 @@ "id": "bettertls::nameconstraints::tc1294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38686,6 +40126,7 @@ "id": "bettertls::nameconstraints::tc1295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38713,6 +40154,7 @@ "id": "bettertls::nameconstraints::tc1296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38740,6 +40182,7 @@ "id": "bettertls::nameconstraints::tc1297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38767,6 +40210,7 @@ "id": "bettertls::nameconstraints::tc1298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38794,6 +40238,7 @@ "id": "bettertls::nameconstraints::tc1299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38821,6 +40266,7 @@ "id": "bettertls::nameconstraints::tc1300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38848,6 +40294,7 @@ "id": "bettertls::nameconstraints::tc1301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38875,6 +40322,7 @@ "id": "bettertls::nameconstraints::tc1302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38902,6 +40350,7 @@ "id": "bettertls::nameconstraints::tc1303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38929,6 +40378,7 @@ "id": "bettertls::nameconstraints::tc1304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38956,6 +40406,7 @@ "id": "bettertls::nameconstraints::tc1305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -38983,6 +40434,7 @@ "id": "bettertls::nameconstraints::tc1306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39010,6 +40462,7 @@ "id": "bettertls::nameconstraints::tc1307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39037,6 +40490,7 @@ "id": "bettertls::nameconstraints::tc1308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39064,6 +40518,7 @@ "id": "bettertls::nameconstraints::tc1309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39091,6 +40546,7 @@ "id": "bettertls::nameconstraints::tc1310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39118,6 +40574,7 @@ "id": "bettertls::nameconstraints::tc1311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39145,6 +40602,7 @@ "id": "bettertls::nameconstraints::tc1312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39172,6 +40630,7 @@ "id": "bettertls::nameconstraints::tc1313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39199,6 +40658,7 @@ "id": "bettertls::nameconstraints::tc1314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39226,6 +40686,7 @@ "id": "bettertls::nameconstraints::tc1315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39253,6 +40714,7 @@ "id": "bettertls::nameconstraints::tc1316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39280,6 +40742,7 @@ "id": "bettertls::nameconstraints::tc1317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39307,6 +40770,7 @@ "id": "bettertls::nameconstraints::tc1318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39334,6 +40798,7 @@ "id": "bettertls::nameconstraints::tc1319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39361,6 +40826,7 @@ "id": "bettertls::nameconstraints::tc1320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39388,6 +40854,7 @@ "id": "bettertls::nameconstraints::tc1321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39415,6 +40882,7 @@ "id": "bettertls::nameconstraints::tc1322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39442,6 +40910,7 @@ "id": "bettertls::nameconstraints::tc1323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39469,6 +40938,7 @@ "id": "bettertls::nameconstraints::tc1324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39496,6 +40966,7 @@ "id": "bettertls::nameconstraints::tc1325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39523,6 +40994,7 @@ "id": "bettertls::nameconstraints::tc1326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39550,6 +41022,7 @@ "id": "bettertls::nameconstraints::tc1327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39577,6 +41050,7 @@ "id": "bettertls::nameconstraints::tc1328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39604,6 +41078,7 @@ "id": "bettertls::nameconstraints::tc1329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39631,6 +41106,7 @@ "id": "bettertls::nameconstraints::tc1330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39658,6 +41134,7 @@ "id": "bettertls::nameconstraints::tc1331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39685,6 +41162,7 @@ "id": "bettertls::nameconstraints::tc1332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39712,6 +41190,7 @@ "id": "bettertls::nameconstraints::tc1333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39739,6 +41218,7 @@ "id": "bettertls::nameconstraints::tc1334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39766,6 +41246,7 @@ "id": "bettertls::nameconstraints::tc1335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39793,6 +41274,7 @@ "id": "bettertls::nameconstraints::tc1336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39820,6 +41302,7 @@ "id": "bettertls::nameconstraints::tc1337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39847,6 +41330,7 @@ "id": "bettertls::nameconstraints::tc1338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39874,6 +41358,7 @@ "id": "bettertls::nameconstraints::tc1339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39901,6 +41386,7 @@ "id": "bettertls::nameconstraints::tc1340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39928,6 +41414,7 @@ "id": "bettertls::nameconstraints::tc1341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39955,6 +41442,7 @@ "id": "bettertls::nameconstraints::tc1342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -39982,6 +41470,7 @@ "id": "bettertls::nameconstraints::tc1343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40009,6 +41498,7 @@ "id": "bettertls::nameconstraints::tc1344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40036,6 +41526,7 @@ "id": "bettertls::nameconstraints::tc1345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40063,6 +41554,7 @@ "id": "bettertls::nameconstraints::tc1346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40090,6 +41582,7 @@ "id": "bettertls::nameconstraints::tc1347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40117,6 +41610,7 @@ "id": "bettertls::nameconstraints::tc1348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40144,6 +41638,7 @@ "id": "bettertls::nameconstraints::tc1349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40171,6 +41666,7 @@ "id": "bettertls::nameconstraints::tc1350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40198,6 +41694,7 @@ "id": "bettertls::nameconstraints::tc1351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40225,6 +41722,7 @@ "id": "bettertls::nameconstraints::tc1352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40252,6 +41750,7 @@ "id": "bettertls::nameconstraints::tc1353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40279,6 +41778,7 @@ "id": "bettertls::nameconstraints::tc1354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40306,6 +41806,7 @@ "id": "bettertls::nameconstraints::tc1355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40333,6 +41834,7 @@ "id": "bettertls::nameconstraints::tc1356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40360,6 +41862,7 @@ "id": "bettertls::nameconstraints::tc1357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40387,6 +41890,7 @@ "id": "bettertls::nameconstraints::tc1358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40414,6 +41918,7 @@ "id": "bettertls::nameconstraints::tc1359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40441,6 +41946,7 @@ "id": "bettertls::nameconstraints::tc1360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40468,6 +41974,7 @@ "id": "bettertls::nameconstraints::tc1361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40495,6 +42002,7 @@ "id": "bettertls::nameconstraints::tc1362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40522,6 +42030,7 @@ "id": "bettertls::nameconstraints::tc1363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40549,6 +42058,7 @@ "id": "bettertls::nameconstraints::tc1364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40576,6 +42086,7 @@ "id": "bettertls::nameconstraints::tc1365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40603,6 +42114,7 @@ "id": "bettertls::nameconstraints::tc1366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40630,6 +42142,7 @@ "id": "bettertls::nameconstraints::tc1367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40657,6 +42170,7 @@ "id": "bettertls::nameconstraints::tc1368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40684,6 +42198,7 @@ "id": "bettertls::nameconstraints::tc1369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40711,6 +42226,7 @@ "id": "bettertls::nameconstraints::tc1370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40738,6 +42254,7 @@ "id": "bettertls::nameconstraints::tc1371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40765,6 +42282,7 @@ "id": "bettertls::nameconstraints::tc1372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40792,6 +42310,7 @@ "id": "bettertls::nameconstraints::tc1373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40819,6 +42338,7 @@ "id": "bettertls::nameconstraints::tc1374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40846,6 +42366,7 @@ "id": "bettertls::nameconstraints::tc1375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40873,6 +42394,7 @@ "id": "bettertls::nameconstraints::tc1376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40900,6 +42422,7 @@ "id": "bettertls::nameconstraints::tc1377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40927,6 +42450,7 @@ "id": "bettertls::nameconstraints::tc1378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40954,6 +42478,7 @@ "id": "bettertls::nameconstraints::tc1379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -40981,6 +42506,7 @@ "id": "bettertls::nameconstraints::tc1380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41008,6 +42534,7 @@ "id": "bettertls::nameconstraints::tc1381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41035,6 +42562,7 @@ "id": "bettertls::nameconstraints::tc1382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41062,6 +42590,7 @@ "id": "bettertls::nameconstraints::tc1383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41089,6 +42618,7 @@ "id": "bettertls::nameconstraints::tc1384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41116,6 +42646,7 @@ "id": "bettertls::nameconstraints::tc1385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41143,6 +42674,7 @@ "id": "bettertls::nameconstraints::tc1386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41170,6 +42702,7 @@ "id": "bettertls::nameconstraints::tc1387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41197,6 +42730,7 @@ "id": "bettertls::nameconstraints::tc1388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41224,6 +42758,7 @@ "id": "bettertls::nameconstraints::tc1389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41251,6 +42786,7 @@ "id": "bettertls::nameconstraints::tc1390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41278,6 +42814,7 @@ "id": "bettertls::nameconstraints::tc1391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41305,6 +42842,7 @@ "id": "bettertls::nameconstraints::tc1392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41332,6 +42870,7 @@ "id": "bettertls::nameconstraints::tc1393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41359,6 +42898,7 @@ "id": "bettertls::nameconstraints::tc1394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41386,6 +42926,7 @@ "id": "bettertls::nameconstraints::tc1395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41413,6 +42954,7 @@ "id": "bettertls::nameconstraints::tc1396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41440,6 +42982,7 @@ "id": "bettertls::nameconstraints::tc1397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41467,6 +43010,7 @@ "id": "bettertls::nameconstraints::tc1398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41494,6 +43038,7 @@ "id": "bettertls::nameconstraints::tc1399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41521,6 +43066,7 @@ "id": "bettertls::nameconstraints::tc1400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41548,6 +43094,7 @@ "id": "bettertls::nameconstraints::tc1401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41575,6 +43122,7 @@ "id": "bettertls::nameconstraints::tc1402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41602,6 +43150,7 @@ "id": "bettertls::nameconstraints::tc1403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41629,6 +43178,7 @@ "id": "bettertls::nameconstraints::tc1404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41656,6 +43206,7 @@ "id": "bettertls::nameconstraints::tc1405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41683,6 +43234,7 @@ "id": "bettertls::nameconstraints::tc1406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41710,6 +43262,7 @@ "id": "bettertls::nameconstraints::tc1407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41737,6 +43290,7 @@ "id": "bettertls::nameconstraints::tc1408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41764,6 +43318,7 @@ "id": "bettertls::nameconstraints::tc1409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41791,6 +43346,7 @@ "id": "bettertls::nameconstraints::tc1410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41818,6 +43374,7 @@ "id": "bettertls::nameconstraints::tc1411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41845,6 +43402,7 @@ "id": "bettertls::nameconstraints::tc1412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41872,6 +43430,7 @@ "id": "bettertls::nameconstraints::tc1413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41899,6 +43458,7 @@ "id": "bettertls::nameconstraints::tc1414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41926,6 +43486,7 @@ "id": "bettertls::nameconstraints::tc1415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41953,6 +43514,7 @@ "id": "bettertls::nameconstraints::tc1416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -41980,6 +43542,7 @@ "id": "bettertls::nameconstraints::tc1417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42007,6 +43570,7 @@ "id": "bettertls::nameconstraints::tc1418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42034,6 +43598,7 @@ "id": "bettertls::nameconstraints::tc1419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42061,6 +43626,7 @@ "id": "bettertls::nameconstraints::tc1420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42088,6 +43654,7 @@ "id": "bettertls::nameconstraints::tc1421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42115,6 +43682,7 @@ "id": "bettertls::nameconstraints::tc1422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42142,6 +43710,7 @@ "id": "bettertls::nameconstraints::tc1423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42169,6 +43738,7 @@ "id": "bettertls::nameconstraints::tc1424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42196,6 +43766,7 @@ "id": "bettertls::nameconstraints::tc1425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42223,6 +43794,7 @@ "id": "bettertls::nameconstraints::tc1426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42250,6 +43822,7 @@ "id": "bettertls::nameconstraints::tc1427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42277,6 +43850,7 @@ "id": "bettertls::nameconstraints::tc1428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42304,6 +43878,7 @@ "id": "bettertls::nameconstraints::tc1429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42331,6 +43906,7 @@ "id": "bettertls::nameconstraints::tc1430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42358,6 +43934,7 @@ "id": "bettertls::nameconstraints::tc1431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42385,6 +43962,7 @@ "id": "bettertls::nameconstraints::tc1432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42412,6 +43990,7 @@ "id": "bettertls::nameconstraints::tc1433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42439,6 +44018,7 @@ "id": "bettertls::nameconstraints::tc1434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42466,6 +44046,7 @@ "id": "bettertls::nameconstraints::tc1435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42493,6 +44074,7 @@ "id": "bettertls::nameconstraints::tc1436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42520,6 +44102,7 @@ "id": "bettertls::nameconstraints::tc1437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42547,6 +44130,7 @@ "id": "bettertls::nameconstraints::tc1438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42574,6 +44158,7 @@ "id": "bettertls::nameconstraints::tc1439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42601,6 +44186,7 @@ "id": "bettertls::nameconstraints::tc1440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42628,6 +44214,7 @@ "id": "bettertls::nameconstraints::tc1441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42655,6 +44242,7 @@ "id": "bettertls::nameconstraints::tc1442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42682,6 +44270,7 @@ "id": "bettertls::nameconstraints::tc1443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42709,6 +44298,7 @@ "id": "bettertls::nameconstraints::tc1444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42736,6 +44326,7 @@ "id": "bettertls::nameconstraints::tc1445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42763,6 +44354,7 @@ "id": "bettertls::nameconstraints::tc1446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42790,6 +44382,7 @@ "id": "bettertls::nameconstraints::tc1447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42817,6 +44410,7 @@ "id": "bettertls::nameconstraints::tc1448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42844,6 +44438,7 @@ "id": "bettertls::nameconstraints::tc1449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42871,6 +44466,7 @@ "id": "bettertls::nameconstraints::tc1450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42898,6 +44494,7 @@ "id": "bettertls::nameconstraints::tc1451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42925,6 +44522,7 @@ "id": "bettertls::nameconstraints::tc1452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42952,6 +44550,7 @@ "id": "bettertls::nameconstraints::tc1453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -42979,6 +44578,7 @@ "id": "bettertls::nameconstraints::tc1454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43006,6 +44606,7 @@ "id": "bettertls::nameconstraints::tc1455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43033,6 +44634,7 @@ "id": "bettertls::nameconstraints::tc1456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43060,6 +44662,7 @@ "id": "bettertls::nameconstraints::tc1457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43087,6 +44690,7 @@ "id": "bettertls::nameconstraints::tc1458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43114,6 +44718,7 @@ "id": "bettertls::nameconstraints::tc1459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43141,6 +44746,7 @@ "id": "bettertls::nameconstraints::tc1460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43168,6 +44774,7 @@ "id": "bettertls::nameconstraints::tc1461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43195,6 +44802,7 @@ "id": "bettertls::nameconstraints::tc1462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43222,6 +44830,7 @@ "id": "bettertls::nameconstraints::tc1463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43249,6 +44858,7 @@ "id": "bettertls::nameconstraints::tc1464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43276,6 +44886,7 @@ "id": "bettertls::nameconstraints::tc1465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43303,6 +44914,7 @@ "id": "bettertls::nameconstraints::tc1466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43330,6 +44942,7 @@ "id": "bettertls::nameconstraints::tc1467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43357,6 +44970,7 @@ "id": "bettertls::nameconstraints::tc1468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43384,6 +44998,7 @@ "id": "bettertls::nameconstraints::tc1469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43411,6 +45026,7 @@ "id": "bettertls::nameconstraints::tc1470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43438,6 +45054,7 @@ "id": "bettertls::nameconstraints::tc1471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43465,6 +45082,7 @@ "id": "bettertls::nameconstraints::tc1472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43492,6 +45110,7 @@ "id": "bettertls::nameconstraints::tc1473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43519,6 +45138,7 @@ "id": "bettertls::nameconstraints::tc1474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43546,6 +45166,7 @@ "id": "bettertls::nameconstraints::tc1475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43573,6 +45194,7 @@ "id": "bettertls::nameconstraints::tc1476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43600,6 +45222,7 @@ "id": "bettertls::nameconstraints::tc1477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43627,6 +45250,7 @@ "id": "bettertls::nameconstraints::tc1478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43654,6 +45278,7 @@ "id": "bettertls::nameconstraints::tc1479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43681,6 +45306,7 @@ "id": "bettertls::nameconstraints::tc1480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43708,6 +45334,7 @@ "id": "bettertls::nameconstraints::tc1481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43735,6 +45362,7 @@ "id": "bettertls::nameconstraints::tc1482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43762,6 +45390,7 @@ "id": "bettertls::nameconstraints::tc1483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43789,6 +45418,7 @@ "id": "bettertls::nameconstraints::tc1484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43816,6 +45446,7 @@ "id": "bettertls::nameconstraints::tc1485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43843,6 +45474,7 @@ "id": "bettertls::nameconstraints::tc1486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43870,6 +45502,7 @@ "id": "bettertls::nameconstraints::tc1487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43897,6 +45530,7 @@ "id": "bettertls::nameconstraints::tc1488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43924,6 +45558,7 @@ "id": "bettertls::nameconstraints::tc1489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43951,6 +45586,7 @@ "id": "bettertls::nameconstraints::tc1490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -43978,6 +45614,7 @@ "id": "bettertls::nameconstraints::tc1491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44005,6 +45642,7 @@ "id": "bettertls::nameconstraints::tc1492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44032,6 +45670,7 @@ "id": "bettertls::nameconstraints::tc1493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44059,6 +45698,7 @@ "id": "bettertls::nameconstraints::tc1494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44086,6 +45726,7 @@ "id": "bettertls::nameconstraints::tc1495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44113,6 +45754,7 @@ "id": "bettertls::nameconstraints::tc1496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44140,6 +45782,7 @@ "id": "bettertls::nameconstraints::tc1497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44167,6 +45810,7 @@ "id": "bettertls::nameconstraints::tc1498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44194,6 +45838,7 @@ "id": "bettertls::nameconstraints::tc1499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44221,6 +45866,7 @@ "id": "bettertls::nameconstraints::tc1500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44248,6 +45894,7 @@ "id": "bettertls::nameconstraints::tc1501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44275,6 +45922,7 @@ "id": "bettertls::nameconstraints::tc1502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44302,6 +45950,7 @@ "id": "bettertls::nameconstraints::tc1503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44329,6 +45978,7 @@ "id": "bettertls::nameconstraints::tc1504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44356,6 +46006,7 @@ "id": "bettertls::nameconstraints::tc1505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44383,6 +46034,7 @@ "id": "bettertls::nameconstraints::tc1506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44410,6 +46062,7 @@ "id": "bettertls::nameconstraints::tc1507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44437,6 +46090,7 @@ "id": "bettertls::nameconstraints::tc1508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44464,6 +46118,7 @@ "id": "bettertls::nameconstraints::tc1509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44491,6 +46146,7 @@ "id": "bettertls::nameconstraints::tc1510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44518,6 +46174,7 @@ "id": "bettertls::nameconstraints::tc1511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44545,6 +46202,7 @@ "id": "bettertls::nameconstraints::tc1512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44572,6 +46230,7 @@ "id": "bettertls::nameconstraints::tc1513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44599,6 +46258,7 @@ "id": "bettertls::nameconstraints::tc1514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44626,6 +46286,7 @@ "id": "bettertls::nameconstraints::tc1515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44653,6 +46314,7 @@ "id": "bettertls::nameconstraints::tc1516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44680,6 +46342,7 @@ "id": "bettertls::nameconstraints::tc1517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44707,6 +46370,7 @@ "id": "bettertls::nameconstraints::tc1518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44734,6 +46398,7 @@ "id": "bettertls::nameconstraints::tc1519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44761,6 +46426,7 @@ "id": "bettertls::nameconstraints::tc1520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44788,6 +46454,7 @@ "id": "bettertls::nameconstraints::tc1521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44815,6 +46482,7 @@ "id": "bettertls::nameconstraints::tc1522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44842,6 +46510,7 @@ "id": "bettertls::nameconstraints::tc1523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44869,6 +46538,7 @@ "id": "bettertls::nameconstraints::tc1524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44896,6 +46566,7 @@ "id": "bettertls::nameconstraints::tc1525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44923,6 +46594,7 @@ "id": "bettertls::nameconstraints::tc1526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44950,6 +46622,7 @@ "id": "bettertls::nameconstraints::tc1527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -44977,6 +46650,7 @@ "id": "bettertls::nameconstraints::tc1528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45004,6 +46678,7 @@ "id": "bettertls::nameconstraints::tc1529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45031,6 +46706,7 @@ "id": "bettertls::nameconstraints::tc1530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45058,6 +46734,7 @@ "id": "bettertls::nameconstraints::tc1531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45085,6 +46762,7 @@ "id": "bettertls::nameconstraints::tc1532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45112,6 +46790,7 @@ "id": "bettertls::nameconstraints::tc1533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45139,6 +46818,7 @@ "id": "bettertls::nameconstraints::tc1534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45166,6 +46846,7 @@ "id": "bettertls::nameconstraints::tc1535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45193,6 +46874,7 @@ "id": "bettertls::nameconstraints::tc1536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45220,6 +46902,7 @@ "id": "bettertls::nameconstraints::tc1537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45247,6 +46930,7 @@ "id": "bettertls::nameconstraints::tc1538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45274,6 +46958,7 @@ "id": "bettertls::nameconstraints::tc1539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45301,6 +46986,7 @@ "id": "bettertls::nameconstraints::tc1540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45328,6 +47014,7 @@ "id": "bettertls::nameconstraints::tc1541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45355,6 +47042,7 @@ "id": "bettertls::nameconstraints::tc1542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45382,6 +47070,7 @@ "id": "bettertls::nameconstraints::tc1543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45409,6 +47098,7 @@ "id": "bettertls::nameconstraints::tc1544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45436,6 +47126,7 @@ "id": "bettertls::nameconstraints::tc1545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45463,6 +47154,7 @@ "id": "bettertls::nameconstraints::tc1546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45490,6 +47182,7 @@ "id": "bettertls::nameconstraints::tc1547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45517,6 +47210,7 @@ "id": "bettertls::nameconstraints::tc1548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45544,6 +47238,7 @@ "id": "bettertls::nameconstraints::tc1549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45571,6 +47266,7 @@ "id": "bettertls::nameconstraints::tc1550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45598,6 +47294,7 @@ "id": "bettertls::nameconstraints::tc1551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45625,6 +47322,7 @@ "id": "bettertls::nameconstraints::tc1552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45652,6 +47350,7 @@ "id": "bettertls::nameconstraints::tc1553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45679,6 +47378,7 @@ "id": "bettertls::nameconstraints::tc1554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45706,6 +47406,7 @@ "id": "bettertls::nameconstraints::tc1555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45733,6 +47434,7 @@ "id": "bettertls::nameconstraints::tc1556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45760,6 +47462,7 @@ "id": "bettertls::nameconstraints::tc1557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45787,6 +47490,7 @@ "id": "bettertls::nameconstraints::tc1558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45814,6 +47518,7 @@ "id": "bettertls::nameconstraints::tc1559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45841,6 +47546,7 @@ "id": "bettertls::nameconstraints::tc1560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45868,6 +47574,7 @@ "id": "bettertls::nameconstraints::tc1561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45895,6 +47602,7 @@ "id": "bettertls::nameconstraints::tc1562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45922,6 +47630,7 @@ "id": "bettertls::nameconstraints::tc1563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45949,6 +47658,7 @@ "id": "bettertls::nameconstraints::tc1564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -45976,6 +47686,7 @@ "id": "bettertls::nameconstraints::tc1565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46003,6 +47714,7 @@ "id": "bettertls::nameconstraints::tc1566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46030,6 +47742,7 @@ "id": "bettertls::nameconstraints::tc1567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46057,6 +47770,7 @@ "id": "bettertls::nameconstraints::tc1568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46084,6 +47798,7 @@ "id": "bettertls::nameconstraints::tc1569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46111,6 +47826,7 @@ "id": "bettertls::nameconstraints::tc1570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46138,6 +47854,7 @@ "id": "bettertls::nameconstraints::tc1571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46165,6 +47882,7 @@ "id": "bettertls::nameconstraints::tc1572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46192,6 +47910,7 @@ "id": "bettertls::nameconstraints::tc1573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46219,6 +47938,7 @@ "id": "bettertls::nameconstraints::tc1574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46246,6 +47966,7 @@ "id": "bettertls::nameconstraints::tc1575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46273,6 +47994,7 @@ "id": "bettertls::nameconstraints::tc1576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46300,6 +48022,7 @@ "id": "bettertls::nameconstraints::tc1577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46327,6 +48050,7 @@ "id": "bettertls::nameconstraints::tc1578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46354,6 +48078,7 @@ "id": "bettertls::nameconstraints::tc1579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46381,6 +48106,7 @@ "id": "bettertls::nameconstraints::tc1580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46408,6 +48134,7 @@ "id": "bettertls::nameconstraints::tc1581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46435,6 +48162,7 @@ "id": "bettertls::nameconstraints::tc1582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46462,6 +48190,7 @@ "id": "bettertls::nameconstraints::tc1583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46489,6 +48218,7 @@ "id": "bettertls::nameconstraints::tc1584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46516,6 +48246,7 @@ "id": "bettertls::nameconstraints::tc1585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46543,6 +48274,7 @@ "id": "bettertls::nameconstraints::tc1586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46570,6 +48302,7 @@ "id": "bettertls::nameconstraints::tc1587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46597,6 +48330,7 @@ "id": "bettertls::nameconstraints::tc1588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46624,6 +48358,7 @@ "id": "bettertls::nameconstraints::tc1589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46651,6 +48386,7 @@ "id": "bettertls::nameconstraints::tc1590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46678,6 +48414,7 @@ "id": "bettertls::nameconstraints::tc1591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46705,6 +48442,7 @@ "id": "bettertls::nameconstraints::tc1592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46732,6 +48470,7 @@ "id": "bettertls::nameconstraints::tc1593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46759,6 +48498,7 @@ "id": "bettertls::nameconstraints::tc1594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46786,6 +48526,7 @@ "id": "bettertls::nameconstraints::tc1595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46813,6 +48554,7 @@ "id": "bettertls::nameconstraints::tc1596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46840,6 +48582,7 @@ "id": "bettertls::nameconstraints::tc1597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46867,6 +48610,7 @@ "id": "bettertls::nameconstraints::tc1598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46894,6 +48638,7 @@ "id": "bettertls::nameconstraints::tc1599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46921,6 +48666,7 @@ "id": "bettertls::nameconstraints::tc1600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46948,6 +48694,7 @@ "id": "bettertls::nameconstraints::tc1601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -46975,6 +48722,7 @@ "id": "bettertls::nameconstraints::tc1602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47002,6 +48750,7 @@ "id": "bettertls::nameconstraints::tc1603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47029,6 +48778,7 @@ "id": "bettertls::nameconstraints::tc1604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47056,6 +48806,7 @@ "id": "bettertls::nameconstraints::tc1605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47083,6 +48834,7 @@ "id": "bettertls::nameconstraints::tc1606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47110,6 +48862,7 @@ "id": "bettertls::nameconstraints::tc1607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47137,6 +48890,7 @@ "id": "bettertls::nameconstraints::tc1608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47164,6 +48918,7 @@ "id": "bettertls::nameconstraints::tc1609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47191,6 +48946,7 @@ "id": "bettertls::nameconstraints::tc1610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47218,6 +48974,7 @@ "id": "bettertls::nameconstraints::tc1611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47245,6 +49002,7 @@ "id": "bettertls::nameconstraints::tc1612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47272,6 +49030,7 @@ "id": "bettertls::nameconstraints::tc1613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47299,6 +49058,7 @@ "id": "bettertls::nameconstraints::tc1614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47326,6 +49086,7 @@ "id": "bettertls::nameconstraints::tc1615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47353,6 +49114,7 @@ "id": "bettertls::nameconstraints::tc1616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47380,6 +49142,7 @@ "id": "bettertls::nameconstraints::tc1617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47407,6 +49170,7 @@ "id": "bettertls::nameconstraints::tc1618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47434,6 +49198,7 @@ "id": "bettertls::nameconstraints::tc1619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47461,6 +49226,7 @@ "id": "bettertls::nameconstraints::tc1620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47488,6 +49254,7 @@ "id": "bettertls::nameconstraints::tc1621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47515,6 +49282,7 @@ "id": "bettertls::nameconstraints::tc1622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47542,6 +49310,7 @@ "id": "bettertls::nameconstraints::tc1623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47569,6 +49338,7 @@ "id": "bettertls::nameconstraints::tc1624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47596,6 +49366,7 @@ "id": "bettertls::nameconstraints::tc1625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47623,6 +49394,7 @@ "id": "bettertls::nameconstraints::tc1626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47650,6 +49422,7 @@ "id": "bettertls::nameconstraints::tc1627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47677,6 +49450,7 @@ "id": "bettertls::nameconstraints::tc1628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47704,6 +49478,7 @@ "id": "bettertls::nameconstraints::tc1629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47731,6 +49506,7 @@ "id": "bettertls::nameconstraints::tc1630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47758,6 +49534,7 @@ "id": "bettertls::nameconstraints::tc1631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47785,6 +49562,7 @@ "id": "bettertls::nameconstraints::tc1632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47812,6 +49590,7 @@ "id": "bettertls::nameconstraints::tc1633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47839,6 +49618,7 @@ "id": "bettertls::nameconstraints::tc1634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47866,6 +49646,7 @@ "id": "bettertls::nameconstraints::tc1635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47893,6 +49674,7 @@ "id": "bettertls::nameconstraints::tc1636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47920,6 +49702,7 @@ "id": "bettertls::nameconstraints::tc1637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47947,6 +49730,7 @@ "id": "bettertls::nameconstraints::tc1638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -47974,6 +49758,7 @@ "id": "bettertls::nameconstraints::tc1639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48001,6 +49786,7 @@ "id": "bettertls::nameconstraints::tc1640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48028,6 +49814,7 @@ "id": "bettertls::nameconstraints::tc1641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48055,6 +49842,7 @@ "id": "bettertls::nameconstraints::tc1642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48082,6 +49870,7 @@ "id": "bettertls::nameconstraints::tc1643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48109,6 +49898,7 @@ "id": "bettertls::nameconstraints::tc1644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48136,6 +49926,7 @@ "id": "bettertls::nameconstraints::tc1645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48163,6 +49954,7 @@ "id": "bettertls::nameconstraints::tc1646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48190,6 +49982,7 @@ "id": "bettertls::nameconstraints::tc1647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48217,6 +50010,7 @@ "id": "bettertls::nameconstraints::tc1648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48244,6 +50038,7 @@ "id": "bettertls::nameconstraints::tc1649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48271,6 +50066,7 @@ "id": "bettertls::nameconstraints::tc1650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48298,6 +50094,7 @@ "id": "bettertls::nameconstraints::tc1651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48325,6 +50122,7 @@ "id": "bettertls::nameconstraints::tc1652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48352,6 +50150,7 @@ "id": "bettertls::nameconstraints::tc1653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48379,6 +50178,7 @@ "id": "bettertls::nameconstraints::tc1654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48406,6 +50206,7 @@ "id": "bettertls::nameconstraints::tc1655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48433,6 +50234,7 @@ "id": "bettertls::nameconstraints::tc1656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48460,6 +50262,7 @@ "id": "bettertls::nameconstraints::tc1657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48487,6 +50290,7 @@ "id": "bettertls::nameconstraints::tc1658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48514,6 +50318,7 @@ "id": "bettertls::nameconstraints::tc1659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48541,6 +50346,7 @@ "id": "bettertls::nameconstraints::tc1660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48568,6 +50374,7 @@ "id": "bettertls::nameconstraints::tc1661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48595,6 +50402,7 @@ "id": "bettertls::nameconstraints::tc1662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48622,6 +50430,7 @@ "id": "bettertls::nameconstraints::tc1663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48649,6 +50458,7 @@ "id": "bettertls::nameconstraints::tc1664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48676,6 +50486,7 @@ "id": "bettertls::nameconstraints::tc1665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48703,6 +50514,7 @@ "id": "bettertls::nameconstraints::tc1666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48730,6 +50542,7 @@ "id": "bettertls::nameconstraints::tc1667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48757,6 +50570,7 @@ "id": "bettertls::nameconstraints::tc1668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48784,6 +50598,7 @@ "id": "bettertls::nameconstraints::tc1669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48811,6 +50626,7 @@ "id": "bettertls::nameconstraints::tc1670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48838,6 +50654,7 @@ "id": "bettertls::nameconstraints::tc1671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48865,6 +50682,7 @@ "id": "bettertls::nameconstraints::tc1672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48892,6 +50710,7 @@ "id": "bettertls::nameconstraints::tc1673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48919,6 +50738,7 @@ "id": "bettertls::nameconstraints::tc1674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48946,6 +50766,7 @@ "id": "bettertls::nameconstraints::tc1675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -48973,6 +50794,7 @@ "id": "bettertls::nameconstraints::tc1676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49000,6 +50822,7 @@ "id": "bettertls::nameconstraints::tc1677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49027,6 +50850,7 @@ "id": "bettertls::nameconstraints::tc1678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49054,6 +50878,7 @@ "id": "bettertls::nameconstraints::tc1679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49081,6 +50906,7 @@ "id": "bettertls::nameconstraints::tc1680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49108,6 +50934,7 @@ "id": "bettertls::nameconstraints::tc1681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49135,6 +50962,7 @@ "id": "bettertls::nameconstraints::tc1682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49162,6 +50990,7 @@ "id": "bettertls::nameconstraints::tc1683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49189,6 +51018,7 @@ "id": "bettertls::nameconstraints::tc1684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49216,6 +51046,7 @@ "id": "bettertls::nameconstraints::tc1685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49243,6 +51074,7 @@ "id": "bettertls::nameconstraints::tc1686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49270,6 +51102,7 @@ "id": "bettertls::nameconstraints::tc1687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49297,6 +51130,7 @@ "id": "bettertls::nameconstraints::tc1688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49324,6 +51158,7 @@ "id": "bettertls::nameconstraints::tc1689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49351,6 +51186,7 @@ "id": "bettertls::nameconstraints::tc1690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49378,6 +51214,7 @@ "id": "bettertls::nameconstraints::tc1691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49405,6 +51242,7 @@ "id": "bettertls::nameconstraints::tc1692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49432,6 +51270,7 @@ "id": "bettertls::nameconstraints::tc1693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49459,6 +51298,7 @@ "id": "bettertls::nameconstraints::tc1694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49486,6 +51326,7 @@ "id": "bettertls::nameconstraints::tc1695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49513,6 +51354,7 @@ "id": "bettertls::nameconstraints::tc1696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49540,6 +51382,7 @@ "id": "bettertls::nameconstraints::tc1697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49567,6 +51410,7 @@ "id": "bettertls::nameconstraints::tc1698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49594,6 +51438,7 @@ "id": "bettertls::nameconstraints::tc1699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49621,6 +51466,7 @@ "id": "bettertls::nameconstraints::tc1700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49648,6 +51494,7 @@ "id": "bettertls::nameconstraints::tc1701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49675,6 +51522,7 @@ "id": "bettertls::nameconstraints::tc1702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49702,6 +51550,7 @@ "id": "bettertls::nameconstraints::tc1703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49729,6 +51578,7 @@ "id": "bettertls::nameconstraints::tc1704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49756,6 +51606,7 @@ "id": "bettertls::nameconstraints::tc1705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49783,6 +51634,7 @@ "id": "bettertls::nameconstraints::tc1706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49810,6 +51662,7 @@ "id": "bettertls::nameconstraints::tc1707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49837,6 +51690,7 @@ "id": "bettertls::nameconstraints::tc1708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49864,6 +51718,7 @@ "id": "bettertls::nameconstraints::tc1709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49891,6 +51746,7 @@ "id": "bettertls::nameconstraints::tc1710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49918,6 +51774,7 @@ "id": "bettertls::nameconstraints::tc1711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49945,6 +51802,7 @@ "id": "bettertls::nameconstraints::tc1712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49972,6 +51830,7 @@ "id": "bettertls::nameconstraints::tc1713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -49999,6 +51858,7 @@ "id": "bettertls::nameconstraints::tc1714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50026,6 +51886,7 @@ "id": "bettertls::nameconstraints::tc1715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50053,6 +51914,7 @@ "id": "bettertls::nameconstraints::tc1716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50080,6 +51942,7 @@ "id": "bettertls::nameconstraints::tc1717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50107,6 +51970,7 @@ "id": "bettertls::nameconstraints::tc1718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50134,6 +51998,7 @@ "id": "bettertls::nameconstraints::tc1719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50161,6 +52026,7 @@ "id": "bettertls::nameconstraints::tc1720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50188,6 +52054,7 @@ "id": "bettertls::nameconstraints::tc1721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50215,6 +52082,7 @@ "id": "bettertls::nameconstraints::tc1722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50242,6 +52110,7 @@ "id": "bettertls::nameconstraints::tc1723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50269,6 +52138,7 @@ "id": "bettertls::nameconstraints::tc1724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50296,6 +52166,7 @@ "id": "bettertls::nameconstraints::tc1725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50323,6 +52194,7 @@ "id": "bettertls::nameconstraints::tc1726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50350,6 +52222,7 @@ "id": "bettertls::nameconstraints::tc1727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50377,6 +52250,7 @@ "id": "bettertls::nameconstraints::tc1728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50404,6 +52278,7 @@ "id": "bettertls::nameconstraints::tc1729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50431,6 +52306,7 @@ "id": "bettertls::nameconstraints::tc1730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50458,6 +52334,7 @@ "id": "bettertls::nameconstraints::tc1731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50485,6 +52362,7 @@ "id": "bettertls::nameconstraints::tc1732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50512,6 +52390,7 @@ "id": "bettertls::nameconstraints::tc1733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50539,6 +52418,7 @@ "id": "bettertls::nameconstraints::tc1734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50566,6 +52446,7 @@ "id": "bettertls::nameconstraints::tc1735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50593,6 +52474,7 @@ "id": "bettertls::nameconstraints::tc1736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50620,6 +52502,7 @@ "id": "bettertls::nameconstraints::tc1737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50647,6 +52530,7 @@ "id": "bettertls::nameconstraints::tc1738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50674,6 +52558,7 @@ "id": "bettertls::nameconstraints::tc1739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50701,6 +52586,7 @@ "id": "bettertls::nameconstraints::tc1740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50728,6 +52614,7 @@ "id": "bettertls::nameconstraints::tc1741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50755,6 +52642,7 @@ "id": "bettertls::nameconstraints::tc1742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50782,6 +52670,7 @@ "id": "bettertls::nameconstraints::tc1743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50809,6 +52698,7 @@ "id": "bettertls::nameconstraints::tc1744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50836,6 +52726,7 @@ "id": "bettertls::nameconstraints::tc1745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50863,6 +52754,7 @@ "id": "bettertls::nameconstraints::tc1746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50890,6 +52782,7 @@ "id": "bettertls::nameconstraints::tc1747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50917,6 +52810,7 @@ "id": "bettertls::nameconstraints::tc1748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50944,6 +52838,7 @@ "id": "bettertls::nameconstraints::tc1749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50971,6 +52866,7 @@ "id": "bettertls::nameconstraints::tc1750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -50998,6 +52894,7 @@ "id": "bettertls::nameconstraints::tc1751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51025,6 +52922,7 @@ "id": "bettertls::nameconstraints::tc1752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51052,6 +52950,7 @@ "id": "bettertls::nameconstraints::tc1753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51079,6 +52978,7 @@ "id": "bettertls::nameconstraints::tc1754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51106,6 +53006,7 @@ "id": "bettertls::nameconstraints::tc1755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51133,6 +53034,7 @@ "id": "bettertls::nameconstraints::tc1756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51160,6 +53062,7 @@ "id": "bettertls::nameconstraints::tc1757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51187,6 +53090,7 @@ "id": "bettertls::nameconstraints::tc1758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51214,6 +53118,7 @@ "id": "bettertls::nameconstraints::tc1759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51241,6 +53146,7 @@ "id": "bettertls::nameconstraints::tc1760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51268,6 +53174,7 @@ "id": "bettertls::nameconstraints::tc1761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51295,6 +53202,7 @@ "id": "bettertls::nameconstraints::tc1762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51322,6 +53230,7 @@ "id": "bettertls::nameconstraints::tc1763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51349,6 +53258,7 @@ "id": "bettertls::nameconstraints::tc1764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51376,6 +53286,7 @@ "id": "bettertls::nameconstraints::tc1765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51403,6 +53314,7 @@ "id": "bettertls::nameconstraints::tc1766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51430,6 +53342,7 @@ "id": "bettertls::nameconstraints::tc1767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51457,6 +53370,7 @@ "id": "bettertls::nameconstraints::tc1768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51484,6 +53398,7 @@ "id": "bettertls::nameconstraints::tc1769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51511,6 +53426,7 @@ "id": "bettertls::nameconstraints::tc1770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51538,6 +53454,7 @@ "id": "bettertls::nameconstraints::tc1771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51565,6 +53482,7 @@ "id": "bettertls::nameconstraints::tc1772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51592,6 +53510,7 @@ "id": "bettertls::nameconstraints::tc1773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51619,6 +53538,7 @@ "id": "bettertls::nameconstraints::tc1774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51646,6 +53566,7 @@ "id": "bettertls::nameconstraints::tc1775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51673,6 +53594,7 @@ "id": "bettertls::nameconstraints::tc1776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51700,6 +53622,7 @@ "id": "bettertls::nameconstraints::tc1777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51727,6 +53650,7 @@ "id": "bettertls::nameconstraints::tc1778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51754,6 +53678,7 @@ "id": "bettertls::nameconstraints::tc1779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51781,6 +53706,7 @@ "id": "bettertls::nameconstraints::tc1780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51808,6 +53734,7 @@ "id": "bettertls::nameconstraints::tc1781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51835,6 +53762,7 @@ "id": "bettertls::nameconstraints::tc1782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51862,6 +53790,7 @@ "id": "bettertls::nameconstraints::tc1783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51889,6 +53818,7 @@ "id": "bettertls::nameconstraints::tc1784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51916,6 +53846,7 @@ "id": "bettertls::nameconstraints::tc1785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51943,6 +53874,7 @@ "id": "bettertls::nameconstraints::tc1786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51970,6 +53902,7 @@ "id": "bettertls::nameconstraints::tc1787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -51997,6 +53930,7 @@ "id": "bettertls::nameconstraints::tc1788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52024,6 +53958,7 @@ "id": "bettertls::nameconstraints::tc1789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52051,6 +53986,7 @@ "id": "bettertls::nameconstraints::tc1790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52078,6 +54014,7 @@ "id": "bettertls::nameconstraints::tc1791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52105,6 +54042,7 @@ "id": "bettertls::nameconstraints::tc1792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52132,6 +54070,7 @@ "id": "bettertls::nameconstraints::tc1793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52159,6 +54098,7 @@ "id": "bettertls::nameconstraints::tc1794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52186,6 +54126,7 @@ "id": "bettertls::nameconstraints::tc1795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52213,6 +54154,7 @@ "id": "bettertls::nameconstraints::tc1796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52240,6 +54182,7 @@ "id": "bettertls::nameconstraints::tc1797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52267,6 +54210,7 @@ "id": "bettertls::nameconstraints::tc1798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52294,6 +54238,7 @@ "id": "bettertls::nameconstraints::tc1799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52321,6 +54266,7 @@ "id": "bettertls::nameconstraints::tc1800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52348,6 +54294,7 @@ "id": "bettertls::nameconstraints::tc1801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52375,6 +54322,7 @@ "id": "bettertls::nameconstraints::tc1802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52402,6 +54350,7 @@ "id": "bettertls::nameconstraints::tc1803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52429,6 +54378,7 @@ "id": "bettertls::nameconstraints::tc1804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52456,6 +54406,7 @@ "id": "bettertls::nameconstraints::tc1805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52483,6 +54434,7 @@ "id": "bettertls::nameconstraints::tc1806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52510,6 +54462,7 @@ "id": "bettertls::nameconstraints::tc1807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52537,6 +54490,7 @@ "id": "bettertls::nameconstraints::tc1808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52564,6 +54518,7 @@ "id": "bettertls::nameconstraints::tc1809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52591,6 +54546,7 @@ "id": "bettertls::nameconstraints::tc1810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52618,6 +54574,7 @@ "id": "bettertls::nameconstraints::tc1811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52645,6 +54602,7 @@ "id": "bettertls::nameconstraints::tc1812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52672,6 +54630,7 @@ "id": "bettertls::nameconstraints::tc1813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52699,6 +54658,7 @@ "id": "bettertls::nameconstraints::tc1814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52726,6 +54686,7 @@ "id": "bettertls::nameconstraints::tc1815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52753,6 +54714,7 @@ "id": "bettertls::nameconstraints::tc1816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52780,6 +54742,7 @@ "id": "bettertls::nameconstraints::tc1817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52807,6 +54770,7 @@ "id": "bettertls::nameconstraints::tc1818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52834,6 +54798,7 @@ "id": "bettertls::nameconstraints::tc1819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52861,6 +54826,7 @@ "id": "bettertls::nameconstraints::tc1820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52888,6 +54854,7 @@ "id": "bettertls::nameconstraints::tc1821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52915,6 +54882,7 @@ "id": "bettertls::nameconstraints::tc1822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52942,6 +54910,7 @@ "id": "bettertls::nameconstraints::tc1823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52969,6 +54938,7 @@ "id": "bettertls::nameconstraints::tc1824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -52996,6 +54966,7 @@ "id": "bettertls::nameconstraints::tc1825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53023,6 +54994,7 @@ "id": "bettertls::nameconstraints::tc1826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53050,6 +55022,7 @@ "id": "bettertls::nameconstraints::tc1827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53077,6 +55050,7 @@ "id": "bettertls::nameconstraints::tc1828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53104,6 +55078,7 @@ "id": "bettertls::nameconstraints::tc1829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53131,6 +55106,7 @@ "id": "bettertls::nameconstraints::tc1830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53158,6 +55134,7 @@ "id": "bettertls::nameconstraints::tc1831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53185,6 +55162,7 @@ "id": "bettertls::nameconstraints::tc1832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53212,6 +55190,7 @@ "id": "bettertls::nameconstraints::tc1833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53239,6 +55218,7 @@ "id": "bettertls::nameconstraints::tc1834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53266,6 +55246,7 @@ "id": "bettertls::nameconstraints::tc1835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53293,6 +55274,7 @@ "id": "bettertls::nameconstraints::tc1836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53320,6 +55302,7 @@ "id": "bettertls::nameconstraints::tc1837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53347,6 +55330,7 @@ "id": "bettertls::nameconstraints::tc1838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53374,6 +55358,7 @@ "id": "bettertls::nameconstraints::tc1839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53401,6 +55386,7 @@ "id": "bettertls::nameconstraints::tc1840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53428,6 +55414,7 @@ "id": "bettertls::nameconstraints::tc1841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53455,6 +55442,7 @@ "id": "bettertls::nameconstraints::tc1842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53482,6 +55470,7 @@ "id": "bettertls::nameconstraints::tc1843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53509,6 +55498,7 @@ "id": "bettertls::nameconstraints::tc1844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53536,6 +55526,7 @@ "id": "bettertls::nameconstraints::tc1845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53563,6 +55554,7 @@ "id": "bettertls::nameconstraints::tc1846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53590,6 +55582,7 @@ "id": "bettertls::nameconstraints::tc1847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53617,6 +55610,7 @@ "id": "bettertls::nameconstraints::tc1848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53644,6 +55638,7 @@ "id": "bettertls::nameconstraints::tc1849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53671,6 +55666,7 @@ "id": "bettertls::nameconstraints::tc1850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53698,6 +55694,7 @@ "id": "bettertls::nameconstraints::tc1851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53725,6 +55722,7 @@ "id": "bettertls::nameconstraints::tc1852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53752,6 +55750,7 @@ "id": "bettertls::nameconstraints::tc1853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53779,6 +55778,7 @@ "id": "bettertls::nameconstraints::tc1854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53806,6 +55806,7 @@ "id": "bettertls::nameconstraints::tc1855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53833,6 +55834,7 @@ "id": "bettertls::nameconstraints::tc1856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53860,6 +55862,7 @@ "id": "bettertls::nameconstraints::tc1857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53887,6 +55890,7 @@ "id": "bettertls::nameconstraints::tc1858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53914,6 +55918,7 @@ "id": "bettertls::nameconstraints::tc1859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53941,6 +55946,7 @@ "id": "bettertls::nameconstraints::tc1860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53968,6 +55974,7 @@ "id": "bettertls::nameconstraints::tc1861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -53995,6 +56002,7 @@ "id": "bettertls::nameconstraints::tc1862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54022,6 +56030,7 @@ "id": "bettertls::nameconstraints::tc1863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54049,6 +56058,7 @@ "id": "bettertls::nameconstraints::tc1864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54076,6 +56086,7 @@ "id": "bettertls::nameconstraints::tc1865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54103,6 +56114,7 @@ "id": "bettertls::nameconstraints::tc1866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54130,6 +56142,7 @@ "id": "bettertls::nameconstraints::tc1867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54157,6 +56170,7 @@ "id": "bettertls::nameconstraints::tc1868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54184,6 +56198,7 @@ "id": "bettertls::nameconstraints::tc1869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54211,6 +56226,7 @@ "id": "bettertls::nameconstraints::tc1870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54238,6 +56254,7 @@ "id": "bettertls::nameconstraints::tc1871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54265,6 +56282,7 @@ "id": "bettertls::nameconstraints::tc1872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54292,6 +56310,7 @@ "id": "bettertls::nameconstraints::tc1873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54319,6 +56338,7 @@ "id": "bettertls::nameconstraints::tc1874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54346,6 +56366,7 @@ "id": "bettertls::nameconstraints::tc1875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54373,6 +56394,7 @@ "id": "bettertls::nameconstraints::tc1876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54400,6 +56422,7 @@ "id": "bettertls::nameconstraints::tc1877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54427,6 +56450,7 @@ "id": "bettertls::nameconstraints::tc1878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54454,6 +56478,7 @@ "id": "bettertls::nameconstraints::tc1879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54481,6 +56506,7 @@ "id": "bettertls::nameconstraints::tc1880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54508,6 +56534,7 @@ "id": "bettertls::nameconstraints::tc1881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54535,6 +56562,7 @@ "id": "bettertls::nameconstraints::tc1882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54562,6 +56590,7 @@ "id": "bettertls::nameconstraints::tc1883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54589,6 +56618,7 @@ "id": "bettertls::nameconstraints::tc1884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54616,6 +56646,7 @@ "id": "bettertls::nameconstraints::tc1885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54643,6 +56674,7 @@ "id": "bettertls::nameconstraints::tc1886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54670,6 +56702,7 @@ "id": "bettertls::nameconstraints::tc1887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54697,6 +56730,7 @@ "id": "bettertls::nameconstraints::tc1888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54724,6 +56758,7 @@ "id": "bettertls::nameconstraints::tc1889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54751,6 +56786,7 @@ "id": "bettertls::nameconstraints::tc1890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54778,6 +56814,7 @@ "id": "bettertls::nameconstraints::tc1891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54805,6 +56842,7 @@ "id": "bettertls::nameconstraints::tc1892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54832,6 +56870,7 @@ "id": "bettertls::nameconstraints::tc1893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54859,6 +56898,7 @@ "id": "bettertls::nameconstraints::tc1894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54886,6 +56926,7 @@ "id": "bettertls::nameconstraints::tc1895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54913,6 +56954,7 @@ "id": "bettertls::nameconstraints::tc1896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54940,6 +56982,7 @@ "id": "bettertls::nameconstraints::tc1897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54967,6 +57010,7 @@ "id": "bettertls::nameconstraints::tc1898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -54994,6 +57038,7 @@ "id": "bettertls::nameconstraints::tc1899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55021,6 +57066,7 @@ "id": "bettertls::nameconstraints::tc1900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55048,6 +57094,7 @@ "id": "bettertls::nameconstraints::tc1901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55075,6 +57122,7 @@ "id": "bettertls::nameconstraints::tc1902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55102,6 +57150,7 @@ "id": "bettertls::nameconstraints::tc1903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55129,6 +57178,7 @@ "id": "bettertls::nameconstraints::tc1904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55156,6 +57206,7 @@ "id": "bettertls::nameconstraints::tc1905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55183,6 +57234,7 @@ "id": "bettertls::nameconstraints::tc1906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55210,6 +57262,7 @@ "id": "bettertls::nameconstraints::tc1907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55237,6 +57290,7 @@ "id": "bettertls::nameconstraints::tc1908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55264,6 +57318,7 @@ "id": "bettertls::nameconstraints::tc1909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55291,6 +57346,7 @@ "id": "bettertls::nameconstraints::tc1910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55318,6 +57374,7 @@ "id": "bettertls::nameconstraints::tc1911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55345,6 +57402,7 @@ "id": "bettertls::nameconstraints::tc1912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55372,6 +57430,7 @@ "id": "bettertls::nameconstraints::tc1913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55399,6 +57458,7 @@ "id": "bettertls::nameconstraints::tc1914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55426,6 +57486,7 @@ "id": "bettertls::nameconstraints::tc1915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55453,6 +57514,7 @@ "id": "bettertls::nameconstraints::tc1916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55480,6 +57542,7 @@ "id": "bettertls::nameconstraints::tc1917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55507,6 +57570,7 @@ "id": "bettertls::nameconstraints::tc1918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55534,6 +57598,7 @@ "id": "bettertls::nameconstraints::tc1919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55561,6 +57626,7 @@ "id": "bettertls::nameconstraints::tc1920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55588,6 +57654,7 @@ "id": "bettertls::nameconstraints::tc1921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55615,6 +57682,7 @@ "id": "bettertls::nameconstraints::tc1922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55642,6 +57710,7 @@ "id": "bettertls::nameconstraints::tc1923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55669,6 +57738,7 @@ "id": "bettertls::nameconstraints::tc1924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55696,6 +57766,7 @@ "id": "bettertls::nameconstraints::tc1925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55723,6 +57794,7 @@ "id": "bettertls::nameconstraints::tc1926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55750,6 +57822,7 @@ "id": "bettertls::nameconstraints::tc1927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55777,6 +57850,7 @@ "id": "bettertls::nameconstraints::tc1928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55804,6 +57878,7 @@ "id": "bettertls::nameconstraints::tc1929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55831,6 +57906,7 @@ "id": "bettertls::nameconstraints::tc1930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55858,6 +57934,7 @@ "id": "bettertls::nameconstraints::tc1931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55885,6 +57962,7 @@ "id": "bettertls::nameconstraints::tc1932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55912,6 +57990,7 @@ "id": "bettertls::nameconstraints::tc1933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55939,6 +58018,7 @@ "id": "bettertls::nameconstraints::tc1934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55966,6 +58046,7 @@ "id": "bettertls::nameconstraints::tc1935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -55993,6 +58074,7 @@ "id": "bettertls::nameconstraints::tc1936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56020,6 +58102,7 @@ "id": "bettertls::nameconstraints::tc1937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56047,6 +58130,7 @@ "id": "bettertls::nameconstraints::tc1938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56074,6 +58158,7 @@ "id": "bettertls::nameconstraints::tc1939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56101,6 +58186,7 @@ "id": "bettertls::nameconstraints::tc1940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56128,6 +58214,7 @@ "id": "bettertls::nameconstraints::tc1941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56155,6 +58242,7 @@ "id": "bettertls::nameconstraints::tc1942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56182,6 +58270,7 @@ "id": "bettertls::nameconstraints::tc1943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56209,6 +58298,7 @@ "id": "bettertls::nameconstraints::tc1944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56236,6 +58326,7 @@ "id": "bettertls::nameconstraints::tc1945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56263,6 +58354,7 @@ "id": "bettertls::nameconstraints::tc1946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56290,6 +58382,7 @@ "id": "bettertls::nameconstraints::tc1947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56317,6 +58410,7 @@ "id": "bettertls::nameconstraints::tc1948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56344,6 +58438,7 @@ "id": "bettertls::nameconstraints::tc1949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56371,6 +58466,7 @@ "id": "bettertls::nameconstraints::tc1950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56398,6 +58494,7 @@ "id": "bettertls::nameconstraints::tc1951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56425,6 +58522,7 @@ "id": "bettertls::nameconstraints::tc1952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56452,6 +58550,7 @@ "id": "bettertls::nameconstraints::tc1953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56479,6 +58578,7 @@ "id": "bettertls::nameconstraints::tc1954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56506,6 +58606,7 @@ "id": "bettertls::nameconstraints::tc1955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56533,6 +58634,7 @@ "id": "bettertls::nameconstraints::tc1956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56560,6 +58662,7 @@ "id": "bettertls::nameconstraints::tc1957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56587,6 +58690,7 @@ "id": "bettertls::nameconstraints::tc1958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56614,6 +58718,7 @@ "id": "bettertls::nameconstraints::tc1959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56641,6 +58746,7 @@ "id": "bettertls::nameconstraints::tc1960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56668,6 +58774,7 @@ "id": "bettertls::nameconstraints::tc1961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56695,6 +58802,7 @@ "id": "bettertls::nameconstraints::tc1962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56722,6 +58830,7 @@ "id": "bettertls::nameconstraints::tc1963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56749,6 +58858,7 @@ "id": "bettertls::nameconstraints::tc1964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56776,6 +58886,7 @@ "id": "bettertls::nameconstraints::tc1965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56803,6 +58914,7 @@ "id": "bettertls::nameconstraints::tc1966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56830,6 +58942,7 @@ "id": "bettertls::nameconstraints::tc1967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56857,6 +58970,7 @@ "id": "bettertls::nameconstraints::tc1968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56884,6 +58998,7 @@ "id": "bettertls::nameconstraints::tc1969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56911,6 +59026,7 @@ "id": "bettertls::nameconstraints::tc1970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56938,6 +59054,7 @@ "id": "bettertls::nameconstraints::tc1971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56965,6 +59082,7 @@ "id": "bettertls::nameconstraints::tc1972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -56992,6 +59110,7 @@ "id": "bettertls::nameconstraints::tc1973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57019,6 +59138,7 @@ "id": "bettertls::nameconstraints::tc1974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57046,6 +59166,7 @@ "id": "bettertls::nameconstraints::tc1975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57073,6 +59194,7 @@ "id": "bettertls::nameconstraints::tc1976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57100,6 +59222,7 @@ "id": "bettertls::nameconstraints::tc1977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57127,6 +59250,7 @@ "id": "bettertls::nameconstraints::tc1978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57154,6 +59278,7 @@ "id": "bettertls::nameconstraints::tc1979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57181,6 +59306,7 @@ "id": "bettertls::nameconstraints::tc1980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57208,6 +59334,7 @@ "id": "bettertls::nameconstraints::tc1981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57235,6 +59362,7 @@ "id": "bettertls::nameconstraints::tc1982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57262,6 +59390,7 @@ "id": "bettertls::nameconstraints::tc1983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57289,6 +59418,7 @@ "id": "bettertls::nameconstraints::tc1984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57316,6 +59446,7 @@ "id": "bettertls::nameconstraints::tc1985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57343,6 +59474,7 @@ "id": "bettertls::nameconstraints::tc1986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57370,6 +59502,7 @@ "id": "bettertls::nameconstraints::tc1987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57397,6 +59530,7 @@ "id": "bettertls::nameconstraints::tc1988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57424,6 +59558,7 @@ "id": "bettertls::nameconstraints::tc1989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57451,6 +59586,7 @@ "id": "bettertls::nameconstraints::tc1990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57478,6 +59614,7 @@ "id": "bettertls::nameconstraints::tc1991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57505,6 +59642,7 @@ "id": "bettertls::nameconstraints::tc1992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57532,6 +59670,7 @@ "id": "bettertls::nameconstraints::tc1993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57559,6 +59698,7 @@ "id": "bettertls::nameconstraints::tc1994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57586,6 +59726,7 @@ "id": "bettertls::nameconstraints::tc1995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57613,6 +59754,7 @@ "id": "bettertls::nameconstraints::tc1996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57640,6 +59782,7 @@ "id": "bettertls::nameconstraints::tc1997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57667,6 +59810,7 @@ "id": "bettertls::nameconstraints::tc1998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57694,6 +59838,7 @@ "id": "bettertls::nameconstraints::tc1999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57721,6 +59866,7 @@ "id": "bettertls::nameconstraints::tc2000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57748,6 +59894,7 @@ "id": "bettertls::nameconstraints::tc2001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57775,6 +59922,7 @@ "id": "bettertls::nameconstraints::tc2002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57802,6 +59950,7 @@ "id": "bettertls::nameconstraints::tc2003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57829,6 +59978,7 @@ "id": "bettertls::nameconstraints::tc2004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57856,6 +60006,7 @@ "id": "bettertls::nameconstraints::tc2005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57883,6 +60034,7 @@ "id": "bettertls::nameconstraints::tc2006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57910,6 +60062,7 @@ "id": "bettertls::nameconstraints::tc2007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57937,6 +60090,7 @@ "id": "bettertls::nameconstraints::tc2008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57964,6 +60118,7 @@ "id": "bettertls::nameconstraints::tc2009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -57991,6 +60146,7 @@ "id": "bettertls::nameconstraints::tc2010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58018,6 +60174,7 @@ "id": "bettertls::nameconstraints::tc2011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58045,6 +60202,7 @@ "id": "bettertls::nameconstraints::tc2012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58072,6 +60230,7 @@ "id": "bettertls::nameconstraints::tc2013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58099,6 +60258,7 @@ "id": "bettertls::nameconstraints::tc2014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58126,6 +60286,7 @@ "id": "bettertls::nameconstraints::tc2015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58153,6 +60314,7 @@ "id": "bettertls::nameconstraints::tc2016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58180,6 +60342,7 @@ "id": "bettertls::nameconstraints::tc2017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58207,6 +60370,7 @@ "id": "bettertls::nameconstraints::tc2018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58234,6 +60398,7 @@ "id": "bettertls::nameconstraints::tc2019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58261,6 +60426,7 @@ "id": "bettertls::nameconstraints::tc2020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58288,6 +60454,7 @@ "id": "bettertls::nameconstraints::tc2021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58315,6 +60482,7 @@ "id": "bettertls::nameconstraints::tc2022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58342,6 +60510,7 @@ "id": "bettertls::nameconstraints::tc2023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58369,6 +60538,7 @@ "id": "bettertls::nameconstraints::tc2024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58396,6 +60566,7 @@ "id": "bettertls::nameconstraints::tc2025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58423,6 +60594,7 @@ "id": "bettertls::nameconstraints::tc2026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58450,6 +60622,7 @@ "id": "bettertls::nameconstraints::tc2027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58477,6 +60650,7 @@ "id": "bettertls::nameconstraints::tc2028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58504,6 +60678,7 @@ "id": "bettertls::nameconstraints::tc2029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58531,6 +60706,7 @@ "id": "bettertls::nameconstraints::tc2030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58558,6 +60734,7 @@ "id": "bettertls::nameconstraints::tc2031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58585,6 +60762,7 @@ "id": "bettertls::nameconstraints::tc2032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58612,6 +60790,7 @@ "id": "bettertls::nameconstraints::tc2033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58639,6 +60818,7 @@ "id": "bettertls::nameconstraints::tc2034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58666,6 +60846,7 @@ "id": "bettertls::nameconstraints::tc2035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58693,6 +60874,7 @@ "id": "bettertls::nameconstraints::tc2036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58720,6 +60902,7 @@ "id": "bettertls::nameconstraints::tc2037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58747,6 +60930,7 @@ "id": "bettertls::nameconstraints::tc2038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58774,6 +60958,7 @@ "id": "bettertls::nameconstraints::tc2039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58801,6 +60986,7 @@ "id": "bettertls::nameconstraints::tc2040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58828,6 +61014,7 @@ "id": "bettertls::nameconstraints::tc2041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58855,6 +61042,7 @@ "id": "bettertls::nameconstraints::tc2042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58882,6 +61070,7 @@ "id": "bettertls::nameconstraints::tc2043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58909,6 +61098,7 @@ "id": "bettertls::nameconstraints::tc2044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58936,6 +61126,7 @@ "id": "bettertls::nameconstraints::tc2045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58963,6 +61154,7 @@ "id": "bettertls::nameconstraints::tc2046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -58990,6 +61182,7 @@ "id": "bettertls::nameconstraints::tc2047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59017,6 +61210,7 @@ "id": "bettertls::nameconstraints::tc2048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59044,6 +61238,7 @@ "id": "bettertls::nameconstraints::tc2049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59071,6 +61266,7 @@ "id": "bettertls::nameconstraints::tc2050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59098,6 +61294,7 @@ "id": "bettertls::nameconstraints::tc2051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59125,6 +61322,7 @@ "id": "bettertls::nameconstraints::tc2052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59152,6 +61350,7 @@ "id": "bettertls::nameconstraints::tc2053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59179,6 +61378,7 @@ "id": "bettertls::nameconstraints::tc2054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59206,6 +61406,7 @@ "id": "bettertls::nameconstraints::tc2055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59233,6 +61434,7 @@ "id": "bettertls::nameconstraints::tc2056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59260,6 +61462,7 @@ "id": "bettertls::nameconstraints::tc2057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59287,6 +61490,7 @@ "id": "bettertls::nameconstraints::tc2058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59314,6 +61518,7 @@ "id": "bettertls::nameconstraints::tc2059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59341,6 +61546,7 @@ "id": "bettertls::nameconstraints::tc2060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59368,6 +61574,7 @@ "id": "bettertls::nameconstraints::tc2061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59395,6 +61602,7 @@ "id": "bettertls::nameconstraints::tc2062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59422,6 +61630,7 @@ "id": "bettertls::nameconstraints::tc2063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59449,6 +61658,7 @@ "id": "bettertls::nameconstraints::tc2064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59476,6 +61686,7 @@ "id": "bettertls::nameconstraints::tc2065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59503,6 +61714,7 @@ "id": "bettertls::nameconstraints::tc2066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59530,6 +61742,7 @@ "id": "bettertls::nameconstraints::tc2067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59557,6 +61770,7 @@ "id": "bettertls::nameconstraints::tc2068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59584,6 +61798,7 @@ "id": "bettertls::nameconstraints::tc2069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59611,6 +61826,7 @@ "id": "bettertls::nameconstraints::tc2070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59638,6 +61854,7 @@ "id": "bettertls::nameconstraints::tc2071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59665,6 +61882,7 @@ "id": "bettertls::nameconstraints::tc2072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59692,6 +61910,7 @@ "id": "bettertls::nameconstraints::tc2073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59719,6 +61938,7 @@ "id": "bettertls::nameconstraints::tc2074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59746,6 +61966,7 @@ "id": "bettertls::nameconstraints::tc2075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59773,6 +61994,7 @@ "id": "bettertls::nameconstraints::tc2076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59800,6 +62022,7 @@ "id": "bettertls::nameconstraints::tc2077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59827,6 +62050,7 @@ "id": "bettertls::nameconstraints::tc2078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59854,6 +62078,7 @@ "id": "bettertls::nameconstraints::tc2079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59881,6 +62106,7 @@ "id": "bettertls::nameconstraints::tc2080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59908,6 +62134,7 @@ "id": "bettertls::nameconstraints::tc2081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59935,6 +62162,7 @@ "id": "bettertls::nameconstraints::tc2082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59962,6 +62190,7 @@ "id": "bettertls::nameconstraints::tc2083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -59989,6 +62218,7 @@ "id": "bettertls::nameconstraints::tc2084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60016,6 +62246,7 @@ "id": "bettertls::nameconstraints::tc2085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60043,6 +62274,7 @@ "id": "bettertls::nameconstraints::tc2086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60070,6 +62302,7 @@ "id": "bettertls::nameconstraints::tc2087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60097,6 +62330,7 @@ "id": "bettertls::nameconstraints::tc2088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60124,6 +62358,7 @@ "id": "bettertls::nameconstraints::tc2089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60151,6 +62386,7 @@ "id": "bettertls::nameconstraints::tc2090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60178,6 +62414,7 @@ "id": "bettertls::nameconstraints::tc2091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60205,6 +62442,7 @@ "id": "bettertls::nameconstraints::tc2092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60232,6 +62470,7 @@ "id": "bettertls::nameconstraints::tc2093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60259,6 +62498,7 @@ "id": "bettertls::nameconstraints::tc2094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60286,6 +62526,7 @@ "id": "bettertls::nameconstraints::tc2095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60313,6 +62554,7 @@ "id": "bettertls::nameconstraints::tc2096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60340,6 +62582,7 @@ "id": "bettertls::nameconstraints::tc2097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60367,6 +62610,7 @@ "id": "bettertls::nameconstraints::tc2098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60394,6 +62638,7 @@ "id": "bettertls::nameconstraints::tc2099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60421,6 +62666,7 @@ "id": "bettertls::nameconstraints::tc2100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60448,6 +62694,7 @@ "id": "bettertls::nameconstraints::tc2101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60475,6 +62722,7 @@ "id": "bettertls::nameconstraints::tc2102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60502,6 +62750,7 @@ "id": "bettertls::nameconstraints::tc2103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60529,6 +62778,7 @@ "id": "bettertls::nameconstraints::tc2104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60556,6 +62806,7 @@ "id": "bettertls::nameconstraints::tc2105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60583,6 +62834,7 @@ "id": "bettertls::nameconstraints::tc2106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60610,6 +62862,7 @@ "id": "bettertls::nameconstraints::tc2107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60637,6 +62890,7 @@ "id": "bettertls::nameconstraints::tc2108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60664,6 +62918,7 @@ "id": "bettertls::nameconstraints::tc2109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60691,6 +62946,7 @@ "id": "bettertls::nameconstraints::tc2110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60718,6 +62974,7 @@ "id": "bettertls::nameconstraints::tc2111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60745,6 +63002,7 @@ "id": "bettertls::nameconstraints::tc2112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60772,6 +63030,7 @@ "id": "bettertls::nameconstraints::tc2113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60799,6 +63058,7 @@ "id": "bettertls::nameconstraints::tc2114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60826,6 +63086,7 @@ "id": "bettertls::nameconstraints::tc2115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60853,6 +63114,7 @@ "id": "bettertls::nameconstraints::tc2116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60880,6 +63142,7 @@ "id": "bettertls::nameconstraints::tc2117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60907,6 +63170,7 @@ "id": "bettertls::nameconstraints::tc2118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60934,6 +63198,7 @@ "id": "bettertls::nameconstraints::tc2119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60961,6 +63226,7 @@ "id": "bettertls::nameconstraints::tc2120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -60988,6 +63254,7 @@ "id": "bettertls::nameconstraints::tc2121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61015,6 +63282,7 @@ "id": "bettertls::nameconstraints::tc2122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61042,6 +63310,7 @@ "id": "bettertls::nameconstraints::tc2123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61069,6 +63338,7 @@ "id": "bettertls::nameconstraints::tc2124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61096,6 +63366,7 @@ "id": "bettertls::nameconstraints::tc2125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61123,6 +63394,7 @@ "id": "bettertls::nameconstraints::tc2126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61150,6 +63422,7 @@ "id": "bettertls::nameconstraints::tc2127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61177,6 +63450,7 @@ "id": "bettertls::nameconstraints::tc2128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61204,6 +63478,7 @@ "id": "bettertls::nameconstraints::tc2129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61231,6 +63506,7 @@ "id": "bettertls::nameconstraints::tc2130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61258,6 +63534,7 @@ "id": "bettertls::nameconstraints::tc2131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61285,6 +63562,7 @@ "id": "bettertls::nameconstraints::tc2132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61312,6 +63590,7 @@ "id": "bettertls::nameconstraints::tc2133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61339,6 +63618,7 @@ "id": "bettertls::nameconstraints::tc2134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61366,6 +63646,7 @@ "id": "bettertls::nameconstraints::tc2135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61393,6 +63674,7 @@ "id": "bettertls::nameconstraints::tc2136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61420,6 +63702,7 @@ "id": "bettertls::nameconstraints::tc2137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61447,6 +63730,7 @@ "id": "bettertls::nameconstraints::tc2138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61474,6 +63758,7 @@ "id": "bettertls::nameconstraints::tc2139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61501,6 +63786,7 @@ "id": "bettertls::nameconstraints::tc2140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61528,6 +63814,7 @@ "id": "bettertls::nameconstraints::tc2141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61555,6 +63842,7 @@ "id": "bettertls::nameconstraints::tc2142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61582,6 +63870,7 @@ "id": "bettertls::nameconstraints::tc2143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61609,6 +63898,7 @@ "id": "bettertls::nameconstraints::tc2144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61636,6 +63926,7 @@ "id": "bettertls::nameconstraints::tc2145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61663,6 +63954,7 @@ "id": "bettertls::nameconstraints::tc2146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61690,6 +63982,7 @@ "id": "bettertls::nameconstraints::tc2147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61717,6 +64010,7 @@ "id": "bettertls::nameconstraints::tc2148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61744,6 +64038,7 @@ "id": "bettertls::nameconstraints::tc2149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61771,6 +64066,7 @@ "id": "bettertls::nameconstraints::tc2150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61798,6 +64094,7 @@ "id": "bettertls::nameconstraints::tc2151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61825,6 +64122,7 @@ "id": "bettertls::nameconstraints::tc2152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61852,6 +64150,7 @@ "id": "bettertls::nameconstraints::tc2153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61879,6 +64178,7 @@ "id": "bettertls::nameconstraints::tc2154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61906,6 +64206,7 @@ "id": "bettertls::nameconstraints::tc2155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61933,6 +64234,7 @@ "id": "bettertls::nameconstraints::tc2156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61960,6 +64262,7 @@ "id": "bettertls::nameconstraints::tc2157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -61987,6 +64290,7 @@ "id": "bettertls::nameconstraints::tc2158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62014,6 +64318,7 @@ "id": "bettertls::nameconstraints::tc2159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62041,6 +64346,7 @@ "id": "bettertls::nameconstraints::tc2160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62068,6 +64374,7 @@ "id": "bettertls::nameconstraints::tc2161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62095,6 +64402,7 @@ "id": "bettertls::nameconstraints::tc2162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62122,6 +64430,7 @@ "id": "bettertls::nameconstraints::tc2163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62149,6 +64458,7 @@ "id": "bettertls::nameconstraints::tc2164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62176,6 +64486,7 @@ "id": "bettertls::nameconstraints::tc2165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62203,6 +64514,7 @@ "id": "bettertls::nameconstraints::tc2166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62230,6 +64542,7 @@ "id": "bettertls::nameconstraints::tc2167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62257,6 +64570,7 @@ "id": "bettertls::nameconstraints::tc2168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62284,6 +64598,7 @@ "id": "bettertls::nameconstraints::tc2169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62311,6 +64626,7 @@ "id": "bettertls::nameconstraints::tc2170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62338,6 +64654,7 @@ "id": "bettertls::nameconstraints::tc2171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62365,6 +64682,7 @@ "id": "bettertls::nameconstraints::tc2172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62392,6 +64710,7 @@ "id": "bettertls::nameconstraints::tc2173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62419,6 +64738,7 @@ "id": "bettertls::nameconstraints::tc2174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62446,6 +64766,7 @@ "id": "bettertls::nameconstraints::tc2175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62473,6 +64794,7 @@ "id": "bettertls::nameconstraints::tc2176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62500,6 +64822,7 @@ "id": "bettertls::nameconstraints::tc2177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62527,6 +64850,7 @@ "id": "bettertls::nameconstraints::tc2178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62554,6 +64878,7 @@ "id": "bettertls::nameconstraints::tc2179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62581,6 +64906,7 @@ "id": "bettertls::nameconstraints::tc2180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62608,6 +64934,7 @@ "id": "bettertls::nameconstraints::tc2181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62635,6 +64962,7 @@ "id": "bettertls::nameconstraints::tc2182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62662,6 +64990,7 @@ "id": "bettertls::nameconstraints::tc2183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62689,6 +65018,7 @@ "id": "bettertls::nameconstraints::tc2184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62716,6 +65046,7 @@ "id": "bettertls::nameconstraints::tc2185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62743,6 +65074,7 @@ "id": "bettertls::nameconstraints::tc2186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62770,6 +65102,7 @@ "id": "bettertls::nameconstraints::tc2187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62797,6 +65130,7 @@ "id": "bettertls::nameconstraints::tc2188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62824,6 +65158,7 @@ "id": "bettertls::nameconstraints::tc2189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62851,6 +65186,7 @@ "id": "bettertls::nameconstraints::tc2190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62878,6 +65214,7 @@ "id": "bettertls::nameconstraints::tc2191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62905,6 +65242,7 @@ "id": "bettertls::nameconstraints::tc2192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62932,6 +65270,7 @@ "id": "bettertls::nameconstraints::tc2193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62959,6 +65298,7 @@ "id": "bettertls::nameconstraints::tc2194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -62986,6 +65326,7 @@ "id": "bettertls::nameconstraints::tc2195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63013,6 +65354,7 @@ "id": "bettertls::nameconstraints::tc2196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63040,6 +65382,7 @@ "id": "bettertls::nameconstraints::tc2197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63067,6 +65410,7 @@ "id": "bettertls::nameconstraints::tc2198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63094,6 +65438,7 @@ "id": "bettertls::nameconstraints::tc2199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63121,6 +65466,7 @@ "id": "bettertls::nameconstraints::tc2200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63148,6 +65494,7 @@ "id": "bettertls::nameconstraints::tc2201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63175,6 +65522,7 @@ "id": "bettertls::nameconstraints::tc2202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63202,6 +65550,7 @@ "id": "bettertls::nameconstraints::tc2203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63229,6 +65578,7 @@ "id": "bettertls::nameconstraints::tc2204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63256,6 +65606,7 @@ "id": "bettertls::nameconstraints::tc2205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63283,6 +65634,7 @@ "id": "bettertls::nameconstraints::tc2206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63310,6 +65662,7 @@ "id": "bettertls::nameconstraints::tc2207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63337,6 +65690,7 @@ "id": "bettertls::nameconstraints::tc2208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63364,6 +65718,7 @@ "id": "bettertls::nameconstraints::tc2209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63391,6 +65746,7 @@ "id": "bettertls::nameconstraints::tc2210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63418,6 +65774,7 @@ "id": "bettertls::nameconstraints::tc2211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63445,6 +65802,7 @@ "id": "bettertls::nameconstraints::tc2212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63472,6 +65830,7 @@ "id": "bettertls::nameconstraints::tc2213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63499,6 +65858,7 @@ "id": "bettertls::nameconstraints::tc2214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63526,6 +65886,7 @@ "id": "bettertls::nameconstraints::tc2215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63553,6 +65914,7 @@ "id": "bettertls::nameconstraints::tc2216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63580,6 +65942,7 @@ "id": "bettertls::nameconstraints::tc2217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63607,6 +65970,7 @@ "id": "bettertls::nameconstraints::tc2218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63634,6 +65998,7 @@ "id": "bettertls::nameconstraints::tc2219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63661,6 +66026,7 @@ "id": "bettertls::nameconstraints::tc2220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63688,6 +66054,7 @@ "id": "bettertls::nameconstraints::tc2221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63715,6 +66082,7 @@ "id": "bettertls::nameconstraints::tc2222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63742,6 +66110,7 @@ "id": "bettertls::nameconstraints::tc2223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63769,6 +66138,7 @@ "id": "bettertls::nameconstraints::tc2224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63796,6 +66166,7 @@ "id": "bettertls::nameconstraints::tc2225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63823,6 +66194,7 @@ "id": "bettertls::nameconstraints::tc2226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63850,6 +66222,7 @@ "id": "bettertls::nameconstraints::tc2227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63877,6 +66250,7 @@ "id": "bettertls::nameconstraints::tc2228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63904,6 +66278,7 @@ "id": "bettertls::nameconstraints::tc2229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63931,6 +66306,7 @@ "id": "bettertls::nameconstraints::tc2230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63958,6 +66334,7 @@ "id": "bettertls::nameconstraints::tc2231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -63985,6 +66362,7 @@ "id": "bettertls::nameconstraints::tc2232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64012,6 +66390,7 @@ "id": "bettertls::nameconstraints::tc2233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64039,6 +66418,7 @@ "id": "bettertls::nameconstraints::tc2234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64066,6 +66446,7 @@ "id": "bettertls::nameconstraints::tc2235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64093,6 +66474,7 @@ "id": "bettertls::nameconstraints::tc2236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64120,6 +66502,7 @@ "id": "bettertls::nameconstraints::tc2237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64147,6 +66530,7 @@ "id": "bettertls::nameconstraints::tc2238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64174,6 +66558,7 @@ "id": "bettertls::nameconstraints::tc2239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64201,6 +66586,7 @@ "id": "bettertls::nameconstraints::tc2240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64228,6 +66614,7 @@ "id": "bettertls::nameconstraints::tc2241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64255,6 +66642,7 @@ "id": "bettertls::nameconstraints::tc2242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64282,6 +66670,7 @@ "id": "bettertls::nameconstraints::tc2243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64309,6 +66698,7 @@ "id": "bettertls::nameconstraints::tc2244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64336,6 +66726,7 @@ "id": "bettertls::nameconstraints::tc2245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64363,6 +66754,7 @@ "id": "bettertls::nameconstraints::tc2246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64390,6 +66782,7 @@ "id": "bettertls::nameconstraints::tc2247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64417,6 +66810,7 @@ "id": "bettertls::nameconstraints::tc2248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64444,6 +66838,7 @@ "id": "bettertls::nameconstraints::tc2249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64471,6 +66866,7 @@ "id": "bettertls::nameconstraints::tc2250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64498,6 +66894,7 @@ "id": "bettertls::nameconstraints::tc2251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64525,6 +66922,7 @@ "id": "bettertls::nameconstraints::tc2252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64552,6 +66950,7 @@ "id": "bettertls::nameconstraints::tc2253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64579,6 +66978,7 @@ "id": "bettertls::nameconstraints::tc2254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64606,6 +67006,7 @@ "id": "bettertls::nameconstraints::tc2255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64633,6 +67034,7 @@ "id": "bettertls::nameconstraints::tc2256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64660,6 +67062,7 @@ "id": "bettertls::nameconstraints::tc2257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64687,6 +67090,7 @@ "id": "bettertls::nameconstraints::tc2258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64714,6 +67118,7 @@ "id": "bettertls::nameconstraints::tc2259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64741,6 +67146,7 @@ "id": "bettertls::nameconstraints::tc2260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64768,6 +67174,7 @@ "id": "bettertls::nameconstraints::tc2261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64795,6 +67202,7 @@ "id": "bettertls::nameconstraints::tc2262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64822,6 +67230,7 @@ "id": "bettertls::nameconstraints::tc2263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64849,6 +67258,7 @@ "id": "bettertls::nameconstraints::tc2264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64876,6 +67286,7 @@ "id": "bettertls::nameconstraints::tc2265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64903,6 +67314,7 @@ "id": "bettertls::nameconstraints::tc2266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64930,6 +67342,7 @@ "id": "bettertls::nameconstraints::tc2267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64957,6 +67370,7 @@ "id": "bettertls::nameconstraints::tc2268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -64984,6 +67398,7 @@ "id": "bettertls::nameconstraints::tc2269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65011,6 +67426,7 @@ "id": "bettertls::nameconstraints::tc2270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65038,6 +67454,7 @@ "id": "bettertls::nameconstraints::tc2271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65065,6 +67482,7 @@ "id": "bettertls::nameconstraints::tc2272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65092,6 +67510,7 @@ "id": "bettertls::nameconstraints::tc2273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65119,6 +67538,7 @@ "id": "bettertls::nameconstraints::tc2274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65146,6 +67566,7 @@ "id": "bettertls::nameconstraints::tc2275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65173,6 +67594,7 @@ "id": "bettertls::nameconstraints::tc2276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65200,6 +67622,7 @@ "id": "bettertls::nameconstraints::tc2277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65227,6 +67650,7 @@ "id": "bettertls::nameconstraints::tc2278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65254,6 +67678,7 @@ "id": "bettertls::nameconstraints::tc2279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65281,6 +67706,7 @@ "id": "bettertls::nameconstraints::tc2280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65308,6 +67734,7 @@ "id": "bettertls::nameconstraints::tc2281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65335,6 +67762,7 @@ "id": "bettertls::nameconstraints::tc2282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65362,6 +67790,7 @@ "id": "bettertls::nameconstraints::tc2283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65389,6 +67818,7 @@ "id": "bettertls::nameconstraints::tc2284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65416,6 +67846,7 @@ "id": "bettertls::nameconstraints::tc2285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65443,6 +67874,7 @@ "id": "bettertls::nameconstraints::tc2286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65470,6 +67902,7 @@ "id": "bettertls::nameconstraints::tc2287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65497,6 +67930,7 @@ "id": "bettertls::nameconstraints::tc2288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65524,6 +67958,7 @@ "id": "bettertls::nameconstraints::tc2289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65551,6 +67986,7 @@ "id": "bettertls::nameconstraints::tc2290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65578,6 +68014,7 @@ "id": "bettertls::nameconstraints::tc2291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65605,6 +68042,7 @@ "id": "bettertls::nameconstraints::tc2292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65632,6 +68070,7 @@ "id": "bettertls::nameconstraints::tc2293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65659,6 +68098,7 @@ "id": "bettertls::nameconstraints::tc2294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65686,6 +68126,7 @@ "id": "bettertls::nameconstraints::tc2295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65713,6 +68154,7 @@ "id": "bettertls::nameconstraints::tc2296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65740,6 +68182,7 @@ "id": "bettertls::nameconstraints::tc2297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65767,6 +68210,7 @@ "id": "bettertls::nameconstraints::tc2298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65794,6 +68238,7 @@ "id": "bettertls::nameconstraints::tc2299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65821,6 +68266,7 @@ "id": "bettertls::nameconstraints::tc2300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65848,6 +68294,7 @@ "id": "bettertls::nameconstraints::tc2301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65875,6 +68322,7 @@ "id": "bettertls::nameconstraints::tc2302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65902,6 +68350,7 @@ "id": "bettertls::nameconstraints::tc2303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65929,6 +68378,7 @@ "id": "bettertls::nameconstraints::tc2304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65956,6 +68406,7 @@ "id": "bettertls::nameconstraints::tc2305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -65983,6 +68434,7 @@ "id": "bettertls::nameconstraints::tc2306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66010,6 +68462,7 @@ "id": "bettertls::nameconstraints::tc2307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66037,6 +68490,7 @@ "id": "bettertls::nameconstraints::tc2308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66064,6 +68518,7 @@ "id": "bettertls::nameconstraints::tc2309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66091,6 +68546,7 @@ "id": "bettertls::nameconstraints::tc2310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66118,6 +68574,7 @@ "id": "bettertls::nameconstraints::tc2311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66145,6 +68602,7 @@ "id": "bettertls::nameconstraints::tc2312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66172,6 +68630,7 @@ "id": "bettertls::nameconstraints::tc2313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66199,6 +68658,7 @@ "id": "bettertls::nameconstraints::tc2314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66226,6 +68686,7 @@ "id": "bettertls::nameconstraints::tc2315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66253,6 +68714,7 @@ "id": "bettertls::nameconstraints::tc2316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66280,6 +68742,7 @@ "id": "bettertls::nameconstraints::tc2317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66307,6 +68770,7 @@ "id": "bettertls::nameconstraints::tc2318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66334,6 +68798,7 @@ "id": "bettertls::nameconstraints::tc2319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66361,6 +68826,7 @@ "id": "bettertls::nameconstraints::tc2320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66388,6 +68854,7 @@ "id": "bettertls::nameconstraints::tc2321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66415,6 +68882,7 @@ "id": "bettertls::nameconstraints::tc2322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66442,6 +68910,7 @@ "id": "bettertls::nameconstraints::tc2323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66469,6 +68938,7 @@ "id": "bettertls::nameconstraints::tc2324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66496,6 +68966,7 @@ "id": "bettertls::nameconstraints::tc2325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66523,6 +68994,7 @@ "id": "bettertls::nameconstraints::tc2326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66550,6 +69022,7 @@ "id": "bettertls::nameconstraints::tc2327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66577,6 +69050,7 @@ "id": "bettertls::nameconstraints::tc2328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66604,6 +69078,7 @@ "id": "bettertls::nameconstraints::tc2329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66631,6 +69106,7 @@ "id": "bettertls::nameconstraints::tc2330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66658,6 +69134,7 @@ "id": "bettertls::nameconstraints::tc2331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66685,6 +69162,7 @@ "id": "bettertls::nameconstraints::tc2332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66712,6 +69190,7 @@ "id": "bettertls::nameconstraints::tc2333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66739,6 +69218,7 @@ "id": "bettertls::nameconstraints::tc2334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66766,6 +69246,7 @@ "id": "bettertls::nameconstraints::tc2335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66793,6 +69274,7 @@ "id": "bettertls::nameconstraints::tc2336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66820,6 +69302,7 @@ "id": "bettertls::nameconstraints::tc2337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66847,6 +69330,7 @@ "id": "bettertls::nameconstraints::tc2338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66874,6 +69358,7 @@ "id": "bettertls::nameconstraints::tc2339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66901,6 +69386,7 @@ "id": "bettertls::nameconstraints::tc2340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66928,6 +69414,7 @@ "id": "bettertls::nameconstraints::tc2341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66955,6 +69442,7 @@ "id": "bettertls::nameconstraints::tc2342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -66982,6 +69470,7 @@ "id": "bettertls::nameconstraints::tc2343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67009,6 +69498,7 @@ "id": "bettertls::nameconstraints::tc2344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67036,6 +69526,7 @@ "id": "bettertls::nameconstraints::tc2345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67063,6 +69554,7 @@ "id": "bettertls::nameconstraints::tc2346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67090,6 +69582,7 @@ "id": "bettertls::nameconstraints::tc2347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67117,6 +69610,7 @@ "id": "bettertls::nameconstraints::tc2348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67144,6 +69638,7 @@ "id": "bettertls::nameconstraints::tc2349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67171,6 +69666,7 @@ "id": "bettertls::nameconstraints::tc2350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67198,6 +69694,7 @@ "id": "bettertls::nameconstraints::tc2351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67225,6 +69722,7 @@ "id": "bettertls::nameconstraints::tc2352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67252,6 +69750,7 @@ "id": "bettertls::nameconstraints::tc2353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67279,6 +69778,7 @@ "id": "bettertls::nameconstraints::tc2354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67306,6 +69806,7 @@ "id": "bettertls::nameconstraints::tc2355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67333,6 +69834,7 @@ "id": "bettertls::nameconstraints::tc2356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67360,6 +69862,7 @@ "id": "bettertls::nameconstraints::tc2357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67387,6 +69890,7 @@ "id": "bettertls::nameconstraints::tc2358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67414,6 +69918,7 @@ "id": "bettertls::nameconstraints::tc2359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67441,6 +69946,7 @@ "id": "bettertls::nameconstraints::tc2360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67468,6 +69974,7 @@ "id": "bettertls::nameconstraints::tc2361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67495,6 +70002,7 @@ "id": "bettertls::nameconstraints::tc2362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67522,6 +70030,7 @@ "id": "bettertls::nameconstraints::tc2363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67549,6 +70058,7 @@ "id": "bettertls::nameconstraints::tc2364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67576,6 +70086,7 @@ "id": "bettertls::nameconstraints::tc2365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67603,6 +70114,7 @@ "id": "bettertls::nameconstraints::tc2366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67630,6 +70142,7 @@ "id": "bettertls::nameconstraints::tc2367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67657,6 +70170,7 @@ "id": "bettertls::nameconstraints::tc2368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67684,6 +70198,7 @@ "id": "bettertls::nameconstraints::tc2369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67711,6 +70226,7 @@ "id": "bettertls::nameconstraints::tc2370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67738,6 +70254,7 @@ "id": "bettertls::nameconstraints::tc2371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67765,6 +70282,7 @@ "id": "bettertls::nameconstraints::tc2372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67792,6 +70310,7 @@ "id": "bettertls::nameconstraints::tc2373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67819,6 +70338,7 @@ "id": "bettertls::nameconstraints::tc2374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67846,6 +70366,7 @@ "id": "bettertls::nameconstraints::tc2375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67873,6 +70394,7 @@ "id": "bettertls::nameconstraints::tc2376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67900,6 +70422,7 @@ "id": "bettertls::nameconstraints::tc2377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67927,6 +70450,7 @@ "id": "bettertls::nameconstraints::tc2378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67954,6 +70478,7 @@ "id": "bettertls::nameconstraints::tc2379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -67981,6 +70506,7 @@ "id": "bettertls::nameconstraints::tc2380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68008,6 +70534,7 @@ "id": "bettertls::nameconstraints::tc2381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68035,6 +70562,7 @@ "id": "bettertls::nameconstraints::tc2382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68062,6 +70590,7 @@ "id": "bettertls::nameconstraints::tc2383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68089,6 +70618,7 @@ "id": "bettertls::nameconstraints::tc2384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68116,6 +70646,7 @@ "id": "bettertls::nameconstraints::tc2385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68143,6 +70674,7 @@ "id": "bettertls::nameconstraints::tc2386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68170,6 +70702,7 @@ "id": "bettertls::nameconstraints::tc2387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68197,6 +70730,7 @@ "id": "bettertls::nameconstraints::tc2388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68224,6 +70758,7 @@ "id": "bettertls::nameconstraints::tc2389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68251,6 +70786,7 @@ "id": "bettertls::nameconstraints::tc2390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68278,6 +70814,7 @@ "id": "bettertls::nameconstraints::tc2391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68305,6 +70842,7 @@ "id": "bettertls::nameconstraints::tc2392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68332,6 +70870,7 @@ "id": "bettertls::nameconstraints::tc2393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68359,6 +70898,7 @@ "id": "bettertls::nameconstraints::tc2394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68386,6 +70926,7 @@ "id": "bettertls::nameconstraints::tc2395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68413,6 +70954,7 @@ "id": "bettertls::nameconstraints::tc2396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68440,6 +70982,7 @@ "id": "bettertls::nameconstraints::tc2397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68467,6 +71010,7 @@ "id": "bettertls::nameconstraints::tc2398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68494,6 +71038,7 @@ "id": "bettertls::nameconstraints::tc2399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68521,6 +71066,7 @@ "id": "bettertls::nameconstraints::tc2400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68548,6 +71094,7 @@ "id": "bettertls::nameconstraints::tc2401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68575,6 +71122,7 @@ "id": "bettertls::nameconstraints::tc2402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68602,6 +71150,7 @@ "id": "bettertls::nameconstraints::tc2403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68629,6 +71178,7 @@ "id": "bettertls::nameconstraints::tc2404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68656,6 +71206,7 @@ "id": "bettertls::nameconstraints::tc2405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68683,6 +71234,7 @@ "id": "bettertls::nameconstraints::tc2406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68710,6 +71262,7 @@ "id": "bettertls::nameconstraints::tc2407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68737,6 +71290,7 @@ "id": "bettertls::nameconstraints::tc2408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68764,6 +71318,7 @@ "id": "bettertls::nameconstraints::tc2409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68791,6 +71346,7 @@ "id": "bettertls::nameconstraints::tc2410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68818,6 +71374,7 @@ "id": "bettertls::nameconstraints::tc2411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68845,6 +71402,7 @@ "id": "bettertls::nameconstraints::tc2412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68872,6 +71430,7 @@ "id": "bettertls::nameconstraints::tc2413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68899,6 +71458,7 @@ "id": "bettertls::nameconstraints::tc2414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68926,6 +71486,7 @@ "id": "bettertls::nameconstraints::tc2415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68953,6 +71514,7 @@ "id": "bettertls::nameconstraints::tc2416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -68980,6 +71542,7 @@ "id": "bettertls::nameconstraints::tc2417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69007,6 +71570,7 @@ "id": "bettertls::nameconstraints::tc2418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69034,6 +71598,7 @@ "id": "bettertls::nameconstraints::tc2419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69061,6 +71626,7 @@ "id": "bettertls::nameconstraints::tc2420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69088,6 +71654,7 @@ "id": "bettertls::nameconstraints::tc2421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69115,6 +71682,7 @@ "id": "bettertls::nameconstraints::tc2422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69142,6 +71710,7 @@ "id": "bettertls::nameconstraints::tc2423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69169,6 +71738,7 @@ "id": "bettertls::nameconstraints::tc2424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69196,6 +71766,7 @@ "id": "bettertls::nameconstraints::tc2425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69223,6 +71794,7 @@ "id": "bettertls::nameconstraints::tc2426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69250,6 +71822,7 @@ "id": "bettertls::nameconstraints::tc2427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69277,6 +71850,7 @@ "id": "bettertls::nameconstraints::tc2428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69304,6 +71878,7 @@ "id": "bettertls::nameconstraints::tc2429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69331,6 +71906,7 @@ "id": "bettertls::nameconstraints::tc2430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69358,6 +71934,7 @@ "id": "bettertls::nameconstraints::tc2431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69385,6 +71962,7 @@ "id": "bettertls::nameconstraints::tc2432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69412,6 +71990,7 @@ "id": "bettertls::nameconstraints::tc2433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69439,6 +72018,7 @@ "id": "bettertls::nameconstraints::tc2434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69466,6 +72046,7 @@ "id": "bettertls::nameconstraints::tc2435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69493,6 +72074,7 @@ "id": "bettertls::nameconstraints::tc2436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69520,6 +72102,7 @@ "id": "bettertls::nameconstraints::tc2437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69547,6 +72130,7 @@ "id": "bettertls::nameconstraints::tc2438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69574,6 +72158,7 @@ "id": "bettertls::nameconstraints::tc2439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69601,6 +72186,7 @@ "id": "bettertls::nameconstraints::tc2440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69628,6 +72214,7 @@ "id": "bettertls::nameconstraints::tc2441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69655,6 +72242,7 @@ "id": "bettertls::nameconstraints::tc2442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69682,6 +72270,7 @@ "id": "bettertls::nameconstraints::tc2443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69709,6 +72298,7 @@ "id": "bettertls::nameconstraints::tc2444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69736,6 +72326,7 @@ "id": "bettertls::nameconstraints::tc2445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69763,6 +72354,7 @@ "id": "bettertls::nameconstraints::tc2446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69790,6 +72382,7 @@ "id": "bettertls::nameconstraints::tc2447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69817,6 +72410,7 @@ "id": "bettertls::nameconstraints::tc2448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69844,6 +72438,7 @@ "id": "bettertls::nameconstraints::tc2449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69871,6 +72466,7 @@ "id": "bettertls::nameconstraints::tc2450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69898,6 +72494,7 @@ "id": "bettertls::nameconstraints::tc2451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69925,6 +72522,7 @@ "id": "bettertls::nameconstraints::tc2452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69952,6 +72550,7 @@ "id": "bettertls::nameconstraints::tc2453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -69979,6 +72578,7 @@ "id": "bettertls::nameconstraints::tc2454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70006,6 +72606,7 @@ "id": "bettertls::nameconstraints::tc2455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70033,6 +72634,7 @@ "id": "bettertls::nameconstraints::tc2456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70060,6 +72662,7 @@ "id": "bettertls::nameconstraints::tc2457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70087,6 +72690,7 @@ "id": "bettertls::nameconstraints::tc2458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70114,6 +72718,7 @@ "id": "bettertls::nameconstraints::tc2459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70141,6 +72746,7 @@ "id": "bettertls::nameconstraints::tc2460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70168,6 +72774,7 @@ "id": "bettertls::nameconstraints::tc2461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70195,6 +72802,7 @@ "id": "bettertls::nameconstraints::tc2462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70222,6 +72830,7 @@ "id": "bettertls::nameconstraints::tc2463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70249,6 +72858,7 @@ "id": "bettertls::nameconstraints::tc2464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70276,6 +72886,7 @@ "id": "bettertls::nameconstraints::tc2465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70303,6 +72914,7 @@ "id": "bettertls::nameconstraints::tc2466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70330,6 +72942,7 @@ "id": "bettertls::nameconstraints::tc2467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70357,6 +72970,7 @@ "id": "bettertls::nameconstraints::tc2468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70384,6 +72998,7 @@ "id": "bettertls::nameconstraints::tc2469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70411,6 +73026,7 @@ "id": "bettertls::nameconstraints::tc2470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70438,6 +73054,7 @@ "id": "bettertls::nameconstraints::tc2471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70465,6 +73082,7 @@ "id": "bettertls::nameconstraints::tc2472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70492,6 +73110,7 @@ "id": "bettertls::nameconstraints::tc2473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70519,6 +73138,7 @@ "id": "bettertls::nameconstraints::tc2474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70546,6 +73166,7 @@ "id": "bettertls::nameconstraints::tc2475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70573,6 +73194,7 @@ "id": "bettertls::nameconstraints::tc2476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70600,6 +73222,7 @@ "id": "bettertls::nameconstraints::tc2477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70627,6 +73250,7 @@ "id": "bettertls::nameconstraints::tc2478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70654,6 +73278,7 @@ "id": "bettertls::nameconstraints::tc2479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70681,6 +73306,7 @@ "id": "bettertls::nameconstraints::tc2480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70708,6 +73334,7 @@ "id": "bettertls::nameconstraints::tc2481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70735,6 +73362,7 @@ "id": "bettertls::nameconstraints::tc2482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70762,6 +73390,7 @@ "id": "bettertls::nameconstraints::tc2483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70789,6 +73418,7 @@ "id": "bettertls::nameconstraints::tc2484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70816,6 +73446,7 @@ "id": "bettertls::nameconstraints::tc2485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70843,6 +73474,7 @@ "id": "bettertls::nameconstraints::tc2486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70870,6 +73502,7 @@ "id": "bettertls::nameconstraints::tc2487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70897,6 +73530,7 @@ "id": "bettertls::nameconstraints::tc2488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70924,6 +73558,7 @@ "id": "bettertls::nameconstraints::tc2489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70951,6 +73586,7 @@ "id": "bettertls::nameconstraints::tc2490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -70978,6 +73614,7 @@ "id": "bettertls::nameconstraints::tc2491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71005,6 +73642,7 @@ "id": "bettertls::nameconstraints::tc2492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71032,6 +73670,7 @@ "id": "bettertls::nameconstraints::tc2493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71059,6 +73698,7 @@ "id": "bettertls::nameconstraints::tc2494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71086,6 +73726,7 @@ "id": "bettertls::nameconstraints::tc2495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71113,6 +73754,7 @@ "id": "bettertls::nameconstraints::tc2496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71140,6 +73782,7 @@ "id": "bettertls::nameconstraints::tc2497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71167,6 +73810,7 @@ "id": "bettertls::nameconstraints::tc2498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71194,6 +73838,7 @@ "id": "bettertls::nameconstraints::tc2499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71221,6 +73866,7 @@ "id": "bettertls::nameconstraints::tc2500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71248,6 +73894,7 @@ "id": "bettertls::nameconstraints::tc2501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71275,6 +73922,7 @@ "id": "bettertls::nameconstraints::tc2502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71302,6 +73950,7 @@ "id": "bettertls::nameconstraints::tc2503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71329,6 +73978,7 @@ "id": "bettertls::nameconstraints::tc2504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71356,6 +74006,7 @@ "id": "bettertls::nameconstraints::tc2505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71383,6 +74034,7 @@ "id": "bettertls::nameconstraints::tc2506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71410,6 +74062,7 @@ "id": "bettertls::nameconstraints::tc2507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71437,6 +74090,7 @@ "id": "bettertls::nameconstraints::tc2508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71464,6 +74118,7 @@ "id": "bettertls::nameconstraints::tc2509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71491,6 +74146,7 @@ "id": "bettertls::nameconstraints::tc2510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71518,6 +74174,7 @@ "id": "bettertls::nameconstraints::tc2511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71545,6 +74202,7 @@ "id": "bettertls::nameconstraints::tc2512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71572,6 +74230,7 @@ "id": "bettertls::nameconstraints::tc2513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71599,6 +74258,7 @@ "id": "bettertls::nameconstraints::tc2514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71626,6 +74286,7 @@ "id": "bettertls::nameconstraints::tc2515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71653,6 +74314,7 @@ "id": "bettertls::nameconstraints::tc2516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71680,6 +74342,7 @@ "id": "bettertls::nameconstraints::tc2517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71707,6 +74370,7 @@ "id": "bettertls::nameconstraints::tc2518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71734,6 +74398,7 @@ "id": "bettertls::nameconstraints::tc2519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71761,6 +74426,7 @@ "id": "bettertls::nameconstraints::tc2520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71788,6 +74454,7 @@ "id": "bettertls::nameconstraints::tc2521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71815,6 +74482,7 @@ "id": "bettertls::nameconstraints::tc2522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71842,6 +74510,7 @@ "id": "bettertls::nameconstraints::tc2523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71869,6 +74538,7 @@ "id": "bettertls::nameconstraints::tc2524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71896,6 +74566,7 @@ "id": "bettertls::nameconstraints::tc2525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71923,6 +74594,7 @@ "id": "bettertls::nameconstraints::tc2526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71950,6 +74622,7 @@ "id": "bettertls::nameconstraints::tc2527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -71977,6 +74650,7 @@ "id": "bettertls::nameconstraints::tc2528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72004,6 +74678,7 @@ "id": "bettertls::nameconstraints::tc2529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72031,6 +74706,7 @@ "id": "bettertls::nameconstraints::tc2530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72058,6 +74734,7 @@ "id": "bettertls::nameconstraints::tc2531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72085,6 +74762,7 @@ "id": "bettertls::nameconstraints::tc2532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72112,6 +74790,7 @@ "id": "bettertls::nameconstraints::tc2533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72139,6 +74818,7 @@ "id": "bettertls::nameconstraints::tc2534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72166,6 +74846,7 @@ "id": "bettertls::nameconstraints::tc2535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72193,6 +74874,7 @@ "id": "bettertls::nameconstraints::tc2536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72220,6 +74902,7 @@ "id": "bettertls::nameconstraints::tc2537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72247,6 +74930,7 @@ "id": "bettertls::nameconstraints::tc2538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72274,6 +74958,7 @@ "id": "bettertls::nameconstraints::tc2539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72301,6 +74986,7 @@ "id": "bettertls::nameconstraints::tc2540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72328,6 +75014,7 @@ "id": "bettertls::nameconstraints::tc2541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72355,6 +75042,7 @@ "id": "bettertls::nameconstraints::tc2542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72382,6 +75070,7 @@ "id": "bettertls::nameconstraints::tc2543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72409,6 +75098,7 @@ "id": "bettertls::nameconstraints::tc2544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72436,6 +75126,7 @@ "id": "bettertls::nameconstraints::tc2545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72463,6 +75154,7 @@ "id": "bettertls::nameconstraints::tc2546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72490,6 +75182,7 @@ "id": "bettertls::nameconstraints::tc2547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72517,6 +75210,7 @@ "id": "bettertls::nameconstraints::tc2548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72544,6 +75238,7 @@ "id": "bettertls::nameconstraints::tc2549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72571,6 +75266,7 @@ "id": "bettertls::nameconstraints::tc2550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72598,6 +75294,7 @@ "id": "bettertls::nameconstraints::tc2551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72625,6 +75322,7 @@ "id": "bettertls::nameconstraints::tc2552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72652,6 +75350,7 @@ "id": "bettertls::nameconstraints::tc2553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72679,6 +75378,7 @@ "id": "bettertls::nameconstraints::tc2554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72706,6 +75406,7 @@ "id": "bettertls::nameconstraints::tc2555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72733,6 +75434,7 @@ "id": "bettertls::nameconstraints::tc2556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72760,6 +75462,7 @@ "id": "bettertls::nameconstraints::tc2557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72787,6 +75490,7 @@ "id": "bettertls::nameconstraints::tc2558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72814,6 +75518,7 @@ "id": "bettertls::nameconstraints::tc2559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72841,6 +75546,7 @@ "id": "bettertls::nameconstraints::tc2560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72868,6 +75574,7 @@ "id": "bettertls::nameconstraints::tc2561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72895,6 +75602,7 @@ "id": "bettertls::nameconstraints::tc2562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72922,6 +75630,7 @@ "id": "bettertls::nameconstraints::tc2563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72949,6 +75658,7 @@ "id": "bettertls::nameconstraints::tc2564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -72976,6 +75686,7 @@ "id": "bettertls::nameconstraints::tc2565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73003,6 +75714,7 @@ "id": "bettertls::nameconstraints::tc2566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73030,6 +75742,7 @@ "id": "bettertls::nameconstraints::tc2567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73057,6 +75770,7 @@ "id": "bettertls::nameconstraints::tc2568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73084,6 +75798,7 @@ "id": "bettertls::nameconstraints::tc2569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73111,6 +75826,7 @@ "id": "bettertls::nameconstraints::tc2570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73138,6 +75854,7 @@ "id": "bettertls::nameconstraints::tc2571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73165,6 +75882,7 @@ "id": "bettertls::nameconstraints::tc2572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73192,6 +75910,7 @@ "id": "bettertls::nameconstraints::tc2573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73219,6 +75938,7 @@ "id": "bettertls::nameconstraints::tc2574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73246,6 +75966,7 @@ "id": "bettertls::nameconstraints::tc2575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73273,6 +75994,7 @@ "id": "bettertls::nameconstraints::tc2576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73300,6 +76022,7 @@ "id": "bettertls::nameconstraints::tc2577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73327,6 +76050,7 @@ "id": "bettertls::nameconstraints::tc2578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73354,6 +76078,7 @@ "id": "bettertls::nameconstraints::tc2579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73381,6 +76106,7 @@ "id": "bettertls::nameconstraints::tc2580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73408,6 +76134,7 @@ "id": "bettertls::nameconstraints::tc2581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73435,6 +76162,7 @@ "id": "bettertls::nameconstraints::tc2582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73462,6 +76190,7 @@ "id": "bettertls::nameconstraints::tc2583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73489,6 +76218,7 @@ "id": "bettertls::nameconstraints::tc2584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73516,6 +76246,7 @@ "id": "bettertls::nameconstraints::tc2585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73543,6 +76274,7 @@ "id": "bettertls::nameconstraints::tc2586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73570,6 +76302,7 @@ "id": "bettertls::nameconstraints::tc2587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73597,6 +76330,7 @@ "id": "bettertls::nameconstraints::tc2588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73624,6 +76358,7 @@ "id": "bettertls::nameconstraints::tc2589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73651,6 +76386,7 @@ "id": "bettertls::nameconstraints::tc2590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73678,6 +76414,7 @@ "id": "bettertls::nameconstraints::tc2591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73705,6 +76442,7 @@ "id": "bettertls::nameconstraints::tc2592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73732,6 +76470,7 @@ "id": "bettertls::nameconstraints::tc2593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73759,6 +76498,7 @@ "id": "bettertls::nameconstraints::tc2594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73786,6 +76526,7 @@ "id": "bettertls::nameconstraints::tc2595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73813,6 +76554,7 @@ "id": "bettertls::nameconstraints::tc2596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73840,6 +76582,7 @@ "id": "bettertls::nameconstraints::tc2597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73867,6 +76610,7 @@ "id": "bettertls::nameconstraints::tc2598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73894,6 +76638,7 @@ "id": "bettertls::nameconstraints::tc2599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73921,6 +76666,7 @@ "id": "bettertls::nameconstraints::tc2600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73948,6 +76694,7 @@ "id": "bettertls::nameconstraints::tc2601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -73975,6 +76722,7 @@ "id": "bettertls::nameconstraints::tc2602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74002,6 +76750,7 @@ "id": "bettertls::nameconstraints::tc2603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74029,6 +76778,7 @@ "id": "bettertls::nameconstraints::tc2604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74056,6 +76806,7 @@ "id": "bettertls::nameconstraints::tc2605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74083,6 +76834,7 @@ "id": "bettertls::nameconstraints::tc2606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74110,6 +76862,7 @@ "id": "bettertls::nameconstraints::tc2607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74137,6 +76890,7 @@ "id": "bettertls::nameconstraints::tc2608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74164,6 +76918,7 @@ "id": "bettertls::nameconstraints::tc2609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74191,6 +76946,7 @@ "id": "bettertls::nameconstraints::tc2610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74218,6 +76974,7 @@ "id": "bettertls::nameconstraints::tc2611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74245,6 +77002,7 @@ "id": "bettertls::nameconstraints::tc2612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74272,6 +77030,7 @@ "id": "bettertls::nameconstraints::tc2613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74299,6 +77058,7 @@ "id": "bettertls::nameconstraints::tc2614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74326,6 +77086,7 @@ "id": "bettertls::nameconstraints::tc2615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74353,6 +77114,7 @@ "id": "bettertls::nameconstraints::tc2616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74380,6 +77142,7 @@ "id": "bettertls::nameconstraints::tc2617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74407,6 +77170,7 @@ "id": "bettertls::nameconstraints::tc2618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74434,6 +77198,7 @@ "id": "bettertls::nameconstraints::tc2619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74461,6 +77226,7 @@ "id": "bettertls::nameconstraints::tc2620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74488,6 +77254,7 @@ "id": "bettertls::nameconstraints::tc2621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74515,6 +77282,7 @@ "id": "bettertls::nameconstraints::tc2622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74542,6 +77310,7 @@ "id": "bettertls::nameconstraints::tc2623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74569,6 +77338,7 @@ "id": "bettertls::nameconstraints::tc2624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74596,6 +77366,7 @@ "id": "bettertls::nameconstraints::tc2625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74623,6 +77394,7 @@ "id": "bettertls::nameconstraints::tc2626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74650,6 +77422,7 @@ "id": "bettertls::nameconstraints::tc2627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74677,6 +77450,7 @@ "id": "bettertls::nameconstraints::tc2628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74704,6 +77478,7 @@ "id": "bettertls::nameconstraints::tc2629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74731,6 +77506,7 @@ "id": "bettertls::nameconstraints::tc2630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74758,6 +77534,7 @@ "id": "bettertls::nameconstraints::tc2631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74785,6 +77562,7 @@ "id": "bettertls::nameconstraints::tc2632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74812,6 +77590,7 @@ "id": "bettertls::nameconstraints::tc2633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74839,6 +77618,7 @@ "id": "bettertls::nameconstraints::tc2634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74866,6 +77646,7 @@ "id": "bettertls::nameconstraints::tc2635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74893,6 +77674,7 @@ "id": "bettertls::nameconstraints::tc2636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74920,6 +77702,7 @@ "id": "bettertls::nameconstraints::tc2637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74947,6 +77730,7 @@ "id": "bettertls::nameconstraints::tc2638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -74974,6 +77758,7 @@ "id": "bettertls::nameconstraints::tc2639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75001,6 +77786,7 @@ "id": "bettertls::nameconstraints::tc2640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75028,6 +77814,7 @@ "id": "bettertls::nameconstraints::tc2641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75055,6 +77842,7 @@ "id": "bettertls::nameconstraints::tc2642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75082,6 +77870,7 @@ "id": "bettertls::nameconstraints::tc2643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75109,6 +77898,7 @@ "id": "bettertls::nameconstraints::tc2644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75136,6 +77926,7 @@ "id": "bettertls::nameconstraints::tc2645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75163,6 +77954,7 @@ "id": "bettertls::nameconstraints::tc2646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75190,6 +77982,7 @@ "id": "bettertls::nameconstraints::tc2647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75217,6 +78010,7 @@ "id": "bettertls::nameconstraints::tc2648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75244,6 +78038,7 @@ "id": "bettertls::nameconstraints::tc2649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75271,6 +78066,7 @@ "id": "bettertls::nameconstraints::tc2650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75298,6 +78094,7 @@ "id": "bettertls::nameconstraints::tc2651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75325,6 +78122,7 @@ "id": "bettertls::nameconstraints::tc2652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75352,6 +78150,7 @@ "id": "bettertls::nameconstraints::tc2653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75379,6 +78178,7 @@ "id": "bettertls::nameconstraints::tc2654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75406,6 +78206,7 @@ "id": "bettertls::nameconstraints::tc2655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75433,6 +78234,7 @@ "id": "bettertls::nameconstraints::tc2656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75460,6 +78262,7 @@ "id": "bettertls::nameconstraints::tc2657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75487,6 +78290,7 @@ "id": "bettertls::nameconstraints::tc2658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75514,6 +78318,7 @@ "id": "bettertls::nameconstraints::tc2659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75541,6 +78346,7 @@ "id": "bettertls::nameconstraints::tc2660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75568,6 +78374,7 @@ "id": "bettertls::nameconstraints::tc2661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75595,6 +78402,7 @@ "id": "bettertls::nameconstraints::tc2662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75622,6 +78430,7 @@ "id": "bettertls::nameconstraints::tc2663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75649,6 +78458,7 @@ "id": "bettertls::nameconstraints::tc2664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75676,6 +78486,7 @@ "id": "bettertls::nameconstraints::tc2665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75703,6 +78514,7 @@ "id": "bettertls::nameconstraints::tc2666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75730,6 +78542,7 @@ "id": "bettertls::nameconstraints::tc2667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75757,6 +78570,7 @@ "id": "bettertls::nameconstraints::tc2668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75784,6 +78598,7 @@ "id": "bettertls::nameconstraints::tc2669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75811,6 +78626,7 @@ "id": "bettertls::nameconstraints::tc2670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75838,6 +78654,7 @@ "id": "bettertls::nameconstraints::tc2671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75865,6 +78682,7 @@ "id": "bettertls::nameconstraints::tc2672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75892,6 +78710,7 @@ "id": "bettertls::nameconstraints::tc2673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75919,6 +78738,7 @@ "id": "bettertls::nameconstraints::tc2674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75946,6 +78766,7 @@ "id": "bettertls::nameconstraints::tc2675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -75973,6 +78794,7 @@ "id": "bettertls::nameconstraints::tc2676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76000,6 +78822,7 @@ "id": "bettertls::nameconstraints::tc2677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76027,6 +78850,7 @@ "id": "bettertls::nameconstraints::tc2678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76054,6 +78878,7 @@ "id": "bettertls::nameconstraints::tc2679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76081,6 +78906,7 @@ "id": "bettertls::nameconstraints::tc2680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76108,6 +78934,7 @@ "id": "bettertls::nameconstraints::tc2681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76135,6 +78962,7 @@ "id": "bettertls::nameconstraints::tc2682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76162,6 +78990,7 @@ "id": "bettertls::nameconstraints::tc2683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76189,6 +79018,7 @@ "id": "bettertls::nameconstraints::tc2684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76216,6 +79046,7 @@ "id": "bettertls::nameconstraints::tc2685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76243,6 +79074,7 @@ "id": "bettertls::nameconstraints::tc2686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76270,6 +79102,7 @@ "id": "bettertls::nameconstraints::tc2687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76297,6 +79130,7 @@ "id": "bettertls::nameconstraints::tc2688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76324,6 +79158,7 @@ "id": "bettertls::nameconstraints::tc2689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76351,6 +79186,7 @@ "id": "bettertls::nameconstraints::tc2690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76378,6 +79214,7 @@ "id": "bettertls::nameconstraints::tc2691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76405,6 +79242,7 @@ "id": "bettertls::nameconstraints::tc2692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76432,6 +79270,7 @@ "id": "bettertls::nameconstraints::tc2693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76459,6 +79298,7 @@ "id": "bettertls::nameconstraints::tc2694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76486,6 +79326,7 @@ "id": "bettertls::nameconstraints::tc2695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76513,6 +79354,7 @@ "id": "bettertls::nameconstraints::tc2696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76540,6 +79382,7 @@ "id": "bettertls::nameconstraints::tc2697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76567,6 +79410,7 @@ "id": "bettertls::nameconstraints::tc2698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76594,6 +79438,7 @@ "id": "bettertls::nameconstraints::tc2699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76621,6 +79466,7 @@ "id": "bettertls::nameconstraints::tc2700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76648,6 +79494,7 @@ "id": "bettertls::nameconstraints::tc2701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76675,6 +79522,7 @@ "id": "bettertls::nameconstraints::tc2702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76702,6 +79550,7 @@ "id": "bettertls::nameconstraints::tc2703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76729,6 +79578,7 @@ "id": "bettertls::nameconstraints::tc2704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76756,6 +79606,7 @@ "id": "bettertls::nameconstraints::tc2705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76783,6 +79634,7 @@ "id": "bettertls::nameconstraints::tc2706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76810,6 +79662,7 @@ "id": "bettertls::nameconstraints::tc2707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76837,6 +79690,7 @@ "id": "bettertls::nameconstraints::tc2708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76864,6 +79718,7 @@ "id": "bettertls::nameconstraints::tc2709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76891,6 +79746,7 @@ "id": "bettertls::nameconstraints::tc2710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76918,6 +79774,7 @@ "id": "bettertls::nameconstraints::tc2711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76945,6 +79802,7 @@ "id": "bettertls::nameconstraints::tc2712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76972,6 +79830,7 @@ "id": "bettertls::nameconstraints::tc2713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -76999,6 +79858,7 @@ "id": "bettertls::nameconstraints::tc2714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77026,6 +79886,7 @@ "id": "bettertls::nameconstraints::tc2715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77053,6 +79914,7 @@ "id": "bettertls::nameconstraints::tc2716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77080,6 +79942,7 @@ "id": "bettertls::nameconstraints::tc2717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77107,6 +79970,7 @@ "id": "bettertls::nameconstraints::tc2718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77134,6 +79998,7 @@ "id": "bettertls::nameconstraints::tc2719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77161,6 +80026,7 @@ "id": "bettertls::nameconstraints::tc2720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77188,6 +80054,7 @@ "id": "bettertls::nameconstraints::tc2721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77215,6 +80082,7 @@ "id": "bettertls::nameconstraints::tc2722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77242,6 +80110,7 @@ "id": "bettertls::nameconstraints::tc2723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77269,6 +80138,7 @@ "id": "bettertls::nameconstraints::tc2724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77296,6 +80166,7 @@ "id": "bettertls::nameconstraints::tc2725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77323,6 +80194,7 @@ "id": "bettertls::nameconstraints::tc2726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77350,6 +80222,7 @@ "id": "bettertls::nameconstraints::tc2727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77377,6 +80250,7 @@ "id": "bettertls::nameconstraints::tc2728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77404,6 +80278,7 @@ "id": "bettertls::nameconstraints::tc2729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77431,6 +80306,7 @@ "id": "bettertls::nameconstraints::tc2730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77458,6 +80334,7 @@ "id": "bettertls::nameconstraints::tc2731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77485,6 +80362,7 @@ "id": "bettertls::nameconstraints::tc2732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77512,6 +80390,7 @@ "id": "bettertls::nameconstraints::tc2733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77539,6 +80418,7 @@ "id": "bettertls::nameconstraints::tc2734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77566,6 +80446,7 @@ "id": "bettertls::nameconstraints::tc2735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77593,6 +80474,7 @@ "id": "bettertls::nameconstraints::tc2736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77620,6 +80502,7 @@ "id": "bettertls::nameconstraints::tc2737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77647,6 +80530,7 @@ "id": "bettertls::nameconstraints::tc2738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77674,6 +80558,7 @@ "id": "bettertls::nameconstraints::tc2739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77701,6 +80586,7 @@ "id": "bettertls::nameconstraints::tc2740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77728,6 +80614,7 @@ "id": "bettertls::nameconstraints::tc2741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77755,6 +80642,7 @@ "id": "bettertls::nameconstraints::tc2742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77782,6 +80670,7 @@ "id": "bettertls::nameconstraints::tc2743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77809,6 +80698,7 @@ "id": "bettertls::nameconstraints::tc2744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77836,6 +80726,7 @@ "id": "bettertls::nameconstraints::tc2745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77863,6 +80754,7 @@ "id": "bettertls::nameconstraints::tc2746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77890,6 +80782,7 @@ "id": "bettertls::nameconstraints::tc2747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77917,6 +80810,7 @@ "id": "bettertls::nameconstraints::tc2748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77944,6 +80838,7 @@ "id": "bettertls::nameconstraints::tc2749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77971,6 +80866,7 @@ "id": "bettertls::nameconstraints::tc2750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -77998,6 +80894,7 @@ "id": "bettertls::nameconstraints::tc2751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78025,6 +80922,7 @@ "id": "bettertls::nameconstraints::tc2752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78052,6 +80950,7 @@ "id": "bettertls::nameconstraints::tc2753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78079,6 +80978,7 @@ "id": "bettertls::nameconstraints::tc2754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78106,6 +81006,7 @@ "id": "bettertls::nameconstraints::tc2755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78133,6 +81034,7 @@ "id": "bettertls::nameconstraints::tc2756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78160,6 +81062,7 @@ "id": "bettertls::nameconstraints::tc2757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78187,6 +81090,7 @@ "id": "bettertls::nameconstraints::tc2758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78214,6 +81118,7 @@ "id": "bettertls::nameconstraints::tc2759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78241,6 +81146,7 @@ "id": "bettertls::nameconstraints::tc2760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78268,6 +81174,7 @@ "id": "bettertls::nameconstraints::tc2761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78295,6 +81202,7 @@ "id": "bettertls::nameconstraints::tc2762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78322,6 +81230,7 @@ "id": "bettertls::nameconstraints::tc2763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78349,6 +81258,7 @@ "id": "bettertls::nameconstraints::tc2764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78376,6 +81286,7 @@ "id": "bettertls::nameconstraints::tc2765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78403,6 +81314,7 @@ "id": "bettertls::nameconstraints::tc2766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78430,6 +81342,7 @@ "id": "bettertls::nameconstraints::tc2767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78457,6 +81370,7 @@ "id": "bettertls::nameconstraints::tc2768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78484,6 +81398,7 @@ "id": "bettertls::nameconstraints::tc2769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78511,6 +81426,7 @@ "id": "bettertls::nameconstraints::tc2770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78538,6 +81454,7 @@ "id": "bettertls::nameconstraints::tc2771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78565,6 +81482,7 @@ "id": "bettertls::nameconstraints::tc2772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78592,6 +81510,7 @@ "id": "bettertls::nameconstraints::tc2773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78619,6 +81538,7 @@ "id": "bettertls::nameconstraints::tc2774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78646,6 +81566,7 @@ "id": "bettertls::nameconstraints::tc2775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78673,6 +81594,7 @@ "id": "bettertls::nameconstraints::tc2776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78700,6 +81622,7 @@ "id": "bettertls::nameconstraints::tc2777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78727,6 +81650,7 @@ "id": "bettertls::nameconstraints::tc2778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78754,6 +81678,7 @@ "id": "bettertls::nameconstraints::tc2779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78781,6 +81706,7 @@ "id": "bettertls::nameconstraints::tc2780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78808,6 +81734,7 @@ "id": "bettertls::nameconstraints::tc2781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78835,6 +81762,7 @@ "id": "bettertls::nameconstraints::tc2782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78862,6 +81790,7 @@ "id": "bettertls::nameconstraints::tc2783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78889,6 +81818,7 @@ "id": "bettertls::nameconstraints::tc2784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78916,6 +81846,7 @@ "id": "bettertls::nameconstraints::tc2785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78943,6 +81874,7 @@ "id": "bettertls::nameconstraints::tc2786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78970,6 +81902,7 @@ "id": "bettertls::nameconstraints::tc2787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -78997,6 +81930,7 @@ "id": "bettertls::nameconstraints::tc2788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79024,6 +81958,7 @@ "id": "bettertls::nameconstraints::tc2789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79051,6 +81986,7 @@ "id": "bettertls::nameconstraints::tc2790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79078,6 +82014,7 @@ "id": "bettertls::nameconstraints::tc2791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79105,6 +82042,7 @@ "id": "bettertls::nameconstraints::tc2792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79132,6 +82070,7 @@ "id": "bettertls::nameconstraints::tc2793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79159,6 +82098,7 @@ "id": "bettertls::nameconstraints::tc2794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79186,6 +82126,7 @@ "id": "bettertls::nameconstraints::tc2795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79213,6 +82154,7 @@ "id": "bettertls::nameconstraints::tc2796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79240,6 +82182,7 @@ "id": "bettertls::nameconstraints::tc2797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79267,6 +82210,7 @@ "id": "bettertls::nameconstraints::tc2798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79294,6 +82238,7 @@ "id": "bettertls::nameconstraints::tc2799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79321,6 +82266,7 @@ "id": "bettertls::nameconstraints::tc2800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79348,6 +82294,7 @@ "id": "bettertls::nameconstraints::tc2801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79375,6 +82322,7 @@ "id": "bettertls::nameconstraints::tc2802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79402,6 +82350,7 @@ "id": "bettertls::nameconstraints::tc2803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79429,6 +82378,7 @@ "id": "bettertls::nameconstraints::tc2804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79456,6 +82406,7 @@ "id": "bettertls::nameconstraints::tc2805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79483,6 +82434,7 @@ "id": "bettertls::nameconstraints::tc2806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79510,6 +82462,7 @@ "id": "bettertls::nameconstraints::tc2807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79537,6 +82490,7 @@ "id": "bettertls::nameconstraints::tc2808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79564,6 +82518,7 @@ "id": "bettertls::nameconstraints::tc2809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79591,6 +82546,7 @@ "id": "bettertls::nameconstraints::tc2810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79618,6 +82574,7 @@ "id": "bettertls::nameconstraints::tc2811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79645,6 +82602,7 @@ "id": "bettertls::nameconstraints::tc2812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79672,6 +82630,7 @@ "id": "bettertls::nameconstraints::tc2813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79699,6 +82658,7 @@ "id": "bettertls::nameconstraints::tc2814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79726,6 +82686,7 @@ "id": "bettertls::nameconstraints::tc2815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79753,6 +82714,7 @@ "id": "bettertls::nameconstraints::tc2816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79780,6 +82742,7 @@ "id": "bettertls::nameconstraints::tc2817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79807,6 +82770,7 @@ "id": "bettertls::nameconstraints::tc2818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79834,6 +82798,7 @@ "id": "bettertls::nameconstraints::tc2819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79861,6 +82826,7 @@ "id": "bettertls::nameconstraints::tc2820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79888,6 +82854,7 @@ "id": "bettertls::nameconstraints::tc2821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79915,6 +82882,7 @@ "id": "bettertls::nameconstraints::tc2822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79942,6 +82910,7 @@ "id": "bettertls::nameconstraints::tc2823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79969,6 +82938,7 @@ "id": "bettertls::nameconstraints::tc2824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -79996,6 +82966,7 @@ "id": "bettertls::nameconstraints::tc2825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80023,6 +82994,7 @@ "id": "bettertls::nameconstraints::tc2826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80050,6 +83022,7 @@ "id": "bettertls::nameconstraints::tc2827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80077,6 +83050,7 @@ "id": "bettertls::nameconstraints::tc2828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80104,6 +83078,7 @@ "id": "bettertls::nameconstraints::tc2829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80131,6 +83106,7 @@ "id": "bettertls::nameconstraints::tc2830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80158,6 +83134,7 @@ "id": "bettertls::nameconstraints::tc2831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80185,6 +83162,7 @@ "id": "bettertls::nameconstraints::tc2832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80212,6 +83190,7 @@ "id": "bettertls::nameconstraints::tc2833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80239,6 +83218,7 @@ "id": "bettertls::nameconstraints::tc2834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80266,6 +83246,7 @@ "id": "bettertls::nameconstraints::tc2835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80293,6 +83274,7 @@ "id": "bettertls::nameconstraints::tc2836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80320,6 +83302,7 @@ "id": "bettertls::nameconstraints::tc2837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80347,6 +83330,7 @@ "id": "bettertls::nameconstraints::tc2838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80374,6 +83358,7 @@ "id": "bettertls::nameconstraints::tc2839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80401,6 +83386,7 @@ "id": "bettertls::nameconstraints::tc2840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80428,6 +83414,7 @@ "id": "bettertls::nameconstraints::tc2841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80455,6 +83442,7 @@ "id": "bettertls::nameconstraints::tc2842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80482,6 +83470,7 @@ "id": "bettertls::nameconstraints::tc2843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80509,6 +83498,7 @@ "id": "bettertls::nameconstraints::tc2844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80536,6 +83526,7 @@ "id": "bettertls::nameconstraints::tc2845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80563,6 +83554,7 @@ "id": "bettertls::nameconstraints::tc2846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80590,6 +83582,7 @@ "id": "bettertls::nameconstraints::tc2847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80617,6 +83610,7 @@ "id": "bettertls::nameconstraints::tc2848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80644,6 +83638,7 @@ "id": "bettertls::nameconstraints::tc2849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80671,6 +83666,7 @@ "id": "bettertls::nameconstraints::tc2850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80698,6 +83694,7 @@ "id": "bettertls::nameconstraints::tc2851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80725,6 +83722,7 @@ "id": "bettertls::nameconstraints::tc2852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80752,6 +83750,7 @@ "id": "bettertls::nameconstraints::tc2853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80779,6 +83778,7 @@ "id": "bettertls::nameconstraints::tc2854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80806,6 +83806,7 @@ "id": "bettertls::nameconstraints::tc2855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80833,6 +83834,7 @@ "id": "bettertls::nameconstraints::tc2856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80860,6 +83862,7 @@ "id": "bettertls::nameconstraints::tc2857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80887,6 +83890,7 @@ "id": "bettertls::nameconstraints::tc2858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80914,6 +83918,7 @@ "id": "bettertls::nameconstraints::tc2859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80941,6 +83946,7 @@ "id": "bettertls::nameconstraints::tc2860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80968,6 +83974,7 @@ "id": "bettertls::nameconstraints::tc2861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -80995,6 +84002,7 @@ "id": "bettertls::nameconstraints::tc2862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81022,6 +84030,7 @@ "id": "bettertls::nameconstraints::tc2863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81049,6 +84058,7 @@ "id": "bettertls::nameconstraints::tc2864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81076,6 +84086,7 @@ "id": "bettertls::nameconstraints::tc2865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81103,6 +84114,7 @@ "id": "bettertls::nameconstraints::tc2866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81130,6 +84142,7 @@ "id": "bettertls::nameconstraints::tc2867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81157,6 +84170,7 @@ "id": "bettertls::nameconstraints::tc2868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81184,6 +84198,7 @@ "id": "bettertls::nameconstraints::tc2869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81211,6 +84226,7 @@ "id": "bettertls::nameconstraints::tc2870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81238,6 +84254,7 @@ "id": "bettertls::nameconstraints::tc2871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81265,6 +84282,7 @@ "id": "bettertls::nameconstraints::tc2872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81292,6 +84310,7 @@ "id": "bettertls::nameconstraints::tc2873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81319,6 +84338,7 @@ "id": "bettertls::nameconstraints::tc2874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81346,6 +84366,7 @@ "id": "bettertls::nameconstraints::tc2875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81373,6 +84394,7 @@ "id": "bettertls::nameconstraints::tc2876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81400,6 +84422,7 @@ "id": "bettertls::nameconstraints::tc2877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81427,6 +84450,7 @@ "id": "bettertls::nameconstraints::tc2878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81454,6 +84478,7 @@ "id": "bettertls::nameconstraints::tc2879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81481,6 +84506,7 @@ "id": "bettertls::nameconstraints::tc2880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81508,6 +84534,7 @@ "id": "bettertls::nameconstraints::tc2881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81535,6 +84562,7 @@ "id": "bettertls::nameconstraints::tc2882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81562,6 +84590,7 @@ "id": "bettertls::nameconstraints::tc2883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81589,6 +84618,7 @@ "id": "bettertls::nameconstraints::tc2884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81616,6 +84646,7 @@ "id": "bettertls::nameconstraints::tc2885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81643,6 +84674,7 @@ "id": "bettertls::nameconstraints::tc2886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81670,6 +84702,7 @@ "id": "bettertls::nameconstraints::tc2887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81697,6 +84730,7 @@ "id": "bettertls::nameconstraints::tc2888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81724,6 +84758,7 @@ "id": "bettertls::nameconstraints::tc2889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81751,6 +84786,7 @@ "id": "bettertls::nameconstraints::tc2890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81778,6 +84814,7 @@ "id": "bettertls::nameconstraints::tc2891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81805,6 +84842,7 @@ "id": "bettertls::nameconstraints::tc2892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81832,6 +84870,7 @@ "id": "bettertls::nameconstraints::tc2893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81859,6 +84898,7 @@ "id": "bettertls::nameconstraints::tc2894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81886,6 +84926,7 @@ "id": "bettertls::nameconstraints::tc2895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81913,6 +84954,7 @@ "id": "bettertls::nameconstraints::tc2896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81940,6 +84982,7 @@ "id": "bettertls::nameconstraints::tc2897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81967,6 +85010,7 @@ "id": "bettertls::nameconstraints::tc2898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -81994,6 +85038,7 @@ "id": "bettertls::nameconstraints::tc2899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82021,6 +85066,7 @@ "id": "bettertls::nameconstraints::tc2900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82048,6 +85094,7 @@ "id": "bettertls::nameconstraints::tc2901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82075,6 +85122,7 @@ "id": "bettertls::nameconstraints::tc2902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82102,6 +85150,7 @@ "id": "bettertls::nameconstraints::tc2903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82129,6 +85178,7 @@ "id": "bettertls::nameconstraints::tc2904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82156,6 +85206,7 @@ "id": "bettertls::nameconstraints::tc2905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82183,6 +85234,7 @@ "id": "bettertls::nameconstraints::tc2906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82210,6 +85262,7 @@ "id": "bettertls::nameconstraints::tc2907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82237,6 +85290,7 @@ "id": "bettertls::nameconstraints::tc2908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82264,6 +85318,7 @@ "id": "bettertls::nameconstraints::tc2909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82291,6 +85346,7 @@ "id": "bettertls::nameconstraints::tc2910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82318,6 +85374,7 @@ "id": "bettertls::nameconstraints::tc2911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82345,6 +85402,7 @@ "id": "bettertls::nameconstraints::tc2912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82372,6 +85430,7 @@ "id": "bettertls::nameconstraints::tc2913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82399,6 +85458,7 @@ "id": "bettertls::nameconstraints::tc2914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82426,6 +85486,7 @@ "id": "bettertls::nameconstraints::tc2915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82453,6 +85514,7 @@ "id": "bettertls::nameconstraints::tc2916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82480,6 +85542,7 @@ "id": "bettertls::nameconstraints::tc2917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82507,6 +85570,7 @@ "id": "bettertls::nameconstraints::tc2918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82534,6 +85598,7 @@ "id": "bettertls::nameconstraints::tc2919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82561,6 +85626,7 @@ "id": "bettertls::nameconstraints::tc2920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82588,6 +85654,7 @@ "id": "bettertls::nameconstraints::tc2921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82615,6 +85682,7 @@ "id": "bettertls::nameconstraints::tc2922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82642,6 +85710,7 @@ "id": "bettertls::nameconstraints::tc2923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82669,6 +85738,7 @@ "id": "bettertls::nameconstraints::tc2924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82696,6 +85766,7 @@ "id": "bettertls::nameconstraints::tc2925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82723,6 +85794,7 @@ "id": "bettertls::nameconstraints::tc2926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82750,6 +85822,7 @@ "id": "bettertls::nameconstraints::tc2927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82777,6 +85850,7 @@ "id": "bettertls::nameconstraints::tc2928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82804,6 +85878,7 @@ "id": "bettertls::nameconstraints::tc2929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82831,6 +85906,7 @@ "id": "bettertls::nameconstraints::tc2930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82858,6 +85934,7 @@ "id": "bettertls::nameconstraints::tc2931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82885,6 +85962,7 @@ "id": "bettertls::nameconstraints::tc2932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82912,6 +85990,7 @@ "id": "bettertls::nameconstraints::tc2933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82939,6 +86018,7 @@ "id": "bettertls::nameconstraints::tc2934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82966,6 +86046,7 @@ "id": "bettertls::nameconstraints::tc2935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -82993,6 +86074,7 @@ "id": "bettertls::nameconstraints::tc2936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83020,6 +86102,7 @@ "id": "bettertls::nameconstraints::tc2937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83047,6 +86130,7 @@ "id": "bettertls::nameconstraints::tc2938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83074,6 +86158,7 @@ "id": "bettertls::nameconstraints::tc2939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83101,6 +86186,7 @@ "id": "bettertls::nameconstraints::tc2940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83128,6 +86214,7 @@ "id": "bettertls::nameconstraints::tc2941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83155,6 +86242,7 @@ "id": "bettertls::nameconstraints::tc2942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83182,6 +86270,7 @@ "id": "bettertls::nameconstraints::tc2943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83209,6 +86298,7 @@ "id": "bettertls::nameconstraints::tc2944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83236,6 +86326,7 @@ "id": "bettertls::nameconstraints::tc2945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83263,6 +86354,7 @@ "id": "bettertls::nameconstraints::tc2946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83290,6 +86382,7 @@ "id": "bettertls::nameconstraints::tc2947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83317,6 +86410,7 @@ "id": "bettertls::nameconstraints::tc2948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83344,6 +86438,7 @@ "id": "bettertls::nameconstraints::tc2949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83371,6 +86466,7 @@ "id": "bettertls::nameconstraints::tc2950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83398,6 +86494,7 @@ "id": "bettertls::nameconstraints::tc2951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83425,6 +86522,7 @@ "id": "bettertls::nameconstraints::tc2952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83452,6 +86550,7 @@ "id": "bettertls::nameconstraints::tc2953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83479,6 +86578,7 @@ "id": "bettertls::nameconstraints::tc2954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83506,6 +86606,7 @@ "id": "bettertls::nameconstraints::tc2955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83533,6 +86634,7 @@ "id": "bettertls::nameconstraints::tc2956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83560,6 +86662,7 @@ "id": "bettertls::nameconstraints::tc2957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83587,6 +86690,7 @@ "id": "bettertls::nameconstraints::tc2958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83614,6 +86718,7 @@ "id": "bettertls::nameconstraints::tc2959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83641,6 +86746,7 @@ "id": "bettertls::nameconstraints::tc2960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83668,6 +86774,7 @@ "id": "bettertls::nameconstraints::tc2961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83695,6 +86802,7 @@ "id": "bettertls::nameconstraints::tc2962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83722,6 +86830,7 @@ "id": "bettertls::nameconstraints::tc2963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83749,6 +86858,7 @@ "id": "bettertls::nameconstraints::tc2964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83776,6 +86886,7 @@ "id": "bettertls::nameconstraints::tc2965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83803,6 +86914,7 @@ "id": "bettertls::nameconstraints::tc2966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83830,6 +86942,7 @@ "id": "bettertls::nameconstraints::tc2967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83857,6 +86970,7 @@ "id": "bettertls::nameconstraints::tc2968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83884,6 +86998,7 @@ "id": "bettertls::nameconstraints::tc2969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83911,6 +87026,7 @@ "id": "bettertls::nameconstraints::tc2970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83938,6 +87054,7 @@ "id": "bettertls::nameconstraints::tc2971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83965,6 +87082,7 @@ "id": "bettertls::nameconstraints::tc2972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -83992,6 +87110,7 @@ "id": "bettertls::nameconstraints::tc2973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84019,6 +87138,7 @@ "id": "bettertls::nameconstraints::tc2974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84046,6 +87166,7 @@ "id": "bettertls::nameconstraints::tc2975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84073,6 +87194,7 @@ "id": "bettertls::nameconstraints::tc2976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84100,6 +87222,7 @@ "id": "bettertls::nameconstraints::tc2977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84127,6 +87250,7 @@ "id": "bettertls::nameconstraints::tc2978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84154,6 +87278,7 @@ "id": "bettertls::nameconstraints::tc2979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84181,6 +87306,7 @@ "id": "bettertls::nameconstraints::tc2980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84208,6 +87334,7 @@ "id": "bettertls::nameconstraints::tc2981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84235,6 +87362,7 @@ "id": "bettertls::nameconstraints::tc2982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84262,6 +87390,7 @@ "id": "bettertls::nameconstraints::tc2983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84289,6 +87418,7 @@ "id": "bettertls::nameconstraints::tc2984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84316,6 +87446,7 @@ "id": "bettertls::nameconstraints::tc2985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84343,6 +87474,7 @@ "id": "bettertls::nameconstraints::tc2986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84370,6 +87502,7 @@ "id": "bettertls::nameconstraints::tc2987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84397,6 +87530,7 @@ "id": "bettertls::nameconstraints::tc2988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84424,6 +87558,7 @@ "id": "bettertls::nameconstraints::tc2989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84451,6 +87586,7 @@ "id": "bettertls::nameconstraints::tc2990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84478,6 +87614,7 @@ "id": "bettertls::nameconstraints::tc2991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84505,6 +87642,7 @@ "id": "bettertls::nameconstraints::tc2992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84532,6 +87670,7 @@ "id": "bettertls::nameconstraints::tc2993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84559,6 +87698,7 @@ "id": "bettertls::nameconstraints::tc2994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84586,6 +87726,7 @@ "id": "bettertls::nameconstraints::tc2995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84613,6 +87754,7 @@ "id": "bettertls::nameconstraints::tc2996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84640,6 +87782,7 @@ "id": "bettertls::nameconstraints::tc2997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84667,6 +87810,7 @@ "id": "bettertls::nameconstraints::tc2998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84694,6 +87838,7 @@ "id": "bettertls::nameconstraints::tc2999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84721,6 +87866,7 @@ "id": "bettertls::nameconstraints::tc3000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84748,6 +87894,7 @@ "id": "bettertls::nameconstraints::tc3001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84775,6 +87922,7 @@ "id": "bettertls::nameconstraints::tc3002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84802,6 +87950,7 @@ "id": "bettertls::nameconstraints::tc3003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84829,6 +87978,7 @@ "id": "bettertls::nameconstraints::tc3004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84856,6 +88006,7 @@ "id": "bettertls::nameconstraints::tc3005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84883,6 +88034,7 @@ "id": "bettertls::nameconstraints::tc3006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84910,6 +88062,7 @@ "id": "bettertls::nameconstraints::tc3007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84937,6 +88090,7 @@ "id": "bettertls::nameconstraints::tc3008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84964,6 +88118,7 @@ "id": "bettertls::nameconstraints::tc3009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -84991,6 +88146,7 @@ "id": "bettertls::nameconstraints::tc3010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85018,6 +88174,7 @@ "id": "bettertls::nameconstraints::tc3011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85045,6 +88202,7 @@ "id": "bettertls::nameconstraints::tc3012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85072,6 +88230,7 @@ "id": "bettertls::nameconstraints::tc3013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85099,6 +88258,7 @@ "id": "bettertls::nameconstraints::tc3014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85126,6 +88286,7 @@ "id": "bettertls::nameconstraints::tc3015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85153,6 +88314,7 @@ "id": "bettertls::nameconstraints::tc3016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85180,6 +88342,7 @@ "id": "bettertls::nameconstraints::tc3017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85207,6 +88370,7 @@ "id": "bettertls::nameconstraints::tc3018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85234,6 +88398,7 @@ "id": "bettertls::nameconstraints::tc3019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85261,6 +88426,7 @@ "id": "bettertls::nameconstraints::tc3020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85288,6 +88454,7 @@ "id": "bettertls::nameconstraints::tc3021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85315,6 +88482,7 @@ "id": "bettertls::nameconstraints::tc3022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85342,6 +88510,7 @@ "id": "bettertls::nameconstraints::tc3023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85369,6 +88538,7 @@ "id": "bettertls::nameconstraints::tc3024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85396,6 +88566,7 @@ "id": "bettertls::nameconstraints::tc3025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85423,6 +88594,7 @@ "id": "bettertls::nameconstraints::tc3026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85450,6 +88622,7 @@ "id": "bettertls::nameconstraints::tc3027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85477,6 +88650,7 @@ "id": "bettertls::nameconstraints::tc3028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85504,6 +88678,7 @@ "id": "bettertls::nameconstraints::tc3029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85531,6 +88706,7 @@ "id": "bettertls::nameconstraints::tc3030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85558,6 +88734,7 @@ "id": "bettertls::nameconstraints::tc3031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85585,6 +88762,7 @@ "id": "bettertls::nameconstraints::tc3032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85612,6 +88790,7 @@ "id": "bettertls::nameconstraints::tc3033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85639,6 +88818,7 @@ "id": "bettertls::nameconstraints::tc3034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85666,6 +88846,7 @@ "id": "bettertls::nameconstraints::tc3035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85693,6 +88874,7 @@ "id": "bettertls::nameconstraints::tc3036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85720,6 +88902,7 @@ "id": "bettertls::nameconstraints::tc3037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85747,6 +88930,7 @@ "id": "bettertls::nameconstraints::tc3038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85774,6 +88958,7 @@ "id": "bettertls::nameconstraints::tc3039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85801,6 +88986,7 @@ "id": "bettertls::nameconstraints::tc3040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85828,6 +89014,7 @@ "id": "bettertls::nameconstraints::tc3041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85855,6 +89042,7 @@ "id": "bettertls::nameconstraints::tc3042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85882,6 +89070,7 @@ "id": "bettertls::nameconstraints::tc3043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85909,6 +89098,7 @@ "id": "bettertls::nameconstraints::tc3044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85936,6 +89126,7 @@ "id": "bettertls::nameconstraints::tc3045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85963,6 +89154,7 @@ "id": "bettertls::nameconstraints::tc3046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -85990,6 +89182,7 @@ "id": "bettertls::nameconstraints::tc3047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86017,6 +89210,7 @@ "id": "bettertls::nameconstraints::tc3048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86044,6 +89238,7 @@ "id": "bettertls::nameconstraints::tc3049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86071,6 +89266,7 @@ "id": "bettertls::nameconstraints::tc3050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86098,6 +89294,7 @@ "id": "bettertls::nameconstraints::tc3051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86125,6 +89322,7 @@ "id": "bettertls::nameconstraints::tc3052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86152,6 +89350,7 @@ "id": "bettertls::nameconstraints::tc3053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86179,6 +89378,7 @@ "id": "bettertls::nameconstraints::tc3054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86206,6 +89406,7 @@ "id": "bettertls::nameconstraints::tc3055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86233,6 +89434,7 @@ "id": "bettertls::nameconstraints::tc3056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86260,6 +89462,7 @@ "id": "bettertls::nameconstraints::tc3057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86287,6 +89490,7 @@ "id": "bettertls::nameconstraints::tc3058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86314,6 +89518,7 @@ "id": "bettertls::nameconstraints::tc3059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86341,6 +89546,7 @@ "id": "bettertls::nameconstraints::tc3060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86368,6 +89574,7 @@ "id": "bettertls::nameconstraints::tc3061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86395,6 +89602,7 @@ "id": "bettertls::nameconstraints::tc3062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86422,6 +89630,7 @@ "id": "bettertls::nameconstraints::tc3063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86449,6 +89658,7 @@ "id": "bettertls::nameconstraints::tc3064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86476,6 +89686,7 @@ "id": "bettertls::nameconstraints::tc3065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86503,6 +89714,7 @@ "id": "bettertls::nameconstraints::tc3066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86530,6 +89742,7 @@ "id": "bettertls::nameconstraints::tc3067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86557,6 +89770,7 @@ "id": "bettertls::nameconstraints::tc3068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86584,6 +89798,7 @@ "id": "bettertls::nameconstraints::tc3069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86611,6 +89826,7 @@ "id": "bettertls::nameconstraints::tc3070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86638,6 +89854,7 @@ "id": "bettertls::nameconstraints::tc3071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86665,6 +89882,7 @@ "id": "bettertls::nameconstraints::tc3072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86692,6 +89910,7 @@ "id": "bettertls::nameconstraints::tc3073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86719,6 +89938,7 @@ "id": "bettertls::nameconstraints::tc3074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86746,6 +89966,7 @@ "id": "bettertls::nameconstraints::tc3075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86773,6 +89994,7 @@ "id": "bettertls::nameconstraints::tc3076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86800,6 +90022,7 @@ "id": "bettertls::nameconstraints::tc3077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86827,6 +90050,7 @@ "id": "bettertls::nameconstraints::tc3078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86854,6 +90078,7 @@ "id": "bettertls::nameconstraints::tc3079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86881,6 +90106,7 @@ "id": "bettertls::nameconstraints::tc3080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86908,6 +90134,7 @@ "id": "bettertls::nameconstraints::tc3081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86935,6 +90162,7 @@ "id": "bettertls::nameconstraints::tc3082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86962,6 +90190,7 @@ "id": "bettertls::nameconstraints::tc3083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -86989,6 +90218,7 @@ "id": "bettertls::nameconstraints::tc3084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87016,6 +90246,7 @@ "id": "bettertls::nameconstraints::tc3085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87043,6 +90274,7 @@ "id": "bettertls::nameconstraints::tc3086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87070,6 +90302,7 @@ "id": "bettertls::nameconstraints::tc3087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87097,6 +90330,7 @@ "id": "bettertls::nameconstraints::tc3088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87124,6 +90358,7 @@ "id": "bettertls::nameconstraints::tc3089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87151,6 +90386,7 @@ "id": "bettertls::nameconstraints::tc3090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87178,6 +90414,7 @@ "id": "bettertls::nameconstraints::tc3091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87205,6 +90442,7 @@ "id": "bettertls::nameconstraints::tc3092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87232,6 +90470,7 @@ "id": "bettertls::nameconstraints::tc3093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87259,6 +90498,7 @@ "id": "bettertls::nameconstraints::tc3094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87286,6 +90526,7 @@ "id": "bettertls::nameconstraints::tc3095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87313,6 +90554,7 @@ "id": "bettertls::nameconstraints::tc3096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87340,6 +90582,7 @@ "id": "bettertls::nameconstraints::tc3097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87367,6 +90610,7 @@ "id": "bettertls::nameconstraints::tc3098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87394,6 +90638,7 @@ "id": "bettertls::nameconstraints::tc3099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87421,6 +90666,7 @@ "id": "bettertls::nameconstraints::tc3100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87448,6 +90694,7 @@ "id": "bettertls::nameconstraints::tc3101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87475,6 +90722,7 @@ "id": "bettertls::nameconstraints::tc3102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87502,6 +90750,7 @@ "id": "bettertls::nameconstraints::tc3103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87529,6 +90778,7 @@ "id": "bettertls::nameconstraints::tc3104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87556,6 +90806,7 @@ "id": "bettertls::nameconstraints::tc3105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87583,6 +90834,7 @@ "id": "bettertls::nameconstraints::tc3106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87610,6 +90862,7 @@ "id": "bettertls::nameconstraints::tc3107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87637,6 +90890,7 @@ "id": "bettertls::nameconstraints::tc3108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87664,6 +90918,7 @@ "id": "bettertls::nameconstraints::tc3109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87691,6 +90946,7 @@ "id": "bettertls::nameconstraints::tc3110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87718,6 +90974,7 @@ "id": "bettertls::nameconstraints::tc3111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87745,6 +91002,7 @@ "id": "bettertls::nameconstraints::tc3112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87772,6 +91030,7 @@ "id": "bettertls::nameconstraints::tc3113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87799,6 +91058,7 @@ "id": "bettertls::nameconstraints::tc3114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87826,6 +91086,7 @@ "id": "bettertls::nameconstraints::tc3115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87853,6 +91114,7 @@ "id": "bettertls::nameconstraints::tc3116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87880,6 +91142,7 @@ "id": "bettertls::nameconstraints::tc3117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87907,6 +91170,7 @@ "id": "bettertls::nameconstraints::tc3118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87934,6 +91198,7 @@ "id": "bettertls::nameconstraints::tc3119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87961,6 +91226,7 @@ "id": "bettertls::nameconstraints::tc3120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -87988,6 +91254,7 @@ "id": "bettertls::nameconstraints::tc3121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88015,6 +91282,7 @@ "id": "bettertls::nameconstraints::tc3122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88042,6 +91310,7 @@ "id": "bettertls::nameconstraints::tc3123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88069,6 +91338,7 @@ "id": "bettertls::nameconstraints::tc3124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88096,6 +91366,7 @@ "id": "bettertls::nameconstraints::tc3125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88123,6 +91394,7 @@ "id": "bettertls::nameconstraints::tc3126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88150,6 +91422,7 @@ "id": "bettertls::nameconstraints::tc3127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88177,6 +91450,7 @@ "id": "bettertls::nameconstraints::tc3128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88204,6 +91478,7 @@ "id": "bettertls::nameconstraints::tc3129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88231,6 +91506,7 @@ "id": "bettertls::nameconstraints::tc3130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88258,6 +91534,7 @@ "id": "bettertls::nameconstraints::tc3131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88285,6 +91562,7 @@ "id": "bettertls::nameconstraints::tc3132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88312,6 +91590,7 @@ "id": "bettertls::nameconstraints::tc3133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88339,6 +91618,7 @@ "id": "bettertls::nameconstraints::tc3134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88366,6 +91646,7 @@ "id": "bettertls::nameconstraints::tc3135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88393,6 +91674,7 @@ "id": "bettertls::nameconstraints::tc3136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88420,6 +91702,7 @@ "id": "bettertls::nameconstraints::tc3137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88447,6 +91730,7 @@ "id": "bettertls::nameconstraints::tc3138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88474,6 +91758,7 @@ "id": "bettertls::nameconstraints::tc3139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88501,6 +91786,7 @@ "id": "bettertls::nameconstraints::tc3140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88528,6 +91814,7 @@ "id": "bettertls::nameconstraints::tc3141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88555,6 +91842,7 @@ "id": "bettertls::nameconstraints::tc3142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88582,6 +91870,7 @@ "id": "bettertls::nameconstraints::tc3143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88609,6 +91898,7 @@ "id": "bettertls::nameconstraints::tc3144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88636,6 +91926,7 @@ "id": "bettertls::nameconstraints::tc3145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88663,6 +91954,7 @@ "id": "bettertls::nameconstraints::tc3146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88690,6 +91982,7 @@ "id": "bettertls::nameconstraints::tc3147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88717,6 +92010,7 @@ "id": "bettertls::nameconstraints::tc3148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88744,6 +92038,7 @@ "id": "bettertls::nameconstraints::tc3149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88771,6 +92066,7 @@ "id": "bettertls::nameconstraints::tc3150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88798,6 +92094,7 @@ "id": "bettertls::nameconstraints::tc3151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88825,6 +92122,7 @@ "id": "bettertls::nameconstraints::tc3152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88852,6 +92150,7 @@ "id": "bettertls::nameconstraints::tc3153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88879,6 +92178,7 @@ "id": "bettertls::nameconstraints::tc3154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88906,6 +92206,7 @@ "id": "bettertls::nameconstraints::tc3155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88933,6 +92234,7 @@ "id": "bettertls::nameconstraints::tc3156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88960,6 +92262,7 @@ "id": "bettertls::nameconstraints::tc3157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -88987,6 +92290,7 @@ "id": "bettertls::nameconstraints::tc3158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89014,6 +92318,7 @@ "id": "bettertls::nameconstraints::tc3159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89041,6 +92346,7 @@ "id": "bettertls::nameconstraints::tc3160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89068,6 +92374,7 @@ "id": "bettertls::nameconstraints::tc3161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89095,6 +92402,7 @@ "id": "bettertls::nameconstraints::tc3162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89122,6 +92430,7 @@ "id": "bettertls::nameconstraints::tc3163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89149,6 +92458,7 @@ "id": "bettertls::nameconstraints::tc3164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89176,6 +92486,7 @@ "id": "bettertls::nameconstraints::tc3165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89203,6 +92514,7 @@ "id": "bettertls::nameconstraints::tc3166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89230,6 +92542,7 @@ "id": "bettertls::nameconstraints::tc3167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89257,6 +92570,7 @@ "id": "bettertls::nameconstraints::tc3168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89284,6 +92598,7 @@ "id": "bettertls::nameconstraints::tc3169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89311,6 +92626,7 @@ "id": "bettertls::nameconstraints::tc3170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89338,6 +92654,7 @@ "id": "bettertls::nameconstraints::tc3171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89365,6 +92682,7 @@ "id": "bettertls::nameconstraints::tc3172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89392,6 +92710,7 @@ "id": "bettertls::nameconstraints::tc3173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89419,6 +92738,7 @@ "id": "bettertls::nameconstraints::tc3174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89446,6 +92766,7 @@ "id": "bettertls::nameconstraints::tc3175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89473,6 +92794,7 @@ "id": "bettertls::nameconstraints::tc3176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89500,6 +92822,7 @@ "id": "bettertls::nameconstraints::tc3177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89527,6 +92850,7 @@ "id": "bettertls::nameconstraints::tc3178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89554,6 +92878,7 @@ "id": "bettertls::nameconstraints::tc3179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89581,6 +92906,7 @@ "id": "bettertls::nameconstraints::tc3180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89608,6 +92934,7 @@ "id": "bettertls::nameconstraints::tc3181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89635,6 +92962,7 @@ "id": "bettertls::nameconstraints::tc3182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89662,6 +92990,7 @@ "id": "bettertls::nameconstraints::tc3183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89689,6 +93018,7 @@ "id": "bettertls::nameconstraints::tc3184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89716,6 +93046,7 @@ "id": "bettertls::nameconstraints::tc3185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89743,6 +93074,7 @@ "id": "bettertls::nameconstraints::tc3186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89770,6 +93102,7 @@ "id": "bettertls::nameconstraints::tc3187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89797,6 +93130,7 @@ "id": "bettertls::nameconstraints::tc3188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89824,6 +93158,7 @@ "id": "bettertls::nameconstraints::tc3189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89851,6 +93186,7 @@ "id": "bettertls::nameconstraints::tc3190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89878,6 +93214,7 @@ "id": "bettertls::nameconstraints::tc3191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89905,6 +93242,7 @@ "id": "bettertls::nameconstraints::tc3192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89932,6 +93270,7 @@ "id": "bettertls::nameconstraints::tc3193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89959,6 +93298,7 @@ "id": "bettertls::nameconstraints::tc3194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -89986,6 +93326,7 @@ "id": "bettertls::nameconstraints::tc3195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90013,6 +93354,7 @@ "id": "bettertls::nameconstraints::tc3196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90040,6 +93382,7 @@ "id": "bettertls::nameconstraints::tc3197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90067,6 +93410,7 @@ "id": "bettertls::nameconstraints::tc3198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90094,6 +93438,7 @@ "id": "bettertls::nameconstraints::tc3199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90121,6 +93466,7 @@ "id": "bettertls::nameconstraints::tc3200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90148,6 +93494,7 @@ "id": "bettertls::nameconstraints::tc3201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90175,6 +93522,7 @@ "id": "bettertls::nameconstraints::tc3202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90202,6 +93550,7 @@ "id": "bettertls::nameconstraints::tc3203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90229,6 +93578,7 @@ "id": "bettertls::nameconstraints::tc3204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90256,6 +93606,7 @@ "id": "bettertls::nameconstraints::tc3205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90283,6 +93634,7 @@ "id": "bettertls::nameconstraints::tc3206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90310,6 +93662,7 @@ "id": "bettertls::nameconstraints::tc3207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90337,6 +93690,7 @@ "id": "bettertls::nameconstraints::tc3208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90364,6 +93718,7 @@ "id": "bettertls::nameconstraints::tc3209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90391,6 +93746,7 @@ "id": "bettertls::nameconstraints::tc3210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90418,6 +93774,7 @@ "id": "bettertls::nameconstraints::tc3211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90445,6 +93802,7 @@ "id": "bettertls::nameconstraints::tc3212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90472,6 +93830,7 @@ "id": "bettertls::nameconstraints::tc3213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90499,6 +93858,7 @@ "id": "bettertls::nameconstraints::tc3214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90526,6 +93886,7 @@ "id": "bettertls::nameconstraints::tc3215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90553,6 +93914,7 @@ "id": "bettertls::nameconstraints::tc3216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90580,6 +93942,7 @@ "id": "bettertls::nameconstraints::tc3217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90607,6 +93970,7 @@ "id": "bettertls::nameconstraints::tc3218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90634,6 +93998,7 @@ "id": "bettertls::nameconstraints::tc3219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90661,6 +94026,7 @@ "id": "bettertls::nameconstraints::tc3220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90688,6 +94054,7 @@ "id": "bettertls::nameconstraints::tc3221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90715,6 +94082,7 @@ "id": "bettertls::nameconstraints::tc3222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90742,6 +94110,7 @@ "id": "bettertls::nameconstraints::tc3223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90769,6 +94138,7 @@ "id": "bettertls::nameconstraints::tc3224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90796,6 +94166,7 @@ "id": "bettertls::nameconstraints::tc3225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90823,6 +94194,7 @@ "id": "bettertls::nameconstraints::tc3226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90850,6 +94222,7 @@ "id": "bettertls::nameconstraints::tc3227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90877,6 +94250,7 @@ "id": "bettertls::nameconstraints::tc3228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90904,6 +94278,7 @@ "id": "bettertls::nameconstraints::tc3229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90931,6 +94306,7 @@ "id": "bettertls::nameconstraints::tc3230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90958,6 +94334,7 @@ "id": "bettertls::nameconstraints::tc3231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -90985,6 +94362,7 @@ "id": "bettertls::nameconstraints::tc3232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91012,6 +94390,7 @@ "id": "bettertls::nameconstraints::tc3233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91039,6 +94418,7 @@ "id": "bettertls::nameconstraints::tc3234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91066,6 +94446,7 @@ "id": "bettertls::nameconstraints::tc3235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91093,6 +94474,7 @@ "id": "bettertls::nameconstraints::tc3236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91120,6 +94502,7 @@ "id": "bettertls::nameconstraints::tc3237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91147,6 +94530,7 @@ "id": "bettertls::nameconstraints::tc3238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91174,6 +94558,7 @@ "id": "bettertls::nameconstraints::tc3239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91201,6 +94586,7 @@ "id": "bettertls::nameconstraints::tc3240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91228,6 +94614,7 @@ "id": "bettertls::nameconstraints::tc3241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91255,6 +94642,7 @@ "id": "bettertls::nameconstraints::tc3242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91282,6 +94670,7 @@ "id": "bettertls::nameconstraints::tc3243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91309,6 +94698,7 @@ "id": "bettertls::nameconstraints::tc3244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91336,6 +94726,7 @@ "id": "bettertls::nameconstraints::tc3245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91363,6 +94754,7 @@ "id": "bettertls::nameconstraints::tc3246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91390,6 +94782,7 @@ "id": "bettertls::nameconstraints::tc3247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91417,6 +94810,7 @@ "id": "bettertls::nameconstraints::tc3248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91444,6 +94838,7 @@ "id": "bettertls::nameconstraints::tc3249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91471,6 +94866,7 @@ "id": "bettertls::nameconstraints::tc3250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91498,6 +94894,7 @@ "id": "bettertls::nameconstraints::tc3251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91525,6 +94922,7 @@ "id": "bettertls::nameconstraints::tc3252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91552,6 +94950,7 @@ "id": "bettertls::nameconstraints::tc3253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91579,6 +94978,7 @@ "id": "bettertls::nameconstraints::tc3254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91606,6 +95006,7 @@ "id": "bettertls::nameconstraints::tc3255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91633,6 +95034,7 @@ "id": "bettertls::nameconstraints::tc3256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91660,6 +95062,7 @@ "id": "bettertls::nameconstraints::tc3257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91687,6 +95090,7 @@ "id": "bettertls::nameconstraints::tc3258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91714,6 +95118,7 @@ "id": "bettertls::nameconstraints::tc3259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91741,6 +95146,7 @@ "id": "bettertls::nameconstraints::tc3260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91768,6 +95174,7 @@ "id": "bettertls::nameconstraints::tc3261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91795,6 +95202,7 @@ "id": "bettertls::nameconstraints::tc3262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91822,6 +95230,7 @@ "id": "bettertls::nameconstraints::tc3263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91849,6 +95258,7 @@ "id": "bettertls::nameconstraints::tc3264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91876,6 +95286,7 @@ "id": "bettertls::nameconstraints::tc3265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91903,6 +95314,7 @@ "id": "bettertls::nameconstraints::tc3266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91930,6 +95342,7 @@ "id": "bettertls::nameconstraints::tc3267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91957,6 +95370,7 @@ "id": "bettertls::nameconstraints::tc3268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -91984,6 +95398,7 @@ "id": "bettertls::nameconstraints::tc3269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92011,6 +95426,7 @@ "id": "bettertls::nameconstraints::tc3270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92038,6 +95454,7 @@ "id": "bettertls::nameconstraints::tc3271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92065,6 +95482,7 @@ "id": "bettertls::nameconstraints::tc3272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92092,6 +95510,7 @@ "id": "bettertls::nameconstraints::tc3273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92119,6 +95538,7 @@ "id": "bettertls::nameconstraints::tc3274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92146,6 +95566,7 @@ "id": "bettertls::nameconstraints::tc3275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92173,6 +95594,7 @@ "id": "bettertls::nameconstraints::tc3276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92200,6 +95622,7 @@ "id": "bettertls::nameconstraints::tc3277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92227,6 +95650,7 @@ "id": "bettertls::nameconstraints::tc3278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92254,6 +95678,7 @@ "id": "bettertls::nameconstraints::tc3279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92281,6 +95706,7 @@ "id": "bettertls::nameconstraints::tc3280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92308,6 +95734,7 @@ "id": "bettertls::nameconstraints::tc3281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92335,6 +95762,7 @@ "id": "bettertls::nameconstraints::tc3282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92362,6 +95790,7 @@ "id": "bettertls::nameconstraints::tc3283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92389,6 +95818,7 @@ "id": "bettertls::nameconstraints::tc3284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92416,6 +95846,7 @@ "id": "bettertls::nameconstraints::tc3285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92443,6 +95874,7 @@ "id": "bettertls::nameconstraints::tc3286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92470,6 +95902,7 @@ "id": "bettertls::nameconstraints::tc3287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92497,6 +95930,7 @@ "id": "bettertls::nameconstraints::tc3288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92524,6 +95958,7 @@ "id": "bettertls::nameconstraints::tc3289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92551,6 +95986,7 @@ "id": "bettertls::nameconstraints::tc3290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92578,6 +96014,7 @@ "id": "bettertls::nameconstraints::tc3291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92605,6 +96042,7 @@ "id": "bettertls::nameconstraints::tc3292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92632,6 +96070,7 @@ "id": "bettertls::nameconstraints::tc3293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92659,6 +96098,7 @@ "id": "bettertls::nameconstraints::tc3294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92686,6 +96126,7 @@ "id": "bettertls::nameconstraints::tc3295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92713,6 +96154,7 @@ "id": "bettertls::nameconstraints::tc3296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92740,6 +96182,7 @@ "id": "bettertls::nameconstraints::tc3297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92767,6 +96210,7 @@ "id": "bettertls::nameconstraints::tc3298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92794,6 +96238,7 @@ "id": "bettertls::nameconstraints::tc3299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92821,6 +96266,7 @@ "id": "bettertls::nameconstraints::tc3300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92848,6 +96294,7 @@ "id": "bettertls::nameconstraints::tc3301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92875,6 +96322,7 @@ "id": "bettertls::nameconstraints::tc3302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92902,6 +96350,7 @@ "id": "bettertls::nameconstraints::tc3303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92929,6 +96378,7 @@ "id": "bettertls::nameconstraints::tc3304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92956,6 +96406,7 @@ "id": "bettertls::nameconstraints::tc3305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -92983,6 +96434,7 @@ "id": "bettertls::nameconstraints::tc3306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93010,6 +96462,7 @@ "id": "bettertls::nameconstraints::tc3307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93037,6 +96490,7 @@ "id": "bettertls::nameconstraints::tc3308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93064,6 +96518,7 @@ "id": "bettertls::nameconstraints::tc3309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93091,6 +96546,7 @@ "id": "bettertls::nameconstraints::tc3310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93118,6 +96574,7 @@ "id": "bettertls::nameconstraints::tc3311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93145,6 +96602,7 @@ "id": "bettertls::nameconstraints::tc3312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93172,6 +96630,7 @@ "id": "bettertls::nameconstraints::tc3313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93199,6 +96658,7 @@ "id": "bettertls::nameconstraints::tc3314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93226,6 +96686,7 @@ "id": "bettertls::nameconstraints::tc3315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93253,6 +96714,7 @@ "id": "bettertls::nameconstraints::tc3316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93280,6 +96742,7 @@ "id": "bettertls::nameconstraints::tc3317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93307,6 +96770,7 @@ "id": "bettertls::nameconstraints::tc3318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93334,6 +96798,7 @@ "id": "bettertls::nameconstraints::tc3319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93361,6 +96826,7 @@ "id": "bettertls::nameconstraints::tc3320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93388,6 +96854,7 @@ "id": "bettertls::nameconstraints::tc3321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93415,6 +96882,7 @@ "id": "bettertls::nameconstraints::tc3322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93442,6 +96910,7 @@ "id": "bettertls::nameconstraints::tc3323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93469,6 +96938,7 @@ "id": "bettertls::nameconstraints::tc3324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93496,6 +96966,7 @@ "id": "bettertls::nameconstraints::tc3325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93523,6 +96994,7 @@ "id": "bettertls::nameconstraints::tc3326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93550,6 +97022,7 @@ "id": "bettertls::nameconstraints::tc3327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93577,6 +97050,7 @@ "id": "bettertls::nameconstraints::tc3328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93604,6 +97078,7 @@ "id": "bettertls::nameconstraints::tc3329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93631,6 +97106,7 @@ "id": "bettertls::nameconstraints::tc3330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93658,6 +97134,7 @@ "id": "bettertls::nameconstraints::tc3331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93685,6 +97162,7 @@ "id": "bettertls::nameconstraints::tc3332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93712,6 +97190,7 @@ "id": "bettertls::nameconstraints::tc3333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93739,6 +97218,7 @@ "id": "bettertls::nameconstraints::tc3334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93766,6 +97246,7 @@ "id": "bettertls::nameconstraints::tc3335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93793,6 +97274,7 @@ "id": "bettertls::nameconstraints::tc3336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93820,6 +97302,7 @@ "id": "bettertls::nameconstraints::tc3337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93847,6 +97330,7 @@ "id": "bettertls::nameconstraints::tc3338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93874,6 +97358,7 @@ "id": "bettertls::nameconstraints::tc3339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93901,6 +97386,7 @@ "id": "bettertls::nameconstraints::tc3340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93928,6 +97414,7 @@ "id": "bettertls::nameconstraints::tc3341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93955,6 +97442,7 @@ "id": "bettertls::nameconstraints::tc3342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -93982,6 +97470,7 @@ "id": "bettertls::nameconstraints::tc3343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94009,6 +97498,7 @@ "id": "bettertls::nameconstraints::tc3344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94036,6 +97526,7 @@ "id": "bettertls::nameconstraints::tc3345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94063,6 +97554,7 @@ "id": "bettertls::nameconstraints::tc3346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94090,6 +97582,7 @@ "id": "bettertls::nameconstraints::tc3347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94117,6 +97610,7 @@ "id": "bettertls::nameconstraints::tc3348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94144,6 +97638,7 @@ "id": "bettertls::nameconstraints::tc3349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94171,6 +97666,7 @@ "id": "bettertls::nameconstraints::tc3350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94198,6 +97694,7 @@ "id": "bettertls::nameconstraints::tc3351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94225,6 +97722,7 @@ "id": "bettertls::nameconstraints::tc3352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94252,6 +97750,7 @@ "id": "bettertls::nameconstraints::tc3353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94279,6 +97778,7 @@ "id": "bettertls::nameconstraints::tc3354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94306,6 +97806,7 @@ "id": "bettertls::nameconstraints::tc3355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94333,6 +97834,7 @@ "id": "bettertls::nameconstraints::tc3356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94360,6 +97862,7 @@ "id": "bettertls::nameconstraints::tc3357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94387,6 +97890,7 @@ "id": "bettertls::nameconstraints::tc3358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94414,6 +97918,7 @@ "id": "bettertls::nameconstraints::tc3359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94441,6 +97946,7 @@ "id": "bettertls::nameconstraints::tc3360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94468,6 +97974,7 @@ "id": "bettertls::nameconstraints::tc3361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94495,6 +98002,7 @@ "id": "bettertls::nameconstraints::tc3362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94522,6 +98030,7 @@ "id": "bettertls::nameconstraints::tc3363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94549,6 +98058,7 @@ "id": "bettertls::nameconstraints::tc3364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94576,6 +98086,7 @@ "id": "bettertls::nameconstraints::tc3365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94603,6 +98114,7 @@ "id": "bettertls::nameconstraints::tc3366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94630,6 +98142,7 @@ "id": "bettertls::nameconstraints::tc3367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94657,6 +98170,7 @@ "id": "bettertls::nameconstraints::tc3368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94684,6 +98198,7 @@ "id": "bettertls::nameconstraints::tc3369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94711,6 +98226,7 @@ "id": "bettertls::nameconstraints::tc3370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94738,6 +98254,7 @@ "id": "bettertls::nameconstraints::tc3371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94765,6 +98282,7 @@ "id": "bettertls::nameconstraints::tc3372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94792,6 +98310,7 @@ "id": "bettertls::nameconstraints::tc3373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94819,6 +98338,7 @@ "id": "bettertls::nameconstraints::tc3374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94846,6 +98366,7 @@ "id": "bettertls::nameconstraints::tc3375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94873,6 +98394,7 @@ "id": "bettertls::nameconstraints::tc3376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94900,6 +98422,7 @@ "id": "bettertls::nameconstraints::tc3377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94927,6 +98450,7 @@ "id": "bettertls::nameconstraints::tc3378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94954,6 +98478,7 @@ "id": "bettertls::nameconstraints::tc3379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -94981,6 +98506,7 @@ "id": "bettertls::nameconstraints::tc3380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95008,6 +98534,7 @@ "id": "bettertls::nameconstraints::tc3381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95035,6 +98562,7 @@ "id": "bettertls::nameconstraints::tc3382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95062,6 +98590,7 @@ "id": "bettertls::nameconstraints::tc3383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95089,6 +98618,7 @@ "id": "bettertls::nameconstraints::tc3384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95116,6 +98646,7 @@ "id": "bettertls::nameconstraints::tc3385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95143,6 +98674,7 @@ "id": "bettertls::nameconstraints::tc3386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95170,6 +98702,7 @@ "id": "bettertls::nameconstraints::tc3387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95197,6 +98730,7 @@ "id": "bettertls::nameconstraints::tc3388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95224,6 +98758,7 @@ "id": "bettertls::nameconstraints::tc3389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95251,6 +98786,7 @@ "id": "bettertls::nameconstraints::tc3390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95278,6 +98814,7 @@ "id": "bettertls::nameconstraints::tc3391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95305,6 +98842,7 @@ "id": "bettertls::nameconstraints::tc3392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95332,6 +98870,7 @@ "id": "bettertls::nameconstraints::tc3393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95359,6 +98898,7 @@ "id": "bettertls::nameconstraints::tc3394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95386,6 +98926,7 @@ "id": "bettertls::nameconstraints::tc3395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95413,6 +98954,7 @@ "id": "bettertls::nameconstraints::tc3396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95440,6 +98982,7 @@ "id": "bettertls::nameconstraints::tc3397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95467,6 +99010,7 @@ "id": "bettertls::nameconstraints::tc3398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95494,6 +99038,7 @@ "id": "bettertls::nameconstraints::tc3399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95521,6 +99066,7 @@ "id": "bettertls::nameconstraints::tc3400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95548,6 +99094,7 @@ "id": "bettertls::nameconstraints::tc3401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95575,6 +99122,7 @@ "id": "bettertls::nameconstraints::tc3402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95602,6 +99150,7 @@ "id": "bettertls::nameconstraints::tc3403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95629,6 +99178,7 @@ "id": "bettertls::nameconstraints::tc3404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95656,6 +99206,7 @@ "id": "bettertls::nameconstraints::tc3405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95683,6 +99234,7 @@ "id": "bettertls::nameconstraints::tc3406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95710,6 +99262,7 @@ "id": "bettertls::nameconstraints::tc3407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95737,6 +99290,7 @@ "id": "bettertls::nameconstraints::tc3408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95764,6 +99318,7 @@ "id": "bettertls::nameconstraints::tc3409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95791,6 +99346,7 @@ "id": "bettertls::nameconstraints::tc3410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95818,6 +99374,7 @@ "id": "bettertls::nameconstraints::tc3411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95845,6 +99402,7 @@ "id": "bettertls::nameconstraints::tc3412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95872,6 +99430,7 @@ "id": "bettertls::nameconstraints::tc3413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95899,6 +99458,7 @@ "id": "bettertls::nameconstraints::tc3414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95926,6 +99486,7 @@ "id": "bettertls::nameconstraints::tc3415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95953,6 +99514,7 @@ "id": "bettertls::nameconstraints::tc3416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -95980,6 +99542,7 @@ "id": "bettertls::nameconstraints::tc3417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96007,6 +99570,7 @@ "id": "bettertls::nameconstraints::tc3418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96034,6 +99598,7 @@ "id": "bettertls::nameconstraints::tc3419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96061,6 +99626,7 @@ "id": "bettertls::nameconstraints::tc3420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96088,6 +99654,7 @@ "id": "bettertls::nameconstraints::tc3421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96115,6 +99682,7 @@ "id": "bettertls::nameconstraints::tc3422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96142,6 +99710,7 @@ "id": "bettertls::nameconstraints::tc3423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96169,6 +99738,7 @@ "id": "bettertls::nameconstraints::tc3424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96196,6 +99766,7 @@ "id": "bettertls::nameconstraints::tc3425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96223,6 +99794,7 @@ "id": "bettertls::nameconstraints::tc3426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96250,6 +99822,7 @@ "id": "bettertls::nameconstraints::tc3427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96277,6 +99850,7 @@ "id": "bettertls::nameconstraints::tc3428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96304,6 +99878,7 @@ "id": "bettertls::nameconstraints::tc3429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96331,6 +99906,7 @@ "id": "bettertls::nameconstraints::tc3430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96358,6 +99934,7 @@ "id": "bettertls::nameconstraints::tc3431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96385,6 +99962,7 @@ "id": "bettertls::nameconstraints::tc3432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96412,6 +99990,7 @@ "id": "bettertls::nameconstraints::tc3433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96439,6 +100018,7 @@ "id": "bettertls::nameconstraints::tc3434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96466,6 +100046,7 @@ "id": "bettertls::nameconstraints::tc3435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96493,6 +100074,7 @@ "id": "bettertls::nameconstraints::tc3436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96520,6 +100102,7 @@ "id": "bettertls::nameconstraints::tc3437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96547,6 +100130,7 @@ "id": "bettertls::nameconstraints::tc3438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96574,6 +100158,7 @@ "id": "bettertls::nameconstraints::tc3439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96601,6 +100186,7 @@ "id": "bettertls::nameconstraints::tc3440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96628,6 +100214,7 @@ "id": "bettertls::nameconstraints::tc3441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96655,6 +100242,7 @@ "id": "bettertls::nameconstraints::tc3442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96682,6 +100270,7 @@ "id": "bettertls::nameconstraints::tc3443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96709,6 +100298,7 @@ "id": "bettertls::nameconstraints::tc3444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96736,6 +100326,7 @@ "id": "bettertls::nameconstraints::tc3445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96763,6 +100354,7 @@ "id": "bettertls::nameconstraints::tc3446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96790,6 +100382,7 @@ "id": "bettertls::nameconstraints::tc3447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96817,6 +100410,7 @@ "id": "bettertls::nameconstraints::tc3448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96844,6 +100438,7 @@ "id": "bettertls::nameconstraints::tc3449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96871,6 +100466,7 @@ "id": "bettertls::nameconstraints::tc3450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96898,6 +100494,7 @@ "id": "bettertls::nameconstraints::tc3451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96925,6 +100522,7 @@ "id": "bettertls::nameconstraints::tc3452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96952,6 +100550,7 @@ "id": "bettertls::nameconstraints::tc3453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -96979,6 +100578,7 @@ "id": "bettertls::nameconstraints::tc3454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97006,6 +100606,7 @@ "id": "bettertls::nameconstraints::tc3455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97033,6 +100634,7 @@ "id": "bettertls::nameconstraints::tc3456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97060,6 +100662,7 @@ "id": "bettertls::nameconstraints::tc3457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97087,6 +100690,7 @@ "id": "bettertls::nameconstraints::tc3458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97114,6 +100718,7 @@ "id": "bettertls::nameconstraints::tc3459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97141,6 +100746,7 @@ "id": "bettertls::nameconstraints::tc3460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97168,6 +100774,7 @@ "id": "bettertls::nameconstraints::tc3461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97195,6 +100802,7 @@ "id": "bettertls::nameconstraints::tc3462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97222,6 +100830,7 @@ "id": "bettertls::nameconstraints::tc3463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97249,6 +100858,7 @@ "id": "bettertls::nameconstraints::tc3464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97276,6 +100886,7 @@ "id": "bettertls::nameconstraints::tc3465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97303,6 +100914,7 @@ "id": "bettertls::nameconstraints::tc3466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97330,6 +100942,7 @@ "id": "bettertls::nameconstraints::tc3467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97357,6 +100970,7 @@ "id": "bettertls::nameconstraints::tc3468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97384,6 +100998,7 @@ "id": "bettertls::nameconstraints::tc3469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97411,6 +101026,7 @@ "id": "bettertls::nameconstraints::tc3470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97438,6 +101054,7 @@ "id": "bettertls::nameconstraints::tc3471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97465,6 +101082,7 @@ "id": "bettertls::nameconstraints::tc3472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97492,6 +101110,7 @@ "id": "bettertls::nameconstraints::tc3473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97519,6 +101138,7 @@ "id": "bettertls::nameconstraints::tc3474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97546,6 +101166,7 @@ "id": "bettertls::nameconstraints::tc3475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97573,6 +101194,7 @@ "id": "bettertls::nameconstraints::tc3476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97600,6 +101222,7 @@ "id": "bettertls::nameconstraints::tc3477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97627,6 +101250,7 @@ "id": "bettertls::nameconstraints::tc3478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97654,6 +101278,7 @@ "id": "bettertls::nameconstraints::tc3479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97681,6 +101306,7 @@ "id": "bettertls::nameconstraints::tc3480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97708,6 +101334,7 @@ "id": "bettertls::nameconstraints::tc3481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97735,6 +101362,7 @@ "id": "bettertls::nameconstraints::tc3482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97762,6 +101390,7 @@ "id": "bettertls::nameconstraints::tc3483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97789,6 +101418,7 @@ "id": "bettertls::nameconstraints::tc3484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97816,6 +101446,7 @@ "id": "bettertls::nameconstraints::tc3485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97843,6 +101474,7 @@ "id": "bettertls::nameconstraints::tc3486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97870,6 +101502,7 @@ "id": "bettertls::nameconstraints::tc3487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97897,6 +101530,7 @@ "id": "bettertls::nameconstraints::tc3488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97924,6 +101558,7 @@ "id": "bettertls::nameconstraints::tc3489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97951,6 +101586,7 @@ "id": "bettertls::nameconstraints::tc3490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -97978,6 +101614,7 @@ "id": "bettertls::nameconstraints::tc3491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98005,6 +101642,7 @@ "id": "bettertls::nameconstraints::tc3492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98032,6 +101670,7 @@ "id": "bettertls::nameconstraints::tc3493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98059,6 +101698,7 @@ "id": "bettertls::nameconstraints::tc3494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98086,6 +101726,7 @@ "id": "bettertls::nameconstraints::tc3495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98113,6 +101754,7 @@ "id": "bettertls::nameconstraints::tc3496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98140,6 +101782,7 @@ "id": "bettertls::nameconstraints::tc3497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98167,6 +101810,7 @@ "id": "bettertls::nameconstraints::tc3498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98194,6 +101838,7 @@ "id": "bettertls::nameconstraints::tc3499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98221,6 +101866,7 @@ "id": "bettertls::nameconstraints::tc3500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98248,6 +101894,7 @@ "id": "bettertls::nameconstraints::tc3501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98275,6 +101922,7 @@ "id": "bettertls::nameconstraints::tc3502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98302,6 +101950,7 @@ "id": "bettertls::nameconstraints::tc3503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98329,6 +101978,7 @@ "id": "bettertls::nameconstraints::tc3504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98356,6 +102006,7 @@ "id": "bettertls::nameconstraints::tc3505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98383,6 +102034,7 @@ "id": "bettertls::nameconstraints::tc3506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98410,6 +102062,7 @@ "id": "bettertls::nameconstraints::tc3507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98437,6 +102090,7 @@ "id": "bettertls::nameconstraints::tc3508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98464,6 +102118,7 @@ "id": "bettertls::nameconstraints::tc3509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98491,6 +102146,7 @@ "id": "bettertls::nameconstraints::tc3510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98518,6 +102174,7 @@ "id": "bettertls::nameconstraints::tc3511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98545,6 +102202,7 @@ "id": "bettertls::nameconstraints::tc3512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98572,6 +102230,7 @@ "id": "bettertls::nameconstraints::tc3513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98599,6 +102258,7 @@ "id": "bettertls::nameconstraints::tc3514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98626,6 +102286,7 @@ "id": "bettertls::nameconstraints::tc3515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98653,6 +102314,7 @@ "id": "bettertls::nameconstraints::tc3516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98680,6 +102342,7 @@ "id": "bettertls::nameconstraints::tc3517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98707,6 +102370,7 @@ "id": "bettertls::nameconstraints::tc3518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98734,6 +102398,7 @@ "id": "bettertls::nameconstraints::tc3519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98761,6 +102426,7 @@ "id": "bettertls::nameconstraints::tc3520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98788,6 +102454,7 @@ "id": "bettertls::nameconstraints::tc3521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98815,6 +102482,7 @@ "id": "bettertls::nameconstraints::tc3522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98842,6 +102510,7 @@ "id": "bettertls::nameconstraints::tc3523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98869,6 +102538,7 @@ "id": "bettertls::nameconstraints::tc3524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98896,6 +102566,7 @@ "id": "bettertls::nameconstraints::tc3525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98923,6 +102594,7 @@ "id": "bettertls::nameconstraints::tc3526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98950,6 +102622,7 @@ "id": "bettertls::nameconstraints::tc3527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -98977,6 +102650,7 @@ "id": "bettertls::nameconstraints::tc3528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99004,6 +102678,7 @@ "id": "bettertls::nameconstraints::tc3529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99031,6 +102706,7 @@ "id": "bettertls::nameconstraints::tc3530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99058,6 +102734,7 @@ "id": "bettertls::nameconstraints::tc3531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99085,6 +102762,7 @@ "id": "bettertls::nameconstraints::tc3532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99112,6 +102790,7 @@ "id": "bettertls::nameconstraints::tc3533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99139,6 +102818,7 @@ "id": "bettertls::nameconstraints::tc3534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99166,6 +102846,7 @@ "id": "bettertls::nameconstraints::tc3535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99193,6 +102874,7 @@ "id": "bettertls::nameconstraints::tc3536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99220,6 +102902,7 @@ "id": "bettertls::nameconstraints::tc3537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99247,6 +102930,7 @@ "id": "bettertls::nameconstraints::tc3538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99274,6 +102958,7 @@ "id": "bettertls::nameconstraints::tc3539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99301,6 +102986,7 @@ "id": "bettertls::nameconstraints::tc3540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99328,6 +103014,7 @@ "id": "bettertls::nameconstraints::tc3541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99355,6 +103042,7 @@ "id": "bettertls::nameconstraints::tc3542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99382,6 +103070,7 @@ "id": "bettertls::nameconstraints::tc3543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99409,6 +103098,7 @@ "id": "bettertls::nameconstraints::tc3544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99436,6 +103126,7 @@ "id": "bettertls::nameconstraints::tc3545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99463,6 +103154,7 @@ "id": "bettertls::nameconstraints::tc3546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99490,6 +103182,7 @@ "id": "bettertls::nameconstraints::tc3547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99517,6 +103210,7 @@ "id": "bettertls::nameconstraints::tc3548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99544,6 +103238,7 @@ "id": "bettertls::nameconstraints::tc3549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99571,6 +103266,7 @@ "id": "bettertls::nameconstraints::tc3550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99598,6 +103294,7 @@ "id": "bettertls::nameconstraints::tc3551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99625,6 +103322,7 @@ "id": "bettertls::nameconstraints::tc3552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99652,6 +103350,7 @@ "id": "bettertls::nameconstraints::tc3553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99679,6 +103378,7 @@ "id": "bettertls::nameconstraints::tc3554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99706,6 +103406,7 @@ "id": "bettertls::nameconstraints::tc3555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99733,6 +103434,7 @@ "id": "bettertls::nameconstraints::tc3556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99760,6 +103462,7 @@ "id": "bettertls::nameconstraints::tc3557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99787,6 +103490,7 @@ "id": "bettertls::nameconstraints::tc3558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99814,6 +103518,7 @@ "id": "bettertls::nameconstraints::tc3559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99841,6 +103546,7 @@ "id": "bettertls::nameconstraints::tc3560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99868,6 +103574,7 @@ "id": "bettertls::nameconstraints::tc3561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99895,6 +103602,7 @@ "id": "bettertls::nameconstraints::tc3562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99922,6 +103630,7 @@ "id": "bettertls::nameconstraints::tc3563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99949,6 +103658,7 @@ "id": "bettertls::nameconstraints::tc3564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -99976,6 +103686,7 @@ "id": "bettertls::nameconstraints::tc3565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100003,6 +103714,7 @@ "id": "bettertls::nameconstraints::tc3566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100030,6 +103742,7 @@ "id": "bettertls::nameconstraints::tc3567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100057,6 +103770,7 @@ "id": "bettertls::nameconstraints::tc3568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100084,6 +103798,7 @@ "id": "bettertls::nameconstraints::tc3569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100111,6 +103826,7 @@ "id": "bettertls::nameconstraints::tc3570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100138,6 +103854,7 @@ "id": "bettertls::nameconstraints::tc3571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100165,6 +103882,7 @@ "id": "bettertls::nameconstraints::tc3572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100192,6 +103910,7 @@ "id": "bettertls::nameconstraints::tc3573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100219,6 +103938,7 @@ "id": "bettertls::nameconstraints::tc3574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100246,6 +103966,7 @@ "id": "bettertls::nameconstraints::tc3575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100273,6 +103994,7 @@ "id": "bettertls::nameconstraints::tc3576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100300,6 +104022,7 @@ "id": "bettertls::nameconstraints::tc3577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100327,6 +104050,7 @@ "id": "bettertls::nameconstraints::tc3578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100354,6 +104078,7 @@ "id": "bettertls::nameconstraints::tc3579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100381,6 +104106,7 @@ "id": "bettertls::nameconstraints::tc3580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100408,6 +104134,7 @@ "id": "bettertls::nameconstraints::tc3581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100435,6 +104162,7 @@ "id": "bettertls::nameconstraints::tc3582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100462,6 +104190,7 @@ "id": "bettertls::nameconstraints::tc3583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100489,6 +104218,7 @@ "id": "bettertls::nameconstraints::tc3584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100516,6 +104246,7 @@ "id": "bettertls::nameconstraints::tc3585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100543,6 +104274,7 @@ "id": "bettertls::nameconstraints::tc3586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100570,6 +104302,7 @@ "id": "bettertls::nameconstraints::tc3587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100597,6 +104330,7 @@ "id": "bettertls::nameconstraints::tc3588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100624,6 +104358,7 @@ "id": "bettertls::nameconstraints::tc3589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100651,6 +104386,7 @@ "id": "bettertls::nameconstraints::tc3590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100678,6 +104414,7 @@ "id": "bettertls::nameconstraints::tc3591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100705,6 +104442,7 @@ "id": "bettertls::nameconstraints::tc3592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100732,6 +104470,7 @@ "id": "bettertls::nameconstraints::tc3593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100759,6 +104498,7 @@ "id": "bettertls::nameconstraints::tc3594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100786,6 +104526,7 @@ "id": "bettertls::nameconstraints::tc3595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100813,6 +104554,7 @@ "id": "bettertls::nameconstraints::tc3596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100840,6 +104582,7 @@ "id": "bettertls::nameconstraints::tc3597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100867,6 +104610,7 @@ "id": "bettertls::nameconstraints::tc3598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100894,6 +104638,7 @@ "id": "bettertls::nameconstraints::tc3599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100921,6 +104666,7 @@ "id": "bettertls::nameconstraints::tc3600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100948,6 +104694,7 @@ "id": "bettertls::nameconstraints::tc3601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -100975,6 +104722,7 @@ "id": "bettertls::nameconstraints::tc3602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101002,6 +104750,7 @@ "id": "bettertls::nameconstraints::tc3603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101029,6 +104778,7 @@ "id": "bettertls::nameconstraints::tc3604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101056,6 +104806,7 @@ "id": "bettertls::nameconstraints::tc3605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101083,6 +104834,7 @@ "id": "bettertls::nameconstraints::tc3606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101110,6 +104862,7 @@ "id": "bettertls::nameconstraints::tc3607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101137,6 +104890,7 @@ "id": "bettertls::nameconstraints::tc3608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101164,6 +104918,7 @@ "id": "bettertls::nameconstraints::tc3609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101191,6 +104946,7 @@ "id": "bettertls::nameconstraints::tc3610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101218,6 +104974,7 @@ "id": "bettertls::nameconstraints::tc3611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101245,6 +105002,7 @@ "id": "bettertls::nameconstraints::tc3612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101272,6 +105030,7 @@ "id": "bettertls::nameconstraints::tc3613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101299,6 +105058,7 @@ "id": "bettertls::nameconstraints::tc3614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101326,6 +105086,7 @@ "id": "bettertls::nameconstraints::tc3615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101353,6 +105114,7 @@ "id": "bettertls::nameconstraints::tc3616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101380,6 +105142,7 @@ "id": "bettertls::nameconstraints::tc3617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101407,6 +105170,7 @@ "id": "bettertls::nameconstraints::tc3618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101434,6 +105198,7 @@ "id": "bettertls::nameconstraints::tc3619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101461,6 +105226,7 @@ "id": "bettertls::nameconstraints::tc3620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101488,6 +105254,7 @@ "id": "bettertls::nameconstraints::tc3621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101515,6 +105282,7 @@ "id": "bettertls::nameconstraints::tc3622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101542,6 +105310,7 @@ "id": "bettertls::nameconstraints::tc3623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101569,6 +105338,7 @@ "id": "bettertls::nameconstraints::tc3624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101596,6 +105366,7 @@ "id": "bettertls::nameconstraints::tc3625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101623,6 +105394,7 @@ "id": "bettertls::nameconstraints::tc3626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101650,6 +105422,7 @@ "id": "bettertls::nameconstraints::tc3627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101677,6 +105450,7 @@ "id": "bettertls::nameconstraints::tc3628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101704,6 +105478,7 @@ "id": "bettertls::nameconstraints::tc3629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101731,6 +105506,7 @@ "id": "bettertls::nameconstraints::tc3630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101758,6 +105534,7 @@ "id": "bettertls::nameconstraints::tc3631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101785,6 +105562,7 @@ "id": "bettertls::nameconstraints::tc3632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101812,6 +105590,7 @@ "id": "bettertls::nameconstraints::tc3633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101839,6 +105618,7 @@ "id": "bettertls::nameconstraints::tc3634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101866,6 +105646,7 @@ "id": "bettertls::nameconstraints::tc3635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101893,6 +105674,7 @@ "id": "bettertls::nameconstraints::tc3636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101920,6 +105702,7 @@ "id": "bettertls::nameconstraints::tc3637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101947,6 +105730,7 @@ "id": "bettertls::nameconstraints::tc3638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -101974,6 +105758,7 @@ "id": "bettertls::nameconstraints::tc3639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102001,6 +105786,7 @@ "id": "bettertls::nameconstraints::tc3640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102028,6 +105814,7 @@ "id": "bettertls::nameconstraints::tc3641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102055,6 +105842,7 @@ "id": "bettertls::nameconstraints::tc3642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102082,6 +105870,7 @@ "id": "bettertls::nameconstraints::tc3643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102109,6 +105898,7 @@ "id": "bettertls::nameconstraints::tc3644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102136,6 +105926,7 @@ "id": "bettertls::nameconstraints::tc3645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102163,6 +105954,7 @@ "id": "bettertls::nameconstraints::tc3646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102190,6 +105982,7 @@ "id": "bettertls::nameconstraints::tc3647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102217,6 +106010,7 @@ "id": "bettertls::nameconstraints::tc3648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102244,6 +106038,7 @@ "id": "bettertls::nameconstraints::tc3649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102271,6 +106066,7 @@ "id": "bettertls::nameconstraints::tc3650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102298,6 +106094,7 @@ "id": "bettertls::nameconstraints::tc3651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102325,6 +106122,7 @@ "id": "bettertls::nameconstraints::tc3652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102352,6 +106150,7 @@ "id": "bettertls::nameconstraints::tc3653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102379,6 +106178,7 @@ "id": "bettertls::nameconstraints::tc3654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102406,6 +106206,7 @@ "id": "bettertls::nameconstraints::tc3655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102433,6 +106234,7 @@ "id": "bettertls::nameconstraints::tc3656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102460,6 +106262,7 @@ "id": "bettertls::nameconstraints::tc3657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102487,6 +106290,7 @@ "id": "bettertls::nameconstraints::tc3658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102514,6 +106318,7 @@ "id": "bettertls::nameconstraints::tc3659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102541,6 +106346,7 @@ "id": "bettertls::nameconstraints::tc3660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102568,6 +106374,7 @@ "id": "bettertls::nameconstraints::tc3661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102595,6 +106402,7 @@ "id": "bettertls::nameconstraints::tc3662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102622,6 +106430,7 @@ "id": "bettertls::nameconstraints::tc3663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102649,6 +106458,7 @@ "id": "bettertls::nameconstraints::tc3664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102676,6 +106486,7 @@ "id": "bettertls::nameconstraints::tc3665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102703,6 +106514,7 @@ "id": "bettertls::nameconstraints::tc3666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102730,6 +106542,7 @@ "id": "bettertls::nameconstraints::tc3667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102757,6 +106570,7 @@ "id": "bettertls::nameconstraints::tc3668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102784,6 +106598,7 @@ "id": "bettertls::nameconstraints::tc3669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102811,6 +106626,7 @@ "id": "bettertls::nameconstraints::tc3670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102838,6 +106654,7 @@ "id": "bettertls::nameconstraints::tc3671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102865,6 +106682,7 @@ "id": "bettertls::nameconstraints::tc3672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102892,6 +106710,7 @@ "id": "bettertls::nameconstraints::tc3673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102919,6 +106738,7 @@ "id": "bettertls::nameconstraints::tc3674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102946,6 +106766,7 @@ "id": "bettertls::nameconstraints::tc3675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -102973,6 +106794,7 @@ "id": "bettertls::nameconstraints::tc3676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103000,6 +106822,7 @@ "id": "bettertls::nameconstraints::tc3677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103027,6 +106850,7 @@ "id": "bettertls::nameconstraints::tc3678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103054,6 +106878,7 @@ "id": "bettertls::nameconstraints::tc3679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103081,6 +106906,7 @@ "id": "bettertls::nameconstraints::tc3680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103108,6 +106934,7 @@ "id": "bettertls::nameconstraints::tc3681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103135,6 +106962,7 @@ "id": "bettertls::nameconstraints::tc3682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103162,6 +106990,7 @@ "id": "bettertls::nameconstraints::tc3683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103189,6 +107018,7 @@ "id": "bettertls::nameconstraints::tc3684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103216,6 +107046,7 @@ "id": "bettertls::nameconstraints::tc3685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103243,6 +107074,7 @@ "id": "bettertls::nameconstraints::tc3686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103270,6 +107102,7 @@ "id": "bettertls::nameconstraints::tc3687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103297,6 +107130,7 @@ "id": "bettertls::nameconstraints::tc3688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103324,6 +107158,7 @@ "id": "bettertls::nameconstraints::tc3689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103351,6 +107186,7 @@ "id": "bettertls::nameconstraints::tc3690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103378,6 +107214,7 @@ "id": "bettertls::nameconstraints::tc3691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103405,6 +107242,7 @@ "id": "bettertls::nameconstraints::tc3692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103432,6 +107270,7 @@ "id": "bettertls::nameconstraints::tc3693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103459,6 +107298,7 @@ "id": "bettertls::nameconstraints::tc3694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103486,6 +107326,7 @@ "id": "bettertls::nameconstraints::tc3695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103513,6 +107354,7 @@ "id": "bettertls::nameconstraints::tc3696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103540,6 +107382,7 @@ "id": "bettertls::nameconstraints::tc3697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103567,6 +107410,7 @@ "id": "bettertls::nameconstraints::tc3698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103594,6 +107438,7 @@ "id": "bettertls::nameconstraints::tc3699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103621,6 +107466,7 @@ "id": "bettertls::nameconstraints::tc3700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103648,6 +107494,7 @@ "id": "bettertls::nameconstraints::tc3701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103675,6 +107522,7 @@ "id": "bettertls::nameconstraints::tc3702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103702,6 +107550,7 @@ "id": "bettertls::nameconstraints::tc3703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103729,6 +107578,7 @@ "id": "bettertls::nameconstraints::tc3704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103756,6 +107606,7 @@ "id": "bettertls::nameconstraints::tc3705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103783,6 +107634,7 @@ "id": "bettertls::nameconstraints::tc3706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103810,6 +107662,7 @@ "id": "bettertls::nameconstraints::tc3707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103837,6 +107690,7 @@ "id": "bettertls::nameconstraints::tc3708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103864,6 +107718,7 @@ "id": "bettertls::nameconstraints::tc3709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103891,6 +107746,7 @@ "id": "bettertls::nameconstraints::tc3710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103918,6 +107774,7 @@ "id": "bettertls::nameconstraints::tc3711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103945,6 +107802,7 @@ "id": "bettertls::nameconstraints::tc3712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103972,6 +107830,7 @@ "id": "bettertls::nameconstraints::tc3713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -103999,6 +107858,7 @@ "id": "bettertls::nameconstraints::tc3714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104026,6 +107886,7 @@ "id": "bettertls::nameconstraints::tc3715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104053,6 +107914,7 @@ "id": "bettertls::nameconstraints::tc3716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104080,6 +107942,7 @@ "id": "bettertls::nameconstraints::tc3717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104107,6 +107970,7 @@ "id": "bettertls::nameconstraints::tc3718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104134,6 +107998,7 @@ "id": "bettertls::nameconstraints::tc3719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104161,6 +108026,7 @@ "id": "bettertls::nameconstraints::tc3720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104188,6 +108054,7 @@ "id": "bettertls::nameconstraints::tc3721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104215,6 +108082,7 @@ "id": "bettertls::nameconstraints::tc3722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104242,6 +108110,7 @@ "id": "bettertls::nameconstraints::tc3723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104269,6 +108138,7 @@ "id": "bettertls::nameconstraints::tc3724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104296,6 +108166,7 @@ "id": "bettertls::nameconstraints::tc3725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104323,6 +108194,7 @@ "id": "bettertls::nameconstraints::tc3726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104350,6 +108222,7 @@ "id": "bettertls::nameconstraints::tc3727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104377,6 +108250,7 @@ "id": "bettertls::nameconstraints::tc3728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104404,6 +108278,7 @@ "id": "bettertls::nameconstraints::tc3729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104431,6 +108306,7 @@ "id": "bettertls::nameconstraints::tc3730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104458,6 +108334,7 @@ "id": "bettertls::nameconstraints::tc3731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104485,6 +108362,7 @@ "id": "bettertls::nameconstraints::tc3732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104512,6 +108390,7 @@ "id": "bettertls::nameconstraints::tc3733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104539,6 +108418,7 @@ "id": "bettertls::nameconstraints::tc3734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104566,6 +108446,7 @@ "id": "bettertls::nameconstraints::tc3735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104593,6 +108474,7 @@ "id": "bettertls::nameconstraints::tc3736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104620,6 +108502,7 @@ "id": "bettertls::nameconstraints::tc3737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104647,6 +108530,7 @@ "id": "bettertls::nameconstraints::tc3738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104674,6 +108558,7 @@ "id": "bettertls::nameconstraints::tc3739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104701,6 +108586,7 @@ "id": "bettertls::nameconstraints::tc3740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104728,6 +108614,7 @@ "id": "bettertls::nameconstraints::tc3741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104755,6 +108642,7 @@ "id": "bettertls::nameconstraints::tc3742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104782,6 +108670,7 @@ "id": "bettertls::nameconstraints::tc3743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104809,6 +108698,7 @@ "id": "bettertls::nameconstraints::tc3744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104836,6 +108726,7 @@ "id": "bettertls::nameconstraints::tc3745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104863,6 +108754,7 @@ "id": "bettertls::nameconstraints::tc3746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104890,6 +108782,7 @@ "id": "bettertls::nameconstraints::tc3747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104917,6 +108810,7 @@ "id": "bettertls::nameconstraints::tc3748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104944,6 +108838,7 @@ "id": "bettertls::nameconstraints::tc3749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104971,6 +108866,7 @@ "id": "bettertls::nameconstraints::tc3750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -104998,6 +108894,7 @@ "id": "bettertls::nameconstraints::tc3751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105025,6 +108922,7 @@ "id": "bettertls::nameconstraints::tc3752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105052,6 +108950,7 @@ "id": "bettertls::nameconstraints::tc3753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105079,6 +108978,7 @@ "id": "bettertls::nameconstraints::tc3754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105106,6 +109006,7 @@ "id": "bettertls::nameconstraints::tc3755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105133,6 +109034,7 @@ "id": "bettertls::nameconstraints::tc3756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105160,6 +109062,7 @@ "id": "bettertls::nameconstraints::tc3757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105187,6 +109090,7 @@ "id": "bettertls::nameconstraints::tc3758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105214,6 +109118,7 @@ "id": "bettertls::nameconstraints::tc3759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105241,6 +109146,7 @@ "id": "bettertls::nameconstraints::tc3760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105268,6 +109174,7 @@ "id": "bettertls::nameconstraints::tc3761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105295,6 +109202,7 @@ "id": "bettertls::nameconstraints::tc3762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105322,6 +109230,7 @@ "id": "bettertls::nameconstraints::tc3763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105349,6 +109258,7 @@ "id": "bettertls::nameconstraints::tc3764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105376,6 +109286,7 @@ "id": "bettertls::nameconstraints::tc3765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105403,6 +109314,7 @@ "id": "bettertls::nameconstraints::tc3766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105430,6 +109342,7 @@ "id": "bettertls::nameconstraints::tc3767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105457,6 +109370,7 @@ "id": "bettertls::nameconstraints::tc3768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105484,6 +109398,7 @@ "id": "bettertls::nameconstraints::tc3769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105511,6 +109426,7 @@ "id": "bettertls::nameconstraints::tc3770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105538,6 +109454,7 @@ "id": "bettertls::nameconstraints::tc3771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105565,6 +109482,7 @@ "id": "bettertls::nameconstraints::tc3772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105592,6 +109510,7 @@ "id": "bettertls::nameconstraints::tc3773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105619,6 +109538,7 @@ "id": "bettertls::nameconstraints::tc3774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105646,6 +109566,7 @@ "id": "bettertls::nameconstraints::tc3775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105673,6 +109594,7 @@ "id": "bettertls::nameconstraints::tc3776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105700,6 +109622,7 @@ "id": "bettertls::nameconstraints::tc3777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105727,6 +109650,7 @@ "id": "bettertls::nameconstraints::tc3778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105754,6 +109678,7 @@ "id": "bettertls::nameconstraints::tc3779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105781,6 +109706,7 @@ "id": "bettertls::nameconstraints::tc3780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105808,6 +109734,7 @@ "id": "bettertls::nameconstraints::tc3781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105835,6 +109762,7 @@ "id": "bettertls::nameconstraints::tc3782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105862,6 +109790,7 @@ "id": "bettertls::nameconstraints::tc3783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105889,6 +109818,7 @@ "id": "bettertls::nameconstraints::tc3784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105916,6 +109846,7 @@ "id": "bettertls::nameconstraints::tc3785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105943,6 +109874,7 @@ "id": "bettertls::nameconstraints::tc3786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105970,6 +109902,7 @@ "id": "bettertls::nameconstraints::tc3787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -105997,6 +109930,7 @@ "id": "bettertls::nameconstraints::tc3788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106024,6 +109958,7 @@ "id": "bettertls::nameconstraints::tc3789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106051,6 +109986,7 @@ "id": "bettertls::nameconstraints::tc3790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106078,6 +110014,7 @@ "id": "bettertls::nameconstraints::tc3791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106105,6 +110042,7 @@ "id": "bettertls::nameconstraints::tc3792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106132,6 +110070,7 @@ "id": "bettertls::nameconstraints::tc3793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106159,6 +110098,7 @@ "id": "bettertls::nameconstraints::tc3794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106186,6 +110126,7 @@ "id": "bettertls::nameconstraints::tc3795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106213,6 +110154,7 @@ "id": "bettertls::nameconstraints::tc3796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106240,6 +110182,7 @@ "id": "bettertls::nameconstraints::tc3797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106267,6 +110210,7 @@ "id": "bettertls::nameconstraints::tc3798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106294,6 +110238,7 @@ "id": "bettertls::nameconstraints::tc3799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106321,6 +110266,7 @@ "id": "bettertls::nameconstraints::tc3800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106348,6 +110294,7 @@ "id": "bettertls::nameconstraints::tc3801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106375,6 +110322,7 @@ "id": "bettertls::nameconstraints::tc3802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106402,6 +110350,7 @@ "id": "bettertls::nameconstraints::tc3803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106429,6 +110378,7 @@ "id": "bettertls::nameconstraints::tc3804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106456,6 +110406,7 @@ "id": "bettertls::nameconstraints::tc3805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106483,6 +110434,7 @@ "id": "bettertls::nameconstraints::tc3806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106510,6 +110462,7 @@ "id": "bettertls::nameconstraints::tc3807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106537,6 +110490,7 @@ "id": "bettertls::nameconstraints::tc3808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106564,6 +110518,7 @@ "id": "bettertls::nameconstraints::tc3809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106591,6 +110546,7 @@ "id": "bettertls::nameconstraints::tc3810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106618,6 +110574,7 @@ "id": "bettertls::nameconstraints::tc3811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106645,6 +110602,7 @@ "id": "bettertls::nameconstraints::tc3812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106672,6 +110630,7 @@ "id": "bettertls::nameconstraints::tc3813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106699,6 +110658,7 @@ "id": "bettertls::nameconstraints::tc3814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106726,6 +110686,7 @@ "id": "bettertls::nameconstraints::tc3815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106753,6 +110714,7 @@ "id": "bettertls::nameconstraints::tc3816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106780,6 +110742,7 @@ "id": "bettertls::nameconstraints::tc3817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106807,6 +110770,7 @@ "id": "bettertls::nameconstraints::tc3818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106834,6 +110798,7 @@ "id": "bettertls::nameconstraints::tc3819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106861,6 +110826,7 @@ "id": "bettertls::nameconstraints::tc3820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106888,6 +110854,7 @@ "id": "bettertls::nameconstraints::tc3821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106915,6 +110882,7 @@ "id": "bettertls::nameconstraints::tc3822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106942,6 +110910,7 @@ "id": "bettertls::nameconstraints::tc3823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106969,6 +110938,7 @@ "id": "bettertls::nameconstraints::tc3824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -106996,6 +110966,7 @@ "id": "bettertls::nameconstraints::tc3825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107023,6 +110994,7 @@ "id": "bettertls::nameconstraints::tc3826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107050,6 +111022,7 @@ "id": "bettertls::nameconstraints::tc3827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107077,6 +111050,7 @@ "id": "bettertls::nameconstraints::tc3828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107104,6 +111078,7 @@ "id": "bettertls::nameconstraints::tc3829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107131,6 +111106,7 @@ "id": "bettertls::nameconstraints::tc3830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107158,6 +111134,7 @@ "id": "bettertls::nameconstraints::tc3831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107185,6 +111162,7 @@ "id": "bettertls::nameconstraints::tc3832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107212,6 +111190,7 @@ "id": "bettertls::nameconstraints::tc3833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107239,6 +111218,7 @@ "id": "bettertls::nameconstraints::tc3834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107266,6 +111246,7 @@ "id": "bettertls::nameconstraints::tc3835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107293,6 +111274,7 @@ "id": "bettertls::nameconstraints::tc3836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107320,6 +111302,7 @@ "id": "bettertls::nameconstraints::tc3837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107347,6 +111330,7 @@ "id": "bettertls::nameconstraints::tc3838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107374,6 +111358,7 @@ "id": "bettertls::nameconstraints::tc3839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107401,6 +111386,7 @@ "id": "bettertls::nameconstraints::tc3840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107428,6 +111414,7 @@ "id": "bettertls::nameconstraints::tc3841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107455,6 +111442,7 @@ "id": "bettertls::nameconstraints::tc3842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107482,6 +111470,7 @@ "id": "bettertls::nameconstraints::tc3843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107509,6 +111498,7 @@ "id": "bettertls::nameconstraints::tc3844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107536,6 +111526,7 @@ "id": "bettertls::nameconstraints::tc3845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107563,6 +111554,7 @@ "id": "bettertls::nameconstraints::tc3846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107590,6 +111582,7 @@ "id": "bettertls::nameconstraints::tc3847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107617,6 +111610,7 @@ "id": "bettertls::nameconstraints::tc3848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107644,6 +111638,7 @@ "id": "bettertls::nameconstraints::tc3849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107671,6 +111666,7 @@ "id": "bettertls::nameconstraints::tc3850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107698,6 +111694,7 @@ "id": "bettertls::nameconstraints::tc3851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107725,6 +111722,7 @@ "id": "bettertls::nameconstraints::tc3852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107752,6 +111750,7 @@ "id": "bettertls::nameconstraints::tc3853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107779,6 +111778,7 @@ "id": "bettertls::nameconstraints::tc3854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107806,6 +111806,7 @@ "id": "bettertls::nameconstraints::tc3855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107833,6 +111834,7 @@ "id": "bettertls::nameconstraints::tc3856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107860,6 +111862,7 @@ "id": "bettertls::nameconstraints::tc3857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107887,6 +111890,7 @@ "id": "bettertls::nameconstraints::tc3858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107914,6 +111918,7 @@ "id": "bettertls::nameconstraints::tc3859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107941,6 +111946,7 @@ "id": "bettertls::nameconstraints::tc3860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107968,6 +111974,7 @@ "id": "bettertls::nameconstraints::tc3861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -107995,6 +112002,7 @@ "id": "bettertls::nameconstraints::tc3862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108022,6 +112030,7 @@ "id": "bettertls::nameconstraints::tc3863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108049,6 +112058,7 @@ "id": "bettertls::nameconstraints::tc3864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108076,6 +112086,7 @@ "id": "bettertls::nameconstraints::tc3865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108103,6 +112114,7 @@ "id": "bettertls::nameconstraints::tc3866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108130,6 +112142,7 @@ "id": "bettertls::nameconstraints::tc3867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108157,6 +112170,7 @@ "id": "bettertls::nameconstraints::tc3868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108184,6 +112198,7 @@ "id": "bettertls::nameconstraints::tc3869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108211,6 +112226,7 @@ "id": "bettertls::nameconstraints::tc3870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108238,6 +112254,7 @@ "id": "bettertls::nameconstraints::tc3871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108265,6 +112282,7 @@ "id": "bettertls::nameconstraints::tc3872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108292,6 +112310,7 @@ "id": "bettertls::nameconstraints::tc3873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108319,6 +112338,7 @@ "id": "bettertls::nameconstraints::tc3874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108346,6 +112366,7 @@ "id": "bettertls::nameconstraints::tc3875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108373,6 +112394,7 @@ "id": "bettertls::nameconstraints::tc3876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108400,6 +112422,7 @@ "id": "bettertls::nameconstraints::tc3877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108427,6 +112450,7 @@ "id": "bettertls::nameconstraints::tc3878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108454,6 +112478,7 @@ "id": "bettertls::nameconstraints::tc3879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108481,6 +112506,7 @@ "id": "bettertls::nameconstraints::tc3880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108508,6 +112534,7 @@ "id": "bettertls::nameconstraints::tc3881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108535,6 +112562,7 @@ "id": "bettertls::nameconstraints::tc3882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108562,6 +112590,7 @@ "id": "bettertls::nameconstraints::tc3883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108589,6 +112618,7 @@ "id": "bettertls::nameconstraints::tc3884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108616,6 +112646,7 @@ "id": "bettertls::nameconstraints::tc3885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108643,6 +112674,7 @@ "id": "bettertls::nameconstraints::tc3886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108670,6 +112702,7 @@ "id": "bettertls::nameconstraints::tc3887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108697,6 +112730,7 @@ "id": "bettertls::nameconstraints::tc3888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108724,6 +112758,7 @@ "id": "bettertls::nameconstraints::tc3889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108751,6 +112786,7 @@ "id": "bettertls::nameconstraints::tc3890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108778,6 +112814,7 @@ "id": "bettertls::nameconstraints::tc3891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108805,6 +112842,7 @@ "id": "bettertls::nameconstraints::tc3892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108832,6 +112870,7 @@ "id": "bettertls::nameconstraints::tc3893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108859,6 +112898,7 @@ "id": "bettertls::nameconstraints::tc3894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108886,6 +112926,7 @@ "id": "bettertls::nameconstraints::tc3895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108913,6 +112954,7 @@ "id": "bettertls::nameconstraints::tc3896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108940,6 +112982,7 @@ "id": "bettertls::nameconstraints::tc3897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108967,6 +113010,7 @@ "id": "bettertls::nameconstraints::tc3898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -108994,6 +113038,7 @@ "id": "bettertls::nameconstraints::tc3899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109021,6 +113066,7 @@ "id": "bettertls::nameconstraints::tc3900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109048,6 +113094,7 @@ "id": "bettertls::nameconstraints::tc3901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109075,6 +113122,7 @@ "id": "bettertls::nameconstraints::tc3902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109102,6 +113150,7 @@ "id": "bettertls::nameconstraints::tc3903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109129,6 +113178,7 @@ "id": "bettertls::nameconstraints::tc3904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109156,6 +113206,7 @@ "id": "bettertls::nameconstraints::tc3905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109183,6 +113234,7 @@ "id": "bettertls::nameconstraints::tc3906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109210,6 +113262,7 @@ "id": "bettertls::nameconstraints::tc3907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109237,6 +113290,7 @@ "id": "bettertls::nameconstraints::tc3908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109264,6 +113318,7 @@ "id": "bettertls::nameconstraints::tc3909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109291,6 +113346,7 @@ "id": "bettertls::nameconstraints::tc3910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109318,6 +113374,7 @@ "id": "bettertls::nameconstraints::tc3911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109345,6 +113402,7 @@ "id": "bettertls::nameconstraints::tc3912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109372,6 +113430,7 @@ "id": "bettertls::nameconstraints::tc3913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109399,6 +113458,7 @@ "id": "bettertls::nameconstraints::tc3914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109426,6 +113486,7 @@ "id": "bettertls::nameconstraints::tc3915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109453,6 +113514,7 @@ "id": "bettertls::nameconstraints::tc3916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109480,6 +113542,7 @@ "id": "bettertls::nameconstraints::tc3917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109507,6 +113570,7 @@ "id": "bettertls::nameconstraints::tc3918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109534,6 +113598,7 @@ "id": "bettertls::nameconstraints::tc3919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109561,6 +113626,7 @@ "id": "bettertls::nameconstraints::tc3920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109588,6 +113654,7 @@ "id": "bettertls::nameconstraints::tc3921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109615,6 +113682,7 @@ "id": "bettertls::nameconstraints::tc3922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109642,6 +113710,7 @@ "id": "bettertls::nameconstraints::tc3923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109669,6 +113738,7 @@ "id": "bettertls::nameconstraints::tc3924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109696,6 +113766,7 @@ "id": "bettertls::nameconstraints::tc3925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109723,6 +113794,7 @@ "id": "bettertls::nameconstraints::tc3926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109750,6 +113822,7 @@ "id": "bettertls::nameconstraints::tc3927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109777,6 +113850,7 @@ "id": "bettertls::nameconstraints::tc3928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109804,6 +113878,7 @@ "id": "bettertls::nameconstraints::tc3929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109831,6 +113906,7 @@ "id": "bettertls::nameconstraints::tc3930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109858,6 +113934,7 @@ "id": "bettertls::nameconstraints::tc3931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109885,6 +113962,7 @@ "id": "bettertls::nameconstraints::tc3932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109912,6 +113990,7 @@ "id": "bettertls::nameconstraints::tc3933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109939,6 +114018,7 @@ "id": "bettertls::nameconstraints::tc3934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109966,6 +114046,7 @@ "id": "bettertls::nameconstraints::tc3935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -109993,6 +114074,7 @@ "id": "bettertls::nameconstraints::tc3936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110020,6 +114102,7 @@ "id": "bettertls::nameconstraints::tc3937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110047,6 +114130,7 @@ "id": "bettertls::nameconstraints::tc3938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110074,6 +114158,7 @@ "id": "bettertls::nameconstraints::tc3939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110101,6 +114186,7 @@ "id": "bettertls::nameconstraints::tc3940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110128,6 +114214,7 @@ "id": "bettertls::nameconstraints::tc3941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110155,6 +114242,7 @@ "id": "bettertls::nameconstraints::tc3942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110182,6 +114270,7 @@ "id": "bettertls::nameconstraints::tc3943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110209,6 +114298,7 @@ "id": "bettertls::nameconstraints::tc3944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110236,6 +114326,7 @@ "id": "bettertls::nameconstraints::tc3945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110263,6 +114354,7 @@ "id": "bettertls::nameconstraints::tc3946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110290,6 +114382,7 @@ "id": "bettertls::nameconstraints::tc3947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110317,6 +114410,7 @@ "id": "bettertls::nameconstraints::tc3948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110344,6 +114438,7 @@ "id": "bettertls::nameconstraints::tc3949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110371,6 +114466,7 @@ "id": "bettertls::nameconstraints::tc3950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110398,6 +114494,7 @@ "id": "bettertls::nameconstraints::tc3951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110425,6 +114522,7 @@ "id": "bettertls::nameconstraints::tc3952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110452,6 +114550,7 @@ "id": "bettertls::nameconstraints::tc3953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110479,6 +114578,7 @@ "id": "bettertls::nameconstraints::tc3954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110506,6 +114606,7 @@ "id": "bettertls::nameconstraints::tc3955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110533,6 +114634,7 @@ "id": "bettertls::nameconstraints::tc3956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110560,6 +114662,7 @@ "id": "bettertls::nameconstraints::tc3957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110587,6 +114690,7 @@ "id": "bettertls::nameconstraints::tc3958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110614,6 +114718,7 @@ "id": "bettertls::nameconstraints::tc3959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110641,6 +114746,7 @@ "id": "bettertls::nameconstraints::tc3960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110668,6 +114774,7 @@ "id": "bettertls::nameconstraints::tc3961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110695,6 +114802,7 @@ "id": "bettertls::nameconstraints::tc3962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110722,6 +114830,7 @@ "id": "bettertls::nameconstraints::tc3963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110749,6 +114858,7 @@ "id": "bettertls::nameconstraints::tc3964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110776,6 +114886,7 @@ "id": "bettertls::nameconstraints::tc3965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110803,6 +114914,7 @@ "id": "bettertls::nameconstraints::tc3966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110830,6 +114942,7 @@ "id": "bettertls::nameconstraints::tc3967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110857,6 +114970,7 @@ "id": "bettertls::nameconstraints::tc3968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110884,6 +114998,7 @@ "id": "bettertls::nameconstraints::tc3969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110911,6 +115026,7 @@ "id": "bettertls::nameconstraints::tc3970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110938,6 +115054,7 @@ "id": "bettertls::nameconstraints::tc3971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110965,6 +115082,7 @@ "id": "bettertls::nameconstraints::tc3972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -110992,6 +115110,7 @@ "id": "bettertls::nameconstraints::tc3973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111019,6 +115138,7 @@ "id": "bettertls::nameconstraints::tc3974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111046,6 +115166,7 @@ "id": "bettertls::nameconstraints::tc3975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111073,6 +115194,7 @@ "id": "bettertls::nameconstraints::tc3976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111100,6 +115222,7 @@ "id": "bettertls::nameconstraints::tc3977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111127,6 +115250,7 @@ "id": "bettertls::nameconstraints::tc3978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111154,6 +115278,7 @@ "id": "bettertls::nameconstraints::tc3979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111181,6 +115306,7 @@ "id": "bettertls::nameconstraints::tc3980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111208,6 +115334,7 @@ "id": "bettertls::nameconstraints::tc3981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111235,6 +115362,7 @@ "id": "bettertls::nameconstraints::tc3982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111262,6 +115390,7 @@ "id": "bettertls::nameconstraints::tc3983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111289,6 +115418,7 @@ "id": "bettertls::nameconstraints::tc3984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111316,6 +115446,7 @@ "id": "bettertls::nameconstraints::tc3985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111343,6 +115474,7 @@ "id": "bettertls::nameconstraints::tc3986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111370,6 +115502,7 @@ "id": "bettertls::nameconstraints::tc3987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111397,6 +115530,7 @@ "id": "bettertls::nameconstraints::tc3988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111424,6 +115558,7 @@ "id": "bettertls::nameconstraints::tc3989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111451,6 +115586,7 @@ "id": "bettertls::nameconstraints::tc3990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111478,6 +115614,7 @@ "id": "bettertls::nameconstraints::tc3991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111505,6 +115642,7 @@ "id": "bettertls::nameconstraints::tc3992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111532,6 +115670,7 @@ "id": "bettertls::nameconstraints::tc3993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111559,6 +115698,7 @@ "id": "bettertls::nameconstraints::tc3994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111586,6 +115726,7 @@ "id": "bettertls::nameconstraints::tc3995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111613,6 +115754,7 @@ "id": "bettertls::nameconstraints::tc3996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111640,6 +115782,7 @@ "id": "bettertls::nameconstraints::tc3997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111667,6 +115810,7 @@ "id": "bettertls::nameconstraints::tc3998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111694,6 +115838,7 @@ "id": "bettertls::nameconstraints::tc3999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111721,6 +115866,7 @@ "id": "bettertls::nameconstraints::tc4000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111748,6 +115894,7 @@ "id": "bettertls::nameconstraints::tc4001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111775,6 +115922,7 @@ "id": "bettertls::nameconstraints::tc4002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111802,6 +115950,7 @@ "id": "bettertls::nameconstraints::tc4003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111829,6 +115978,7 @@ "id": "bettertls::nameconstraints::tc4004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111856,6 +116006,7 @@ "id": "bettertls::nameconstraints::tc4005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111883,6 +116034,7 @@ "id": "bettertls::nameconstraints::tc4006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111910,6 +116062,7 @@ "id": "bettertls::nameconstraints::tc4007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111937,6 +116090,7 @@ "id": "bettertls::nameconstraints::tc4008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111964,6 +116118,7 @@ "id": "bettertls::nameconstraints::tc4009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -111991,6 +116146,7 @@ "id": "bettertls::nameconstraints::tc4010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112018,6 +116174,7 @@ "id": "bettertls::nameconstraints::tc4011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112045,6 +116202,7 @@ "id": "bettertls::nameconstraints::tc4012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112072,6 +116230,7 @@ "id": "bettertls::nameconstraints::tc4013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112099,6 +116258,7 @@ "id": "bettertls::nameconstraints::tc4014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112126,6 +116286,7 @@ "id": "bettertls::nameconstraints::tc4015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112153,6 +116314,7 @@ "id": "bettertls::nameconstraints::tc4016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112180,6 +116342,7 @@ "id": "bettertls::nameconstraints::tc4017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112207,6 +116370,7 @@ "id": "bettertls::nameconstraints::tc4018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112234,6 +116398,7 @@ "id": "bettertls::nameconstraints::tc4019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112261,6 +116426,7 @@ "id": "bettertls::nameconstraints::tc4020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112288,6 +116454,7 @@ "id": "bettertls::nameconstraints::tc4021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112315,6 +116482,7 @@ "id": "bettertls::nameconstraints::tc4022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112342,6 +116510,7 @@ "id": "bettertls::nameconstraints::tc4023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112369,6 +116538,7 @@ "id": "bettertls::nameconstraints::tc4024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112396,6 +116566,7 @@ "id": "bettertls::nameconstraints::tc4025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112423,6 +116594,7 @@ "id": "bettertls::nameconstraints::tc4026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112450,6 +116622,7 @@ "id": "bettertls::nameconstraints::tc4027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112477,6 +116650,7 @@ "id": "bettertls::nameconstraints::tc4028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112504,6 +116678,7 @@ "id": "bettertls::nameconstraints::tc4029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112531,6 +116706,7 @@ "id": "bettertls::nameconstraints::tc4030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112558,6 +116734,7 @@ "id": "bettertls::nameconstraints::tc4031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112585,6 +116762,7 @@ "id": "bettertls::nameconstraints::tc4032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112612,6 +116790,7 @@ "id": "bettertls::nameconstraints::tc4033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112639,6 +116818,7 @@ "id": "bettertls::nameconstraints::tc4034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112666,6 +116846,7 @@ "id": "bettertls::nameconstraints::tc4035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112693,6 +116874,7 @@ "id": "bettertls::nameconstraints::tc4036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112720,6 +116902,7 @@ "id": "bettertls::nameconstraints::tc4037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112747,6 +116930,7 @@ "id": "bettertls::nameconstraints::tc4038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112774,6 +116958,7 @@ "id": "bettertls::nameconstraints::tc4039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112801,6 +116986,7 @@ "id": "bettertls::nameconstraints::tc4040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112828,6 +117014,7 @@ "id": "bettertls::nameconstraints::tc4041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112855,6 +117042,7 @@ "id": "bettertls::nameconstraints::tc4042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112882,6 +117070,7 @@ "id": "bettertls::nameconstraints::tc4043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112909,6 +117098,7 @@ "id": "bettertls::nameconstraints::tc4044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112936,6 +117126,7 @@ "id": "bettertls::nameconstraints::tc4045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112963,6 +117154,7 @@ "id": "bettertls::nameconstraints::tc4046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -112990,6 +117182,7 @@ "id": "bettertls::nameconstraints::tc4047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113017,6 +117210,7 @@ "id": "bettertls::nameconstraints::tc4048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113044,6 +117238,7 @@ "id": "bettertls::nameconstraints::tc4049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113071,6 +117266,7 @@ "id": "bettertls::nameconstraints::tc4050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113098,6 +117294,7 @@ "id": "bettertls::nameconstraints::tc4051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113125,6 +117322,7 @@ "id": "bettertls::nameconstraints::tc4052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113152,6 +117350,7 @@ "id": "bettertls::nameconstraints::tc4053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113179,6 +117378,7 @@ "id": "bettertls::nameconstraints::tc4054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113206,6 +117406,7 @@ "id": "bettertls::nameconstraints::tc4055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113233,6 +117434,7 @@ "id": "bettertls::nameconstraints::tc4056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113260,6 +117462,7 @@ "id": "bettertls::nameconstraints::tc4057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113287,6 +117490,7 @@ "id": "bettertls::nameconstraints::tc4058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113314,6 +117518,7 @@ "id": "bettertls::nameconstraints::tc4059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113341,6 +117546,7 @@ "id": "bettertls::nameconstraints::tc4060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113368,6 +117574,7 @@ "id": "bettertls::nameconstraints::tc4061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113395,6 +117602,7 @@ "id": "bettertls::nameconstraints::tc4062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113422,6 +117630,7 @@ "id": "bettertls::nameconstraints::tc4063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113449,6 +117658,7 @@ "id": "bettertls::nameconstraints::tc4064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113476,6 +117686,7 @@ "id": "bettertls::nameconstraints::tc4065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113503,6 +117714,7 @@ "id": "bettertls::nameconstraints::tc4066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113530,6 +117742,7 @@ "id": "bettertls::nameconstraints::tc4067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113557,6 +117770,7 @@ "id": "bettertls::nameconstraints::tc4068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113584,6 +117798,7 @@ "id": "bettertls::nameconstraints::tc4069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113611,6 +117826,7 @@ "id": "bettertls::nameconstraints::tc4070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113638,6 +117854,7 @@ "id": "bettertls::nameconstraints::tc4071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113665,6 +117882,7 @@ "id": "bettertls::nameconstraints::tc4072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113692,6 +117910,7 @@ "id": "bettertls::nameconstraints::tc4073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113719,6 +117938,7 @@ "id": "bettertls::nameconstraints::tc4074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113746,6 +117966,7 @@ "id": "bettertls::nameconstraints::tc4075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113773,6 +117994,7 @@ "id": "bettertls::nameconstraints::tc4076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113800,6 +118022,7 @@ "id": "bettertls::nameconstraints::tc4077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113827,6 +118050,7 @@ "id": "bettertls::nameconstraints::tc4078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113854,6 +118078,7 @@ "id": "bettertls::nameconstraints::tc4079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113881,6 +118106,7 @@ "id": "bettertls::nameconstraints::tc4080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113908,6 +118134,7 @@ "id": "bettertls::nameconstraints::tc4081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113935,6 +118162,7 @@ "id": "bettertls::nameconstraints::tc4082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113962,6 +118190,7 @@ "id": "bettertls::nameconstraints::tc4083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -113989,6 +118218,7 @@ "id": "bettertls::nameconstraints::tc4084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114016,6 +118246,7 @@ "id": "bettertls::nameconstraints::tc4085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114043,6 +118274,7 @@ "id": "bettertls::nameconstraints::tc4086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114070,6 +118302,7 @@ "id": "bettertls::nameconstraints::tc4087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114097,6 +118330,7 @@ "id": "bettertls::nameconstraints::tc4088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114124,6 +118358,7 @@ "id": "bettertls::nameconstraints::tc4089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114151,6 +118386,7 @@ "id": "bettertls::nameconstraints::tc4090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114178,6 +118414,7 @@ "id": "bettertls::nameconstraints::tc4091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114205,6 +118442,7 @@ "id": "bettertls::nameconstraints::tc4092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114232,6 +118470,7 @@ "id": "bettertls::nameconstraints::tc4093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114259,6 +118498,7 @@ "id": "bettertls::nameconstraints::tc4094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114286,6 +118526,7 @@ "id": "bettertls::nameconstraints::tc4095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114313,6 +118554,7 @@ "id": "bettertls::nameconstraints::tc4096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114340,6 +118582,7 @@ "id": "bettertls::nameconstraints::tc4097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114367,6 +118610,7 @@ "id": "bettertls::nameconstraints::tc4098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114394,6 +118638,7 @@ "id": "bettertls::nameconstraints::tc4099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114421,6 +118666,7 @@ "id": "bettertls::nameconstraints::tc4100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114448,6 +118694,7 @@ "id": "bettertls::nameconstraints::tc4101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114475,6 +118722,7 @@ "id": "bettertls::nameconstraints::tc4102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114502,6 +118750,7 @@ "id": "bettertls::nameconstraints::tc4103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114529,6 +118778,7 @@ "id": "bettertls::nameconstraints::tc4104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114556,6 +118806,7 @@ "id": "bettertls::nameconstraints::tc4105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114583,6 +118834,7 @@ "id": "bettertls::nameconstraints::tc4106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114610,6 +118862,7 @@ "id": "bettertls::nameconstraints::tc4107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114637,6 +118890,7 @@ "id": "bettertls::nameconstraints::tc4108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114664,6 +118918,7 @@ "id": "bettertls::nameconstraints::tc4109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114691,6 +118946,7 @@ "id": "bettertls::nameconstraints::tc4110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114718,6 +118974,7 @@ "id": "bettertls::nameconstraints::tc4111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114745,6 +119002,7 @@ "id": "bettertls::nameconstraints::tc4112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114772,6 +119030,7 @@ "id": "bettertls::nameconstraints::tc4113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114799,6 +119058,7 @@ "id": "bettertls::nameconstraints::tc4114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114826,6 +119086,7 @@ "id": "bettertls::nameconstraints::tc4115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114853,6 +119114,7 @@ "id": "bettertls::nameconstraints::tc4116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114880,6 +119142,7 @@ "id": "bettertls::nameconstraints::tc4117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114907,6 +119170,7 @@ "id": "bettertls::nameconstraints::tc4118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114934,6 +119198,7 @@ "id": "bettertls::nameconstraints::tc4119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114961,6 +119226,7 @@ "id": "bettertls::nameconstraints::tc4120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -114988,6 +119254,7 @@ "id": "bettertls::nameconstraints::tc4121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115015,6 +119282,7 @@ "id": "bettertls::nameconstraints::tc4122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115042,6 +119310,7 @@ "id": "bettertls::nameconstraints::tc4123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115069,6 +119338,7 @@ "id": "bettertls::nameconstraints::tc4124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115096,6 +119366,7 @@ "id": "bettertls::nameconstraints::tc4125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115123,6 +119394,7 @@ "id": "bettertls::nameconstraints::tc4126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115150,6 +119422,7 @@ "id": "bettertls::nameconstraints::tc4127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115177,6 +119450,7 @@ "id": "bettertls::nameconstraints::tc4128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115204,6 +119478,7 @@ "id": "bettertls::nameconstraints::tc4129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115231,6 +119506,7 @@ "id": "bettertls::nameconstraints::tc4130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115258,6 +119534,7 @@ "id": "bettertls::nameconstraints::tc4131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115285,6 +119562,7 @@ "id": "bettertls::nameconstraints::tc4132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115312,6 +119590,7 @@ "id": "bettertls::nameconstraints::tc4133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115339,6 +119618,7 @@ "id": "bettertls::nameconstraints::tc4134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115366,6 +119646,7 @@ "id": "bettertls::nameconstraints::tc4135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115393,6 +119674,7 @@ "id": "bettertls::nameconstraints::tc4136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115420,6 +119702,7 @@ "id": "bettertls::nameconstraints::tc4137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115447,6 +119730,7 @@ "id": "bettertls::nameconstraints::tc4138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115474,6 +119758,7 @@ "id": "bettertls::nameconstraints::tc4139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115501,6 +119786,7 @@ "id": "bettertls::nameconstraints::tc4140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115528,6 +119814,7 @@ "id": "bettertls::nameconstraints::tc4141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115555,6 +119842,7 @@ "id": "bettertls::nameconstraints::tc4142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115582,6 +119870,7 @@ "id": "bettertls::nameconstraints::tc4143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115609,6 +119898,7 @@ "id": "bettertls::nameconstraints::tc4144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115636,6 +119926,7 @@ "id": "bettertls::nameconstraints::tc4145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115663,6 +119954,7 @@ "id": "bettertls::nameconstraints::tc4146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115690,6 +119982,7 @@ "id": "bettertls::nameconstraints::tc4147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115717,6 +120010,7 @@ "id": "bettertls::nameconstraints::tc4148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115744,6 +120038,7 @@ "id": "bettertls::nameconstraints::tc4149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115771,6 +120066,7 @@ "id": "bettertls::nameconstraints::tc4150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115798,6 +120094,7 @@ "id": "bettertls::nameconstraints::tc4151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115825,6 +120122,7 @@ "id": "bettertls::nameconstraints::tc4152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115852,6 +120150,7 @@ "id": "bettertls::nameconstraints::tc4153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115879,6 +120178,7 @@ "id": "bettertls::nameconstraints::tc4154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115906,6 +120206,7 @@ "id": "bettertls::nameconstraints::tc4155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115933,6 +120234,7 @@ "id": "bettertls::nameconstraints::tc4156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115960,6 +120262,7 @@ "id": "bettertls::nameconstraints::tc4157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -115987,6 +120290,7 @@ "id": "bettertls::nameconstraints::tc4158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116014,6 +120318,7 @@ "id": "bettertls::nameconstraints::tc4159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116041,6 +120346,7 @@ "id": "bettertls::nameconstraints::tc4160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116068,6 +120374,7 @@ "id": "bettertls::nameconstraints::tc4161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116095,6 +120402,7 @@ "id": "bettertls::nameconstraints::tc4162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116122,6 +120430,7 @@ "id": "bettertls::nameconstraints::tc4163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116149,6 +120458,7 @@ "id": "bettertls::nameconstraints::tc4164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116176,6 +120486,7 @@ "id": "bettertls::nameconstraints::tc4165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116203,6 +120514,7 @@ "id": "bettertls::nameconstraints::tc4166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116230,6 +120542,7 @@ "id": "bettertls::nameconstraints::tc4167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116257,6 +120570,7 @@ "id": "bettertls::nameconstraints::tc4168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116284,6 +120598,7 @@ "id": "bettertls::nameconstraints::tc4169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116311,6 +120626,7 @@ "id": "bettertls::nameconstraints::tc4170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116338,6 +120654,7 @@ "id": "bettertls::nameconstraints::tc4171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116365,6 +120682,7 @@ "id": "bettertls::nameconstraints::tc4172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116392,6 +120710,7 @@ "id": "bettertls::nameconstraints::tc4173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116419,6 +120738,7 @@ "id": "bettertls::nameconstraints::tc4174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116446,6 +120766,7 @@ "id": "bettertls::nameconstraints::tc4175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116473,6 +120794,7 @@ "id": "bettertls::nameconstraints::tc4176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116500,6 +120822,7 @@ "id": "bettertls::nameconstraints::tc4177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116527,6 +120850,7 @@ "id": "bettertls::nameconstraints::tc4178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116554,6 +120878,7 @@ "id": "bettertls::nameconstraints::tc4179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116581,6 +120906,7 @@ "id": "bettertls::nameconstraints::tc4180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116608,6 +120934,7 @@ "id": "bettertls::nameconstraints::tc4181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116635,6 +120962,7 @@ "id": "bettertls::nameconstraints::tc4182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116662,6 +120990,7 @@ "id": "bettertls::nameconstraints::tc4183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116689,6 +121018,7 @@ "id": "bettertls::nameconstraints::tc4184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116716,6 +121046,7 @@ "id": "bettertls::nameconstraints::tc4185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116743,6 +121074,7 @@ "id": "bettertls::nameconstraints::tc4186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116770,6 +121102,7 @@ "id": "bettertls::nameconstraints::tc4187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116797,6 +121130,7 @@ "id": "bettertls::nameconstraints::tc4188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116824,6 +121158,7 @@ "id": "bettertls::nameconstraints::tc4189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116851,6 +121186,7 @@ "id": "bettertls::nameconstraints::tc4190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116878,6 +121214,7 @@ "id": "bettertls::nameconstraints::tc4191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116905,6 +121242,7 @@ "id": "bettertls::nameconstraints::tc4192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116932,6 +121270,7 @@ "id": "bettertls::nameconstraints::tc4193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116959,6 +121298,7 @@ "id": "bettertls::nameconstraints::tc4194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -116986,6 +121326,7 @@ "id": "bettertls::nameconstraints::tc4195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117013,6 +121354,7 @@ "id": "bettertls::nameconstraints::tc4196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117040,6 +121382,7 @@ "id": "bettertls::nameconstraints::tc4197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117067,6 +121410,7 @@ "id": "bettertls::nameconstraints::tc4198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117094,6 +121438,7 @@ "id": "bettertls::nameconstraints::tc4199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117121,6 +121466,7 @@ "id": "bettertls::nameconstraints::tc4200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117148,6 +121494,7 @@ "id": "bettertls::nameconstraints::tc4201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117175,6 +121522,7 @@ "id": "bettertls::nameconstraints::tc4202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117202,6 +121550,7 @@ "id": "bettertls::nameconstraints::tc4203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117229,6 +121578,7 @@ "id": "bettertls::nameconstraints::tc4204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117256,6 +121606,7 @@ "id": "bettertls::nameconstraints::tc4205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117283,6 +121634,7 @@ "id": "bettertls::nameconstraints::tc4206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117310,6 +121662,7 @@ "id": "bettertls::nameconstraints::tc4207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117337,6 +121690,7 @@ "id": "bettertls::nameconstraints::tc4208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117364,6 +121718,7 @@ "id": "bettertls::nameconstraints::tc4209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117391,6 +121746,7 @@ "id": "bettertls::nameconstraints::tc4210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117418,6 +121774,7 @@ "id": "bettertls::nameconstraints::tc4211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117445,6 +121802,7 @@ "id": "bettertls::nameconstraints::tc4212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117472,6 +121830,7 @@ "id": "bettertls::nameconstraints::tc4213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117499,6 +121858,7 @@ "id": "bettertls::nameconstraints::tc4214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117526,6 +121886,7 @@ "id": "bettertls::nameconstraints::tc4215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117553,6 +121914,7 @@ "id": "bettertls::nameconstraints::tc4216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117580,6 +121942,7 @@ "id": "bettertls::nameconstraints::tc4217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117607,6 +121970,7 @@ "id": "bettertls::nameconstraints::tc4218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117634,6 +121998,7 @@ "id": "bettertls::nameconstraints::tc4219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117661,6 +122026,7 @@ "id": "bettertls::nameconstraints::tc4220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117688,6 +122054,7 @@ "id": "bettertls::nameconstraints::tc4221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117715,6 +122082,7 @@ "id": "bettertls::nameconstraints::tc4222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117742,6 +122110,7 @@ "id": "bettertls::nameconstraints::tc4223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117769,6 +122138,7 @@ "id": "bettertls::nameconstraints::tc4224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117796,6 +122166,7 @@ "id": "bettertls::nameconstraints::tc4225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117823,6 +122194,7 @@ "id": "bettertls::nameconstraints::tc4226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117850,6 +122222,7 @@ "id": "bettertls::nameconstraints::tc4227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117877,6 +122250,7 @@ "id": "bettertls::nameconstraints::tc4228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117904,6 +122278,7 @@ "id": "bettertls::nameconstraints::tc4229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117931,6 +122306,7 @@ "id": "bettertls::nameconstraints::tc4230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117958,6 +122334,7 @@ "id": "bettertls::nameconstraints::tc4231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -117985,6 +122362,7 @@ "id": "bettertls::nameconstraints::tc4232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118012,6 +122390,7 @@ "id": "bettertls::nameconstraints::tc4233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118039,6 +122418,7 @@ "id": "bettertls::nameconstraints::tc4234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118066,6 +122446,7 @@ "id": "bettertls::nameconstraints::tc4235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118093,6 +122474,7 @@ "id": "bettertls::nameconstraints::tc4236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118120,6 +122502,7 @@ "id": "bettertls::nameconstraints::tc4237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118147,6 +122530,7 @@ "id": "bettertls::nameconstraints::tc4238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118174,6 +122558,7 @@ "id": "bettertls::nameconstraints::tc4239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118201,6 +122586,7 @@ "id": "bettertls::nameconstraints::tc4240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118228,6 +122614,7 @@ "id": "bettertls::nameconstraints::tc4241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118255,6 +122642,7 @@ "id": "bettertls::nameconstraints::tc4242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118282,6 +122670,7 @@ "id": "bettertls::nameconstraints::tc4243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118309,6 +122698,7 @@ "id": "bettertls::nameconstraints::tc4244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118336,6 +122726,7 @@ "id": "bettertls::nameconstraints::tc4245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118363,6 +122754,7 @@ "id": "bettertls::nameconstraints::tc4246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118390,6 +122782,7 @@ "id": "bettertls::nameconstraints::tc4247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118417,6 +122810,7 @@ "id": "bettertls::nameconstraints::tc4248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118444,6 +122838,7 @@ "id": "bettertls::nameconstraints::tc4249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118471,6 +122866,7 @@ "id": "bettertls::nameconstraints::tc4250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118498,6 +122894,7 @@ "id": "bettertls::nameconstraints::tc4251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118525,6 +122922,7 @@ "id": "bettertls::nameconstraints::tc4252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118552,6 +122950,7 @@ "id": "bettertls::nameconstraints::tc4253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118579,6 +122978,7 @@ "id": "bettertls::nameconstraints::tc4254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118606,6 +123006,7 @@ "id": "bettertls::nameconstraints::tc4255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118633,6 +123034,7 @@ "id": "bettertls::nameconstraints::tc4256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118660,6 +123062,7 @@ "id": "bettertls::nameconstraints::tc4257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118687,6 +123090,7 @@ "id": "bettertls::nameconstraints::tc4258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118714,6 +123118,7 @@ "id": "bettertls::nameconstraints::tc4259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118741,6 +123146,7 @@ "id": "bettertls::nameconstraints::tc4260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118768,6 +123174,7 @@ "id": "bettertls::nameconstraints::tc4261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118795,6 +123202,7 @@ "id": "bettertls::nameconstraints::tc4262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118822,6 +123230,7 @@ "id": "bettertls::nameconstraints::tc4263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118849,6 +123258,7 @@ "id": "bettertls::nameconstraints::tc4264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118876,6 +123286,7 @@ "id": "bettertls::nameconstraints::tc4265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118903,6 +123314,7 @@ "id": "bettertls::nameconstraints::tc4266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118930,6 +123342,7 @@ "id": "bettertls::nameconstraints::tc4267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118957,6 +123370,7 @@ "id": "bettertls::nameconstraints::tc4268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -118984,6 +123398,7 @@ "id": "bettertls::nameconstraints::tc4269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119011,6 +123426,7 @@ "id": "bettertls::nameconstraints::tc4270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119038,6 +123454,7 @@ "id": "bettertls::nameconstraints::tc4271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119065,6 +123482,7 @@ "id": "bettertls::nameconstraints::tc4272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119092,6 +123510,7 @@ "id": "bettertls::nameconstraints::tc4273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119119,6 +123538,7 @@ "id": "bettertls::nameconstraints::tc4274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119146,6 +123566,7 @@ "id": "bettertls::nameconstraints::tc4275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119173,6 +123594,7 @@ "id": "bettertls::nameconstraints::tc4276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119200,6 +123622,7 @@ "id": "bettertls::nameconstraints::tc4277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119227,6 +123650,7 @@ "id": "bettertls::nameconstraints::tc4278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119254,6 +123678,7 @@ "id": "bettertls::nameconstraints::tc4279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119281,6 +123706,7 @@ "id": "bettertls::nameconstraints::tc4280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119308,6 +123734,7 @@ "id": "bettertls::nameconstraints::tc4281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119335,6 +123762,7 @@ "id": "bettertls::nameconstraints::tc4282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119362,6 +123790,7 @@ "id": "bettertls::nameconstraints::tc4283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119389,6 +123818,7 @@ "id": "bettertls::nameconstraints::tc4284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119416,6 +123846,7 @@ "id": "bettertls::nameconstraints::tc4285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119443,6 +123874,7 @@ "id": "bettertls::nameconstraints::tc4286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119470,6 +123902,7 @@ "id": "bettertls::nameconstraints::tc4287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119497,6 +123930,7 @@ "id": "bettertls::nameconstraints::tc4288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119524,6 +123958,7 @@ "id": "bettertls::nameconstraints::tc4289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119551,6 +123986,7 @@ "id": "bettertls::nameconstraints::tc4290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119578,6 +124014,7 @@ "id": "bettertls::nameconstraints::tc4291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119605,6 +124042,7 @@ "id": "bettertls::nameconstraints::tc4292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119632,6 +124070,7 @@ "id": "bettertls::nameconstraints::tc4293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119659,6 +124098,7 @@ "id": "bettertls::nameconstraints::tc4294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119686,6 +124126,7 @@ "id": "bettertls::nameconstraints::tc4295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119713,6 +124154,7 @@ "id": "bettertls::nameconstraints::tc4296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119740,6 +124182,7 @@ "id": "bettertls::nameconstraints::tc4297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119767,6 +124210,7 @@ "id": "bettertls::nameconstraints::tc4298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119794,6 +124238,7 @@ "id": "bettertls::nameconstraints::tc4299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119821,6 +124266,7 @@ "id": "bettertls::nameconstraints::tc4300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119848,6 +124294,7 @@ "id": "bettertls::nameconstraints::tc4301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119875,6 +124322,7 @@ "id": "bettertls::nameconstraints::tc4302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119902,6 +124350,7 @@ "id": "bettertls::nameconstraints::tc4303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119929,6 +124378,7 @@ "id": "bettertls::nameconstraints::tc4304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119956,6 +124406,7 @@ "id": "bettertls::nameconstraints::tc4305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -119983,6 +124434,7 @@ "id": "bettertls::nameconstraints::tc4306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120010,6 +124462,7 @@ "id": "bettertls::nameconstraints::tc4307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120037,6 +124490,7 @@ "id": "bettertls::nameconstraints::tc4308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120064,6 +124518,7 @@ "id": "bettertls::nameconstraints::tc4309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120091,6 +124546,7 @@ "id": "bettertls::nameconstraints::tc4310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120118,6 +124574,7 @@ "id": "bettertls::nameconstraints::tc4311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120145,6 +124602,7 @@ "id": "bettertls::nameconstraints::tc4312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120172,6 +124630,7 @@ "id": "bettertls::nameconstraints::tc4313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120199,6 +124658,7 @@ "id": "bettertls::nameconstraints::tc4314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120226,6 +124686,7 @@ "id": "bettertls::nameconstraints::tc4315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120253,6 +124714,7 @@ "id": "bettertls::nameconstraints::tc4316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120280,6 +124742,7 @@ "id": "bettertls::nameconstraints::tc4317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120307,6 +124770,7 @@ "id": "bettertls::nameconstraints::tc4318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120334,6 +124798,7 @@ "id": "bettertls::nameconstraints::tc4319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120361,6 +124826,7 @@ "id": "bettertls::nameconstraints::tc4320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120388,6 +124854,7 @@ "id": "bettertls::nameconstraints::tc4321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120415,6 +124882,7 @@ "id": "bettertls::nameconstraints::tc4322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120442,6 +124910,7 @@ "id": "bettertls::nameconstraints::tc4323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120469,6 +124938,7 @@ "id": "bettertls::nameconstraints::tc4324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120496,6 +124966,7 @@ "id": "bettertls::nameconstraints::tc4325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120523,6 +124994,7 @@ "id": "bettertls::nameconstraints::tc4326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120550,6 +125022,7 @@ "id": "bettertls::nameconstraints::tc4327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120577,6 +125050,7 @@ "id": "bettertls::nameconstraints::tc4328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120604,6 +125078,7 @@ "id": "bettertls::nameconstraints::tc4329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120631,6 +125106,7 @@ "id": "bettertls::nameconstraints::tc4330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120658,6 +125134,7 @@ "id": "bettertls::nameconstraints::tc4331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120685,6 +125162,7 @@ "id": "bettertls::nameconstraints::tc4332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120712,6 +125190,7 @@ "id": "bettertls::nameconstraints::tc4333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120739,6 +125218,7 @@ "id": "bettertls::nameconstraints::tc4334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120766,6 +125246,7 @@ "id": "bettertls::nameconstraints::tc4335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120793,6 +125274,7 @@ "id": "bettertls::nameconstraints::tc4336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120820,6 +125302,7 @@ "id": "bettertls::nameconstraints::tc4337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120847,6 +125330,7 @@ "id": "bettertls::nameconstraints::tc4338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120874,6 +125358,7 @@ "id": "bettertls::nameconstraints::tc4339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120901,6 +125386,7 @@ "id": "bettertls::nameconstraints::tc4340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120928,6 +125414,7 @@ "id": "bettertls::nameconstraints::tc4341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120955,6 +125442,7 @@ "id": "bettertls::nameconstraints::tc4342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -120982,6 +125470,7 @@ "id": "bettertls::nameconstraints::tc4343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121009,6 +125498,7 @@ "id": "bettertls::nameconstraints::tc4344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121036,6 +125526,7 @@ "id": "bettertls::nameconstraints::tc4345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121063,6 +125554,7 @@ "id": "bettertls::nameconstraints::tc4346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121090,6 +125582,7 @@ "id": "bettertls::nameconstraints::tc4347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121117,6 +125610,7 @@ "id": "bettertls::nameconstraints::tc4348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121144,6 +125638,7 @@ "id": "bettertls::nameconstraints::tc4349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121171,6 +125666,7 @@ "id": "bettertls::nameconstraints::tc4350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121198,6 +125694,7 @@ "id": "bettertls::nameconstraints::tc4351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121225,6 +125722,7 @@ "id": "bettertls::nameconstraints::tc4352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121252,6 +125750,7 @@ "id": "bettertls::nameconstraints::tc4353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121279,6 +125778,7 @@ "id": "bettertls::nameconstraints::tc4354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121306,6 +125806,7 @@ "id": "bettertls::nameconstraints::tc4355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121333,6 +125834,7 @@ "id": "bettertls::nameconstraints::tc4356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121360,6 +125862,7 @@ "id": "bettertls::nameconstraints::tc4357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121387,6 +125890,7 @@ "id": "bettertls::nameconstraints::tc4358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121414,6 +125918,7 @@ "id": "bettertls::nameconstraints::tc4359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121441,6 +125946,7 @@ "id": "bettertls::nameconstraints::tc4360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121468,6 +125974,7 @@ "id": "bettertls::nameconstraints::tc4361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121495,6 +126002,7 @@ "id": "bettertls::nameconstraints::tc4362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121522,6 +126030,7 @@ "id": "bettertls::nameconstraints::tc4363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121549,6 +126058,7 @@ "id": "bettertls::nameconstraints::tc4364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121576,6 +126086,7 @@ "id": "bettertls::nameconstraints::tc4365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121603,6 +126114,7 @@ "id": "bettertls::nameconstraints::tc4366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121630,6 +126142,7 @@ "id": "bettertls::nameconstraints::tc4367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121657,6 +126170,7 @@ "id": "bettertls::nameconstraints::tc4368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121684,6 +126198,7 @@ "id": "bettertls::nameconstraints::tc4369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121711,6 +126226,7 @@ "id": "bettertls::nameconstraints::tc4370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121738,6 +126254,7 @@ "id": "bettertls::nameconstraints::tc4371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121765,6 +126282,7 @@ "id": "bettertls::nameconstraints::tc4372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121792,6 +126310,7 @@ "id": "bettertls::nameconstraints::tc4373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121819,6 +126338,7 @@ "id": "bettertls::nameconstraints::tc4374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121846,6 +126366,7 @@ "id": "bettertls::nameconstraints::tc4375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121873,6 +126394,7 @@ "id": "bettertls::nameconstraints::tc4376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121900,6 +126422,7 @@ "id": "bettertls::nameconstraints::tc4377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121927,6 +126450,7 @@ "id": "bettertls::nameconstraints::tc4378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121954,6 +126478,7 @@ "id": "bettertls::nameconstraints::tc4379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -121981,6 +126506,7 @@ "id": "bettertls::nameconstraints::tc4380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122008,6 +126534,7 @@ "id": "bettertls::nameconstraints::tc4381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122035,6 +126562,7 @@ "id": "bettertls::nameconstraints::tc4382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122062,6 +126590,7 @@ "id": "bettertls::nameconstraints::tc4383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122089,6 +126618,7 @@ "id": "bettertls::nameconstraints::tc4384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122116,6 +126646,7 @@ "id": "bettertls::nameconstraints::tc4385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122143,6 +126674,7 @@ "id": "bettertls::nameconstraints::tc4386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122170,6 +126702,7 @@ "id": "bettertls::nameconstraints::tc4387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122197,6 +126730,7 @@ "id": "bettertls::nameconstraints::tc4388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122224,6 +126758,7 @@ "id": "bettertls::nameconstraints::tc4389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122251,6 +126786,7 @@ "id": "bettertls::nameconstraints::tc4390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122278,6 +126814,7 @@ "id": "bettertls::nameconstraints::tc4391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122305,6 +126842,7 @@ "id": "bettertls::nameconstraints::tc4392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122332,6 +126870,7 @@ "id": "bettertls::nameconstraints::tc4393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122359,6 +126898,7 @@ "id": "bettertls::nameconstraints::tc4394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122386,6 +126926,7 @@ "id": "bettertls::nameconstraints::tc4395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122413,6 +126954,7 @@ "id": "bettertls::nameconstraints::tc4396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122440,6 +126982,7 @@ "id": "bettertls::nameconstraints::tc4397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122467,6 +127010,7 @@ "id": "bettertls::nameconstraints::tc4398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122494,6 +127038,7 @@ "id": "bettertls::nameconstraints::tc4399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122521,6 +127066,7 @@ "id": "bettertls::nameconstraints::tc4400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122548,6 +127094,7 @@ "id": "bettertls::nameconstraints::tc4401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122575,6 +127122,7 @@ "id": "bettertls::nameconstraints::tc4402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122602,6 +127150,7 @@ "id": "bettertls::nameconstraints::tc4403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122629,6 +127178,7 @@ "id": "bettertls::nameconstraints::tc4404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122656,6 +127206,7 @@ "id": "bettertls::nameconstraints::tc4405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122683,6 +127234,7 @@ "id": "bettertls::nameconstraints::tc4406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122710,6 +127262,7 @@ "id": "bettertls::nameconstraints::tc4407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122737,6 +127290,7 @@ "id": "bettertls::nameconstraints::tc4408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122764,6 +127318,7 @@ "id": "bettertls::nameconstraints::tc4409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122791,6 +127346,7 @@ "id": "bettertls::nameconstraints::tc4410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122818,6 +127374,7 @@ "id": "bettertls::nameconstraints::tc4411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122845,6 +127402,7 @@ "id": "bettertls::nameconstraints::tc4412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122872,6 +127430,7 @@ "id": "bettertls::nameconstraints::tc4413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122899,6 +127458,7 @@ "id": "bettertls::nameconstraints::tc4414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122926,6 +127486,7 @@ "id": "bettertls::nameconstraints::tc4415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122953,6 +127514,7 @@ "id": "bettertls::nameconstraints::tc4416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -122980,6 +127542,7 @@ "id": "bettertls::nameconstraints::tc4417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123007,6 +127570,7 @@ "id": "bettertls::nameconstraints::tc4418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123034,6 +127598,7 @@ "id": "bettertls::nameconstraints::tc4419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123061,6 +127626,7 @@ "id": "bettertls::nameconstraints::tc4420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123088,6 +127654,7 @@ "id": "bettertls::nameconstraints::tc4421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123115,6 +127682,7 @@ "id": "bettertls::nameconstraints::tc4422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123142,6 +127710,7 @@ "id": "bettertls::nameconstraints::tc4423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123169,6 +127738,7 @@ "id": "bettertls::nameconstraints::tc4424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123196,6 +127766,7 @@ "id": "bettertls::nameconstraints::tc4425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123223,6 +127794,7 @@ "id": "bettertls::nameconstraints::tc4426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123250,6 +127822,7 @@ "id": "bettertls::nameconstraints::tc4427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123277,6 +127850,7 @@ "id": "bettertls::nameconstraints::tc4428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123304,6 +127878,7 @@ "id": "bettertls::nameconstraints::tc4429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123331,6 +127906,7 @@ "id": "bettertls::nameconstraints::tc4430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123358,6 +127934,7 @@ "id": "bettertls::nameconstraints::tc4431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123385,6 +127962,7 @@ "id": "bettertls::nameconstraints::tc4432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123412,6 +127990,7 @@ "id": "bettertls::nameconstraints::tc4433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123439,6 +128018,7 @@ "id": "bettertls::nameconstraints::tc4434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123466,6 +128046,7 @@ "id": "bettertls::nameconstraints::tc4435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123493,6 +128074,7 @@ "id": "bettertls::nameconstraints::tc4436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123520,6 +128102,7 @@ "id": "bettertls::nameconstraints::tc4437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123547,6 +128130,7 @@ "id": "bettertls::nameconstraints::tc4438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123574,6 +128158,7 @@ "id": "bettertls::nameconstraints::tc4439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123601,6 +128186,7 @@ "id": "bettertls::nameconstraints::tc4440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123628,6 +128214,7 @@ "id": "bettertls::nameconstraints::tc4441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123655,6 +128242,7 @@ "id": "bettertls::nameconstraints::tc4442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123682,6 +128270,7 @@ "id": "bettertls::nameconstraints::tc4443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123709,6 +128298,7 @@ "id": "bettertls::nameconstraints::tc4444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123736,6 +128326,7 @@ "id": "bettertls::nameconstraints::tc4445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123763,6 +128354,7 @@ "id": "bettertls::nameconstraints::tc4446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123790,6 +128382,7 @@ "id": "bettertls::nameconstraints::tc4447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123817,6 +128410,7 @@ "id": "bettertls::nameconstraints::tc4448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123844,6 +128438,7 @@ "id": "bettertls::nameconstraints::tc4449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123871,6 +128466,7 @@ "id": "bettertls::nameconstraints::tc4450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123898,6 +128494,7 @@ "id": "bettertls::nameconstraints::tc4451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123925,6 +128522,7 @@ "id": "bettertls::nameconstraints::tc4452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123952,6 +128550,7 @@ "id": "bettertls::nameconstraints::tc4453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -123979,6 +128578,7 @@ "id": "bettertls::nameconstraints::tc4454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124006,6 +128606,7 @@ "id": "bettertls::nameconstraints::tc4455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124033,6 +128634,7 @@ "id": "bettertls::nameconstraints::tc4456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124060,6 +128662,7 @@ "id": "bettertls::nameconstraints::tc4457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124087,6 +128690,7 @@ "id": "bettertls::nameconstraints::tc4458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124114,6 +128718,7 @@ "id": "bettertls::nameconstraints::tc4459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124141,6 +128746,7 @@ "id": "bettertls::nameconstraints::tc4460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124168,6 +128774,7 @@ "id": "bettertls::nameconstraints::tc4461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124195,6 +128802,7 @@ "id": "bettertls::nameconstraints::tc4462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124222,6 +128830,7 @@ "id": "bettertls::nameconstraints::tc4463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124249,6 +128858,7 @@ "id": "bettertls::nameconstraints::tc4464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124276,6 +128886,7 @@ "id": "bettertls::nameconstraints::tc4465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124303,6 +128914,7 @@ "id": "bettertls::nameconstraints::tc4466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124330,6 +128942,7 @@ "id": "bettertls::nameconstraints::tc4467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124357,6 +128970,7 @@ "id": "bettertls::nameconstraints::tc4468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124384,6 +128998,7 @@ "id": "bettertls::nameconstraints::tc4469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124411,6 +129026,7 @@ "id": "bettertls::nameconstraints::tc4470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124438,6 +129054,7 @@ "id": "bettertls::nameconstraints::tc4471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124465,6 +129082,7 @@ "id": "bettertls::nameconstraints::tc4472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124492,6 +129110,7 @@ "id": "bettertls::nameconstraints::tc4473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124519,6 +129138,7 @@ "id": "bettertls::nameconstraints::tc4474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124546,6 +129166,7 @@ "id": "bettertls::nameconstraints::tc4475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124573,6 +129194,7 @@ "id": "bettertls::nameconstraints::tc4476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124600,6 +129222,7 @@ "id": "bettertls::nameconstraints::tc4477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124627,6 +129250,7 @@ "id": "bettertls::nameconstraints::tc4478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124654,6 +129278,7 @@ "id": "bettertls::nameconstraints::tc4479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124681,6 +129306,7 @@ "id": "bettertls::nameconstraints::tc4480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124708,6 +129334,7 @@ "id": "bettertls::nameconstraints::tc4481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124735,6 +129362,7 @@ "id": "bettertls::nameconstraints::tc4482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124762,6 +129390,7 @@ "id": "bettertls::nameconstraints::tc4483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124789,6 +129418,7 @@ "id": "bettertls::nameconstraints::tc4484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124816,6 +129446,7 @@ "id": "bettertls::nameconstraints::tc4485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124843,6 +129474,7 @@ "id": "bettertls::nameconstraints::tc4486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124870,6 +129502,7 @@ "id": "bettertls::nameconstraints::tc4487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124897,6 +129530,7 @@ "id": "bettertls::nameconstraints::tc4488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124924,6 +129558,7 @@ "id": "bettertls::nameconstraints::tc4489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124951,6 +129586,7 @@ "id": "bettertls::nameconstraints::tc4490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -124978,6 +129614,7 @@ "id": "bettertls::nameconstraints::tc4491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125005,6 +129642,7 @@ "id": "bettertls::nameconstraints::tc4492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125032,6 +129670,7 @@ "id": "bettertls::nameconstraints::tc4493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125059,6 +129698,7 @@ "id": "bettertls::nameconstraints::tc4494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125086,6 +129726,7 @@ "id": "bettertls::nameconstraints::tc4495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125113,6 +129754,7 @@ "id": "bettertls::nameconstraints::tc4496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125140,6 +129782,7 @@ "id": "bettertls::nameconstraints::tc4497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125167,6 +129810,7 @@ "id": "bettertls::nameconstraints::tc4498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125194,6 +129838,7 @@ "id": "bettertls::nameconstraints::tc4499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125221,6 +129866,7 @@ "id": "bettertls::nameconstraints::tc4500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125248,6 +129894,7 @@ "id": "bettertls::nameconstraints::tc4501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125275,6 +129922,7 @@ "id": "bettertls::nameconstraints::tc4502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125302,6 +129950,7 @@ "id": "bettertls::nameconstraints::tc4503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125329,6 +129978,7 @@ "id": "bettertls::nameconstraints::tc4504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125356,6 +130006,7 @@ "id": "bettertls::nameconstraints::tc4505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125383,6 +130034,7 @@ "id": "bettertls::nameconstraints::tc4506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125410,6 +130062,7 @@ "id": "bettertls::nameconstraints::tc4507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125437,6 +130090,7 @@ "id": "bettertls::nameconstraints::tc4508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125464,6 +130118,7 @@ "id": "bettertls::nameconstraints::tc4509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125491,6 +130146,7 @@ "id": "bettertls::nameconstraints::tc4510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125518,6 +130174,7 @@ "id": "bettertls::nameconstraints::tc4511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125545,6 +130202,7 @@ "id": "bettertls::nameconstraints::tc4512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125572,6 +130230,7 @@ "id": "bettertls::nameconstraints::tc4513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125599,6 +130258,7 @@ "id": "bettertls::nameconstraints::tc4514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125626,6 +130286,7 @@ "id": "bettertls::nameconstraints::tc4515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125653,6 +130314,7 @@ "id": "bettertls::nameconstraints::tc4516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125680,6 +130342,7 @@ "id": "bettertls::nameconstraints::tc4517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125707,6 +130370,7 @@ "id": "bettertls::nameconstraints::tc4518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125734,6 +130398,7 @@ "id": "bettertls::nameconstraints::tc4519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125761,6 +130426,7 @@ "id": "bettertls::nameconstraints::tc4520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125788,6 +130454,7 @@ "id": "bettertls::nameconstraints::tc4521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125815,6 +130482,7 @@ "id": "bettertls::nameconstraints::tc4522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125842,6 +130510,7 @@ "id": "bettertls::nameconstraints::tc4523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125869,6 +130538,7 @@ "id": "bettertls::nameconstraints::tc4524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125896,6 +130566,7 @@ "id": "bettertls::nameconstraints::tc4525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125923,6 +130594,7 @@ "id": "bettertls::nameconstraints::tc4526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125950,6 +130622,7 @@ "id": "bettertls::nameconstraints::tc4527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -125977,6 +130650,7 @@ "id": "bettertls::nameconstraints::tc4528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126004,6 +130678,7 @@ "id": "bettertls::nameconstraints::tc4529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126031,6 +130706,7 @@ "id": "bettertls::nameconstraints::tc4530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126058,6 +130734,7 @@ "id": "bettertls::nameconstraints::tc4531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126085,6 +130762,7 @@ "id": "bettertls::nameconstraints::tc4532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126112,6 +130790,7 @@ "id": "bettertls::nameconstraints::tc4533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126139,6 +130818,7 @@ "id": "bettertls::nameconstraints::tc4534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126166,6 +130846,7 @@ "id": "bettertls::nameconstraints::tc4535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126193,6 +130874,7 @@ "id": "bettertls::nameconstraints::tc4536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126220,6 +130902,7 @@ "id": "bettertls::nameconstraints::tc4537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126247,6 +130930,7 @@ "id": "bettertls::nameconstraints::tc4538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126274,6 +130958,7 @@ "id": "bettertls::nameconstraints::tc4539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126301,6 +130986,7 @@ "id": "bettertls::nameconstraints::tc4540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126328,6 +131014,7 @@ "id": "bettertls::nameconstraints::tc4541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126355,6 +131042,7 @@ "id": "bettertls::nameconstraints::tc4542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126382,6 +131070,7 @@ "id": "bettertls::nameconstraints::tc4543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126409,6 +131098,7 @@ "id": "bettertls::nameconstraints::tc4544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126436,6 +131126,7 @@ "id": "bettertls::nameconstraints::tc4545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126463,6 +131154,7 @@ "id": "bettertls::nameconstraints::tc4546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126490,6 +131182,7 @@ "id": "bettertls::nameconstraints::tc4547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126517,6 +131210,7 @@ "id": "bettertls::nameconstraints::tc4548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126544,6 +131238,7 @@ "id": "bettertls::nameconstraints::tc4549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126571,6 +131266,7 @@ "id": "bettertls::nameconstraints::tc4550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126598,6 +131294,7 @@ "id": "bettertls::nameconstraints::tc4551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126625,6 +131322,7 @@ "id": "bettertls::nameconstraints::tc4552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126652,6 +131350,7 @@ "id": "bettertls::nameconstraints::tc4553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126679,6 +131378,7 @@ "id": "bettertls::nameconstraints::tc4554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126706,6 +131406,7 @@ "id": "bettertls::nameconstraints::tc4555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126733,6 +131434,7 @@ "id": "bettertls::nameconstraints::tc4556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126760,6 +131462,7 @@ "id": "bettertls::nameconstraints::tc4557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126787,6 +131490,7 @@ "id": "bettertls::nameconstraints::tc4558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126814,6 +131518,7 @@ "id": "bettertls::nameconstraints::tc4559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126841,6 +131546,7 @@ "id": "bettertls::nameconstraints::tc4560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126868,6 +131574,7 @@ "id": "bettertls::nameconstraints::tc4561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126895,6 +131602,7 @@ "id": "bettertls::nameconstraints::tc4562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126922,6 +131630,7 @@ "id": "bettertls::nameconstraints::tc4563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126949,6 +131658,7 @@ "id": "bettertls::nameconstraints::tc4564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -126976,6 +131686,7 @@ "id": "bettertls::nameconstraints::tc4565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127003,6 +131714,7 @@ "id": "bettertls::nameconstraints::tc4566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127030,6 +131742,7 @@ "id": "bettertls::nameconstraints::tc4567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127057,6 +131770,7 @@ "id": "bettertls::nameconstraints::tc4568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127084,6 +131798,7 @@ "id": "bettertls::nameconstraints::tc4569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127111,6 +131826,7 @@ "id": "bettertls::nameconstraints::tc4570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127138,6 +131854,7 @@ "id": "bettertls::nameconstraints::tc4571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127165,6 +131882,7 @@ "id": "bettertls::nameconstraints::tc4572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127192,6 +131910,7 @@ "id": "bettertls::nameconstraints::tc4573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127219,6 +131938,7 @@ "id": "bettertls::nameconstraints::tc4574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127246,6 +131966,7 @@ "id": "bettertls::nameconstraints::tc4575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127273,6 +131994,7 @@ "id": "bettertls::nameconstraints::tc4576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127300,6 +132022,7 @@ "id": "bettertls::nameconstraints::tc4577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127327,6 +132050,7 @@ "id": "bettertls::nameconstraints::tc4578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127354,6 +132078,7 @@ "id": "bettertls::nameconstraints::tc4579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127381,6 +132106,7 @@ "id": "bettertls::nameconstraints::tc4580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127408,6 +132134,7 @@ "id": "bettertls::nameconstraints::tc4581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127435,6 +132162,7 @@ "id": "bettertls::nameconstraints::tc4582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127462,6 +132190,7 @@ "id": "bettertls::nameconstraints::tc4583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127489,6 +132218,7 @@ "id": "bettertls::nameconstraints::tc4584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127516,6 +132246,7 @@ "id": "bettertls::nameconstraints::tc4585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127543,6 +132274,7 @@ "id": "bettertls::nameconstraints::tc4586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127570,6 +132302,7 @@ "id": "bettertls::nameconstraints::tc4587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127597,6 +132330,7 @@ "id": "bettertls::nameconstraints::tc4588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127624,6 +132358,7 @@ "id": "bettertls::nameconstraints::tc4589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127651,6 +132386,7 @@ "id": "bettertls::nameconstraints::tc4590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127678,6 +132414,7 @@ "id": "bettertls::nameconstraints::tc4591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127705,6 +132442,7 @@ "id": "bettertls::nameconstraints::tc4592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127732,6 +132470,7 @@ "id": "bettertls::nameconstraints::tc4593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127759,6 +132498,7 @@ "id": "bettertls::nameconstraints::tc4594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127786,6 +132526,7 @@ "id": "bettertls::nameconstraints::tc4595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127813,6 +132554,7 @@ "id": "bettertls::nameconstraints::tc4596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127840,6 +132582,7 @@ "id": "bettertls::nameconstraints::tc4597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127867,6 +132610,7 @@ "id": "bettertls::nameconstraints::tc4598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127894,6 +132638,7 @@ "id": "bettertls::nameconstraints::tc4599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127921,6 +132666,7 @@ "id": "bettertls::nameconstraints::tc4600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127948,6 +132694,7 @@ "id": "bettertls::nameconstraints::tc4601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -127975,6 +132722,7 @@ "id": "bettertls::nameconstraints::tc4602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128002,6 +132750,7 @@ "id": "bettertls::nameconstraints::tc4603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128029,6 +132778,7 @@ "id": "bettertls::nameconstraints::tc4604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128056,6 +132806,7 @@ "id": "bettertls::nameconstraints::tc4605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128083,6 +132834,7 @@ "id": "bettertls::nameconstraints::tc4606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128110,6 +132862,7 @@ "id": "bettertls::nameconstraints::tc4607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128137,6 +132890,7 @@ "id": "bettertls::nameconstraints::tc4608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128164,6 +132918,7 @@ "id": "bettertls::nameconstraints::tc4609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128191,6 +132946,7 @@ "id": "bettertls::nameconstraints::tc4610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128218,6 +132974,7 @@ "id": "bettertls::nameconstraints::tc4611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128245,6 +133002,7 @@ "id": "bettertls::nameconstraints::tc4612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128272,6 +133030,7 @@ "id": "bettertls::nameconstraints::tc4613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128299,6 +133058,7 @@ "id": "bettertls::nameconstraints::tc4614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128326,6 +133086,7 @@ "id": "bettertls::nameconstraints::tc4615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128353,6 +133114,7 @@ "id": "bettertls::nameconstraints::tc4616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128380,6 +133142,7 @@ "id": "bettertls::nameconstraints::tc4617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128407,6 +133170,7 @@ "id": "bettertls::nameconstraints::tc4618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128434,6 +133198,7 @@ "id": "bettertls::nameconstraints::tc4619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128461,6 +133226,7 @@ "id": "bettertls::nameconstraints::tc4620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128488,6 +133254,7 @@ "id": "bettertls::nameconstraints::tc4621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128515,6 +133282,7 @@ "id": "bettertls::nameconstraints::tc4622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128542,6 +133310,7 @@ "id": "bettertls::nameconstraints::tc4623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128569,6 +133338,7 @@ "id": "bettertls::nameconstraints::tc4624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128596,6 +133366,7 @@ "id": "bettertls::nameconstraints::tc4625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128623,6 +133394,7 @@ "id": "bettertls::nameconstraints::tc4626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128650,6 +133422,7 @@ "id": "bettertls::nameconstraints::tc4627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128677,6 +133450,7 @@ "id": "bettertls::nameconstraints::tc4628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128704,6 +133478,7 @@ "id": "bettertls::nameconstraints::tc4629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128731,6 +133506,7 @@ "id": "bettertls::nameconstraints::tc4630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128758,6 +133534,7 @@ "id": "bettertls::nameconstraints::tc4631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128785,6 +133562,7 @@ "id": "bettertls::nameconstraints::tc4632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128812,6 +133590,7 @@ "id": "bettertls::nameconstraints::tc4633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128839,6 +133618,7 @@ "id": "bettertls::nameconstraints::tc4634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128866,6 +133646,7 @@ "id": "bettertls::nameconstraints::tc4635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128893,6 +133674,7 @@ "id": "bettertls::nameconstraints::tc4636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128920,6 +133702,7 @@ "id": "bettertls::nameconstraints::tc4637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128947,6 +133730,7 @@ "id": "bettertls::nameconstraints::tc4638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -128974,6 +133758,7 @@ "id": "bettertls::nameconstraints::tc4639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129001,6 +133786,7 @@ "id": "bettertls::nameconstraints::tc4640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129028,6 +133814,7 @@ "id": "bettertls::nameconstraints::tc4641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129055,6 +133842,7 @@ "id": "bettertls::nameconstraints::tc4642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129082,6 +133870,7 @@ "id": "bettertls::nameconstraints::tc4643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129109,6 +133898,7 @@ "id": "bettertls::nameconstraints::tc4644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129136,6 +133926,7 @@ "id": "bettertls::nameconstraints::tc4645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129163,6 +133954,7 @@ "id": "bettertls::nameconstraints::tc4646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129190,6 +133982,7 @@ "id": "bettertls::nameconstraints::tc4647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129217,6 +134010,7 @@ "id": "bettertls::nameconstraints::tc4648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129244,6 +134038,7 @@ "id": "bettertls::nameconstraints::tc4649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129271,6 +134066,7 @@ "id": "bettertls::nameconstraints::tc4650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129298,6 +134094,7 @@ "id": "bettertls::nameconstraints::tc4651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129325,6 +134122,7 @@ "id": "bettertls::nameconstraints::tc4652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129352,6 +134150,7 @@ "id": "bettertls::nameconstraints::tc4653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129379,6 +134178,7 @@ "id": "bettertls::nameconstraints::tc4654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129406,6 +134206,7 @@ "id": "bettertls::nameconstraints::tc4655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129433,6 +134234,7 @@ "id": "bettertls::nameconstraints::tc4656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129460,6 +134262,7 @@ "id": "bettertls::nameconstraints::tc4657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129487,6 +134290,7 @@ "id": "bettertls::nameconstraints::tc4658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129514,6 +134318,7 @@ "id": "bettertls::nameconstraints::tc4659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129541,6 +134346,7 @@ "id": "bettertls::nameconstraints::tc4660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129568,6 +134374,7 @@ "id": "bettertls::nameconstraints::tc4661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129595,6 +134402,7 @@ "id": "bettertls::nameconstraints::tc4662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129622,6 +134430,7 @@ "id": "bettertls::nameconstraints::tc4663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129649,6 +134458,7 @@ "id": "bettertls::nameconstraints::tc4664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129676,6 +134486,7 @@ "id": "bettertls::nameconstraints::tc4665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129703,6 +134514,7 @@ "id": "bettertls::nameconstraints::tc4666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129730,6 +134542,7 @@ "id": "bettertls::nameconstraints::tc4667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129757,6 +134570,7 @@ "id": "bettertls::nameconstraints::tc4668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129784,6 +134598,7 @@ "id": "bettertls::nameconstraints::tc4669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129811,6 +134626,7 @@ "id": "bettertls::nameconstraints::tc4670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129838,6 +134654,7 @@ "id": "bettertls::nameconstraints::tc4671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129865,6 +134682,7 @@ "id": "bettertls::nameconstraints::tc4672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129892,6 +134710,7 @@ "id": "bettertls::nameconstraints::tc4673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129919,6 +134738,7 @@ "id": "bettertls::nameconstraints::tc4674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129946,6 +134766,7 @@ "id": "bettertls::nameconstraints::tc4675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -129973,6 +134794,7 @@ "id": "bettertls::nameconstraints::tc4676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130000,6 +134822,7 @@ "id": "bettertls::nameconstraints::tc4677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130027,6 +134850,7 @@ "id": "bettertls::nameconstraints::tc4678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130054,6 +134878,7 @@ "id": "bettertls::nameconstraints::tc4679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130081,6 +134906,7 @@ "id": "bettertls::nameconstraints::tc4680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130108,6 +134934,7 @@ "id": "bettertls::nameconstraints::tc4681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130135,6 +134962,7 @@ "id": "bettertls::nameconstraints::tc4682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130162,6 +134990,7 @@ "id": "bettertls::nameconstraints::tc4683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130189,6 +135018,7 @@ "id": "bettertls::nameconstraints::tc4684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130216,6 +135046,7 @@ "id": "bettertls::nameconstraints::tc4685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130243,6 +135074,7 @@ "id": "bettertls::nameconstraints::tc4686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130270,6 +135102,7 @@ "id": "bettertls::nameconstraints::tc4687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130297,6 +135130,7 @@ "id": "bettertls::nameconstraints::tc4688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130324,6 +135158,7 @@ "id": "bettertls::nameconstraints::tc4689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130351,6 +135186,7 @@ "id": "bettertls::nameconstraints::tc4690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130378,6 +135214,7 @@ "id": "bettertls::nameconstraints::tc4691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130405,6 +135242,7 @@ "id": "bettertls::nameconstraints::tc4692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130432,6 +135270,7 @@ "id": "bettertls::nameconstraints::tc4693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130459,6 +135298,7 @@ "id": "bettertls::nameconstraints::tc4694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130486,6 +135326,7 @@ "id": "bettertls::nameconstraints::tc4695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130513,6 +135354,7 @@ "id": "bettertls::nameconstraints::tc4696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130540,6 +135382,7 @@ "id": "bettertls::nameconstraints::tc4697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130567,6 +135410,7 @@ "id": "bettertls::nameconstraints::tc4698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130594,6 +135438,7 @@ "id": "bettertls::nameconstraints::tc4699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130621,6 +135466,7 @@ "id": "bettertls::nameconstraints::tc4700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130648,6 +135494,7 @@ "id": "bettertls::nameconstraints::tc4701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130675,6 +135522,7 @@ "id": "bettertls::nameconstraints::tc4702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130702,6 +135550,7 @@ "id": "bettertls::nameconstraints::tc4703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130729,6 +135578,7 @@ "id": "bettertls::nameconstraints::tc4704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130756,6 +135606,7 @@ "id": "bettertls::nameconstraints::tc4705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130783,6 +135634,7 @@ "id": "bettertls::nameconstraints::tc4706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130810,6 +135662,7 @@ "id": "bettertls::nameconstraints::tc4707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130837,6 +135690,7 @@ "id": "bettertls::nameconstraints::tc4708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130864,6 +135718,7 @@ "id": "bettertls::nameconstraints::tc4709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130891,6 +135746,7 @@ "id": "bettertls::nameconstraints::tc4710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130918,6 +135774,7 @@ "id": "bettertls::nameconstraints::tc4711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130945,6 +135802,7 @@ "id": "bettertls::nameconstraints::tc4712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130972,6 +135830,7 @@ "id": "bettertls::nameconstraints::tc4713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -130999,6 +135858,7 @@ "id": "bettertls::nameconstraints::tc4714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131026,6 +135886,7 @@ "id": "bettertls::nameconstraints::tc4715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131053,6 +135914,7 @@ "id": "bettertls::nameconstraints::tc4716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131080,6 +135942,7 @@ "id": "bettertls::nameconstraints::tc4717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131107,6 +135970,7 @@ "id": "bettertls::nameconstraints::tc4718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131134,6 +135998,7 @@ "id": "bettertls::nameconstraints::tc4719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131161,6 +136026,7 @@ "id": "bettertls::nameconstraints::tc4720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131188,6 +136054,7 @@ "id": "bettertls::nameconstraints::tc4721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131215,6 +136082,7 @@ "id": "bettertls::nameconstraints::tc4722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131242,6 +136110,7 @@ "id": "bettertls::nameconstraints::tc4723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131269,6 +136138,7 @@ "id": "bettertls::nameconstraints::tc4724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131296,6 +136166,7 @@ "id": "bettertls::nameconstraints::tc4725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131323,6 +136194,7 @@ "id": "bettertls::nameconstraints::tc4726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131350,6 +136222,7 @@ "id": "bettertls::nameconstraints::tc4727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131377,6 +136250,7 @@ "id": "bettertls::nameconstraints::tc4728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131404,6 +136278,7 @@ "id": "bettertls::nameconstraints::tc4729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131431,6 +136306,7 @@ "id": "bettertls::nameconstraints::tc4730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131458,6 +136334,7 @@ "id": "bettertls::nameconstraints::tc4731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131485,6 +136362,7 @@ "id": "bettertls::nameconstraints::tc4732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131512,6 +136390,7 @@ "id": "bettertls::nameconstraints::tc4733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131539,6 +136418,7 @@ "id": "bettertls::nameconstraints::tc4734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131566,6 +136446,7 @@ "id": "bettertls::nameconstraints::tc4735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131593,6 +136474,7 @@ "id": "bettertls::nameconstraints::tc4736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131620,6 +136502,7 @@ "id": "bettertls::nameconstraints::tc4737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131647,6 +136530,7 @@ "id": "bettertls::nameconstraints::tc4738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131674,6 +136558,7 @@ "id": "bettertls::nameconstraints::tc4739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131701,6 +136586,7 @@ "id": "bettertls::nameconstraints::tc4740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131728,6 +136614,7 @@ "id": "bettertls::nameconstraints::tc4741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131755,6 +136642,7 @@ "id": "bettertls::nameconstraints::tc4742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131782,6 +136670,7 @@ "id": "bettertls::nameconstraints::tc4743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131809,6 +136698,7 @@ "id": "bettertls::nameconstraints::tc4744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131836,6 +136726,7 @@ "id": "bettertls::nameconstraints::tc4745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131863,6 +136754,7 @@ "id": "bettertls::nameconstraints::tc4746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131890,6 +136782,7 @@ "id": "bettertls::nameconstraints::tc4747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131917,6 +136810,7 @@ "id": "bettertls::nameconstraints::tc4748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131944,6 +136838,7 @@ "id": "bettertls::nameconstraints::tc4749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131971,6 +136866,7 @@ "id": "bettertls::nameconstraints::tc4750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -131998,6 +136894,7 @@ "id": "bettertls::nameconstraints::tc4751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132025,6 +136922,7 @@ "id": "bettertls::nameconstraints::tc4752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132052,6 +136950,7 @@ "id": "bettertls::nameconstraints::tc4753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132079,6 +136978,7 @@ "id": "bettertls::nameconstraints::tc4754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132106,6 +137006,7 @@ "id": "bettertls::nameconstraints::tc4755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132133,6 +137034,7 @@ "id": "bettertls::nameconstraints::tc4756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132160,6 +137062,7 @@ "id": "bettertls::nameconstraints::tc4757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132187,6 +137090,7 @@ "id": "bettertls::nameconstraints::tc4758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132214,6 +137118,7 @@ "id": "bettertls::nameconstraints::tc4759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132241,6 +137146,7 @@ "id": "bettertls::nameconstraints::tc4760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132268,6 +137174,7 @@ "id": "bettertls::nameconstraints::tc4761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132295,6 +137202,7 @@ "id": "bettertls::nameconstraints::tc4762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132322,6 +137230,7 @@ "id": "bettertls::nameconstraints::tc4763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132349,6 +137258,7 @@ "id": "bettertls::nameconstraints::tc4764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132376,6 +137286,7 @@ "id": "bettertls::nameconstraints::tc4765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132403,6 +137314,7 @@ "id": "bettertls::nameconstraints::tc4766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132430,6 +137342,7 @@ "id": "bettertls::nameconstraints::tc4767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132457,6 +137370,7 @@ "id": "bettertls::nameconstraints::tc4768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132484,6 +137398,7 @@ "id": "bettertls::nameconstraints::tc4769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132511,6 +137426,7 @@ "id": "bettertls::nameconstraints::tc4770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132538,6 +137454,7 @@ "id": "bettertls::nameconstraints::tc4771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132565,6 +137482,7 @@ "id": "bettertls::nameconstraints::tc4772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132592,6 +137510,7 @@ "id": "bettertls::nameconstraints::tc4773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132619,6 +137538,7 @@ "id": "bettertls::nameconstraints::tc4774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132646,6 +137566,7 @@ "id": "bettertls::nameconstraints::tc4775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132673,6 +137594,7 @@ "id": "bettertls::nameconstraints::tc4776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132700,6 +137622,7 @@ "id": "bettertls::nameconstraints::tc4777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132727,6 +137650,7 @@ "id": "bettertls::nameconstraints::tc4778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132754,6 +137678,7 @@ "id": "bettertls::nameconstraints::tc4779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132781,6 +137706,7 @@ "id": "bettertls::nameconstraints::tc4780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132808,6 +137734,7 @@ "id": "bettertls::nameconstraints::tc4781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132835,6 +137762,7 @@ "id": "bettertls::nameconstraints::tc4782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132862,6 +137790,7 @@ "id": "bettertls::nameconstraints::tc4783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132889,6 +137818,7 @@ "id": "bettertls::nameconstraints::tc4784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132916,6 +137846,7 @@ "id": "bettertls::nameconstraints::tc4785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132943,6 +137874,7 @@ "id": "bettertls::nameconstraints::tc4786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132970,6 +137902,7 @@ "id": "bettertls::nameconstraints::tc4787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -132997,6 +137930,7 @@ "id": "bettertls::nameconstraints::tc4788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133024,6 +137958,7 @@ "id": "bettertls::nameconstraints::tc4789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133051,6 +137986,7 @@ "id": "bettertls::nameconstraints::tc4790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133078,6 +138014,7 @@ "id": "bettertls::nameconstraints::tc4791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133105,6 +138042,7 @@ "id": "bettertls::nameconstraints::tc4792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133132,6 +138070,7 @@ "id": "bettertls::nameconstraints::tc4793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133159,6 +138098,7 @@ "id": "bettertls::nameconstraints::tc4794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133186,6 +138126,7 @@ "id": "bettertls::nameconstraints::tc4795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133213,6 +138154,7 @@ "id": "bettertls::nameconstraints::tc4796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133240,6 +138182,7 @@ "id": "bettertls::nameconstraints::tc4797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133267,6 +138210,7 @@ "id": "bettertls::nameconstraints::tc4798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133294,6 +138238,7 @@ "id": "bettertls::nameconstraints::tc4799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133321,6 +138266,7 @@ "id": "bettertls::nameconstraints::tc4800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133348,6 +138294,7 @@ "id": "bettertls::nameconstraints::tc4801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133375,6 +138322,7 @@ "id": "bettertls::nameconstraints::tc4802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133402,6 +138350,7 @@ "id": "bettertls::nameconstraints::tc4803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133429,6 +138378,7 @@ "id": "bettertls::nameconstraints::tc4804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133456,6 +138406,7 @@ "id": "bettertls::nameconstraints::tc4805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133483,6 +138434,7 @@ "id": "bettertls::nameconstraints::tc4806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133510,6 +138462,7 @@ "id": "bettertls::nameconstraints::tc4807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133537,6 +138490,7 @@ "id": "bettertls::nameconstraints::tc4808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133564,6 +138518,7 @@ "id": "bettertls::nameconstraints::tc4809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133591,6 +138546,7 @@ "id": "bettertls::nameconstraints::tc4810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133618,6 +138574,7 @@ "id": "bettertls::nameconstraints::tc4811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133645,6 +138602,7 @@ "id": "bettertls::nameconstraints::tc4812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133672,6 +138630,7 @@ "id": "bettertls::nameconstraints::tc4813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133699,6 +138658,7 @@ "id": "bettertls::nameconstraints::tc4814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133726,6 +138686,7 @@ "id": "bettertls::nameconstraints::tc4815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133753,6 +138714,7 @@ "id": "bettertls::nameconstraints::tc4816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133780,6 +138742,7 @@ "id": "bettertls::nameconstraints::tc4817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133807,6 +138770,7 @@ "id": "bettertls::nameconstraints::tc4818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133834,6 +138798,7 @@ "id": "bettertls::nameconstraints::tc4819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133861,6 +138826,7 @@ "id": "bettertls::nameconstraints::tc4820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133888,6 +138854,7 @@ "id": "bettertls::nameconstraints::tc4821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133915,6 +138882,7 @@ "id": "bettertls::nameconstraints::tc4822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133942,6 +138910,7 @@ "id": "bettertls::nameconstraints::tc4823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133969,6 +138938,7 @@ "id": "bettertls::nameconstraints::tc4824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -133996,6 +138966,7 @@ "id": "bettertls::nameconstraints::tc4825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134023,6 +138994,7 @@ "id": "bettertls::nameconstraints::tc4826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134050,6 +139022,7 @@ "id": "bettertls::nameconstraints::tc4827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134077,6 +139050,7 @@ "id": "bettertls::nameconstraints::tc4828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134104,6 +139078,7 @@ "id": "bettertls::nameconstraints::tc4829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134131,6 +139106,7 @@ "id": "bettertls::nameconstraints::tc4830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134158,6 +139134,7 @@ "id": "bettertls::nameconstraints::tc4831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134185,6 +139162,7 @@ "id": "bettertls::nameconstraints::tc4832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134212,6 +139190,7 @@ "id": "bettertls::nameconstraints::tc4833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134239,6 +139218,7 @@ "id": "bettertls::nameconstraints::tc4834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134266,6 +139246,7 @@ "id": "bettertls::nameconstraints::tc4835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134293,6 +139274,7 @@ "id": "bettertls::nameconstraints::tc4836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134320,6 +139302,7 @@ "id": "bettertls::nameconstraints::tc4837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134347,6 +139330,7 @@ "id": "bettertls::nameconstraints::tc4838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134374,6 +139358,7 @@ "id": "bettertls::nameconstraints::tc4839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134401,6 +139386,7 @@ "id": "bettertls::nameconstraints::tc4840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134428,6 +139414,7 @@ "id": "bettertls::nameconstraints::tc4841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134455,6 +139442,7 @@ "id": "bettertls::nameconstraints::tc4842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134482,6 +139470,7 @@ "id": "bettertls::nameconstraints::tc4843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134509,6 +139498,7 @@ "id": "bettertls::nameconstraints::tc4844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134536,6 +139526,7 @@ "id": "bettertls::nameconstraints::tc4845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134563,6 +139554,7 @@ "id": "bettertls::nameconstraints::tc4846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134590,6 +139582,7 @@ "id": "bettertls::nameconstraints::tc4847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134617,6 +139610,7 @@ "id": "bettertls::nameconstraints::tc4848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134644,6 +139638,7 @@ "id": "bettertls::nameconstraints::tc4849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134671,6 +139666,7 @@ "id": "bettertls::nameconstraints::tc4850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134698,6 +139694,7 @@ "id": "bettertls::nameconstraints::tc4851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134725,6 +139722,7 @@ "id": "bettertls::nameconstraints::tc4852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134752,6 +139750,7 @@ "id": "bettertls::nameconstraints::tc4853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134779,6 +139778,7 @@ "id": "bettertls::nameconstraints::tc4854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134806,6 +139806,7 @@ "id": "bettertls::nameconstraints::tc4855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134833,6 +139834,7 @@ "id": "bettertls::nameconstraints::tc4856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134860,6 +139862,7 @@ "id": "bettertls::nameconstraints::tc4857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134887,6 +139890,7 @@ "id": "bettertls::nameconstraints::tc4858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134914,6 +139918,7 @@ "id": "bettertls::nameconstraints::tc4859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134941,6 +139946,7 @@ "id": "bettertls::nameconstraints::tc4860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134968,6 +139974,7 @@ "id": "bettertls::nameconstraints::tc4861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -134995,6 +140002,7 @@ "id": "bettertls::nameconstraints::tc4862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135022,6 +140030,7 @@ "id": "bettertls::nameconstraints::tc4863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135049,6 +140058,7 @@ "id": "bettertls::nameconstraints::tc4864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135076,6 +140086,7 @@ "id": "bettertls::nameconstraints::tc4865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135103,6 +140114,7 @@ "id": "bettertls::nameconstraints::tc4866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135130,6 +140142,7 @@ "id": "bettertls::nameconstraints::tc4867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135157,6 +140170,7 @@ "id": "bettertls::nameconstraints::tc4868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135184,6 +140198,7 @@ "id": "bettertls::nameconstraints::tc4869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135211,6 +140226,7 @@ "id": "bettertls::nameconstraints::tc4870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135238,6 +140254,7 @@ "id": "bettertls::nameconstraints::tc4871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135265,6 +140282,7 @@ "id": "bettertls::nameconstraints::tc4872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135292,6 +140310,7 @@ "id": "bettertls::nameconstraints::tc4873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135319,6 +140338,7 @@ "id": "bettertls::nameconstraints::tc4874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135346,6 +140366,7 @@ "id": "bettertls::nameconstraints::tc4875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135373,6 +140394,7 @@ "id": "bettertls::nameconstraints::tc4876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135400,6 +140422,7 @@ "id": "bettertls::nameconstraints::tc4877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135427,6 +140450,7 @@ "id": "bettertls::nameconstraints::tc4878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135454,6 +140478,7 @@ "id": "bettertls::nameconstraints::tc4879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135481,6 +140506,7 @@ "id": "bettertls::nameconstraints::tc4880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135508,6 +140534,7 @@ "id": "bettertls::nameconstraints::tc4881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135535,6 +140562,7 @@ "id": "bettertls::nameconstraints::tc4882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135562,6 +140590,7 @@ "id": "bettertls::nameconstraints::tc4883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135589,6 +140618,7 @@ "id": "bettertls::nameconstraints::tc4884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135616,6 +140646,7 @@ "id": "bettertls::nameconstraints::tc4885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135643,6 +140674,7 @@ "id": "bettertls::nameconstraints::tc4886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135670,6 +140702,7 @@ "id": "bettertls::nameconstraints::tc4887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135697,6 +140730,7 @@ "id": "bettertls::nameconstraints::tc4888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135724,6 +140758,7 @@ "id": "bettertls::nameconstraints::tc4889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135751,6 +140786,7 @@ "id": "bettertls::nameconstraints::tc4890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135778,6 +140814,7 @@ "id": "bettertls::nameconstraints::tc4891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135805,6 +140842,7 @@ "id": "bettertls::nameconstraints::tc4892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135832,6 +140870,7 @@ "id": "bettertls::nameconstraints::tc4893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135859,6 +140898,7 @@ "id": "bettertls::nameconstraints::tc4894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135886,6 +140926,7 @@ "id": "bettertls::nameconstraints::tc4895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135913,6 +140954,7 @@ "id": "bettertls::nameconstraints::tc4896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135940,6 +140982,7 @@ "id": "bettertls::nameconstraints::tc4897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135967,6 +141010,7 @@ "id": "bettertls::nameconstraints::tc4898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -135994,6 +141038,7 @@ "id": "bettertls::nameconstraints::tc4899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136021,6 +141066,7 @@ "id": "bettertls::nameconstraints::tc4900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136048,6 +141094,7 @@ "id": "bettertls::nameconstraints::tc4901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136075,6 +141122,7 @@ "id": "bettertls::nameconstraints::tc4902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136102,6 +141150,7 @@ "id": "bettertls::nameconstraints::tc4903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136129,6 +141178,7 @@ "id": "bettertls::nameconstraints::tc4904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136156,6 +141206,7 @@ "id": "bettertls::nameconstraints::tc4905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136183,6 +141234,7 @@ "id": "bettertls::nameconstraints::tc4906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136210,6 +141262,7 @@ "id": "bettertls::nameconstraints::tc4907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136237,6 +141290,7 @@ "id": "bettertls::nameconstraints::tc4908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136264,6 +141318,7 @@ "id": "bettertls::nameconstraints::tc4909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136291,6 +141346,7 @@ "id": "bettertls::nameconstraints::tc4910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136318,6 +141374,7 @@ "id": "bettertls::nameconstraints::tc4911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136345,6 +141402,7 @@ "id": "bettertls::nameconstraints::tc4912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136372,6 +141430,7 @@ "id": "bettertls::nameconstraints::tc4913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136399,6 +141458,7 @@ "id": "bettertls::nameconstraints::tc4914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136426,6 +141486,7 @@ "id": "bettertls::nameconstraints::tc4915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136453,6 +141514,7 @@ "id": "bettertls::nameconstraints::tc4916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136480,6 +141542,7 @@ "id": "bettertls::nameconstraints::tc4917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136507,6 +141570,7 @@ "id": "bettertls::nameconstraints::tc4918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136534,6 +141598,7 @@ "id": "bettertls::nameconstraints::tc4919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136561,6 +141626,7 @@ "id": "bettertls::nameconstraints::tc4920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136588,6 +141654,7 @@ "id": "bettertls::nameconstraints::tc4921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136615,6 +141682,7 @@ "id": "bettertls::nameconstraints::tc4922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136642,6 +141710,7 @@ "id": "bettertls::nameconstraints::tc4923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136669,6 +141738,7 @@ "id": "bettertls::nameconstraints::tc4924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136696,6 +141766,7 @@ "id": "bettertls::nameconstraints::tc4925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136723,6 +141794,7 @@ "id": "bettertls::nameconstraints::tc4926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136750,6 +141822,7 @@ "id": "bettertls::nameconstraints::tc4927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136777,6 +141850,7 @@ "id": "bettertls::nameconstraints::tc4928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136804,6 +141878,7 @@ "id": "bettertls::nameconstraints::tc4929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136831,6 +141906,7 @@ "id": "bettertls::nameconstraints::tc4930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136858,6 +141934,7 @@ "id": "bettertls::nameconstraints::tc4931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136885,6 +141962,7 @@ "id": "bettertls::nameconstraints::tc4932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136912,6 +141990,7 @@ "id": "bettertls::nameconstraints::tc4933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136939,6 +142018,7 @@ "id": "bettertls::nameconstraints::tc4934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136966,6 +142046,7 @@ "id": "bettertls::nameconstraints::tc4935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -136993,6 +142074,7 @@ "id": "bettertls::nameconstraints::tc4936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137020,6 +142102,7 @@ "id": "bettertls::nameconstraints::tc4937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137047,6 +142130,7 @@ "id": "bettertls::nameconstraints::tc4938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137074,6 +142158,7 @@ "id": "bettertls::nameconstraints::tc4939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137101,6 +142186,7 @@ "id": "bettertls::nameconstraints::tc4940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137128,6 +142214,7 @@ "id": "bettertls::nameconstraints::tc4941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137155,6 +142242,7 @@ "id": "bettertls::nameconstraints::tc4942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137182,6 +142270,7 @@ "id": "bettertls::nameconstraints::tc4943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137209,6 +142298,7 @@ "id": "bettertls::nameconstraints::tc4944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137236,6 +142326,7 @@ "id": "bettertls::nameconstraints::tc4945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137263,6 +142354,7 @@ "id": "bettertls::nameconstraints::tc4946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137290,6 +142382,7 @@ "id": "bettertls::nameconstraints::tc4947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137317,6 +142410,7 @@ "id": "bettertls::nameconstraints::tc4948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137344,6 +142438,7 @@ "id": "bettertls::nameconstraints::tc4949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137371,6 +142466,7 @@ "id": "bettertls::nameconstraints::tc4950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137398,6 +142494,7 @@ "id": "bettertls::nameconstraints::tc4951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137425,6 +142522,7 @@ "id": "bettertls::nameconstraints::tc4952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137452,6 +142550,7 @@ "id": "bettertls::nameconstraints::tc4953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137479,6 +142578,7 @@ "id": "bettertls::nameconstraints::tc4954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137506,6 +142606,7 @@ "id": "bettertls::nameconstraints::tc4955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137533,6 +142634,7 @@ "id": "bettertls::nameconstraints::tc4956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137560,6 +142662,7 @@ "id": "bettertls::nameconstraints::tc4957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137587,6 +142690,7 @@ "id": "bettertls::nameconstraints::tc4958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137614,6 +142718,7 @@ "id": "bettertls::nameconstraints::tc4959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137641,6 +142746,7 @@ "id": "bettertls::nameconstraints::tc4960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137668,6 +142774,7 @@ "id": "bettertls::nameconstraints::tc4961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137695,6 +142802,7 @@ "id": "bettertls::nameconstraints::tc4962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137722,6 +142830,7 @@ "id": "bettertls::nameconstraints::tc4963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137749,6 +142858,7 @@ "id": "bettertls::nameconstraints::tc4964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137776,6 +142886,7 @@ "id": "bettertls::nameconstraints::tc4965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137803,6 +142914,7 @@ "id": "bettertls::nameconstraints::tc4966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137830,6 +142942,7 @@ "id": "bettertls::nameconstraints::tc4967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137857,6 +142970,7 @@ "id": "bettertls::nameconstraints::tc4968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137884,6 +142998,7 @@ "id": "bettertls::nameconstraints::tc4969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137911,6 +143026,7 @@ "id": "bettertls::nameconstraints::tc4970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137938,6 +143054,7 @@ "id": "bettertls::nameconstraints::tc4971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137965,6 +143082,7 @@ "id": "bettertls::nameconstraints::tc4972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -137992,6 +143110,7 @@ "id": "bettertls::nameconstraints::tc4973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138019,6 +143138,7 @@ "id": "bettertls::nameconstraints::tc4974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138046,6 +143166,7 @@ "id": "bettertls::nameconstraints::tc4975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138073,6 +143194,7 @@ "id": "bettertls::nameconstraints::tc4976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138100,6 +143222,7 @@ "id": "bettertls::nameconstraints::tc4977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138127,6 +143250,7 @@ "id": "bettertls::nameconstraints::tc4978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138154,6 +143278,7 @@ "id": "bettertls::nameconstraints::tc4979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138181,6 +143306,7 @@ "id": "bettertls::nameconstraints::tc4980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138208,6 +143334,7 @@ "id": "bettertls::nameconstraints::tc4981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138235,6 +143362,7 @@ "id": "bettertls::nameconstraints::tc4982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138262,6 +143390,7 @@ "id": "bettertls::nameconstraints::tc4983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138289,6 +143418,7 @@ "id": "bettertls::nameconstraints::tc4984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138316,6 +143446,7 @@ "id": "bettertls::nameconstraints::tc4985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138343,6 +143474,7 @@ "id": "bettertls::nameconstraints::tc4986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138370,6 +143502,7 @@ "id": "bettertls::nameconstraints::tc4987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138397,6 +143530,7 @@ "id": "bettertls::nameconstraints::tc4988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138424,6 +143558,7 @@ "id": "bettertls::nameconstraints::tc4989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138451,6 +143586,7 @@ "id": "bettertls::nameconstraints::tc4990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138478,6 +143614,7 @@ "id": "bettertls::nameconstraints::tc4991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138505,6 +143642,7 @@ "id": "bettertls::nameconstraints::tc4992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138532,6 +143670,7 @@ "id": "bettertls::nameconstraints::tc4993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138559,6 +143698,7 @@ "id": "bettertls::nameconstraints::tc4994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138586,6 +143726,7 @@ "id": "bettertls::nameconstraints::tc4995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138613,6 +143754,7 @@ "id": "bettertls::nameconstraints::tc4996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138640,6 +143782,7 @@ "id": "bettertls::nameconstraints::tc4997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138667,6 +143810,7 @@ "id": "bettertls::nameconstraints::tc4998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138694,6 +143838,7 @@ "id": "bettertls::nameconstraints::tc4999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138721,6 +143866,7 @@ "id": "bettertls::nameconstraints::tc5000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138748,6 +143894,7 @@ "id": "bettertls::nameconstraints::tc5001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138775,6 +143922,7 @@ "id": "bettertls::nameconstraints::tc5002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138802,6 +143950,7 @@ "id": "bettertls::nameconstraints::tc5003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138829,6 +143978,7 @@ "id": "bettertls::nameconstraints::tc5004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138856,6 +144006,7 @@ "id": "bettertls::nameconstraints::tc5005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138883,6 +144034,7 @@ "id": "bettertls::nameconstraints::tc5006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138910,6 +144062,7 @@ "id": "bettertls::nameconstraints::tc5007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138937,6 +144090,7 @@ "id": "bettertls::nameconstraints::tc5008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138964,6 +144118,7 @@ "id": "bettertls::nameconstraints::tc5009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -138991,6 +144146,7 @@ "id": "bettertls::nameconstraints::tc5010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139018,6 +144174,7 @@ "id": "bettertls::nameconstraints::tc5011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139045,6 +144202,7 @@ "id": "bettertls::nameconstraints::tc5012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139072,6 +144230,7 @@ "id": "bettertls::nameconstraints::tc5013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139099,6 +144258,7 @@ "id": "bettertls::nameconstraints::tc5014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139126,6 +144286,7 @@ "id": "bettertls::nameconstraints::tc5015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139153,6 +144314,7 @@ "id": "bettertls::nameconstraints::tc5016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139180,6 +144342,7 @@ "id": "bettertls::nameconstraints::tc5017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139207,6 +144370,7 @@ "id": "bettertls::nameconstraints::tc5018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139234,6 +144398,7 @@ "id": "bettertls::nameconstraints::tc5019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139261,6 +144426,7 @@ "id": "bettertls::nameconstraints::tc5020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139288,6 +144454,7 @@ "id": "bettertls::nameconstraints::tc5021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139315,6 +144482,7 @@ "id": "bettertls::nameconstraints::tc5022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139342,6 +144510,7 @@ "id": "bettertls::nameconstraints::tc5023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139369,6 +144538,7 @@ "id": "bettertls::nameconstraints::tc5024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139396,6 +144566,7 @@ "id": "bettertls::nameconstraints::tc5025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139423,6 +144594,7 @@ "id": "bettertls::nameconstraints::tc5026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139450,6 +144622,7 @@ "id": "bettertls::nameconstraints::tc5027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139477,6 +144650,7 @@ "id": "bettertls::nameconstraints::tc5028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139504,6 +144678,7 @@ "id": "bettertls::nameconstraints::tc5029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139531,6 +144706,7 @@ "id": "bettertls::nameconstraints::tc5030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139558,6 +144734,7 @@ "id": "bettertls::nameconstraints::tc5031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139585,6 +144762,7 @@ "id": "bettertls::nameconstraints::tc5032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139612,6 +144790,7 @@ "id": "bettertls::nameconstraints::tc5033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139639,6 +144818,7 @@ "id": "bettertls::nameconstraints::tc5034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139666,6 +144846,7 @@ "id": "bettertls::nameconstraints::tc5035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139693,6 +144874,7 @@ "id": "bettertls::nameconstraints::tc5036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139720,6 +144902,7 @@ "id": "bettertls::nameconstraints::tc5037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139747,6 +144930,7 @@ "id": "bettertls::nameconstraints::tc5038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139774,6 +144958,7 @@ "id": "bettertls::nameconstraints::tc5039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139801,6 +144986,7 @@ "id": "bettertls::nameconstraints::tc5040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139828,6 +145014,7 @@ "id": "bettertls::nameconstraints::tc5041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139855,6 +145042,7 @@ "id": "bettertls::nameconstraints::tc5042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139882,6 +145070,7 @@ "id": "bettertls::nameconstraints::tc5043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139909,6 +145098,7 @@ "id": "bettertls::nameconstraints::tc5044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139936,6 +145126,7 @@ "id": "bettertls::nameconstraints::tc5045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139963,6 +145154,7 @@ "id": "bettertls::nameconstraints::tc5046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -139990,6 +145182,7 @@ "id": "bettertls::nameconstraints::tc5047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140017,6 +145210,7 @@ "id": "bettertls::nameconstraints::tc5048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140044,6 +145238,7 @@ "id": "bettertls::nameconstraints::tc5049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140071,6 +145266,7 @@ "id": "bettertls::nameconstraints::tc5050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140098,6 +145294,7 @@ "id": "bettertls::nameconstraints::tc5051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140125,6 +145322,7 @@ "id": "bettertls::nameconstraints::tc5052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140152,6 +145350,7 @@ "id": "bettertls::nameconstraints::tc5053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140179,6 +145378,7 @@ "id": "bettertls::nameconstraints::tc5054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140206,6 +145406,7 @@ "id": "bettertls::nameconstraints::tc5055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140233,6 +145434,7 @@ "id": "bettertls::nameconstraints::tc5056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140260,6 +145462,7 @@ "id": "bettertls::nameconstraints::tc5057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140287,6 +145490,7 @@ "id": "bettertls::nameconstraints::tc5058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140314,6 +145518,7 @@ "id": "bettertls::nameconstraints::tc5059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140341,6 +145546,7 @@ "id": "bettertls::nameconstraints::tc5060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140368,6 +145574,7 @@ "id": "bettertls::nameconstraints::tc5061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140395,6 +145602,7 @@ "id": "bettertls::nameconstraints::tc5062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140422,6 +145630,7 @@ "id": "bettertls::nameconstraints::tc5063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140449,6 +145658,7 @@ "id": "bettertls::nameconstraints::tc5064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140476,6 +145686,7 @@ "id": "bettertls::nameconstraints::tc5065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140503,6 +145714,7 @@ "id": "bettertls::nameconstraints::tc5066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140530,6 +145742,7 @@ "id": "bettertls::nameconstraints::tc5067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140557,6 +145770,7 @@ "id": "bettertls::nameconstraints::tc5068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140584,6 +145798,7 @@ "id": "bettertls::nameconstraints::tc5069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140611,6 +145826,7 @@ "id": "bettertls::nameconstraints::tc5070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140638,6 +145854,7 @@ "id": "bettertls::nameconstraints::tc5071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140665,6 +145882,7 @@ "id": "bettertls::nameconstraints::tc5072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140692,6 +145910,7 @@ "id": "bettertls::nameconstraints::tc5073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140719,6 +145938,7 @@ "id": "bettertls::nameconstraints::tc5074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140746,6 +145966,7 @@ "id": "bettertls::nameconstraints::tc5075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140773,6 +145994,7 @@ "id": "bettertls::nameconstraints::tc5076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140800,6 +146022,7 @@ "id": "bettertls::nameconstraints::tc5077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140827,6 +146050,7 @@ "id": "bettertls::nameconstraints::tc5078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140854,6 +146078,7 @@ "id": "bettertls::nameconstraints::tc5079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140881,6 +146106,7 @@ "id": "bettertls::nameconstraints::tc5080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140908,6 +146134,7 @@ "id": "bettertls::nameconstraints::tc5081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140935,6 +146162,7 @@ "id": "bettertls::nameconstraints::tc5082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140962,6 +146190,7 @@ "id": "bettertls::nameconstraints::tc5083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -140989,6 +146218,7 @@ "id": "bettertls::nameconstraints::tc5084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141016,6 +146246,7 @@ "id": "bettertls::nameconstraints::tc5085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141043,6 +146274,7 @@ "id": "bettertls::nameconstraints::tc5086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141070,6 +146302,7 @@ "id": "bettertls::nameconstraints::tc5087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141097,6 +146330,7 @@ "id": "bettertls::nameconstraints::tc5088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141124,6 +146358,7 @@ "id": "bettertls::nameconstraints::tc5089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141151,6 +146386,7 @@ "id": "bettertls::nameconstraints::tc5090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141178,6 +146414,7 @@ "id": "bettertls::nameconstraints::tc5091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141205,6 +146442,7 @@ "id": "bettertls::nameconstraints::tc5092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141232,6 +146470,7 @@ "id": "bettertls::nameconstraints::tc5093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141259,6 +146498,7 @@ "id": "bettertls::nameconstraints::tc5094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141286,6 +146526,7 @@ "id": "bettertls::nameconstraints::tc5095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141313,6 +146554,7 @@ "id": "bettertls::nameconstraints::tc5096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141340,6 +146582,7 @@ "id": "bettertls::nameconstraints::tc5097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141367,6 +146610,7 @@ "id": "bettertls::nameconstraints::tc5098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141394,6 +146638,7 @@ "id": "bettertls::nameconstraints::tc5099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141421,6 +146666,7 @@ "id": "bettertls::nameconstraints::tc5100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141448,6 +146694,7 @@ "id": "bettertls::nameconstraints::tc5101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141475,6 +146722,7 @@ "id": "bettertls::nameconstraints::tc5102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141502,6 +146750,7 @@ "id": "bettertls::nameconstraints::tc5103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141529,6 +146778,7 @@ "id": "bettertls::nameconstraints::tc5104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141556,6 +146806,7 @@ "id": "bettertls::nameconstraints::tc5105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141583,6 +146834,7 @@ "id": "bettertls::nameconstraints::tc5106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141610,6 +146862,7 @@ "id": "bettertls::nameconstraints::tc5107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141637,6 +146890,7 @@ "id": "bettertls::nameconstraints::tc5108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141664,6 +146918,7 @@ "id": "bettertls::nameconstraints::tc5109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141691,6 +146946,7 @@ "id": "bettertls::nameconstraints::tc5110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141718,6 +146974,7 @@ "id": "bettertls::nameconstraints::tc5111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141745,6 +147002,7 @@ "id": "bettertls::nameconstraints::tc5112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141772,6 +147030,7 @@ "id": "bettertls::nameconstraints::tc5113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141799,6 +147058,7 @@ "id": "bettertls::nameconstraints::tc5114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141826,6 +147086,7 @@ "id": "bettertls::nameconstraints::tc5115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141853,6 +147114,7 @@ "id": "bettertls::nameconstraints::tc5116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141880,6 +147142,7 @@ "id": "bettertls::nameconstraints::tc5117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141907,6 +147170,7 @@ "id": "bettertls::nameconstraints::tc5118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141934,6 +147198,7 @@ "id": "bettertls::nameconstraints::tc5119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141961,6 +147226,7 @@ "id": "bettertls::nameconstraints::tc5120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -141988,6 +147254,7 @@ "id": "bettertls::nameconstraints::tc5121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142015,6 +147282,7 @@ "id": "bettertls::nameconstraints::tc5122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142042,6 +147310,7 @@ "id": "bettertls::nameconstraints::tc5123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142069,6 +147338,7 @@ "id": "bettertls::nameconstraints::tc5124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142096,6 +147366,7 @@ "id": "bettertls::nameconstraints::tc5125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142123,6 +147394,7 @@ "id": "bettertls::nameconstraints::tc5126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142150,6 +147422,7 @@ "id": "bettertls::nameconstraints::tc5127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142177,6 +147450,7 @@ "id": "bettertls::nameconstraints::tc5128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142204,6 +147478,7 @@ "id": "bettertls::nameconstraints::tc5129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142231,6 +147506,7 @@ "id": "bettertls::nameconstraints::tc5130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142258,6 +147534,7 @@ "id": "bettertls::nameconstraints::tc5131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142285,6 +147562,7 @@ "id": "bettertls::nameconstraints::tc5132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142312,6 +147590,7 @@ "id": "bettertls::nameconstraints::tc5133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142339,6 +147618,7 @@ "id": "bettertls::nameconstraints::tc5134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142366,6 +147646,7 @@ "id": "bettertls::nameconstraints::tc5135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142393,6 +147674,7 @@ "id": "bettertls::nameconstraints::tc5136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142420,6 +147702,7 @@ "id": "bettertls::nameconstraints::tc5137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142447,6 +147730,7 @@ "id": "bettertls::nameconstraints::tc5138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142474,6 +147758,7 @@ "id": "bettertls::nameconstraints::tc5139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142501,6 +147786,7 @@ "id": "bettertls::nameconstraints::tc5140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142528,6 +147814,7 @@ "id": "bettertls::nameconstraints::tc5141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142555,6 +147842,7 @@ "id": "bettertls::nameconstraints::tc5142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142582,6 +147870,7 @@ "id": "bettertls::nameconstraints::tc5143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142609,6 +147898,7 @@ "id": "bettertls::nameconstraints::tc5144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142636,6 +147926,7 @@ "id": "bettertls::nameconstraints::tc5145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142663,6 +147954,7 @@ "id": "bettertls::nameconstraints::tc5146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142690,6 +147982,7 @@ "id": "bettertls::nameconstraints::tc5147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142717,6 +148010,7 @@ "id": "bettertls::nameconstraints::tc5148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142744,6 +148038,7 @@ "id": "bettertls::nameconstraints::tc5149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142771,6 +148066,7 @@ "id": "bettertls::nameconstraints::tc5150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142798,6 +148094,7 @@ "id": "bettertls::nameconstraints::tc5151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142825,6 +148122,7 @@ "id": "bettertls::nameconstraints::tc5152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142852,6 +148150,7 @@ "id": "bettertls::nameconstraints::tc5153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142879,6 +148178,7 @@ "id": "bettertls::nameconstraints::tc5154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142906,6 +148206,7 @@ "id": "bettertls::nameconstraints::tc5155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142933,6 +148234,7 @@ "id": "bettertls::nameconstraints::tc5156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142960,6 +148262,7 @@ "id": "bettertls::nameconstraints::tc5157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -142987,6 +148290,7 @@ "id": "bettertls::nameconstraints::tc5158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143014,6 +148318,7 @@ "id": "bettertls::nameconstraints::tc5159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143041,6 +148346,7 @@ "id": "bettertls::nameconstraints::tc5160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143068,6 +148374,7 @@ "id": "bettertls::nameconstraints::tc5161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143095,6 +148402,7 @@ "id": "bettertls::nameconstraints::tc5162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143122,6 +148430,7 @@ "id": "bettertls::nameconstraints::tc5163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143149,6 +148458,7 @@ "id": "bettertls::nameconstraints::tc5164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143176,6 +148486,7 @@ "id": "bettertls::nameconstraints::tc5165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143203,6 +148514,7 @@ "id": "bettertls::nameconstraints::tc5166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143230,6 +148542,7 @@ "id": "bettertls::nameconstraints::tc5167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143257,6 +148570,7 @@ "id": "bettertls::nameconstraints::tc5168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143284,6 +148598,7 @@ "id": "bettertls::nameconstraints::tc5169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143311,6 +148626,7 @@ "id": "bettertls::nameconstraints::tc5170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143338,6 +148654,7 @@ "id": "bettertls::nameconstraints::tc5171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143365,6 +148682,7 @@ "id": "bettertls::nameconstraints::tc5172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143392,6 +148710,7 @@ "id": "bettertls::nameconstraints::tc5173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143419,6 +148738,7 @@ "id": "bettertls::nameconstraints::tc5174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143446,6 +148766,7 @@ "id": "bettertls::nameconstraints::tc5175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143473,6 +148794,7 @@ "id": "bettertls::nameconstraints::tc5176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143500,6 +148822,7 @@ "id": "bettertls::nameconstraints::tc5177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143527,6 +148850,7 @@ "id": "bettertls::nameconstraints::tc5178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143554,6 +148878,7 @@ "id": "bettertls::nameconstraints::tc5179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143581,6 +148906,7 @@ "id": "bettertls::nameconstraints::tc5180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143608,6 +148934,7 @@ "id": "bettertls::nameconstraints::tc5181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143635,6 +148962,7 @@ "id": "bettertls::nameconstraints::tc5182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143662,6 +148990,7 @@ "id": "bettertls::nameconstraints::tc5183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143689,6 +149018,7 @@ "id": "bettertls::nameconstraints::tc5184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143716,6 +149046,7 @@ "id": "bettertls::nameconstraints::tc5185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143743,6 +149074,7 @@ "id": "bettertls::nameconstraints::tc5186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143770,6 +149102,7 @@ "id": "bettertls::nameconstraints::tc5187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143797,6 +149130,7 @@ "id": "bettertls::nameconstraints::tc5188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143824,6 +149158,7 @@ "id": "bettertls::nameconstraints::tc5189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143851,6 +149186,7 @@ "id": "bettertls::nameconstraints::tc5190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143878,6 +149214,7 @@ "id": "bettertls::nameconstraints::tc5191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143905,6 +149242,7 @@ "id": "bettertls::nameconstraints::tc5192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143932,6 +149270,7 @@ "id": "bettertls::nameconstraints::tc5193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143959,6 +149298,7 @@ "id": "bettertls::nameconstraints::tc5194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -143986,6 +149326,7 @@ "id": "bettertls::nameconstraints::tc5195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144013,6 +149354,7 @@ "id": "bettertls::nameconstraints::tc5196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144040,6 +149382,7 @@ "id": "bettertls::nameconstraints::tc5197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144067,6 +149410,7 @@ "id": "bettertls::nameconstraints::tc5198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144094,6 +149438,7 @@ "id": "bettertls::nameconstraints::tc5199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144121,6 +149466,7 @@ "id": "bettertls::nameconstraints::tc5200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144148,6 +149494,7 @@ "id": "bettertls::nameconstraints::tc5201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144175,6 +149522,7 @@ "id": "bettertls::nameconstraints::tc5202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144202,6 +149550,7 @@ "id": "bettertls::nameconstraints::tc5203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144229,6 +149578,7 @@ "id": "bettertls::nameconstraints::tc5204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144256,6 +149606,7 @@ "id": "bettertls::nameconstraints::tc5205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144283,6 +149634,7 @@ "id": "bettertls::nameconstraints::tc5206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144310,6 +149662,7 @@ "id": "bettertls::nameconstraints::tc5207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144337,6 +149690,7 @@ "id": "bettertls::nameconstraints::tc5208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144364,6 +149718,7 @@ "id": "bettertls::nameconstraints::tc5209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144391,6 +149746,7 @@ "id": "bettertls::nameconstraints::tc5210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144418,6 +149774,7 @@ "id": "bettertls::nameconstraints::tc5211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144445,6 +149802,7 @@ "id": "bettertls::nameconstraints::tc5212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144472,6 +149830,7 @@ "id": "bettertls::nameconstraints::tc5213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144499,6 +149858,7 @@ "id": "bettertls::nameconstraints::tc5214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144526,6 +149886,7 @@ "id": "bettertls::nameconstraints::tc5215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144553,6 +149914,7 @@ "id": "bettertls::nameconstraints::tc5216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144580,6 +149942,7 @@ "id": "bettertls::nameconstraints::tc5217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144607,6 +149970,7 @@ "id": "bettertls::nameconstraints::tc5218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144634,6 +149998,7 @@ "id": "bettertls::nameconstraints::tc5219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144661,6 +150026,7 @@ "id": "bettertls::nameconstraints::tc5220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144688,6 +150054,7 @@ "id": "bettertls::nameconstraints::tc5221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144715,6 +150082,7 @@ "id": "bettertls::nameconstraints::tc5222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144742,6 +150110,7 @@ "id": "bettertls::nameconstraints::tc5223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144769,6 +150138,7 @@ "id": "bettertls::nameconstraints::tc5224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144796,6 +150166,7 @@ "id": "bettertls::nameconstraints::tc5225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144823,6 +150194,7 @@ "id": "bettertls::nameconstraints::tc5226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144850,6 +150222,7 @@ "id": "bettertls::nameconstraints::tc5227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144877,6 +150250,7 @@ "id": "bettertls::nameconstraints::tc5228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144904,6 +150278,7 @@ "id": "bettertls::nameconstraints::tc5229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144931,6 +150306,7 @@ "id": "bettertls::nameconstraints::tc5230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144958,6 +150334,7 @@ "id": "bettertls::nameconstraints::tc5231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -144985,6 +150362,7 @@ "id": "bettertls::nameconstraints::tc5232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145012,6 +150390,7 @@ "id": "bettertls::nameconstraints::tc5233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145039,6 +150418,7 @@ "id": "bettertls::nameconstraints::tc5234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145066,6 +150446,7 @@ "id": "bettertls::nameconstraints::tc5235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145093,6 +150474,7 @@ "id": "bettertls::nameconstraints::tc5236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145120,6 +150502,7 @@ "id": "bettertls::nameconstraints::tc5237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145147,6 +150530,7 @@ "id": "bettertls::nameconstraints::tc5238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145174,6 +150558,7 @@ "id": "bettertls::nameconstraints::tc5239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145201,6 +150586,7 @@ "id": "bettertls::nameconstraints::tc5240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145228,6 +150614,7 @@ "id": "bettertls::nameconstraints::tc5241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145255,6 +150642,7 @@ "id": "bettertls::nameconstraints::tc5242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145282,6 +150670,7 @@ "id": "bettertls::nameconstraints::tc5243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145309,6 +150698,7 @@ "id": "bettertls::nameconstraints::tc5244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145336,6 +150726,7 @@ "id": "bettertls::nameconstraints::tc5245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145363,6 +150754,7 @@ "id": "bettertls::nameconstraints::tc5246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145390,6 +150782,7 @@ "id": "bettertls::nameconstraints::tc5247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145417,6 +150810,7 @@ "id": "bettertls::nameconstraints::tc5248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145444,6 +150838,7 @@ "id": "bettertls::nameconstraints::tc5249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145471,6 +150866,7 @@ "id": "bettertls::nameconstraints::tc5250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145498,6 +150894,7 @@ "id": "bettertls::nameconstraints::tc5251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145525,6 +150922,7 @@ "id": "bettertls::nameconstraints::tc5252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145552,6 +150950,7 @@ "id": "bettertls::nameconstraints::tc5253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145579,6 +150978,7 @@ "id": "bettertls::nameconstraints::tc5254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145606,6 +151006,7 @@ "id": "bettertls::nameconstraints::tc5255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145633,6 +151034,7 @@ "id": "bettertls::nameconstraints::tc5256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145660,6 +151062,7 @@ "id": "bettertls::nameconstraints::tc5257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145687,6 +151090,7 @@ "id": "bettertls::nameconstraints::tc5258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145714,6 +151118,7 @@ "id": "bettertls::nameconstraints::tc5259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145741,6 +151146,7 @@ "id": "bettertls::nameconstraints::tc5260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145768,6 +151174,7 @@ "id": "bettertls::nameconstraints::tc5261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145795,6 +151202,7 @@ "id": "bettertls::nameconstraints::tc5262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145822,6 +151230,7 @@ "id": "bettertls::nameconstraints::tc5263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145849,6 +151258,7 @@ "id": "bettertls::nameconstraints::tc5264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145876,6 +151286,7 @@ "id": "bettertls::nameconstraints::tc5265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145903,6 +151314,7 @@ "id": "bettertls::nameconstraints::tc5266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145930,6 +151342,7 @@ "id": "bettertls::nameconstraints::tc5267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145957,6 +151370,7 @@ "id": "bettertls::nameconstraints::tc5268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -145984,6 +151398,7 @@ "id": "bettertls::nameconstraints::tc5269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146011,6 +151426,7 @@ "id": "bettertls::nameconstraints::tc5270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146038,6 +151454,7 @@ "id": "bettertls::nameconstraints::tc5271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146065,6 +151482,7 @@ "id": "bettertls::nameconstraints::tc5272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146092,6 +151510,7 @@ "id": "bettertls::nameconstraints::tc5273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146119,6 +151538,7 @@ "id": "bettertls::nameconstraints::tc5274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146146,6 +151566,7 @@ "id": "bettertls::nameconstraints::tc5275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146173,6 +151594,7 @@ "id": "bettertls::nameconstraints::tc5276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146200,6 +151622,7 @@ "id": "bettertls::nameconstraints::tc5277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146227,6 +151650,7 @@ "id": "bettertls::nameconstraints::tc5278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146254,6 +151678,7 @@ "id": "bettertls::nameconstraints::tc5279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146281,6 +151706,7 @@ "id": "bettertls::nameconstraints::tc5280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146308,6 +151734,7 @@ "id": "bettertls::nameconstraints::tc5281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146335,6 +151762,7 @@ "id": "bettertls::nameconstraints::tc5282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146362,6 +151790,7 @@ "id": "bettertls::nameconstraints::tc5283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146389,6 +151818,7 @@ "id": "bettertls::nameconstraints::tc5284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146416,6 +151846,7 @@ "id": "bettertls::nameconstraints::tc5285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146443,6 +151874,7 @@ "id": "bettertls::nameconstraints::tc5286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146470,6 +151902,7 @@ "id": "bettertls::nameconstraints::tc5287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146497,6 +151930,7 @@ "id": "bettertls::nameconstraints::tc5288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146524,6 +151958,7 @@ "id": "bettertls::nameconstraints::tc5289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146551,6 +151986,7 @@ "id": "bettertls::nameconstraints::tc5290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146578,6 +152014,7 @@ "id": "bettertls::nameconstraints::tc5291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146605,6 +152042,7 @@ "id": "bettertls::nameconstraints::tc5292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146632,6 +152070,7 @@ "id": "bettertls::nameconstraints::tc5293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146659,6 +152098,7 @@ "id": "bettertls::nameconstraints::tc5294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146686,6 +152126,7 @@ "id": "bettertls::nameconstraints::tc5295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146713,6 +152154,7 @@ "id": "bettertls::nameconstraints::tc5296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146740,6 +152182,7 @@ "id": "bettertls::nameconstraints::tc5297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146767,6 +152210,7 @@ "id": "bettertls::nameconstraints::tc5298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146794,6 +152238,7 @@ "id": "bettertls::nameconstraints::tc5299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146821,6 +152266,7 @@ "id": "bettertls::nameconstraints::tc5300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146848,6 +152294,7 @@ "id": "bettertls::nameconstraints::tc5301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146875,6 +152322,7 @@ "id": "bettertls::nameconstraints::tc5302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146902,6 +152350,7 @@ "id": "bettertls::nameconstraints::tc5303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146929,6 +152378,7 @@ "id": "bettertls::nameconstraints::tc5304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146956,6 +152406,7 @@ "id": "bettertls::nameconstraints::tc5305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -146983,6 +152434,7 @@ "id": "bettertls::nameconstraints::tc5306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147010,6 +152462,7 @@ "id": "bettertls::nameconstraints::tc5307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147037,6 +152490,7 @@ "id": "bettertls::nameconstraints::tc5308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147064,6 +152518,7 @@ "id": "bettertls::nameconstraints::tc5309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147091,6 +152546,7 @@ "id": "bettertls::nameconstraints::tc5310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147118,6 +152574,7 @@ "id": "bettertls::nameconstraints::tc5311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147145,6 +152602,7 @@ "id": "bettertls::nameconstraints::tc5312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147172,6 +152630,7 @@ "id": "bettertls::nameconstraints::tc5313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147199,6 +152658,7 @@ "id": "bettertls::nameconstraints::tc5314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147226,6 +152686,7 @@ "id": "bettertls::nameconstraints::tc5315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147253,6 +152714,7 @@ "id": "bettertls::nameconstraints::tc5316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147280,6 +152742,7 @@ "id": "bettertls::nameconstraints::tc5317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147307,6 +152770,7 @@ "id": "bettertls::nameconstraints::tc5318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147334,6 +152798,7 @@ "id": "bettertls::nameconstraints::tc5319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147361,6 +152826,7 @@ "id": "bettertls::nameconstraints::tc5320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147388,6 +152854,7 @@ "id": "bettertls::nameconstraints::tc5321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147415,6 +152882,7 @@ "id": "bettertls::nameconstraints::tc5322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147442,6 +152910,7 @@ "id": "bettertls::nameconstraints::tc5323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147469,6 +152938,7 @@ "id": "bettertls::nameconstraints::tc5324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147496,6 +152966,7 @@ "id": "bettertls::nameconstraints::tc5325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147523,6 +152994,7 @@ "id": "bettertls::nameconstraints::tc5326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147550,6 +153022,7 @@ "id": "bettertls::nameconstraints::tc5327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147577,6 +153050,7 @@ "id": "bettertls::nameconstraints::tc5328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147604,6 +153078,7 @@ "id": "bettertls::nameconstraints::tc5329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147631,6 +153106,7 @@ "id": "bettertls::nameconstraints::tc5330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147658,6 +153134,7 @@ "id": "bettertls::nameconstraints::tc5331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147685,6 +153162,7 @@ "id": "bettertls::nameconstraints::tc5332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147712,6 +153190,7 @@ "id": "bettertls::nameconstraints::tc5333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147739,6 +153218,7 @@ "id": "bettertls::nameconstraints::tc5334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147766,6 +153246,7 @@ "id": "bettertls::nameconstraints::tc5335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147793,6 +153274,7 @@ "id": "bettertls::nameconstraints::tc5336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147820,6 +153302,7 @@ "id": "bettertls::nameconstraints::tc5337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147847,6 +153330,7 @@ "id": "bettertls::nameconstraints::tc5338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147874,6 +153358,7 @@ "id": "bettertls::nameconstraints::tc5339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147901,6 +153386,7 @@ "id": "bettertls::nameconstraints::tc5340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147928,6 +153414,7 @@ "id": "bettertls::nameconstraints::tc5341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147955,6 +153442,7 @@ "id": "bettertls::nameconstraints::tc5342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -147982,6 +153470,7 @@ "id": "bettertls::nameconstraints::tc5343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148009,6 +153498,7 @@ "id": "bettertls::nameconstraints::tc5344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148036,6 +153526,7 @@ "id": "bettertls::nameconstraints::tc5345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148063,6 +153554,7 @@ "id": "bettertls::nameconstraints::tc5346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148090,6 +153582,7 @@ "id": "bettertls::nameconstraints::tc5347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148117,6 +153610,7 @@ "id": "bettertls::nameconstraints::tc5348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148144,6 +153638,7 @@ "id": "bettertls::nameconstraints::tc5349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148171,6 +153666,7 @@ "id": "bettertls::nameconstraints::tc5350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148198,6 +153694,7 @@ "id": "bettertls::nameconstraints::tc5351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148225,6 +153722,7 @@ "id": "bettertls::nameconstraints::tc5352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148252,6 +153750,7 @@ "id": "bettertls::nameconstraints::tc5353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148279,6 +153778,7 @@ "id": "bettertls::nameconstraints::tc5354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148306,6 +153806,7 @@ "id": "bettertls::nameconstraints::tc5355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148333,6 +153834,7 @@ "id": "bettertls::nameconstraints::tc5356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148360,6 +153862,7 @@ "id": "bettertls::nameconstraints::tc5357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148387,6 +153890,7 @@ "id": "bettertls::nameconstraints::tc5358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148414,6 +153918,7 @@ "id": "bettertls::nameconstraints::tc5359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148441,6 +153946,7 @@ "id": "bettertls::nameconstraints::tc5360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148468,6 +153974,7 @@ "id": "bettertls::nameconstraints::tc5361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148495,6 +154002,7 @@ "id": "bettertls::nameconstraints::tc5362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148522,6 +154030,7 @@ "id": "bettertls::nameconstraints::tc5363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148549,6 +154058,7 @@ "id": "bettertls::nameconstraints::tc5364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148576,6 +154086,7 @@ "id": "bettertls::nameconstraints::tc5365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148603,6 +154114,7 @@ "id": "bettertls::nameconstraints::tc5366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148630,6 +154142,7 @@ "id": "bettertls::nameconstraints::tc5367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148657,6 +154170,7 @@ "id": "bettertls::nameconstraints::tc5368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148684,6 +154198,7 @@ "id": "bettertls::nameconstraints::tc5369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148711,6 +154226,7 @@ "id": "bettertls::nameconstraints::tc5370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148738,6 +154254,7 @@ "id": "bettertls::nameconstraints::tc5371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148765,6 +154282,7 @@ "id": "bettertls::nameconstraints::tc5372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148792,6 +154310,7 @@ "id": "bettertls::nameconstraints::tc5373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148819,6 +154338,7 @@ "id": "bettertls::nameconstraints::tc5374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148846,6 +154366,7 @@ "id": "bettertls::nameconstraints::tc5375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148873,6 +154394,7 @@ "id": "bettertls::nameconstraints::tc5376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148900,6 +154422,7 @@ "id": "bettertls::nameconstraints::tc5377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148927,6 +154450,7 @@ "id": "bettertls::nameconstraints::tc5378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148954,6 +154478,7 @@ "id": "bettertls::nameconstraints::tc5379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -148981,6 +154506,7 @@ "id": "bettertls::nameconstraints::tc5380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149008,6 +154534,7 @@ "id": "bettertls::nameconstraints::tc5381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149035,6 +154562,7 @@ "id": "bettertls::nameconstraints::tc5382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149062,6 +154590,7 @@ "id": "bettertls::nameconstraints::tc5383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149089,6 +154618,7 @@ "id": "bettertls::nameconstraints::tc5384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149116,6 +154646,7 @@ "id": "bettertls::nameconstraints::tc5385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149143,6 +154674,7 @@ "id": "bettertls::nameconstraints::tc5386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149170,6 +154702,7 @@ "id": "bettertls::nameconstraints::tc5387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149197,6 +154730,7 @@ "id": "bettertls::nameconstraints::tc5388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149224,6 +154758,7 @@ "id": "bettertls::nameconstraints::tc5389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149251,6 +154786,7 @@ "id": "bettertls::nameconstraints::tc5390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149278,6 +154814,7 @@ "id": "bettertls::nameconstraints::tc5391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149305,6 +154842,7 @@ "id": "bettertls::nameconstraints::tc5392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149332,6 +154870,7 @@ "id": "bettertls::nameconstraints::tc5393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149359,6 +154898,7 @@ "id": "bettertls::nameconstraints::tc5394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149386,6 +154926,7 @@ "id": "bettertls::nameconstraints::tc5395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149413,6 +154954,7 @@ "id": "bettertls::nameconstraints::tc5396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149440,6 +154982,7 @@ "id": "bettertls::nameconstraints::tc5397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149467,6 +155010,7 @@ "id": "bettertls::nameconstraints::tc5398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149494,6 +155038,7 @@ "id": "bettertls::nameconstraints::tc5399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149521,6 +155066,7 @@ "id": "bettertls::nameconstraints::tc5400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149548,6 +155094,7 @@ "id": "bettertls::nameconstraints::tc5401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149575,6 +155122,7 @@ "id": "bettertls::nameconstraints::tc5402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149602,6 +155150,7 @@ "id": "bettertls::nameconstraints::tc5403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149629,6 +155178,7 @@ "id": "bettertls::nameconstraints::tc5404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149656,6 +155206,7 @@ "id": "bettertls::nameconstraints::tc5405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149683,6 +155234,7 @@ "id": "bettertls::nameconstraints::tc5406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149710,6 +155262,7 @@ "id": "bettertls::nameconstraints::tc5407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149737,6 +155290,7 @@ "id": "bettertls::nameconstraints::tc5408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149764,6 +155318,7 @@ "id": "bettertls::nameconstraints::tc5409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149791,6 +155346,7 @@ "id": "bettertls::nameconstraints::tc5410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149818,6 +155374,7 @@ "id": "bettertls::nameconstraints::tc5411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149845,6 +155402,7 @@ "id": "bettertls::nameconstraints::tc5412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149872,6 +155430,7 @@ "id": "bettertls::nameconstraints::tc5413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149899,6 +155458,7 @@ "id": "bettertls::nameconstraints::tc5414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149926,6 +155486,7 @@ "id": "bettertls::nameconstraints::tc5415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149953,6 +155514,7 @@ "id": "bettertls::nameconstraints::tc5416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -149980,6 +155542,7 @@ "id": "bettertls::nameconstraints::tc5417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150007,6 +155570,7 @@ "id": "bettertls::nameconstraints::tc5418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150034,6 +155598,7 @@ "id": "bettertls::nameconstraints::tc5419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150061,6 +155626,7 @@ "id": "bettertls::nameconstraints::tc5420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150088,6 +155654,7 @@ "id": "bettertls::nameconstraints::tc5421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150115,6 +155682,7 @@ "id": "bettertls::nameconstraints::tc5422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150142,6 +155710,7 @@ "id": "bettertls::nameconstraints::tc5423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150169,6 +155738,7 @@ "id": "bettertls::nameconstraints::tc5424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150196,6 +155766,7 @@ "id": "bettertls::nameconstraints::tc5425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150223,6 +155794,7 @@ "id": "bettertls::nameconstraints::tc5426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150250,6 +155822,7 @@ "id": "bettertls::nameconstraints::tc5427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150277,6 +155850,7 @@ "id": "bettertls::nameconstraints::tc5428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150304,6 +155878,7 @@ "id": "bettertls::nameconstraints::tc5429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150331,6 +155906,7 @@ "id": "bettertls::nameconstraints::tc5430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150358,6 +155934,7 @@ "id": "bettertls::nameconstraints::tc5431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150385,6 +155962,7 @@ "id": "bettertls::nameconstraints::tc5432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150412,6 +155990,7 @@ "id": "bettertls::nameconstraints::tc5433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150439,6 +156018,7 @@ "id": "bettertls::nameconstraints::tc5434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150466,6 +156046,7 @@ "id": "bettertls::nameconstraints::tc5435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150493,6 +156074,7 @@ "id": "bettertls::nameconstraints::tc5436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150520,6 +156102,7 @@ "id": "bettertls::nameconstraints::tc5437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150547,6 +156130,7 @@ "id": "bettertls::nameconstraints::tc5438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150574,6 +156158,7 @@ "id": "bettertls::nameconstraints::tc5439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150601,6 +156186,7 @@ "id": "bettertls::nameconstraints::tc5440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150628,6 +156214,7 @@ "id": "bettertls::nameconstraints::tc5441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150655,6 +156242,7 @@ "id": "bettertls::nameconstraints::tc5442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150682,6 +156270,7 @@ "id": "bettertls::nameconstraints::tc5443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150709,6 +156298,7 @@ "id": "bettertls::nameconstraints::tc5444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150736,6 +156326,7 @@ "id": "bettertls::nameconstraints::tc5445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150763,6 +156354,7 @@ "id": "bettertls::nameconstraints::tc5446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150790,6 +156382,7 @@ "id": "bettertls::nameconstraints::tc5447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150817,6 +156410,7 @@ "id": "bettertls::nameconstraints::tc5448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150844,6 +156438,7 @@ "id": "bettertls::nameconstraints::tc5449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150871,6 +156466,7 @@ "id": "bettertls::nameconstraints::tc5450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150898,6 +156494,7 @@ "id": "bettertls::nameconstraints::tc5451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150925,6 +156522,7 @@ "id": "bettertls::nameconstraints::tc5452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150952,6 +156550,7 @@ "id": "bettertls::nameconstraints::tc5453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -150979,6 +156578,7 @@ "id": "bettertls::nameconstraints::tc5454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151006,6 +156606,7 @@ "id": "bettertls::nameconstraints::tc5455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151033,6 +156634,7 @@ "id": "bettertls::nameconstraints::tc5456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151060,6 +156662,7 @@ "id": "bettertls::nameconstraints::tc5457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151087,6 +156690,7 @@ "id": "bettertls::nameconstraints::tc5458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151114,6 +156718,7 @@ "id": "bettertls::nameconstraints::tc5459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151141,6 +156746,7 @@ "id": "bettertls::nameconstraints::tc5460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151168,6 +156774,7 @@ "id": "bettertls::nameconstraints::tc5461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151195,6 +156802,7 @@ "id": "bettertls::nameconstraints::tc5462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151222,6 +156830,7 @@ "id": "bettertls::nameconstraints::tc5463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151249,6 +156858,7 @@ "id": "bettertls::nameconstraints::tc5464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151276,6 +156886,7 @@ "id": "bettertls::nameconstraints::tc5465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151303,6 +156914,7 @@ "id": "bettertls::nameconstraints::tc5466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151330,6 +156942,7 @@ "id": "bettertls::nameconstraints::tc5467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151357,6 +156970,7 @@ "id": "bettertls::nameconstraints::tc5468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151384,6 +156998,7 @@ "id": "bettertls::nameconstraints::tc5469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151411,6 +157026,7 @@ "id": "bettertls::nameconstraints::tc5470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151438,6 +157054,7 @@ "id": "bettertls::nameconstraints::tc5471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151465,6 +157082,7 @@ "id": "bettertls::nameconstraints::tc5472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151492,6 +157110,7 @@ "id": "bettertls::nameconstraints::tc5473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151519,6 +157138,7 @@ "id": "bettertls::nameconstraints::tc5474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151546,6 +157166,7 @@ "id": "bettertls::nameconstraints::tc5475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151573,6 +157194,7 @@ "id": "bettertls::nameconstraints::tc5476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151600,6 +157222,7 @@ "id": "bettertls::nameconstraints::tc5477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151627,6 +157250,7 @@ "id": "bettertls::nameconstraints::tc5478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151654,6 +157278,7 @@ "id": "bettertls::nameconstraints::tc5479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151681,6 +157306,7 @@ "id": "bettertls::nameconstraints::tc5480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151708,6 +157334,7 @@ "id": "bettertls::nameconstraints::tc5481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151735,6 +157362,7 @@ "id": "bettertls::nameconstraints::tc5482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151762,6 +157390,7 @@ "id": "bettertls::nameconstraints::tc5483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151789,6 +157418,7 @@ "id": "bettertls::nameconstraints::tc5484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151816,6 +157446,7 @@ "id": "bettertls::nameconstraints::tc5485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151843,6 +157474,7 @@ "id": "bettertls::nameconstraints::tc5486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151870,6 +157502,7 @@ "id": "bettertls::nameconstraints::tc5487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151897,6 +157530,7 @@ "id": "bettertls::nameconstraints::tc5488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151924,6 +157558,7 @@ "id": "bettertls::nameconstraints::tc5489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151951,6 +157586,7 @@ "id": "bettertls::nameconstraints::tc5490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -151978,6 +157614,7 @@ "id": "bettertls::nameconstraints::tc5491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152005,6 +157642,7 @@ "id": "bettertls::nameconstraints::tc5492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152032,6 +157670,7 @@ "id": "bettertls::nameconstraints::tc5493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152059,6 +157698,7 @@ "id": "bettertls::nameconstraints::tc5494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152086,6 +157726,7 @@ "id": "bettertls::nameconstraints::tc5495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152113,6 +157754,7 @@ "id": "bettertls::nameconstraints::tc5496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152140,6 +157782,7 @@ "id": "bettertls::nameconstraints::tc5497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152167,6 +157810,7 @@ "id": "bettertls::nameconstraints::tc5498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152194,6 +157838,7 @@ "id": "bettertls::nameconstraints::tc5499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152221,6 +157866,7 @@ "id": "bettertls::nameconstraints::tc5500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152248,6 +157894,7 @@ "id": "bettertls::nameconstraints::tc5501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152275,6 +157922,7 @@ "id": "bettertls::nameconstraints::tc5502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152302,6 +157950,7 @@ "id": "bettertls::nameconstraints::tc5503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152329,6 +157978,7 @@ "id": "bettertls::nameconstraints::tc5504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152356,6 +158006,7 @@ "id": "bettertls::nameconstraints::tc5505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152383,6 +158034,7 @@ "id": "bettertls::nameconstraints::tc5506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152410,6 +158062,7 @@ "id": "bettertls::nameconstraints::tc5507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152437,6 +158090,7 @@ "id": "bettertls::nameconstraints::tc5508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152464,6 +158118,7 @@ "id": "bettertls::nameconstraints::tc5509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152491,6 +158146,7 @@ "id": "bettertls::nameconstraints::tc5510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152518,6 +158174,7 @@ "id": "bettertls::nameconstraints::tc5511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152545,6 +158202,7 @@ "id": "bettertls::nameconstraints::tc5512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152572,6 +158230,7 @@ "id": "bettertls::nameconstraints::tc5513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152599,6 +158258,7 @@ "id": "bettertls::nameconstraints::tc5514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152626,6 +158286,7 @@ "id": "bettertls::nameconstraints::tc5515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152653,6 +158314,7 @@ "id": "bettertls::nameconstraints::tc5516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152680,6 +158342,7 @@ "id": "bettertls::nameconstraints::tc5517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152707,6 +158370,7 @@ "id": "bettertls::nameconstraints::tc5518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152734,6 +158398,7 @@ "id": "bettertls::nameconstraints::tc5519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152761,6 +158426,7 @@ "id": "bettertls::nameconstraints::tc5520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152788,6 +158454,7 @@ "id": "bettertls::nameconstraints::tc5521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152815,6 +158482,7 @@ "id": "bettertls::nameconstraints::tc5522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152842,6 +158510,7 @@ "id": "bettertls::nameconstraints::tc5523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152869,6 +158538,7 @@ "id": "bettertls::nameconstraints::tc5524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152896,6 +158566,7 @@ "id": "bettertls::nameconstraints::tc5525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152923,6 +158594,7 @@ "id": "bettertls::nameconstraints::tc5526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152950,6 +158622,7 @@ "id": "bettertls::nameconstraints::tc5527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -152977,6 +158650,7 @@ "id": "bettertls::nameconstraints::tc5528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153004,6 +158678,7 @@ "id": "bettertls::nameconstraints::tc5529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153031,6 +158706,7 @@ "id": "bettertls::nameconstraints::tc5530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153058,6 +158734,7 @@ "id": "bettertls::nameconstraints::tc5531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153085,6 +158762,7 @@ "id": "bettertls::nameconstraints::tc5532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153112,6 +158790,7 @@ "id": "bettertls::nameconstraints::tc5533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153139,6 +158818,7 @@ "id": "bettertls::nameconstraints::tc5534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153166,6 +158846,7 @@ "id": "bettertls::nameconstraints::tc5535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153193,6 +158874,7 @@ "id": "bettertls::nameconstraints::tc5536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153220,6 +158902,7 @@ "id": "bettertls::nameconstraints::tc5537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153247,6 +158930,7 @@ "id": "bettertls::nameconstraints::tc5538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153274,6 +158958,7 @@ "id": "bettertls::nameconstraints::tc5539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153301,6 +158986,7 @@ "id": "bettertls::nameconstraints::tc5540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153328,6 +159014,7 @@ "id": "bettertls::nameconstraints::tc5541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153355,6 +159042,7 @@ "id": "bettertls::nameconstraints::tc5542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153382,6 +159070,7 @@ "id": "bettertls::nameconstraints::tc5543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153409,6 +159098,7 @@ "id": "bettertls::nameconstraints::tc5544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153436,6 +159126,7 @@ "id": "bettertls::nameconstraints::tc5545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153463,6 +159154,7 @@ "id": "bettertls::nameconstraints::tc5546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153490,6 +159182,7 @@ "id": "bettertls::nameconstraints::tc5547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153517,6 +159210,7 @@ "id": "bettertls::nameconstraints::tc5548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153544,6 +159238,7 @@ "id": "bettertls::nameconstraints::tc5549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153571,6 +159266,7 @@ "id": "bettertls::nameconstraints::tc5550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153598,6 +159294,7 @@ "id": "bettertls::nameconstraints::tc5551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153625,6 +159322,7 @@ "id": "bettertls::nameconstraints::tc5552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153652,6 +159350,7 @@ "id": "bettertls::nameconstraints::tc5553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153679,6 +159378,7 @@ "id": "bettertls::nameconstraints::tc5554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153706,6 +159406,7 @@ "id": "bettertls::nameconstraints::tc5555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153733,6 +159434,7 @@ "id": "bettertls::nameconstraints::tc5556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153760,6 +159462,7 @@ "id": "bettertls::nameconstraints::tc5557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153787,6 +159490,7 @@ "id": "bettertls::nameconstraints::tc5558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153814,6 +159518,7 @@ "id": "bettertls::nameconstraints::tc5559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153841,6 +159546,7 @@ "id": "bettertls::nameconstraints::tc5560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153868,6 +159574,7 @@ "id": "bettertls::nameconstraints::tc5561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153895,6 +159602,7 @@ "id": "bettertls::nameconstraints::tc5562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153922,6 +159630,7 @@ "id": "bettertls::nameconstraints::tc5563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153949,6 +159658,7 @@ "id": "bettertls::nameconstraints::tc5564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -153976,6 +159686,7 @@ "id": "bettertls::nameconstraints::tc5565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154003,6 +159714,7 @@ "id": "bettertls::nameconstraints::tc5566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154030,6 +159742,7 @@ "id": "bettertls::nameconstraints::tc5567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154057,6 +159770,7 @@ "id": "bettertls::nameconstraints::tc5568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154084,6 +159798,7 @@ "id": "bettertls::nameconstraints::tc5569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154111,6 +159826,7 @@ "id": "bettertls::nameconstraints::tc5570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154138,6 +159854,7 @@ "id": "bettertls::nameconstraints::tc5571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154165,6 +159882,7 @@ "id": "bettertls::nameconstraints::tc5572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154192,6 +159910,7 @@ "id": "bettertls::nameconstraints::tc5573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154219,6 +159938,7 @@ "id": "bettertls::nameconstraints::tc5574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154246,6 +159966,7 @@ "id": "bettertls::nameconstraints::tc5575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154273,6 +159994,7 @@ "id": "bettertls::nameconstraints::tc5576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154300,6 +160022,7 @@ "id": "bettertls::nameconstraints::tc5577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154327,6 +160050,7 @@ "id": "bettertls::nameconstraints::tc5578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154354,6 +160078,7 @@ "id": "bettertls::nameconstraints::tc5579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154381,6 +160106,7 @@ "id": "bettertls::nameconstraints::tc5580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154408,6 +160134,7 @@ "id": "bettertls::nameconstraints::tc5581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154435,6 +160162,7 @@ "id": "bettertls::nameconstraints::tc5582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154462,6 +160190,7 @@ "id": "bettertls::nameconstraints::tc5583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154489,6 +160218,7 @@ "id": "bettertls::nameconstraints::tc5584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154516,6 +160246,7 @@ "id": "bettertls::nameconstraints::tc5585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154543,6 +160274,7 @@ "id": "bettertls::nameconstraints::tc5586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154570,6 +160302,7 @@ "id": "bettertls::nameconstraints::tc5587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154597,6 +160330,7 @@ "id": "bettertls::nameconstraints::tc5588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154624,6 +160358,7 @@ "id": "bettertls::nameconstraints::tc5589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154651,6 +160386,7 @@ "id": "bettertls::nameconstraints::tc5590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154678,6 +160414,7 @@ "id": "bettertls::nameconstraints::tc5591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154705,6 +160442,7 @@ "id": "bettertls::nameconstraints::tc5592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154732,6 +160470,7 @@ "id": "bettertls::nameconstraints::tc5593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154759,6 +160498,7 @@ "id": "bettertls::nameconstraints::tc5594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154786,6 +160526,7 @@ "id": "bettertls::nameconstraints::tc5595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154813,6 +160554,7 @@ "id": "bettertls::nameconstraints::tc5596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154840,6 +160582,7 @@ "id": "bettertls::nameconstraints::tc5597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154867,6 +160610,7 @@ "id": "bettertls::nameconstraints::tc5598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154894,6 +160638,7 @@ "id": "bettertls::nameconstraints::tc5599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154921,6 +160666,7 @@ "id": "bettertls::nameconstraints::tc5600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154948,6 +160694,7 @@ "id": "bettertls::nameconstraints::tc5601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -154975,6 +160722,7 @@ "id": "bettertls::nameconstraints::tc5602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155002,6 +160750,7 @@ "id": "bettertls::nameconstraints::tc5603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155029,6 +160778,7 @@ "id": "bettertls::nameconstraints::tc5604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155056,6 +160806,7 @@ "id": "bettertls::nameconstraints::tc5605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155083,6 +160834,7 @@ "id": "bettertls::nameconstraints::tc5606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155110,6 +160862,7 @@ "id": "bettertls::nameconstraints::tc5607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155137,6 +160890,7 @@ "id": "bettertls::nameconstraints::tc5608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155164,6 +160918,7 @@ "id": "bettertls::nameconstraints::tc5609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155191,6 +160946,7 @@ "id": "bettertls::nameconstraints::tc5610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155218,6 +160974,7 @@ "id": "bettertls::nameconstraints::tc5611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155245,6 +161002,7 @@ "id": "bettertls::nameconstraints::tc5612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155272,6 +161030,7 @@ "id": "bettertls::nameconstraints::tc5613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155299,6 +161058,7 @@ "id": "bettertls::nameconstraints::tc5614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155326,6 +161086,7 @@ "id": "bettertls::nameconstraints::tc5615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155353,6 +161114,7 @@ "id": "bettertls::nameconstraints::tc5616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155380,6 +161142,7 @@ "id": "bettertls::nameconstraints::tc5617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155407,6 +161170,7 @@ "id": "bettertls::nameconstraints::tc5618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155434,6 +161198,7 @@ "id": "bettertls::nameconstraints::tc5619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155461,6 +161226,7 @@ "id": "bettertls::nameconstraints::tc5620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155488,6 +161254,7 @@ "id": "bettertls::nameconstraints::tc5621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155515,6 +161282,7 @@ "id": "bettertls::nameconstraints::tc5622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155542,6 +161310,7 @@ "id": "bettertls::nameconstraints::tc5623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155569,6 +161338,7 @@ "id": "bettertls::nameconstraints::tc5624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155596,6 +161366,7 @@ "id": "bettertls::nameconstraints::tc5625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155623,6 +161394,7 @@ "id": "bettertls::nameconstraints::tc5626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155650,6 +161422,7 @@ "id": "bettertls::nameconstraints::tc5627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155677,6 +161450,7 @@ "id": "bettertls::nameconstraints::tc5628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155704,6 +161478,7 @@ "id": "bettertls::nameconstraints::tc5629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155731,6 +161506,7 @@ "id": "bettertls::nameconstraints::tc5630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155758,6 +161534,7 @@ "id": "bettertls::nameconstraints::tc5631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155785,6 +161562,7 @@ "id": "bettertls::nameconstraints::tc5632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155812,6 +161590,7 @@ "id": "bettertls::nameconstraints::tc5633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155839,6 +161618,7 @@ "id": "bettertls::nameconstraints::tc5634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155866,6 +161646,7 @@ "id": "bettertls::nameconstraints::tc5635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155893,6 +161674,7 @@ "id": "bettertls::nameconstraints::tc5636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155920,6 +161702,7 @@ "id": "bettertls::nameconstraints::tc5637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155947,6 +161730,7 @@ "id": "bettertls::nameconstraints::tc5638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -155974,6 +161758,7 @@ "id": "bettertls::nameconstraints::tc5639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156001,6 +161786,7 @@ "id": "bettertls::nameconstraints::tc5640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156028,6 +161814,7 @@ "id": "bettertls::nameconstraints::tc5641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156055,6 +161842,7 @@ "id": "bettertls::nameconstraints::tc5642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156082,6 +161870,7 @@ "id": "bettertls::nameconstraints::tc5643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156109,6 +161898,7 @@ "id": "bettertls::nameconstraints::tc5644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156136,6 +161926,7 @@ "id": "bettertls::nameconstraints::tc5645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156163,6 +161954,7 @@ "id": "bettertls::nameconstraints::tc5646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156190,6 +161982,7 @@ "id": "bettertls::nameconstraints::tc5647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156217,6 +162010,7 @@ "id": "bettertls::nameconstraints::tc5648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156244,6 +162038,7 @@ "id": "bettertls::nameconstraints::tc5649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156271,6 +162066,7 @@ "id": "bettertls::nameconstraints::tc5650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156298,6 +162094,7 @@ "id": "bettertls::nameconstraints::tc5651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156325,6 +162122,7 @@ "id": "bettertls::nameconstraints::tc5652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156352,6 +162150,7 @@ "id": "bettertls::nameconstraints::tc5653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156379,6 +162178,7 @@ "id": "bettertls::nameconstraints::tc5654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156406,6 +162206,7 @@ "id": "bettertls::nameconstraints::tc5655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156433,6 +162234,7 @@ "id": "bettertls::nameconstraints::tc5656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156460,6 +162262,7 @@ "id": "bettertls::nameconstraints::tc5657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156487,6 +162290,7 @@ "id": "bettertls::nameconstraints::tc5658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156514,6 +162318,7 @@ "id": "bettertls::nameconstraints::tc5659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156541,6 +162346,7 @@ "id": "bettertls::nameconstraints::tc5660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156568,6 +162374,7 @@ "id": "bettertls::nameconstraints::tc5661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156595,6 +162402,7 @@ "id": "bettertls::nameconstraints::tc5662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156622,6 +162430,7 @@ "id": "bettertls::nameconstraints::tc5663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156649,6 +162458,7 @@ "id": "bettertls::nameconstraints::tc5664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156676,6 +162486,7 @@ "id": "bettertls::nameconstraints::tc5665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156703,6 +162514,7 @@ "id": "bettertls::nameconstraints::tc5666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156730,6 +162542,7 @@ "id": "bettertls::nameconstraints::tc5667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156757,6 +162570,7 @@ "id": "bettertls::nameconstraints::tc5668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156784,6 +162598,7 @@ "id": "bettertls::nameconstraints::tc5669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156811,6 +162626,7 @@ "id": "bettertls::nameconstraints::tc5670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156838,6 +162654,7 @@ "id": "bettertls::nameconstraints::tc5671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156865,6 +162682,7 @@ "id": "bettertls::nameconstraints::tc5672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156892,6 +162710,7 @@ "id": "bettertls::nameconstraints::tc5673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156919,6 +162738,7 @@ "id": "bettertls::nameconstraints::tc5674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156946,6 +162766,7 @@ "id": "bettertls::nameconstraints::tc5675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -156973,6 +162794,7 @@ "id": "bettertls::nameconstraints::tc5676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157000,6 +162822,7 @@ "id": "bettertls::nameconstraints::tc5677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157027,6 +162850,7 @@ "id": "bettertls::nameconstraints::tc5678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157054,6 +162878,7 @@ "id": "bettertls::nameconstraints::tc5679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157081,6 +162906,7 @@ "id": "bettertls::nameconstraints::tc5680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157108,6 +162934,7 @@ "id": "bettertls::nameconstraints::tc5681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157135,6 +162962,7 @@ "id": "bettertls::nameconstraints::tc5682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157162,6 +162990,7 @@ "id": "bettertls::nameconstraints::tc5683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157189,6 +163018,7 @@ "id": "bettertls::nameconstraints::tc5684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157216,6 +163046,7 @@ "id": "bettertls::nameconstraints::tc5685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157243,6 +163074,7 @@ "id": "bettertls::nameconstraints::tc5686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157270,6 +163102,7 @@ "id": "bettertls::nameconstraints::tc5687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157297,6 +163130,7 @@ "id": "bettertls::nameconstraints::tc5688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157324,6 +163158,7 @@ "id": "bettertls::nameconstraints::tc5689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157351,6 +163186,7 @@ "id": "bettertls::nameconstraints::tc5690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157378,6 +163214,7 @@ "id": "bettertls::nameconstraints::tc5691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157405,6 +163242,7 @@ "id": "bettertls::nameconstraints::tc5692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157432,6 +163270,7 @@ "id": "bettertls::nameconstraints::tc5693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157459,6 +163298,7 @@ "id": "bettertls::nameconstraints::tc5694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157486,6 +163326,7 @@ "id": "bettertls::nameconstraints::tc5695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157513,6 +163354,7 @@ "id": "bettertls::nameconstraints::tc5696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157540,6 +163382,7 @@ "id": "bettertls::nameconstraints::tc5697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157567,6 +163410,7 @@ "id": "bettertls::nameconstraints::tc5698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157594,6 +163438,7 @@ "id": "bettertls::nameconstraints::tc5699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157621,6 +163466,7 @@ "id": "bettertls::nameconstraints::tc5700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157648,6 +163494,7 @@ "id": "bettertls::nameconstraints::tc5701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157675,6 +163522,7 @@ "id": "bettertls::nameconstraints::tc5702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157702,6 +163550,7 @@ "id": "bettertls::nameconstraints::tc5703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157729,6 +163578,7 @@ "id": "bettertls::nameconstraints::tc5704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157756,6 +163606,7 @@ "id": "bettertls::nameconstraints::tc5705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157783,6 +163634,7 @@ "id": "bettertls::nameconstraints::tc5706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157810,6 +163662,7 @@ "id": "bettertls::nameconstraints::tc5707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157837,6 +163690,7 @@ "id": "bettertls::nameconstraints::tc5708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157864,6 +163718,7 @@ "id": "bettertls::nameconstraints::tc5709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157891,6 +163746,7 @@ "id": "bettertls::nameconstraints::tc5710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157918,6 +163774,7 @@ "id": "bettertls::nameconstraints::tc5711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157945,6 +163802,7 @@ "id": "bettertls::nameconstraints::tc5712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157972,6 +163830,7 @@ "id": "bettertls::nameconstraints::tc5713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -157999,6 +163858,7 @@ "id": "bettertls::nameconstraints::tc5714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158026,6 +163886,7 @@ "id": "bettertls::nameconstraints::tc5715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158053,6 +163914,7 @@ "id": "bettertls::nameconstraints::tc5716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158080,6 +163942,7 @@ "id": "bettertls::nameconstraints::tc5717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158107,6 +163970,7 @@ "id": "bettertls::nameconstraints::tc5718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158134,6 +163998,7 @@ "id": "bettertls::nameconstraints::tc5719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158161,6 +164026,7 @@ "id": "bettertls::nameconstraints::tc5720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158188,6 +164054,7 @@ "id": "bettertls::nameconstraints::tc5721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158215,6 +164082,7 @@ "id": "bettertls::nameconstraints::tc5722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158242,6 +164110,7 @@ "id": "bettertls::nameconstraints::tc5723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158269,6 +164138,7 @@ "id": "bettertls::nameconstraints::tc5724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158296,6 +164166,7 @@ "id": "bettertls::nameconstraints::tc5725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158323,6 +164194,7 @@ "id": "bettertls::nameconstraints::tc5726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158350,6 +164222,7 @@ "id": "bettertls::nameconstraints::tc5727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158377,6 +164250,7 @@ "id": "bettertls::nameconstraints::tc5728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158404,6 +164278,7 @@ "id": "bettertls::nameconstraints::tc5729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158431,6 +164306,7 @@ "id": "bettertls::nameconstraints::tc5730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158458,6 +164334,7 @@ "id": "bettertls::nameconstraints::tc5731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158485,6 +164362,7 @@ "id": "bettertls::nameconstraints::tc5732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158512,6 +164390,7 @@ "id": "bettertls::nameconstraints::tc5733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158539,6 +164418,7 @@ "id": "bettertls::nameconstraints::tc5734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158566,6 +164446,7 @@ "id": "bettertls::nameconstraints::tc5735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158593,6 +164474,7 @@ "id": "bettertls::nameconstraints::tc5736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158620,6 +164502,7 @@ "id": "bettertls::nameconstraints::tc5737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158647,6 +164530,7 @@ "id": "bettertls::nameconstraints::tc5738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158674,6 +164558,7 @@ "id": "bettertls::nameconstraints::tc5739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158701,6 +164586,7 @@ "id": "bettertls::nameconstraints::tc5740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158728,6 +164614,7 @@ "id": "bettertls::nameconstraints::tc5741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158755,6 +164642,7 @@ "id": "bettertls::nameconstraints::tc5742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158782,6 +164670,7 @@ "id": "bettertls::nameconstraints::tc5743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158809,6 +164698,7 @@ "id": "bettertls::nameconstraints::tc5744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158836,6 +164726,7 @@ "id": "bettertls::nameconstraints::tc5745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158863,6 +164754,7 @@ "id": "bettertls::nameconstraints::tc5746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158890,6 +164782,7 @@ "id": "bettertls::nameconstraints::tc5747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158917,6 +164810,7 @@ "id": "bettertls::nameconstraints::tc5748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158944,6 +164838,7 @@ "id": "bettertls::nameconstraints::tc5749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158971,6 +164866,7 @@ "id": "bettertls::nameconstraints::tc5750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -158998,6 +164894,7 @@ "id": "bettertls::nameconstraints::tc5751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159025,6 +164922,7 @@ "id": "bettertls::nameconstraints::tc5752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159052,6 +164950,7 @@ "id": "bettertls::nameconstraints::tc5753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159079,6 +164978,7 @@ "id": "bettertls::nameconstraints::tc5754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159106,6 +165006,7 @@ "id": "bettertls::nameconstraints::tc5755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159133,6 +165034,7 @@ "id": "bettertls::nameconstraints::tc5756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159160,6 +165062,7 @@ "id": "bettertls::nameconstraints::tc5757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159187,6 +165090,7 @@ "id": "bettertls::nameconstraints::tc5758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159214,6 +165118,7 @@ "id": "bettertls::nameconstraints::tc5759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159241,6 +165146,7 @@ "id": "bettertls::nameconstraints::tc5760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159268,6 +165174,7 @@ "id": "bettertls::nameconstraints::tc5761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159295,6 +165202,7 @@ "id": "bettertls::nameconstraints::tc5762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159322,6 +165230,7 @@ "id": "bettertls::nameconstraints::tc5763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159349,6 +165258,7 @@ "id": "bettertls::nameconstraints::tc5764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159376,6 +165286,7 @@ "id": "bettertls::nameconstraints::tc5765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159403,6 +165314,7 @@ "id": "bettertls::nameconstraints::tc5766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159430,6 +165342,7 @@ "id": "bettertls::nameconstraints::tc5767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159457,6 +165370,7 @@ "id": "bettertls::nameconstraints::tc5768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159484,6 +165398,7 @@ "id": "bettertls::nameconstraints::tc5769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159511,6 +165426,7 @@ "id": "bettertls::nameconstraints::tc5770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159538,6 +165454,7 @@ "id": "bettertls::nameconstraints::tc5771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159565,6 +165482,7 @@ "id": "bettertls::nameconstraints::tc5772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159592,6 +165510,7 @@ "id": "bettertls::nameconstraints::tc5773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159619,6 +165538,7 @@ "id": "bettertls::nameconstraints::tc5774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159646,6 +165566,7 @@ "id": "bettertls::nameconstraints::tc5775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159673,6 +165594,7 @@ "id": "bettertls::nameconstraints::tc5776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159700,6 +165622,7 @@ "id": "bettertls::nameconstraints::tc5777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159727,6 +165650,7 @@ "id": "bettertls::nameconstraints::tc5778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159754,6 +165678,7 @@ "id": "bettertls::nameconstraints::tc5779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159781,6 +165706,7 @@ "id": "bettertls::nameconstraints::tc5780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159808,6 +165734,7 @@ "id": "bettertls::nameconstraints::tc5781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159835,6 +165762,7 @@ "id": "bettertls::nameconstraints::tc5782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159862,6 +165790,7 @@ "id": "bettertls::nameconstraints::tc5783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159889,6 +165818,7 @@ "id": "bettertls::nameconstraints::tc5784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159916,6 +165846,7 @@ "id": "bettertls::nameconstraints::tc5785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159943,6 +165874,7 @@ "id": "bettertls::nameconstraints::tc5786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159970,6 +165902,7 @@ "id": "bettertls::nameconstraints::tc5787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -159997,6 +165930,7 @@ "id": "bettertls::nameconstraints::tc5788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160024,6 +165958,7 @@ "id": "bettertls::nameconstraints::tc5789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160051,6 +165986,7 @@ "id": "bettertls::nameconstraints::tc5790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160078,6 +166014,7 @@ "id": "bettertls::nameconstraints::tc5791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160105,6 +166042,7 @@ "id": "bettertls::nameconstraints::tc5792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160132,6 +166070,7 @@ "id": "bettertls::nameconstraints::tc5793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160159,6 +166098,7 @@ "id": "bettertls::nameconstraints::tc5794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160186,6 +166126,7 @@ "id": "bettertls::nameconstraints::tc5795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160213,6 +166154,7 @@ "id": "bettertls::nameconstraints::tc5796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160240,6 +166182,7 @@ "id": "bettertls::nameconstraints::tc5797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160267,6 +166210,7 @@ "id": "bettertls::nameconstraints::tc5798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160294,6 +166238,7 @@ "id": "bettertls::nameconstraints::tc5799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160321,6 +166266,7 @@ "id": "bettertls::nameconstraints::tc5800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160348,6 +166294,7 @@ "id": "bettertls::nameconstraints::tc5801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160375,6 +166322,7 @@ "id": "bettertls::nameconstraints::tc5802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160402,6 +166350,7 @@ "id": "bettertls::nameconstraints::tc5803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160429,6 +166378,7 @@ "id": "bettertls::nameconstraints::tc5804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160456,6 +166406,7 @@ "id": "bettertls::nameconstraints::tc5805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160483,6 +166434,7 @@ "id": "bettertls::nameconstraints::tc5806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160510,6 +166462,7 @@ "id": "bettertls::nameconstraints::tc5807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160537,6 +166490,7 @@ "id": "bettertls::nameconstraints::tc5808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160564,6 +166518,7 @@ "id": "bettertls::nameconstraints::tc5809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160591,6 +166546,7 @@ "id": "bettertls::nameconstraints::tc5810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160618,6 +166574,7 @@ "id": "bettertls::nameconstraints::tc5811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160645,6 +166602,7 @@ "id": "bettertls::nameconstraints::tc5812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160672,6 +166630,7 @@ "id": "bettertls::nameconstraints::tc5813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160699,6 +166658,7 @@ "id": "bettertls::nameconstraints::tc5814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160726,6 +166686,7 @@ "id": "bettertls::nameconstraints::tc5815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160753,6 +166714,7 @@ "id": "bettertls::nameconstraints::tc5816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160780,6 +166742,7 @@ "id": "bettertls::nameconstraints::tc5817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160807,6 +166770,7 @@ "id": "bettertls::nameconstraints::tc5818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160834,6 +166798,7 @@ "id": "bettertls::nameconstraints::tc5819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160861,6 +166826,7 @@ "id": "bettertls::nameconstraints::tc5820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160888,6 +166854,7 @@ "id": "bettertls::nameconstraints::tc5821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160915,6 +166882,7 @@ "id": "bettertls::nameconstraints::tc5822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160942,6 +166910,7 @@ "id": "bettertls::nameconstraints::tc5823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160969,6 +166938,7 @@ "id": "bettertls::nameconstraints::tc5824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -160996,6 +166966,7 @@ "id": "bettertls::nameconstraints::tc5825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161023,6 +166994,7 @@ "id": "bettertls::nameconstraints::tc5826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161050,6 +167022,7 @@ "id": "bettertls::nameconstraints::tc5827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161077,6 +167050,7 @@ "id": "bettertls::nameconstraints::tc5828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161104,6 +167078,7 @@ "id": "bettertls::nameconstraints::tc5829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161131,6 +167106,7 @@ "id": "bettertls::nameconstraints::tc5830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161158,6 +167134,7 @@ "id": "bettertls::nameconstraints::tc5831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161185,6 +167162,7 @@ "id": "bettertls::nameconstraints::tc5832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161212,6 +167190,7 @@ "id": "bettertls::nameconstraints::tc5833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161239,6 +167218,7 @@ "id": "bettertls::nameconstraints::tc5834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161266,6 +167246,7 @@ "id": "bettertls::nameconstraints::tc5835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161293,6 +167274,7 @@ "id": "bettertls::nameconstraints::tc5836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161320,6 +167302,7 @@ "id": "bettertls::nameconstraints::tc5837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161347,6 +167330,7 @@ "id": "bettertls::nameconstraints::tc5838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161374,6 +167358,7 @@ "id": "bettertls::nameconstraints::tc5839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161401,6 +167386,7 @@ "id": "bettertls::nameconstraints::tc5840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161428,6 +167414,7 @@ "id": "bettertls::nameconstraints::tc5841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161455,6 +167442,7 @@ "id": "bettertls::nameconstraints::tc5842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161482,6 +167470,7 @@ "id": "bettertls::nameconstraints::tc5843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161509,6 +167498,7 @@ "id": "bettertls::nameconstraints::tc5844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161536,6 +167526,7 @@ "id": "bettertls::nameconstraints::tc5845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161563,6 +167554,7 @@ "id": "bettertls::nameconstraints::tc5846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161590,6 +167582,7 @@ "id": "bettertls::nameconstraints::tc5847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161617,6 +167610,7 @@ "id": "bettertls::nameconstraints::tc5848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161644,6 +167638,7 @@ "id": "bettertls::nameconstraints::tc5849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161671,6 +167666,7 @@ "id": "bettertls::nameconstraints::tc5850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161698,6 +167694,7 @@ "id": "bettertls::nameconstraints::tc5851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161725,6 +167722,7 @@ "id": "bettertls::nameconstraints::tc5852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161752,6 +167750,7 @@ "id": "bettertls::nameconstraints::tc5853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161779,6 +167778,7 @@ "id": "bettertls::nameconstraints::tc5854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161806,6 +167806,7 @@ "id": "bettertls::nameconstraints::tc5855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161833,6 +167834,7 @@ "id": "bettertls::nameconstraints::tc5856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161860,6 +167862,7 @@ "id": "bettertls::nameconstraints::tc5857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161887,6 +167890,7 @@ "id": "bettertls::nameconstraints::tc5858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161914,6 +167918,7 @@ "id": "bettertls::nameconstraints::tc5859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161941,6 +167946,7 @@ "id": "bettertls::nameconstraints::tc5860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161968,6 +167974,7 @@ "id": "bettertls::nameconstraints::tc5861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -161995,6 +168002,7 @@ "id": "bettertls::nameconstraints::tc5862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162022,6 +168030,7 @@ "id": "bettertls::nameconstraints::tc5863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162049,6 +168058,7 @@ "id": "bettertls::nameconstraints::tc5864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162076,6 +168086,7 @@ "id": "bettertls::nameconstraints::tc5865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162103,6 +168114,7 @@ "id": "bettertls::nameconstraints::tc5866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162130,6 +168142,7 @@ "id": "bettertls::nameconstraints::tc5867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162157,6 +168170,7 @@ "id": "bettertls::nameconstraints::tc5868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162184,6 +168198,7 @@ "id": "bettertls::nameconstraints::tc5869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162211,6 +168226,7 @@ "id": "bettertls::nameconstraints::tc5870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162238,6 +168254,7 @@ "id": "bettertls::nameconstraints::tc5871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162265,6 +168282,7 @@ "id": "bettertls::nameconstraints::tc5872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162292,6 +168310,7 @@ "id": "bettertls::nameconstraints::tc5873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162319,6 +168338,7 @@ "id": "bettertls::nameconstraints::tc5874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162346,6 +168366,7 @@ "id": "bettertls::nameconstraints::tc5875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162373,6 +168394,7 @@ "id": "bettertls::nameconstraints::tc5876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162400,6 +168422,7 @@ "id": "bettertls::nameconstraints::tc5877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162427,6 +168450,7 @@ "id": "bettertls::nameconstraints::tc5878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162454,6 +168478,7 @@ "id": "bettertls::nameconstraints::tc5879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162481,6 +168506,7 @@ "id": "bettertls::nameconstraints::tc5880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162508,6 +168534,7 @@ "id": "bettertls::nameconstraints::tc5881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162535,6 +168562,7 @@ "id": "bettertls::nameconstraints::tc5882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162562,6 +168590,7 @@ "id": "bettertls::nameconstraints::tc5883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162589,6 +168618,7 @@ "id": "bettertls::nameconstraints::tc5884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162616,6 +168646,7 @@ "id": "bettertls::nameconstraints::tc5885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162643,6 +168674,7 @@ "id": "bettertls::nameconstraints::tc5886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162670,6 +168702,7 @@ "id": "bettertls::nameconstraints::tc5887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162697,6 +168730,7 @@ "id": "bettertls::nameconstraints::tc5888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162724,6 +168758,7 @@ "id": "bettertls::nameconstraints::tc5889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162751,6 +168786,7 @@ "id": "bettertls::nameconstraints::tc5890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162778,6 +168814,7 @@ "id": "bettertls::nameconstraints::tc5891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162805,6 +168842,7 @@ "id": "bettertls::nameconstraints::tc5892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162832,6 +168870,7 @@ "id": "bettertls::nameconstraints::tc5893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162859,6 +168898,7 @@ "id": "bettertls::nameconstraints::tc5894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162886,6 +168926,7 @@ "id": "bettertls::nameconstraints::tc5895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162913,6 +168954,7 @@ "id": "bettertls::nameconstraints::tc5896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162940,6 +168982,7 @@ "id": "bettertls::nameconstraints::tc5897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162967,6 +169010,7 @@ "id": "bettertls::nameconstraints::tc5898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -162994,6 +169038,7 @@ "id": "bettertls::nameconstraints::tc5899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163021,6 +169066,7 @@ "id": "bettertls::nameconstraints::tc5900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163048,6 +169094,7 @@ "id": "bettertls::nameconstraints::tc5901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163075,6 +169122,7 @@ "id": "bettertls::nameconstraints::tc5902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163102,6 +169150,7 @@ "id": "bettertls::nameconstraints::tc5903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163129,6 +169178,7 @@ "id": "bettertls::nameconstraints::tc5904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163156,6 +169206,7 @@ "id": "bettertls::nameconstraints::tc5905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163183,6 +169234,7 @@ "id": "bettertls::nameconstraints::tc5906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163210,6 +169262,7 @@ "id": "bettertls::nameconstraints::tc5907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163237,6 +169290,7 @@ "id": "bettertls::nameconstraints::tc5908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163264,6 +169318,7 @@ "id": "bettertls::nameconstraints::tc5909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163291,6 +169346,7 @@ "id": "bettertls::nameconstraints::tc5910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163318,6 +169374,7 @@ "id": "bettertls::nameconstraints::tc5911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163345,6 +169402,7 @@ "id": "bettertls::nameconstraints::tc5912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163372,6 +169430,7 @@ "id": "bettertls::nameconstraints::tc5913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163399,6 +169458,7 @@ "id": "bettertls::nameconstraints::tc5914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163426,6 +169486,7 @@ "id": "bettertls::nameconstraints::tc5915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163453,6 +169514,7 @@ "id": "bettertls::nameconstraints::tc5916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163480,6 +169542,7 @@ "id": "bettertls::nameconstraints::tc5917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163507,6 +169570,7 @@ "id": "bettertls::nameconstraints::tc5918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163534,6 +169598,7 @@ "id": "bettertls::nameconstraints::tc5919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163561,6 +169626,7 @@ "id": "bettertls::nameconstraints::tc5920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163588,6 +169654,7 @@ "id": "bettertls::nameconstraints::tc5921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163615,6 +169682,7 @@ "id": "bettertls::nameconstraints::tc5922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163642,6 +169710,7 @@ "id": "bettertls::nameconstraints::tc5923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163669,6 +169738,7 @@ "id": "bettertls::nameconstraints::tc5924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163696,6 +169766,7 @@ "id": "bettertls::nameconstraints::tc5925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163723,6 +169794,7 @@ "id": "bettertls::nameconstraints::tc5926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163750,6 +169822,7 @@ "id": "bettertls::nameconstraints::tc5927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163777,6 +169850,7 @@ "id": "bettertls::nameconstraints::tc5928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163804,6 +169878,7 @@ "id": "bettertls::nameconstraints::tc5929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163831,6 +169906,7 @@ "id": "bettertls::nameconstraints::tc5930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163858,6 +169934,7 @@ "id": "bettertls::nameconstraints::tc5931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163885,6 +169962,7 @@ "id": "bettertls::nameconstraints::tc5932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163912,6 +169990,7 @@ "id": "bettertls::nameconstraints::tc5933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163939,6 +170018,7 @@ "id": "bettertls::nameconstraints::tc5934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163966,6 +170046,7 @@ "id": "bettertls::nameconstraints::tc5935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -163993,6 +170074,7 @@ "id": "bettertls::nameconstraints::tc5936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164020,6 +170102,7 @@ "id": "bettertls::nameconstraints::tc5937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164047,6 +170130,7 @@ "id": "bettertls::nameconstraints::tc5938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164074,6 +170158,7 @@ "id": "bettertls::nameconstraints::tc5939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164101,6 +170186,7 @@ "id": "bettertls::nameconstraints::tc5940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164128,6 +170214,7 @@ "id": "bettertls::nameconstraints::tc5941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164155,6 +170242,7 @@ "id": "bettertls::nameconstraints::tc5942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164182,6 +170270,7 @@ "id": "bettertls::nameconstraints::tc5943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164209,6 +170298,7 @@ "id": "bettertls::nameconstraints::tc5944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164236,6 +170326,7 @@ "id": "bettertls::nameconstraints::tc5945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164263,6 +170354,7 @@ "id": "bettertls::nameconstraints::tc5946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164290,6 +170382,7 @@ "id": "bettertls::nameconstraints::tc5947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164317,6 +170410,7 @@ "id": "bettertls::nameconstraints::tc5948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164344,6 +170438,7 @@ "id": "bettertls::nameconstraints::tc5949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164371,6 +170466,7 @@ "id": "bettertls::nameconstraints::tc5950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164398,6 +170494,7 @@ "id": "bettertls::nameconstraints::tc5951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164425,6 +170522,7 @@ "id": "bettertls::nameconstraints::tc5952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164452,6 +170550,7 @@ "id": "bettertls::nameconstraints::tc5953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164479,6 +170578,7 @@ "id": "bettertls::nameconstraints::tc5954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164506,6 +170606,7 @@ "id": "bettertls::nameconstraints::tc5955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164533,6 +170634,7 @@ "id": "bettertls::nameconstraints::tc5956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164560,6 +170662,7 @@ "id": "bettertls::nameconstraints::tc5957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164587,6 +170690,7 @@ "id": "bettertls::nameconstraints::tc5958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164614,6 +170718,7 @@ "id": "bettertls::nameconstraints::tc5959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164641,6 +170746,7 @@ "id": "bettertls::nameconstraints::tc5960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164668,6 +170774,7 @@ "id": "bettertls::nameconstraints::tc5961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164695,6 +170802,7 @@ "id": "bettertls::nameconstraints::tc5962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164722,6 +170830,7 @@ "id": "bettertls::nameconstraints::tc5963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164749,6 +170858,7 @@ "id": "bettertls::nameconstraints::tc5964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164776,6 +170886,7 @@ "id": "bettertls::nameconstraints::tc5965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164803,6 +170914,7 @@ "id": "bettertls::nameconstraints::tc5966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164830,6 +170942,7 @@ "id": "bettertls::nameconstraints::tc5967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164857,6 +170970,7 @@ "id": "bettertls::nameconstraints::tc5968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164884,6 +170998,7 @@ "id": "bettertls::nameconstraints::tc5969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164911,6 +171026,7 @@ "id": "bettertls::nameconstraints::tc5970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164938,6 +171054,7 @@ "id": "bettertls::nameconstraints::tc5971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164965,6 +171082,7 @@ "id": "bettertls::nameconstraints::tc5972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -164992,6 +171110,7 @@ "id": "bettertls::nameconstraints::tc5973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165019,6 +171138,7 @@ "id": "bettertls::nameconstraints::tc5974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165046,6 +171166,7 @@ "id": "bettertls::nameconstraints::tc5975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165073,6 +171194,7 @@ "id": "bettertls::nameconstraints::tc5976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165100,6 +171222,7 @@ "id": "bettertls::nameconstraints::tc5977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165127,6 +171250,7 @@ "id": "bettertls::nameconstraints::tc5978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165154,6 +171278,7 @@ "id": "bettertls::nameconstraints::tc5979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165181,6 +171306,7 @@ "id": "bettertls::nameconstraints::tc5980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165208,6 +171334,7 @@ "id": "bettertls::nameconstraints::tc5981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165235,6 +171362,7 @@ "id": "bettertls::nameconstraints::tc5982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165262,6 +171390,7 @@ "id": "bettertls::nameconstraints::tc5983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165289,6 +171418,7 @@ "id": "bettertls::nameconstraints::tc5984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165316,6 +171446,7 @@ "id": "bettertls::nameconstraints::tc5985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165343,6 +171474,7 @@ "id": "bettertls::nameconstraints::tc5986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165370,6 +171502,7 @@ "id": "bettertls::nameconstraints::tc5987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165397,6 +171530,7 @@ "id": "bettertls::nameconstraints::tc5988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165424,6 +171558,7 @@ "id": "bettertls::nameconstraints::tc5989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165451,6 +171586,7 @@ "id": "bettertls::nameconstraints::tc5990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165478,6 +171614,7 @@ "id": "bettertls::nameconstraints::tc5991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165505,6 +171642,7 @@ "id": "bettertls::nameconstraints::tc5992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165532,6 +171670,7 @@ "id": "bettertls::nameconstraints::tc5993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165559,6 +171698,7 @@ "id": "bettertls::nameconstraints::tc5994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165586,6 +171726,7 @@ "id": "bettertls::nameconstraints::tc5995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165613,6 +171754,7 @@ "id": "bettertls::nameconstraints::tc5996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165640,6 +171782,7 @@ "id": "bettertls::nameconstraints::tc5997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165667,6 +171810,7 @@ "id": "bettertls::nameconstraints::tc5998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165694,6 +171838,7 @@ "id": "bettertls::nameconstraints::tc5999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165721,6 +171866,7 @@ "id": "bettertls::nameconstraints::tc6000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165748,6 +171894,7 @@ "id": "bettertls::nameconstraints::tc6001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165775,6 +171922,7 @@ "id": "bettertls::nameconstraints::tc6002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165802,6 +171950,7 @@ "id": "bettertls::nameconstraints::tc6003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165829,6 +171978,7 @@ "id": "bettertls::nameconstraints::tc6004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165856,6 +172006,7 @@ "id": "bettertls::nameconstraints::tc6005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165883,6 +172034,7 @@ "id": "bettertls::nameconstraints::tc6006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165910,6 +172062,7 @@ "id": "bettertls::nameconstraints::tc6007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165937,6 +172090,7 @@ "id": "bettertls::nameconstraints::tc6008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165964,6 +172118,7 @@ "id": "bettertls::nameconstraints::tc6009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -165991,6 +172146,7 @@ "id": "bettertls::nameconstraints::tc6010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166018,6 +172174,7 @@ "id": "bettertls::nameconstraints::tc6011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166045,6 +172202,7 @@ "id": "bettertls::nameconstraints::tc6012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166072,6 +172230,7 @@ "id": "bettertls::nameconstraints::tc6013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166099,6 +172258,7 @@ "id": "bettertls::nameconstraints::tc6014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166126,6 +172286,7 @@ "id": "bettertls::nameconstraints::tc6015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166153,6 +172314,7 @@ "id": "bettertls::nameconstraints::tc6016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166180,6 +172342,7 @@ "id": "bettertls::nameconstraints::tc6017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166207,6 +172370,7 @@ "id": "bettertls::nameconstraints::tc6018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166234,6 +172398,7 @@ "id": "bettertls::nameconstraints::tc6019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166261,6 +172426,7 @@ "id": "bettertls::nameconstraints::tc6020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166288,6 +172454,7 @@ "id": "bettertls::nameconstraints::tc6021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166315,6 +172482,7 @@ "id": "bettertls::nameconstraints::tc6022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166342,6 +172510,7 @@ "id": "bettertls::nameconstraints::tc6023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166369,6 +172538,7 @@ "id": "bettertls::nameconstraints::tc6024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166396,6 +172566,7 @@ "id": "bettertls::nameconstraints::tc6025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166423,6 +172594,7 @@ "id": "bettertls::nameconstraints::tc6026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166450,6 +172622,7 @@ "id": "bettertls::nameconstraints::tc6027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166477,6 +172650,7 @@ "id": "bettertls::nameconstraints::tc6028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166504,6 +172678,7 @@ "id": "bettertls::nameconstraints::tc6029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166531,6 +172706,7 @@ "id": "bettertls::nameconstraints::tc6030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166558,6 +172734,7 @@ "id": "bettertls::nameconstraints::tc6031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166585,6 +172762,7 @@ "id": "bettertls::nameconstraints::tc6032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166612,6 +172790,7 @@ "id": "bettertls::nameconstraints::tc6033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166639,6 +172818,7 @@ "id": "bettertls::nameconstraints::tc6034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166666,6 +172846,7 @@ "id": "bettertls::nameconstraints::tc6035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166693,6 +172874,7 @@ "id": "bettertls::nameconstraints::tc6036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166720,6 +172902,7 @@ "id": "bettertls::nameconstraints::tc6037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166747,6 +172930,7 @@ "id": "bettertls::nameconstraints::tc6038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166774,6 +172958,7 @@ "id": "bettertls::nameconstraints::tc6039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166801,6 +172986,7 @@ "id": "bettertls::nameconstraints::tc6040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166828,6 +173014,7 @@ "id": "bettertls::nameconstraints::tc6041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166855,6 +173042,7 @@ "id": "bettertls::nameconstraints::tc6042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166882,6 +173070,7 @@ "id": "bettertls::nameconstraints::tc6043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166909,6 +173098,7 @@ "id": "bettertls::nameconstraints::tc6044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166936,6 +173126,7 @@ "id": "bettertls::nameconstraints::tc6045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166963,6 +173154,7 @@ "id": "bettertls::nameconstraints::tc6046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -166990,6 +173182,7 @@ "id": "bettertls::nameconstraints::tc6047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167017,6 +173210,7 @@ "id": "bettertls::nameconstraints::tc6048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167044,6 +173238,7 @@ "id": "bettertls::nameconstraints::tc6049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167071,6 +173266,7 @@ "id": "bettertls::nameconstraints::tc6050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167098,6 +173294,7 @@ "id": "bettertls::nameconstraints::tc6051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167125,6 +173322,7 @@ "id": "bettertls::nameconstraints::tc6052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167152,6 +173350,7 @@ "id": "bettertls::nameconstraints::tc6053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167179,6 +173378,7 @@ "id": "bettertls::nameconstraints::tc6054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167206,6 +173406,7 @@ "id": "bettertls::nameconstraints::tc6055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167233,6 +173434,7 @@ "id": "bettertls::nameconstraints::tc6056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167260,6 +173462,7 @@ "id": "bettertls::nameconstraints::tc6057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167287,6 +173490,7 @@ "id": "bettertls::nameconstraints::tc6058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167314,6 +173518,7 @@ "id": "bettertls::nameconstraints::tc6059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167341,6 +173546,7 @@ "id": "bettertls::nameconstraints::tc6060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167368,6 +173574,7 @@ "id": "bettertls::nameconstraints::tc6061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167395,6 +173602,7 @@ "id": "bettertls::nameconstraints::tc6062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167422,6 +173630,7 @@ "id": "bettertls::nameconstraints::tc6063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167449,6 +173658,7 @@ "id": "bettertls::nameconstraints::tc6064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167476,6 +173686,7 @@ "id": "bettertls::nameconstraints::tc6065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167503,6 +173714,7 @@ "id": "bettertls::nameconstraints::tc6066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167530,6 +173742,7 @@ "id": "bettertls::nameconstraints::tc6067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167557,6 +173770,7 @@ "id": "bettertls::nameconstraints::tc6068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167584,6 +173798,7 @@ "id": "bettertls::nameconstraints::tc6069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167611,6 +173826,7 @@ "id": "bettertls::nameconstraints::tc6070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167638,6 +173854,7 @@ "id": "bettertls::nameconstraints::tc6071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167665,6 +173882,7 @@ "id": "bettertls::nameconstraints::tc6072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167692,6 +173910,7 @@ "id": "bettertls::nameconstraints::tc6073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167719,6 +173938,7 @@ "id": "bettertls::nameconstraints::tc6074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167746,6 +173966,7 @@ "id": "bettertls::nameconstraints::tc6075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167773,6 +173994,7 @@ "id": "bettertls::nameconstraints::tc6076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167800,6 +174022,7 @@ "id": "bettertls::nameconstraints::tc6077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167827,6 +174050,7 @@ "id": "bettertls::nameconstraints::tc6078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167854,6 +174078,7 @@ "id": "bettertls::nameconstraints::tc6079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167881,6 +174106,7 @@ "id": "bettertls::nameconstraints::tc6080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167908,6 +174134,7 @@ "id": "bettertls::nameconstraints::tc6081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167935,6 +174162,7 @@ "id": "bettertls::nameconstraints::tc6082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167962,6 +174190,7 @@ "id": "bettertls::nameconstraints::tc6083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -167989,6 +174218,7 @@ "id": "bettertls::nameconstraints::tc6084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168016,6 +174246,7 @@ "id": "bettertls::nameconstraints::tc6085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168043,6 +174274,7 @@ "id": "bettertls::nameconstraints::tc6086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168070,6 +174302,7 @@ "id": "bettertls::nameconstraints::tc6087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168097,6 +174330,7 @@ "id": "bettertls::nameconstraints::tc6088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168124,6 +174358,7 @@ "id": "bettertls::nameconstraints::tc6089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168151,6 +174386,7 @@ "id": "bettertls::nameconstraints::tc6090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168178,6 +174414,7 @@ "id": "bettertls::nameconstraints::tc6091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168205,6 +174442,7 @@ "id": "bettertls::nameconstraints::tc6092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168232,6 +174470,7 @@ "id": "bettertls::nameconstraints::tc6093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168259,6 +174498,7 @@ "id": "bettertls::nameconstraints::tc6094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168286,6 +174526,7 @@ "id": "bettertls::nameconstraints::tc6095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168313,6 +174554,7 @@ "id": "bettertls::nameconstraints::tc6096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168340,6 +174582,7 @@ "id": "bettertls::nameconstraints::tc6097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168367,6 +174610,7 @@ "id": "bettertls::nameconstraints::tc6098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168394,6 +174638,7 @@ "id": "bettertls::nameconstraints::tc6099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168421,6 +174666,7 @@ "id": "bettertls::nameconstraints::tc6100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168448,6 +174694,7 @@ "id": "bettertls::nameconstraints::tc6101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168475,6 +174722,7 @@ "id": "bettertls::nameconstraints::tc6102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168502,6 +174750,7 @@ "id": "bettertls::nameconstraints::tc6103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168529,6 +174778,7 @@ "id": "bettertls::nameconstraints::tc6104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168556,6 +174806,7 @@ "id": "bettertls::nameconstraints::tc6105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168583,6 +174834,7 @@ "id": "bettertls::nameconstraints::tc6106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168610,6 +174862,7 @@ "id": "bettertls::nameconstraints::tc6107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168637,6 +174890,7 @@ "id": "bettertls::nameconstraints::tc6108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168664,6 +174918,7 @@ "id": "bettertls::nameconstraints::tc6109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168691,6 +174946,7 @@ "id": "bettertls::nameconstraints::tc6110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168718,6 +174974,7 @@ "id": "bettertls::nameconstraints::tc6111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168745,6 +175002,7 @@ "id": "bettertls::nameconstraints::tc6112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168772,6 +175030,7 @@ "id": "bettertls::nameconstraints::tc6113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168799,6 +175058,7 @@ "id": "bettertls::nameconstraints::tc6114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168826,6 +175086,7 @@ "id": "bettertls::nameconstraints::tc6115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168853,6 +175114,7 @@ "id": "bettertls::nameconstraints::tc6116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168880,6 +175142,7 @@ "id": "bettertls::nameconstraints::tc6117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168907,6 +175170,7 @@ "id": "bettertls::nameconstraints::tc6118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168934,6 +175198,7 @@ "id": "bettertls::nameconstraints::tc6119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168961,6 +175226,7 @@ "id": "bettertls::nameconstraints::tc6120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -168988,6 +175254,7 @@ "id": "bettertls::nameconstraints::tc6121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169015,6 +175282,7 @@ "id": "bettertls::nameconstraints::tc6122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169042,6 +175310,7 @@ "id": "bettertls::nameconstraints::tc6123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169069,6 +175338,7 @@ "id": "bettertls::nameconstraints::tc6124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169096,6 +175366,7 @@ "id": "bettertls::nameconstraints::tc6125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169123,6 +175394,7 @@ "id": "bettertls::nameconstraints::tc6126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169150,6 +175422,7 @@ "id": "bettertls::nameconstraints::tc6127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169177,6 +175450,7 @@ "id": "bettertls::nameconstraints::tc6128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169204,6 +175478,7 @@ "id": "bettertls::nameconstraints::tc6129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169231,6 +175506,7 @@ "id": "bettertls::nameconstraints::tc6130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169258,6 +175534,7 @@ "id": "bettertls::nameconstraints::tc6131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169285,6 +175562,7 @@ "id": "bettertls::nameconstraints::tc6132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169312,6 +175590,7 @@ "id": "bettertls::nameconstraints::tc6133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169339,6 +175618,7 @@ "id": "bettertls::nameconstraints::tc6134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169366,6 +175646,7 @@ "id": "bettertls::nameconstraints::tc6135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169393,6 +175674,7 @@ "id": "bettertls::nameconstraints::tc6136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169420,6 +175702,7 @@ "id": "bettertls::nameconstraints::tc6137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169447,6 +175730,7 @@ "id": "bettertls::nameconstraints::tc6138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169474,6 +175758,7 @@ "id": "bettertls::nameconstraints::tc6139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169501,6 +175786,7 @@ "id": "bettertls::nameconstraints::tc6140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169528,6 +175814,7 @@ "id": "bettertls::nameconstraints::tc6141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169555,6 +175842,7 @@ "id": "bettertls::nameconstraints::tc6142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169582,6 +175870,7 @@ "id": "bettertls::nameconstraints::tc6143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169609,6 +175898,7 @@ "id": "bettertls::nameconstraints::tc6144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169636,6 +175926,7 @@ "id": "bettertls::nameconstraints::tc6145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169663,6 +175954,7 @@ "id": "bettertls::nameconstraints::tc6146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169690,6 +175982,7 @@ "id": "bettertls::nameconstraints::tc6147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169717,6 +176010,7 @@ "id": "bettertls::nameconstraints::tc6148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169744,6 +176038,7 @@ "id": "bettertls::nameconstraints::tc6149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169771,6 +176066,7 @@ "id": "bettertls::nameconstraints::tc6150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169798,6 +176094,7 @@ "id": "bettertls::nameconstraints::tc6151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169825,6 +176122,7 @@ "id": "bettertls::nameconstraints::tc6152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169852,6 +176150,7 @@ "id": "bettertls::nameconstraints::tc6153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169879,6 +176178,7 @@ "id": "bettertls::nameconstraints::tc6154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169906,6 +176206,7 @@ "id": "bettertls::nameconstraints::tc6155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169933,6 +176234,7 @@ "id": "bettertls::nameconstraints::tc6156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169960,6 +176262,7 @@ "id": "bettertls::nameconstraints::tc6157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -169987,6 +176290,7 @@ "id": "bettertls::nameconstraints::tc6158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170014,6 +176318,7 @@ "id": "bettertls::nameconstraints::tc6159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170041,6 +176346,7 @@ "id": "bettertls::nameconstraints::tc6160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170068,6 +176374,7 @@ "id": "bettertls::nameconstraints::tc6161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170095,6 +176402,7 @@ "id": "bettertls::nameconstraints::tc6162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170122,6 +176430,7 @@ "id": "bettertls::nameconstraints::tc6163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170149,6 +176458,7 @@ "id": "bettertls::nameconstraints::tc6164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170176,6 +176486,7 @@ "id": "bettertls::nameconstraints::tc6165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170203,6 +176514,7 @@ "id": "bettertls::nameconstraints::tc6166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170230,6 +176542,7 @@ "id": "bettertls::nameconstraints::tc6167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170257,6 +176570,7 @@ "id": "bettertls::nameconstraints::tc6168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170284,6 +176598,7 @@ "id": "bettertls::nameconstraints::tc6169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170311,6 +176626,7 @@ "id": "bettertls::nameconstraints::tc6170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170338,6 +176654,7 @@ "id": "bettertls::nameconstraints::tc6171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170365,6 +176682,7 @@ "id": "bettertls::nameconstraints::tc6172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170392,6 +176710,7 @@ "id": "bettertls::nameconstraints::tc6173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170419,6 +176738,7 @@ "id": "bettertls::nameconstraints::tc6174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170446,6 +176766,7 @@ "id": "bettertls::nameconstraints::tc6175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170473,6 +176794,7 @@ "id": "bettertls::nameconstraints::tc6176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170500,6 +176822,7 @@ "id": "bettertls::nameconstraints::tc6177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170527,6 +176850,7 @@ "id": "bettertls::nameconstraints::tc6178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170554,6 +176878,7 @@ "id": "bettertls::nameconstraints::tc6179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170581,6 +176906,7 @@ "id": "bettertls::nameconstraints::tc6180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170608,6 +176934,7 @@ "id": "bettertls::nameconstraints::tc6181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170635,6 +176962,7 @@ "id": "bettertls::nameconstraints::tc6182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170662,6 +176990,7 @@ "id": "bettertls::nameconstraints::tc6183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170689,6 +177018,7 @@ "id": "bettertls::nameconstraints::tc6184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170716,6 +177046,7 @@ "id": "bettertls::nameconstraints::tc6185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170743,6 +177074,7 @@ "id": "bettertls::nameconstraints::tc6186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170770,6 +177102,7 @@ "id": "bettertls::nameconstraints::tc6187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170797,6 +177130,7 @@ "id": "bettertls::nameconstraints::tc6188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170824,6 +177158,7 @@ "id": "bettertls::nameconstraints::tc6189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170851,6 +177186,7 @@ "id": "bettertls::nameconstraints::tc6190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170878,6 +177214,7 @@ "id": "bettertls::nameconstraints::tc6191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170905,6 +177242,7 @@ "id": "bettertls::nameconstraints::tc6192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170932,6 +177270,7 @@ "id": "bettertls::nameconstraints::tc6193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170959,6 +177298,7 @@ "id": "bettertls::nameconstraints::tc6194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -170986,6 +177326,7 @@ "id": "bettertls::nameconstraints::tc6195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171013,6 +177354,7 @@ "id": "bettertls::nameconstraints::tc6196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171040,6 +177382,7 @@ "id": "bettertls::nameconstraints::tc6197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171067,6 +177410,7 @@ "id": "bettertls::nameconstraints::tc6198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171094,6 +177438,7 @@ "id": "bettertls::nameconstraints::tc6199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171121,6 +177466,7 @@ "id": "bettertls::nameconstraints::tc6200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171148,6 +177494,7 @@ "id": "bettertls::nameconstraints::tc6201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171175,6 +177522,7 @@ "id": "bettertls::nameconstraints::tc6202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171202,6 +177550,7 @@ "id": "bettertls::nameconstraints::tc6203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171229,6 +177578,7 @@ "id": "bettertls::nameconstraints::tc6204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171256,6 +177606,7 @@ "id": "bettertls::nameconstraints::tc6205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171283,6 +177634,7 @@ "id": "bettertls::nameconstraints::tc6206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171310,6 +177662,7 @@ "id": "bettertls::nameconstraints::tc6207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171337,6 +177690,7 @@ "id": "bettertls::nameconstraints::tc6208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171364,6 +177718,7 @@ "id": "bettertls::nameconstraints::tc6209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171391,6 +177746,7 @@ "id": "bettertls::nameconstraints::tc6210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171418,6 +177774,7 @@ "id": "bettertls::nameconstraints::tc6211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171445,6 +177802,7 @@ "id": "bettertls::nameconstraints::tc6212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171472,6 +177830,7 @@ "id": "bettertls::nameconstraints::tc6213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171499,6 +177858,7 @@ "id": "bettertls::nameconstraints::tc6214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171526,6 +177886,7 @@ "id": "bettertls::nameconstraints::tc6215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171553,6 +177914,7 @@ "id": "bettertls::nameconstraints::tc6216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171580,6 +177942,7 @@ "id": "bettertls::nameconstraints::tc6217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171607,6 +177970,7 @@ "id": "bettertls::nameconstraints::tc6218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171634,6 +177998,7 @@ "id": "bettertls::nameconstraints::tc6219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171661,6 +178026,7 @@ "id": "bettertls::nameconstraints::tc6220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171688,6 +178054,7 @@ "id": "bettertls::nameconstraints::tc6221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171715,6 +178082,7 @@ "id": "bettertls::nameconstraints::tc6222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171742,6 +178110,7 @@ "id": "bettertls::nameconstraints::tc6223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171769,6 +178138,7 @@ "id": "bettertls::nameconstraints::tc6224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171796,6 +178166,7 @@ "id": "bettertls::nameconstraints::tc6225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171823,6 +178194,7 @@ "id": "bettertls::nameconstraints::tc6226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171850,6 +178222,7 @@ "id": "bettertls::nameconstraints::tc6227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171877,6 +178250,7 @@ "id": "bettertls::nameconstraints::tc6228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171904,6 +178278,7 @@ "id": "bettertls::nameconstraints::tc6229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171931,6 +178306,7 @@ "id": "bettertls::nameconstraints::tc6230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171958,6 +178334,7 @@ "id": "bettertls::nameconstraints::tc6231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -171985,6 +178362,7 @@ "id": "bettertls::nameconstraints::tc6232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172012,6 +178390,7 @@ "id": "bettertls::nameconstraints::tc6233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172039,6 +178418,7 @@ "id": "bettertls::nameconstraints::tc6234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172066,6 +178446,7 @@ "id": "bettertls::nameconstraints::tc6235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172093,6 +178474,7 @@ "id": "bettertls::nameconstraints::tc6236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172120,6 +178502,7 @@ "id": "bettertls::nameconstraints::tc6237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172147,6 +178530,7 @@ "id": "bettertls::nameconstraints::tc6238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172174,6 +178558,7 @@ "id": "bettertls::nameconstraints::tc6239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172201,6 +178586,7 @@ "id": "bettertls::nameconstraints::tc6240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172228,6 +178614,7 @@ "id": "bettertls::nameconstraints::tc6241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172255,6 +178642,7 @@ "id": "bettertls::nameconstraints::tc6242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172282,6 +178670,7 @@ "id": "bettertls::nameconstraints::tc6243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172309,6 +178698,7 @@ "id": "bettertls::nameconstraints::tc6244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172336,6 +178726,7 @@ "id": "bettertls::nameconstraints::tc6245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172363,6 +178754,7 @@ "id": "bettertls::nameconstraints::tc6246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172390,6 +178782,7 @@ "id": "bettertls::nameconstraints::tc6247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172417,6 +178810,7 @@ "id": "bettertls::nameconstraints::tc6248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172444,6 +178838,7 @@ "id": "bettertls::nameconstraints::tc6249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172471,6 +178866,7 @@ "id": "bettertls::nameconstraints::tc6250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172498,6 +178894,7 @@ "id": "bettertls::nameconstraints::tc6251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172525,6 +178922,7 @@ "id": "bettertls::nameconstraints::tc6252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172552,6 +178950,7 @@ "id": "bettertls::nameconstraints::tc6253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172579,6 +178978,7 @@ "id": "bettertls::nameconstraints::tc6254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172606,6 +179006,7 @@ "id": "bettertls::nameconstraints::tc6255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172633,6 +179034,7 @@ "id": "bettertls::nameconstraints::tc6256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172660,6 +179062,7 @@ "id": "bettertls::nameconstraints::tc6257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172687,6 +179090,7 @@ "id": "bettertls::nameconstraints::tc6258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172714,6 +179118,7 @@ "id": "bettertls::nameconstraints::tc6259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172741,6 +179146,7 @@ "id": "bettertls::nameconstraints::tc6260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172768,6 +179174,7 @@ "id": "bettertls::nameconstraints::tc6261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172795,6 +179202,7 @@ "id": "bettertls::nameconstraints::tc6262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172822,6 +179230,7 @@ "id": "bettertls::nameconstraints::tc6263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172849,6 +179258,7 @@ "id": "bettertls::nameconstraints::tc6264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172876,6 +179286,7 @@ "id": "bettertls::nameconstraints::tc6265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172903,6 +179314,7 @@ "id": "bettertls::nameconstraints::tc6266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172930,6 +179342,7 @@ "id": "bettertls::nameconstraints::tc6267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172957,6 +179370,7 @@ "id": "bettertls::nameconstraints::tc6268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -172984,6 +179398,7 @@ "id": "bettertls::nameconstraints::tc6269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173011,6 +179426,7 @@ "id": "bettertls::nameconstraints::tc6270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173038,6 +179454,7 @@ "id": "bettertls::nameconstraints::tc6271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173065,6 +179482,7 @@ "id": "bettertls::nameconstraints::tc6272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173092,6 +179510,7 @@ "id": "bettertls::nameconstraints::tc6273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173119,6 +179538,7 @@ "id": "bettertls::nameconstraints::tc6274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173146,6 +179566,7 @@ "id": "bettertls::nameconstraints::tc6275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173173,6 +179594,7 @@ "id": "bettertls::nameconstraints::tc6276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173200,6 +179622,7 @@ "id": "bettertls::nameconstraints::tc6277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173227,6 +179650,7 @@ "id": "bettertls::nameconstraints::tc6278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173254,6 +179678,7 @@ "id": "bettertls::nameconstraints::tc6279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173281,6 +179706,7 @@ "id": "bettertls::nameconstraints::tc6280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173308,6 +179734,7 @@ "id": "bettertls::nameconstraints::tc6281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173335,6 +179762,7 @@ "id": "bettertls::nameconstraints::tc6282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173362,6 +179790,7 @@ "id": "bettertls::nameconstraints::tc6283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173389,6 +179818,7 @@ "id": "bettertls::nameconstraints::tc6284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173416,6 +179846,7 @@ "id": "bettertls::nameconstraints::tc6285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173443,6 +179874,7 @@ "id": "bettertls::nameconstraints::tc6286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173470,6 +179902,7 @@ "id": "bettertls::nameconstraints::tc6287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173497,6 +179930,7 @@ "id": "bettertls::nameconstraints::tc6288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173524,6 +179958,7 @@ "id": "bettertls::nameconstraints::tc6289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173551,6 +179986,7 @@ "id": "bettertls::nameconstraints::tc6290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173578,6 +180014,7 @@ "id": "bettertls::nameconstraints::tc6291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173605,6 +180042,7 @@ "id": "bettertls::nameconstraints::tc6292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173632,6 +180070,7 @@ "id": "bettertls::nameconstraints::tc6293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173659,6 +180098,7 @@ "id": "bettertls::nameconstraints::tc6294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173686,6 +180126,7 @@ "id": "bettertls::nameconstraints::tc6295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173713,6 +180154,7 @@ "id": "bettertls::nameconstraints::tc6296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173740,6 +180182,7 @@ "id": "bettertls::nameconstraints::tc6297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173767,6 +180210,7 @@ "id": "bettertls::nameconstraints::tc6298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173794,6 +180238,7 @@ "id": "bettertls::nameconstraints::tc6299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173821,6 +180266,7 @@ "id": "bettertls::nameconstraints::tc6300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173848,6 +180294,7 @@ "id": "bettertls::nameconstraints::tc6301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173875,6 +180322,7 @@ "id": "bettertls::nameconstraints::tc6302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173902,6 +180350,7 @@ "id": "bettertls::nameconstraints::tc6303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173929,6 +180378,7 @@ "id": "bettertls::nameconstraints::tc6304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173956,6 +180406,7 @@ "id": "bettertls::nameconstraints::tc6305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -173983,6 +180434,7 @@ "id": "bettertls::nameconstraints::tc6306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174010,6 +180462,7 @@ "id": "bettertls::nameconstraints::tc6307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174037,6 +180490,7 @@ "id": "bettertls::nameconstraints::tc6308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174064,6 +180518,7 @@ "id": "bettertls::nameconstraints::tc6309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174091,6 +180546,7 @@ "id": "bettertls::nameconstraints::tc6310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174118,6 +180574,7 @@ "id": "bettertls::nameconstraints::tc6311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174145,6 +180602,7 @@ "id": "bettertls::nameconstraints::tc6312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174172,6 +180630,7 @@ "id": "bettertls::nameconstraints::tc6313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174199,6 +180658,7 @@ "id": "bettertls::nameconstraints::tc6314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174226,6 +180686,7 @@ "id": "bettertls::nameconstraints::tc6315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174253,6 +180714,7 @@ "id": "bettertls::nameconstraints::tc6316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174280,6 +180742,7 @@ "id": "bettertls::nameconstraints::tc6317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174307,6 +180770,7 @@ "id": "bettertls::nameconstraints::tc6318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174334,6 +180798,7 @@ "id": "bettertls::nameconstraints::tc6319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174361,6 +180826,7 @@ "id": "bettertls::nameconstraints::tc6320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174388,6 +180854,7 @@ "id": "bettertls::nameconstraints::tc6321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174415,6 +180882,7 @@ "id": "bettertls::nameconstraints::tc6322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174442,6 +180910,7 @@ "id": "bettertls::nameconstraints::tc6323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174469,6 +180938,7 @@ "id": "bettertls::nameconstraints::tc6324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174496,6 +180966,7 @@ "id": "bettertls::nameconstraints::tc6325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174523,6 +180994,7 @@ "id": "bettertls::nameconstraints::tc6326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174550,6 +181022,7 @@ "id": "bettertls::nameconstraints::tc6327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174577,6 +181050,7 @@ "id": "bettertls::nameconstraints::tc6328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174604,6 +181078,7 @@ "id": "bettertls::nameconstraints::tc6329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174631,6 +181106,7 @@ "id": "bettertls::nameconstraints::tc6330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174658,6 +181134,7 @@ "id": "bettertls::nameconstraints::tc6331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174685,6 +181162,7 @@ "id": "bettertls::nameconstraints::tc6332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174712,6 +181190,7 @@ "id": "bettertls::nameconstraints::tc6333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174739,6 +181218,7 @@ "id": "bettertls::nameconstraints::tc6334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174766,6 +181246,7 @@ "id": "bettertls::nameconstraints::tc6335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174793,6 +181274,7 @@ "id": "bettertls::nameconstraints::tc6336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174820,6 +181302,7 @@ "id": "bettertls::nameconstraints::tc6337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174847,6 +181330,7 @@ "id": "bettertls::nameconstraints::tc6338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174874,6 +181358,7 @@ "id": "bettertls::nameconstraints::tc6339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174901,6 +181386,7 @@ "id": "bettertls::nameconstraints::tc6340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174928,6 +181414,7 @@ "id": "bettertls::nameconstraints::tc6341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174955,6 +181442,7 @@ "id": "bettertls::nameconstraints::tc6342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -174982,6 +181470,7 @@ "id": "bettertls::nameconstraints::tc6343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175009,6 +181498,7 @@ "id": "bettertls::nameconstraints::tc6344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175036,6 +181526,7 @@ "id": "bettertls::nameconstraints::tc6345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175063,6 +181554,7 @@ "id": "bettertls::nameconstraints::tc6346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175090,6 +181582,7 @@ "id": "bettertls::nameconstraints::tc6347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175117,6 +181610,7 @@ "id": "bettertls::nameconstraints::tc6348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175144,6 +181638,7 @@ "id": "bettertls::nameconstraints::tc6349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175171,6 +181666,7 @@ "id": "bettertls::nameconstraints::tc6350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175198,6 +181694,7 @@ "id": "bettertls::nameconstraints::tc6351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175225,6 +181722,7 @@ "id": "bettertls::nameconstraints::tc6352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175252,6 +181750,7 @@ "id": "bettertls::nameconstraints::tc6353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175279,6 +181778,7 @@ "id": "bettertls::nameconstraints::tc6354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175306,6 +181806,7 @@ "id": "bettertls::nameconstraints::tc6355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175333,6 +181834,7 @@ "id": "bettertls::nameconstraints::tc6356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175360,6 +181862,7 @@ "id": "bettertls::nameconstraints::tc6357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175387,6 +181890,7 @@ "id": "bettertls::nameconstraints::tc6358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175414,6 +181918,7 @@ "id": "bettertls::nameconstraints::tc6359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175441,6 +181946,7 @@ "id": "bettertls::nameconstraints::tc6360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175468,6 +181974,7 @@ "id": "bettertls::nameconstraints::tc6361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175495,6 +182002,7 @@ "id": "bettertls::nameconstraints::tc6362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175522,6 +182030,7 @@ "id": "bettertls::nameconstraints::tc6363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175549,6 +182058,7 @@ "id": "bettertls::nameconstraints::tc6364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175576,6 +182086,7 @@ "id": "bettertls::nameconstraints::tc6365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175603,6 +182114,7 @@ "id": "bettertls::nameconstraints::tc6366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175630,6 +182142,7 @@ "id": "bettertls::nameconstraints::tc6367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175657,6 +182170,7 @@ "id": "bettertls::nameconstraints::tc6368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175684,6 +182198,7 @@ "id": "bettertls::nameconstraints::tc6369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175711,6 +182226,7 @@ "id": "bettertls::nameconstraints::tc6370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175738,6 +182254,7 @@ "id": "bettertls::nameconstraints::tc6371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175765,6 +182282,7 @@ "id": "bettertls::nameconstraints::tc6372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175792,6 +182310,7 @@ "id": "bettertls::nameconstraints::tc6373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175819,6 +182338,7 @@ "id": "bettertls::nameconstraints::tc6374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175846,6 +182366,7 @@ "id": "bettertls::nameconstraints::tc6375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175873,6 +182394,7 @@ "id": "bettertls::nameconstraints::tc6376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175900,6 +182422,7 @@ "id": "bettertls::nameconstraints::tc6377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175927,6 +182450,7 @@ "id": "bettertls::nameconstraints::tc6378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175954,6 +182478,7 @@ "id": "bettertls::nameconstraints::tc6379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -175981,6 +182506,7 @@ "id": "bettertls::nameconstraints::tc6380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176008,6 +182534,7 @@ "id": "bettertls::nameconstraints::tc6381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176035,6 +182562,7 @@ "id": "bettertls::nameconstraints::tc6382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176062,6 +182590,7 @@ "id": "bettertls::nameconstraints::tc6383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176089,6 +182618,7 @@ "id": "bettertls::nameconstraints::tc6384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176116,6 +182646,7 @@ "id": "bettertls::nameconstraints::tc6385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176143,6 +182674,7 @@ "id": "bettertls::nameconstraints::tc6386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176170,6 +182702,7 @@ "id": "bettertls::nameconstraints::tc6387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176197,6 +182730,7 @@ "id": "bettertls::nameconstraints::tc6388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176224,6 +182758,7 @@ "id": "bettertls::nameconstraints::tc6389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176251,6 +182786,7 @@ "id": "bettertls::nameconstraints::tc6390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176278,6 +182814,7 @@ "id": "bettertls::nameconstraints::tc6391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176305,6 +182842,7 @@ "id": "bettertls::nameconstraints::tc6392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176332,6 +182870,7 @@ "id": "bettertls::nameconstraints::tc6393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176359,6 +182898,7 @@ "id": "bettertls::nameconstraints::tc6394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176386,6 +182926,7 @@ "id": "bettertls::nameconstraints::tc6395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176413,6 +182954,7 @@ "id": "bettertls::nameconstraints::tc6396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176440,6 +182982,7 @@ "id": "bettertls::nameconstraints::tc6397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176467,6 +183010,7 @@ "id": "bettertls::nameconstraints::tc6398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176494,6 +183038,7 @@ "id": "bettertls::nameconstraints::tc6399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176521,6 +183066,7 @@ "id": "bettertls::nameconstraints::tc6400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176548,6 +183094,7 @@ "id": "bettertls::nameconstraints::tc6401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176575,6 +183122,7 @@ "id": "bettertls::nameconstraints::tc6402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176602,6 +183150,7 @@ "id": "bettertls::nameconstraints::tc6403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176629,6 +183178,7 @@ "id": "bettertls::nameconstraints::tc6404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176656,6 +183206,7 @@ "id": "bettertls::nameconstraints::tc6405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176683,6 +183234,7 @@ "id": "bettertls::nameconstraints::tc6406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176710,6 +183262,7 @@ "id": "bettertls::nameconstraints::tc6407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176737,6 +183290,7 @@ "id": "bettertls::nameconstraints::tc6408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176764,6 +183318,7 @@ "id": "bettertls::nameconstraints::tc6409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176791,6 +183346,7 @@ "id": "bettertls::nameconstraints::tc6410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176818,6 +183374,7 @@ "id": "bettertls::nameconstraints::tc6411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176845,6 +183402,7 @@ "id": "bettertls::nameconstraints::tc6412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176872,6 +183430,7 @@ "id": "bettertls::nameconstraints::tc6413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176899,6 +183458,7 @@ "id": "bettertls::nameconstraints::tc6414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176926,6 +183486,7 @@ "id": "bettertls::nameconstraints::tc6415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176953,6 +183514,7 @@ "id": "bettertls::nameconstraints::tc6416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -176980,6 +183542,7 @@ "id": "bettertls::nameconstraints::tc6417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177007,6 +183570,7 @@ "id": "bettertls::nameconstraints::tc6418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177034,6 +183598,7 @@ "id": "bettertls::nameconstraints::tc6419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177061,6 +183626,7 @@ "id": "bettertls::nameconstraints::tc6420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177088,6 +183654,7 @@ "id": "bettertls::nameconstraints::tc6421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177115,6 +183682,7 @@ "id": "bettertls::nameconstraints::tc6422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177142,6 +183710,7 @@ "id": "bettertls::nameconstraints::tc6423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177169,6 +183738,7 @@ "id": "bettertls::nameconstraints::tc6424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177196,6 +183766,7 @@ "id": "bettertls::nameconstraints::tc6425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177223,6 +183794,7 @@ "id": "bettertls::nameconstraints::tc6426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177250,6 +183822,7 @@ "id": "bettertls::nameconstraints::tc6427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177277,6 +183850,7 @@ "id": "bettertls::nameconstraints::tc6428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177304,6 +183878,7 @@ "id": "bettertls::nameconstraints::tc6429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177331,6 +183906,7 @@ "id": "bettertls::nameconstraints::tc6430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177358,6 +183934,7 @@ "id": "bettertls::nameconstraints::tc6431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177385,6 +183962,7 @@ "id": "bettertls::nameconstraints::tc6432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177412,6 +183990,7 @@ "id": "bettertls::nameconstraints::tc6433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177439,6 +184018,7 @@ "id": "bettertls::nameconstraints::tc6434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177466,6 +184046,7 @@ "id": "bettertls::nameconstraints::tc6435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177493,6 +184074,7 @@ "id": "bettertls::nameconstraints::tc6436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177520,6 +184102,7 @@ "id": "bettertls::nameconstraints::tc6437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177547,6 +184130,7 @@ "id": "bettertls::nameconstraints::tc6438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177574,6 +184158,7 @@ "id": "bettertls::nameconstraints::tc6439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177601,6 +184186,7 @@ "id": "bettertls::nameconstraints::tc6440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177628,6 +184214,7 @@ "id": "bettertls::nameconstraints::tc6441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177655,6 +184242,7 @@ "id": "bettertls::nameconstraints::tc6442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177682,6 +184270,7 @@ "id": "bettertls::nameconstraints::tc6443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177709,6 +184298,7 @@ "id": "bettertls::nameconstraints::tc6444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177736,6 +184326,7 @@ "id": "bettertls::nameconstraints::tc6445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177763,6 +184354,7 @@ "id": "bettertls::nameconstraints::tc6446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177790,6 +184382,7 @@ "id": "bettertls::nameconstraints::tc6447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177817,6 +184410,7 @@ "id": "bettertls::nameconstraints::tc6448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177844,6 +184438,7 @@ "id": "bettertls::nameconstraints::tc6449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177871,6 +184466,7 @@ "id": "bettertls::nameconstraints::tc6450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177898,6 +184494,7 @@ "id": "bettertls::nameconstraints::tc6451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177925,6 +184522,7 @@ "id": "bettertls::nameconstraints::tc6452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177952,6 +184550,7 @@ "id": "bettertls::nameconstraints::tc6453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -177979,6 +184578,7 @@ "id": "bettertls::nameconstraints::tc6454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178006,6 +184606,7 @@ "id": "bettertls::nameconstraints::tc6455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178033,6 +184634,7 @@ "id": "bettertls::nameconstraints::tc6456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178060,6 +184662,7 @@ "id": "bettertls::nameconstraints::tc6457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178087,6 +184690,7 @@ "id": "bettertls::nameconstraints::tc6458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178114,6 +184718,7 @@ "id": "bettertls::nameconstraints::tc6459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178141,6 +184746,7 @@ "id": "bettertls::nameconstraints::tc6460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178168,6 +184774,7 @@ "id": "bettertls::nameconstraints::tc6461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178195,6 +184802,7 @@ "id": "bettertls::nameconstraints::tc6462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178222,6 +184830,7 @@ "id": "bettertls::nameconstraints::tc6463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178249,6 +184858,7 @@ "id": "bettertls::nameconstraints::tc6464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178276,6 +184886,7 @@ "id": "bettertls::nameconstraints::tc6465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178303,6 +184914,7 @@ "id": "bettertls::nameconstraints::tc6466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178330,6 +184942,7 @@ "id": "bettertls::nameconstraints::tc6467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178357,6 +184970,7 @@ "id": "bettertls::nameconstraints::tc6468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178384,6 +184998,7 @@ "id": "bettertls::nameconstraints::tc6469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178411,6 +185026,7 @@ "id": "bettertls::nameconstraints::tc6470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178438,6 +185054,7 @@ "id": "bettertls::nameconstraints::tc6471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178465,6 +185082,7 @@ "id": "bettertls::nameconstraints::tc6472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178492,6 +185110,7 @@ "id": "bettertls::nameconstraints::tc6473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178519,6 +185138,7 @@ "id": "bettertls::nameconstraints::tc6474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178546,6 +185166,7 @@ "id": "bettertls::nameconstraints::tc6475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178573,6 +185194,7 @@ "id": "bettertls::nameconstraints::tc6476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178600,6 +185222,7 @@ "id": "bettertls::nameconstraints::tc6477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178627,6 +185250,7 @@ "id": "bettertls::nameconstraints::tc6478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178654,6 +185278,7 @@ "id": "bettertls::nameconstraints::tc6479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178681,6 +185306,7 @@ "id": "bettertls::nameconstraints::tc6480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178708,6 +185334,7 @@ "id": "bettertls::nameconstraints::tc6481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178735,6 +185362,7 @@ "id": "bettertls::nameconstraints::tc6482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178762,6 +185390,7 @@ "id": "bettertls::nameconstraints::tc6483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178789,6 +185418,7 @@ "id": "bettertls::nameconstraints::tc6484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178816,6 +185446,7 @@ "id": "bettertls::nameconstraints::tc6485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178843,6 +185474,7 @@ "id": "bettertls::nameconstraints::tc6486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178870,6 +185502,7 @@ "id": "bettertls::nameconstraints::tc6487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178897,6 +185530,7 @@ "id": "bettertls::nameconstraints::tc6488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178924,6 +185558,7 @@ "id": "bettertls::nameconstraints::tc6489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178951,6 +185586,7 @@ "id": "bettertls::nameconstraints::tc6490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -178978,6 +185614,7 @@ "id": "bettertls::nameconstraints::tc6491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179005,6 +185642,7 @@ "id": "bettertls::nameconstraints::tc6492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179032,6 +185670,7 @@ "id": "bettertls::nameconstraints::tc6493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179059,6 +185698,7 @@ "id": "bettertls::nameconstraints::tc6494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179086,6 +185726,7 @@ "id": "bettertls::nameconstraints::tc6495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179113,6 +185754,7 @@ "id": "bettertls::nameconstraints::tc6496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179140,6 +185782,7 @@ "id": "bettertls::nameconstraints::tc6497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179167,6 +185810,7 @@ "id": "bettertls::nameconstraints::tc6498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179194,6 +185838,7 @@ "id": "bettertls::nameconstraints::tc6499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179221,6 +185866,7 @@ "id": "bettertls::nameconstraints::tc6500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179248,6 +185894,7 @@ "id": "bettertls::nameconstraints::tc6501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179275,6 +185922,7 @@ "id": "bettertls::nameconstraints::tc6502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179302,6 +185950,7 @@ "id": "bettertls::nameconstraints::tc6503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179329,6 +185978,7 @@ "id": "bettertls::nameconstraints::tc6504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179356,6 +186006,7 @@ "id": "bettertls::nameconstraints::tc6505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179383,6 +186034,7 @@ "id": "bettertls::nameconstraints::tc6506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179410,6 +186062,7 @@ "id": "bettertls::nameconstraints::tc6507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179437,6 +186090,7 @@ "id": "bettertls::nameconstraints::tc6508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179464,6 +186118,7 @@ "id": "bettertls::nameconstraints::tc6509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179491,6 +186146,7 @@ "id": "bettertls::nameconstraints::tc6510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179518,6 +186174,7 @@ "id": "bettertls::nameconstraints::tc6511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179545,6 +186202,7 @@ "id": "bettertls::nameconstraints::tc6512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179572,6 +186230,7 @@ "id": "bettertls::nameconstraints::tc6513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179599,6 +186258,7 @@ "id": "bettertls::nameconstraints::tc6514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179626,6 +186286,7 @@ "id": "bettertls::nameconstraints::tc6515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179653,6 +186314,7 @@ "id": "bettertls::nameconstraints::tc6516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179680,6 +186342,7 @@ "id": "bettertls::nameconstraints::tc6517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179707,6 +186370,7 @@ "id": "bettertls::nameconstraints::tc6518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179734,6 +186398,7 @@ "id": "bettertls::nameconstraints::tc6519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179761,6 +186426,7 @@ "id": "bettertls::nameconstraints::tc6520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179788,6 +186454,7 @@ "id": "bettertls::nameconstraints::tc6521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179815,6 +186482,7 @@ "id": "bettertls::nameconstraints::tc6522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179842,6 +186510,7 @@ "id": "bettertls::nameconstraints::tc6523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179869,6 +186538,7 @@ "id": "bettertls::nameconstraints::tc6524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179896,6 +186566,7 @@ "id": "bettertls::nameconstraints::tc6525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179923,6 +186594,7 @@ "id": "bettertls::nameconstraints::tc6526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179950,6 +186622,7 @@ "id": "bettertls::nameconstraints::tc6527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -179977,6 +186650,7 @@ "id": "bettertls::nameconstraints::tc6528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180004,6 +186678,7 @@ "id": "bettertls::nameconstraints::tc6529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180031,6 +186706,7 @@ "id": "bettertls::nameconstraints::tc6530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180058,6 +186734,7 @@ "id": "bettertls::nameconstraints::tc6531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180085,6 +186762,7 @@ "id": "bettertls::nameconstraints::tc6532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180112,6 +186790,7 @@ "id": "bettertls::nameconstraints::tc6533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180139,6 +186818,7 @@ "id": "bettertls::nameconstraints::tc6534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180166,6 +186846,7 @@ "id": "bettertls::nameconstraints::tc6535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180193,6 +186874,7 @@ "id": "bettertls::nameconstraints::tc6536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180220,6 +186902,7 @@ "id": "bettertls::nameconstraints::tc6537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180247,6 +186930,7 @@ "id": "bettertls::nameconstraints::tc6538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180274,6 +186958,7 @@ "id": "bettertls::nameconstraints::tc6539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180301,6 +186986,7 @@ "id": "bettertls::nameconstraints::tc6540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180328,6 +187014,7 @@ "id": "bettertls::nameconstraints::tc6541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180355,6 +187042,7 @@ "id": "bettertls::nameconstraints::tc6542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180382,6 +187070,7 @@ "id": "bettertls::nameconstraints::tc6543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180409,6 +187098,7 @@ "id": "bettertls::nameconstraints::tc6544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180436,6 +187126,7 @@ "id": "bettertls::nameconstraints::tc6545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180463,6 +187154,7 @@ "id": "bettertls::nameconstraints::tc6546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180490,6 +187182,7 @@ "id": "bettertls::nameconstraints::tc6547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180517,6 +187210,7 @@ "id": "bettertls::nameconstraints::tc6548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180544,6 +187238,7 @@ "id": "bettertls::nameconstraints::tc6549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180571,6 +187266,7 @@ "id": "bettertls::nameconstraints::tc6550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180598,6 +187294,7 @@ "id": "bettertls::nameconstraints::tc6551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180625,6 +187322,7 @@ "id": "bettertls::nameconstraints::tc6552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180652,6 +187350,7 @@ "id": "bettertls::nameconstraints::tc6553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180679,6 +187378,7 @@ "id": "bettertls::nameconstraints::tc6554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180706,6 +187406,7 @@ "id": "bettertls::nameconstraints::tc6555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180733,6 +187434,7 @@ "id": "bettertls::nameconstraints::tc6556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180760,6 +187462,7 @@ "id": "bettertls::nameconstraints::tc6557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180787,6 +187490,7 @@ "id": "bettertls::nameconstraints::tc6558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180814,6 +187518,7 @@ "id": "bettertls::nameconstraints::tc6559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180841,6 +187546,7 @@ "id": "bettertls::nameconstraints::tc6560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180868,6 +187574,7 @@ "id": "bettertls::nameconstraints::tc6561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180895,6 +187602,7 @@ "id": "bettertls::nameconstraints::tc6562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180922,6 +187630,7 @@ "id": "bettertls::nameconstraints::tc6563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180949,6 +187658,7 @@ "id": "bettertls::nameconstraints::tc6564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -180976,6 +187686,7 @@ "id": "bettertls::nameconstraints::tc6565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181003,6 +187714,7 @@ "id": "bettertls::nameconstraints::tc6566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181030,6 +187742,7 @@ "id": "bettertls::nameconstraints::tc6567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181057,6 +187770,7 @@ "id": "bettertls::nameconstraints::tc6568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181084,6 +187798,7 @@ "id": "bettertls::nameconstraints::tc6569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181111,6 +187826,7 @@ "id": "bettertls::nameconstraints::tc6570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181138,6 +187854,7 @@ "id": "bettertls::nameconstraints::tc6571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181165,6 +187882,7 @@ "id": "bettertls::nameconstraints::tc6572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181192,6 +187910,7 @@ "id": "bettertls::nameconstraints::tc6573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181219,6 +187938,7 @@ "id": "bettertls::nameconstraints::tc6574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181246,6 +187966,7 @@ "id": "bettertls::nameconstraints::tc6575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181273,6 +187994,7 @@ "id": "bettertls::nameconstraints::tc6576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181300,6 +188022,7 @@ "id": "bettertls::nameconstraints::tc6577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181327,6 +188050,7 @@ "id": "bettertls::nameconstraints::tc6578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181354,6 +188078,7 @@ "id": "bettertls::nameconstraints::tc6579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181381,6 +188106,7 @@ "id": "bettertls::nameconstraints::tc6580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181408,6 +188134,7 @@ "id": "bettertls::nameconstraints::tc6581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181435,6 +188162,7 @@ "id": "bettertls::nameconstraints::tc6582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181462,6 +188190,7 @@ "id": "bettertls::nameconstraints::tc6583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181489,6 +188218,7 @@ "id": "bettertls::nameconstraints::tc6584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181516,6 +188246,7 @@ "id": "bettertls::nameconstraints::tc6585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181543,6 +188274,7 @@ "id": "bettertls::nameconstraints::tc6586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181570,6 +188302,7 @@ "id": "bettertls::nameconstraints::tc6587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181597,6 +188330,7 @@ "id": "bettertls::nameconstraints::tc6588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181624,6 +188358,7 @@ "id": "bettertls::nameconstraints::tc6589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181651,6 +188386,7 @@ "id": "bettertls::nameconstraints::tc6590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181678,6 +188414,7 @@ "id": "bettertls::nameconstraints::tc6591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181705,6 +188442,7 @@ "id": "bettertls::nameconstraints::tc6592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181732,6 +188470,7 @@ "id": "bettertls::nameconstraints::tc6593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181759,6 +188498,7 @@ "id": "bettertls::nameconstraints::tc6594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181786,6 +188526,7 @@ "id": "bettertls::nameconstraints::tc6595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181813,6 +188554,7 @@ "id": "bettertls::nameconstraints::tc6596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181840,6 +188582,7 @@ "id": "bettertls::nameconstraints::tc6597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181867,6 +188610,7 @@ "id": "bettertls::nameconstraints::tc6598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181894,6 +188638,7 @@ "id": "bettertls::nameconstraints::tc6599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181921,6 +188666,7 @@ "id": "bettertls::nameconstraints::tc6600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181948,6 +188694,7 @@ "id": "bettertls::nameconstraints::tc6601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -181975,6 +188722,7 @@ "id": "bettertls::nameconstraints::tc6602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182002,6 +188750,7 @@ "id": "bettertls::nameconstraints::tc6603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182029,6 +188778,7 @@ "id": "bettertls::nameconstraints::tc6604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182056,6 +188806,7 @@ "id": "bettertls::nameconstraints::tc6605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182083,6 +188834,7 @@ "id": "bettertls::nameconstraints::tc6606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182110,6 +188862,7 @@ "id": "bettertls::nameconstraints::tc6607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182137,6 +188890,7 @@ "id": "bettertls::nameconstraints::tc6608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182164,6 +188918,7 @@ "id": "bettertls::nameconstraints::tc6609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182191,6 +188946,7 @@ "id": "bettertls::nameconstraints::tc6610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182218,6 +188974,7 @@ "id": "bettertls::nameconstraints::tc6611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182245,6 +189002,7 @@ "id": "bettertls::nameconstraints::tc6612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182272,6 +189030,7 @@ "id": "bettertls::nameconstraints::tc6613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182299,6 +189058,7 @@ "id": "bettertls::nameconstraints::tc6614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182326,6 +189086,7 @@ "id": "bettertls::nameconstraints::tc6615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182353,6 +189114,7 @@ "id": "bettertls::nameconstraints::tc6616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182380,6 +189142,7 @@ "id": "bettertls::nameconstraints::tc6617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182407,6 +189170,7 @@ "id": "bettertls::nameconstraints::tc6618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182434,6 +189198,7 @@ "id": "bettertls::nameconstraints::tc6619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182461,6 +189226,7 @@ "id": "bettertls::nameconstraints::tc6620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182488,6 +189254,7 @@ "id": "bettertls::nameconstraints::tc6621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182515,6 +189282,7 @@ "id": "bettertls::nameconstraints::tc6622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182542,6 +189310,7 @@ "id": "bettertls::nameconstraints::tc6623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182569,6 +189338,7 @@ "id": "bettertls::nameconstraints::tc6624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182596,6 +189366,7 @@ "id": "bettertls::nameconstraints::tc6625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182623,6 +189394,7 @@ "id": "bettertls::nameconstraints::tc6626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182650,6 +189422,7 @@ "id": "bettertls::nameconstraints::tc6627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182677,6 +189450,7 @@ "id": "bettertls::nameconstraints::tc6628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182704,6 +189478,7 @@ "id": "bettertls::nameconstraints::tc6629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182731,6 +189506,7 @@ "id": "bettertls::nameconstraints::tc6630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182758,6 +189534,7 @@ "id": "bettertls::nameconstraints::tc6631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182785,6 +189562,7 @@ "id": "bettertls::nameconstraints::tc6632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182812,6 +189590,7 @@ "id": "bettertls::nameconstraints::tc6633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182839,6 +189618,7 @@ "id": "bettertls::nameconstraints::tc6634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182866,6 +189646,7 @@ "id": "bettertls::nameconstraints::tc6635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182893,6 +189674,7 @@ "id": "bettertls::nameconstraints::tc6636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182920,6 +189702,7 @@ "id": "bettertls::nameconstraints::tc6637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182947,6 +189730,7 @@ "id": "bettertls::nameconstraints::tc6638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -182974,6 +189758,7 @@ "id": "bettertls::nameconstraints::tc6639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183001,6 +189786,7 @@ "id": "bettertls::nameconstraints::tc6640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183028,6 +189814,7 @@ "id": "bettertls::nameconstraints::tc6641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183055,6 +189842,7 @@ "id": "bettertls::nameconstraints::tc6642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183082,6 +189870,7 @@ "id": "bettertls::nameconstraints::tc6643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183109,6 +189898,7 @@ "id": "bettertls::nameconstraints::tc6644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183136,6 +189926,7 @@ "id": "bettertls::nameconstraints::tc6645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183163,6 +189954,7 @@ "id": "bettertls::nameconstraints::tc6646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183190,6 +189982,7 @@ "id": "bettertls::nameconstraints::tc6647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183217,6 +190010,7 @@ "id": "bettertls::nameconstraints::tc6648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183244,6 +190038,7 @@ "id": "bettertls::nameconstraints::tc6649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183271,6 +190066,7 @@ "id": "bettertls::nameconstraints::tc6650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183298,6 +190094,7 @@ "id": "bettertls::nameconstraints::tc6651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183325,6 +190122,7 @@ "id": "bettertls::nameconstraints::tc6652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183352,6 +190150,7 @@ "id": "bettertls::nameconstraints::tc6653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183379,6 +190178,7 @@ "id": "bettertls::nameconstraints::tc6654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183406,6 +190206,7 @@ "id": "bettertls::nameconstraints::tc6655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183433,6 +190234,7 @@ "id": "bettertls::nameconstraints::tc6656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183460,6 +190262,7 @@ "id": "bettertls::nameconstraints::tc6657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183487,6 +190290,7 @@ "id": "bettertls::nameconstraints::tc6658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183514,6 +190318,7 @@ "id": "bettertls::nameconstraints::tc6659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183541,6 +190346,7 @@ "id": "bettertls::nameconstraints::tc6660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183568,6 +190374,7 @@ "id": "bettertls::nameconstraints::tc6661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183595,6 +190402,7 @@ "id": "bettertls::nameconstraints::tc6662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183622,6 +190430,7 @@ "id": "bettertls::nameconstraints::tc6663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183649,6 +190458,7 @@ "id": "bettertls::nameconstraints::tc6664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183676,6 +190486,7 @@ "id": "bettertls::nameconstraints::tc6665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183703,6 +190514,7 @@ "id": "bettertls::nameconstraints::tc6666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183730,6 +190542,7 @@ "id": "bettertls::nameconstraints::tc6667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183757,6 +190570,7 @@ "id": "bettertls::nameconstraints::tc6668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183784,6 +190598,7 @@ "id": "bettertls::nameconstraints::tc6669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183811,6 +190626,7 @@ "id": "bettertls::nameconstraints::tc6670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183838,6 +190654,7 @@ "id": "bettertls::nameconstraints::tc6671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183865,6 +190682,7 @@ "id": "bettertls::nameconstraints::tc6672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183892,6 +190710,7 @@ "id": "bettertls::nameconstraints::tc6673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183919,6 +190738,7 @@ "id": "bettertls::nameconstraints::tc6674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183946,6 +190766,7 @@ "id": "bettertls::nameconstraints::tc6675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -183973,6 +190794,7 @@ "id": "bettertls::nameconstraints::tc6676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184000,6 +190822,7 @@ "id": "bettertls::nameconstraints::tc6677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184027,6 +190850,7 @@ "id": "bettertls::nameconstraints::tc6678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184054,6 +190878,7 @@ "id": "bettertls::nameconstraints::tc6679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184081,6 +190906,7 @@ "id": "bettertls::nameconstraints::tc6680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184108,6 +190934,7 @@ "id": "bettertls::nameconstraints::tc6681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184135,6 +190962,7 @@ "id": "bettertls::nameconstraints::tc6682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184162,6 +190990,7 @@ "id": "bettertls::nameconstraints::tc6683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184189,6 +191018,7 @@ "id": "bettertls::nameconstraints::tc6684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184216,6 +191046,7 @@ "id": "bettertls::nameconstraints::tc6685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184243,6 +191074,7 @@ "id": "bettertls::nameconstraints::tc6686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184270,6 +191102,7 @@ "id": "bettertls::nameconstraints::tc6687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184297,6 +191130,7 @@ "id": "bettertls::nameconstraints::tc6688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184324,6 +191158,7 @@ "id": "bettertls::nameconstraints::tc6689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184351,6 +191186,7 @@ "id": "bettertls::nameconstraints::tc6690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184378,6 +191214,7 @@ "id": "bettertls::nameconstraints::tc6691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184405,6 +191242,7 @@ "id": "bettertls::nameconstraints::tc6692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184432,6 +191270,7 @@ "id": "bettertls::nameconstraints::tc6693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184459,6 +191298,7 @@ "id": "bettertls::nameconstraints::tc6694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184486,6 +191326,7 @@ "id": "bettertls::nameconstraints::tc6695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184513,6 +191354,7 @@ "id": "bettertls::nameconstraints::tc6696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184540,6 +191382,7 @@ "id": "bettertls::nameconstraints::tc6697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184567,6 +191410,7 @@ "id": "bettertls::nameconstraints::tc6698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184594,6 +191438,7 @@ "id": "bettertls::nameconstraints::tc6699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184621,6 +191466,7 @@ "id": "bettertls::nameconstraints::tc6700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184648,6 +191494,7 @@ "id": "bettertls::nameconstraints::tc6701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184675,6 +191522,7 @@ "id": "bettertls::nameconstraints::tc6702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184702,6 +191550,7 @@ "id": "bettertls::nameconstraints::tc6703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184729,6 +191578,7 @@ "id": "bettertls::nameconstraints::tc6704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184756,6 +191606,7 @@ "id": "bettertls::nameconstraints::tc6705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184783,6 +191634,7 @@ "id": "bettertls::nameconstraints::tc6706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184810,6 +191662,7 @@ "id": "bettertls::nameconstraints::tc6707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184837,6 +191690,7 @@ "id": "bettertls::nameconstraints::tc6708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184864,6 +191718,7 @@ "id": "bettertls::nameconstraints::tc6709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184891,6 +191746,7 @@ "id": "bettertls::nameconstraints::tc6710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184918,6 +191774,7 @@ "id": "bettertls::nameconstraints::tc6711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184945,6 +191802,7 @@ "id": "bettertls::nameconstraints::tc6712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184972,6 +191830,7 @@ "id": "bettertls::nameconstraints::tc6713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -184999,6 +191858,7 @@ "id": "bettertls::nameconstraints::tc6714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185026,6 +191886,7 @@ "id": "bettertls::nameconstraints::tc6715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185053,6 +191914,7 @@ "id": "bettertls::nameconstraints::tc6716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185080,6 +191942,7 @@ "id": "bettertls::nameconstraints::tc6717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185107,6 +191970,7 @@ "id": "bettertls::nameconstraints::tc6718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185134,6 +191998,7 @@ "id": "bettertls::nameconstraints::tc6719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185161,6 +192026,7 @@ "id": "bettertls::nameconstraints::tc6720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185188,6 +192054,7 @@ "id": "bettertls::nameconstraints::tc6721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185215,6 +192082,7 @@ "id": "bettertls::nameconstraints::tc6722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185242,6 +192110,7 @@ "id": "bettertls::nameconstraints::tc6723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185269,6 +192138,7 @@ "id": "bettertls::nameconstraints::tc6724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185296,6 +192166,7 @@ "id": "bettertls::nameconstraints::tc6725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185323,6 +192194,7 @@ "id": "bettertls::nameconstraints::tc6726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185350,6 +192222,7 @@ "id": "bettertls::nameconstraints::tc6727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185377,6 +192250,7 @@ "id": "bettertls::nameconstraints::tc6728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185404,6 +192278,7 @@ "id": "bettertls::nameconstraints::tc6729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185431,6 +192306,7 @@ "id": "bettertls::nameconstraints::tc6730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185458,6 +192334,7 @@ "id": "bettertls::nameconstraints::tc6731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185485,6 +192362,7 @@ "id": "bettertls::nameconstraints::tc6732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185512,6 +192390,7 @@ "id": "bettertls::nameconstraints::tc6733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185539,6 +192418,7 @@ "id": "bettertls::nameconstraints::tc6734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185566,6 +192446,7 @@ "id": "bettertls::nameconstraints::tc6735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185593,6 +192474,7 @@ "id": "bettertls::nameconstraints::tc6736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185620,6 +192502,7 @@ "id": "bettertls::nameconstraints::tc6737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185647,6 +192530,7 @@ "id": "bettertls::nameconstraints::tc6738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185674,6 +192558,7 @@ "id": "bettertls::nameconstraints::tc6739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185701,6 +192586,7 @@ "id": "bettertls::nameconstraints::tc6740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185728,6 +192614,7 @@ "id": "bettertls::nameconstraints::tc6741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185755,6 +192642,7 @@ "id": "bettertls::nameconstraints::tc6742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185782,6 +192670,7 @@ "id": "bettertls::nameconstraints::tc6743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185809,6 +192698,7 @@ "id": "bettertls::nameconstraints::tc6744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185836,6 +192726,7 @@ "id": "bettertls::nameconstraints::tc6745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185863,6 +192754,7 @@ "id": "bettertls::nameconstraints::tc6746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185890,6 +192782,7 @@ "id": "bettertls::nameconstraints::tc6747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185917,6 +192810,7 @@ "id": "bettertls::nameconstraints::tc6748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185944,6 +192838,7 @@ "id": "bettertls::nameconstraints::tc6749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185971,6 +192866,7 @@ "id": "bettertls::nameconstraints::tc6750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -185998,6 +192894,7 @@ "id": "bettertls::nameconstraints::tc6751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186025,6 +192922,7 @@ "id": "bettertls::nameconstraints::tc6752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186052,6 +192950,7 @@ "id": "bettertls::nameconstraints::tc6753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186079,6 +192978,7 @@ "id": "bettertls::nameconstraints::tc6754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186106,6 +193006,7 @@ "id": "bettertls::nameconstraints::tc6755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186133,6 +193034,7 @@ "id": "bettertls::nameconstraints::tc6756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186160,6 +193062,7 @@ "id": "bettertls::nameconstraints::tc6757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186187,6 +193090,7 @@ "id": "bettertls::nameconstraints::tc6758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186214,6 +193118,7 @@ "id": "bettertls::nameconstraints::tc6759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186241,6 +193146,7 @@ "id": "bettertls::nameconstraints::tc6760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186268,6 +193174,7 @@ "id": "bettertls::nameconstraints::tc6761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186295,6 +193202,7 @@ "id": "bettertls::nameconstraints::tc6762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186322,6 +193230,7 @@ "id": "bettertls::nameconstraints::tc6763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186349,6 +193258,7 @@ "id": "bettertls::nameconstraints::tc6764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186376,6 +193286,7 @@ "id": "bettertls::nameconstraints::tc6765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186403,6 +193314,7 @@ "id": "bettertls::nameconstraints::tc6766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186430,6 +193342,7 @@ "id": "bettertls::nameconstraints::tc6767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186457,6 +193370,7 @@ "id": "bettertls::nameconstraints::tc6768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186484,6 +193398,7 @@ "id": "bettertls::nameconstraints::tc6769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186511,6 +193426,7 @@ "id": "bettertls::nameconstraints::tc6770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186538,6 +193454,7 @@ "id": "bettertls::nameconstraints::tc6771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186565,6 +193482,7 @@ "id": "bettertls::nameconstraints::tc6772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186592,6 +193510,7 @@ "id": "bettertls::nameconstraints::tc6773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186619,6 +193538,7 @@ "id": "bettertls::nameconstraints::tc6774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186646,6 +193566,7 @@ "id": "bettertls::nameconstraints::tc6775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186673,6 +193594,7 @@ "id": "bettertls::nameconstraints::tc6776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186700,6 +193622,7 @@ "id": "bettertls::nameconstraints::tc6777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186727,6 +193650,7 @@ "id": "bettertls::nameconstraints::tc6778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186754,6 +193678,7 @@ "id": "bettertls::nameconstraints::tc6779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186781,6 +193706,7 @@ "id": "bettertls::nameconstraints::tc6780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186808,6 +193734,7 @@ "id": "bettertls::nameconstraints::tc6781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186835,6 +193762,7 @@ "id": "bettertls::nameconstraints::tc6782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186862,6 +193790,7 @@ "id": "bettertls::nameconstraints::tc6783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186889,6 +193818,7 @@ "id": "bettertls::nameconstraints::tc6784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186916,6 +193846,7 @@ "id": "bettertls::nameconstraints::tc6785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186943,6 +193874,7 @@ "id": "bettertls::nameconstraints::tc6786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186970,6 +193902,7 @@ "id": "bettertls::nameconstraints::tc6787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -186997,6 +193930,7 @@ "id": "bettertls::nameconstraints::tc6788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187024,6 +193958,7 @@ "id": "bettertls::nameconstraints::tc6789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187051,6 +193986,7 @@ "id": "bettertls::nameconstraints::tc6790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187078,6 +194014,7 @@ "id": "bettertls::nameconstraints::tc6791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187105,6 +194042,7 @@ "id": "bettertls::nameconstraints::tc6792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187132,6 +194070,7 @@ "id": "bettertls::nameconstraints::tc6793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187159,6 +194098,7 @@ "id": "bettertls::nameconstraints::tc6794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187186,6 +194126,7 @@ "id": "bettertls::nameconstraints::tc6795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187213,6 +194154,7 @@ "id": "bettertls::nameconstraints::tc6796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187240,6 +194182,7 @@ "id": "bettertls::nameconstraints::tc6797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187267,6 +194210,7 @@ "id": "bettertls::nameconstraints::tc6798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187294,6 +194238,7 @@ "id": "bettertls::nameconstraints::tc6799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187321,6 +194266,7 @@ "id": "bettertls::nameconstraints::tc6800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187348,6 +194294,7 @@ "id": "bettertls::nameconstraints::tc6801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187375,6 +194322,7 @@ "id": "bettertls::nameconstraints::tc6802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187402,6 +194350,7 @@ "id": "bettertls::nameconstraints::tc6803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187429,6 +194378,7 @@ "id": "bettertls::nameconstraints::tc6804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187456,6 +194406,7 @@ "id": "bettertls::nameconstraints::tc6805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187483,6 +194434,7 @@ "id": "bettertls::nameconstraints::tc6806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187510,6 +194462,7 @@ "id": "bettertls::nameconstraints::tc6807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187537,6 +194490,7 @@ "id": "bettertls::nameconstraints::tc6808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187564,6 +194518,7 @@ "id": "bettertls::nameconstraints::tc6809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187591,6 +194546,7 @@ "id": "bettertls::nameconstraints::tc6810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187618,6 +194574,7 @@ "id": "bettertls::nameconstraints::tc6811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187645,6 +194602,7 @@ "id": "bettertls::nameconstraints::tc6812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187672,6 +194630,7 @@ "id": "bettertls::nameconstraints::tc6813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187699,6 +194658,7 @@ "id": "bettertls::nameconstraints::tc6814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187726,6 +194686,7 @@ "id": "bettertls::nameconstraints::tc6815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187753,6 +194714,7 @@ "id": "bettertls::nameconstraints::tc6816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187780,6 +194742,7 @@ "id": "bettertls::nameconstraints::tc6817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187807,6 +194770,7 @@ "id": "bettertls::nameconstraints::tc6818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187834,6 +194798,7 @@ "id": "bettertls::nameconstraints::tc6819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187861,6 +194826,7 @@ "id": "bettertls::nameconstraints::tc6820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187888,6 +194854,7 @@ "id": "bettertls::nameconstraints::tc6821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187915,6 +194882,7 @@ "id": "bettertls::nameconstraints::tc6822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187942,6 +194910,7 @@ "id": "bettertls::nameconstraints::tc6823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187969,6 +194938,7 @@ "id": "bettertls::nameconstraints::tc6824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -187996,6 +194966,7 @@ "id": "bettertls::nameconstraints::tc6825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188023,6 +194994,7 @@ "id": "bettertls::nameconstraints::tc6826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188050,6 +195022,7 @@ "id": "bettertls::nameconstraints::tc6827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188077,6 +195050,7 @@ "id": "bettertls::nameconstraints::tc6828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188104,6 +195078,7 @@ "id": "bettertls::nameconstraints::tc6829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188131,6 +195106,7 @@ "id": "bettertls::nameconstraints::tc6830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188158,6 +195134,7 @@ "id": "bettertls::nameconstraints::tc6831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188185,6 +195162,7 @@ "id": "bettertls::nameconstraints::tc6832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188212,6 +195190,7 @@ "id": "bettertls::nameconstraints::tc6833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188239,6 +195218,7 @@ "id": "bettertls::nameconstraints::tc6834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188266,6 +195246,7 @@ "id": "bettertls::nameconstraints::tc6835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188293,6 +195274,7 @@ "id": "bettertls::nameconstraints::tc6836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188320,6 +195302,7 @@ "id": "bettertls::nameconstraints::tc6837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188347,6 +195330,7 @@ "id": "bettertls::nameconstraints::tc6838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188374,6 +195358,7 @@ "id": "bettertls::nameconstraints::tc6839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188401,6 +195386,7 @@ "id": "bettertls::nameconstraints::tc6840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188428,6 +195414,7 @@ "id": "bettertls::nameconstraints::tc6841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188455,6 +195442,7 @@ "id": "bettertls::nameconstraints::tc6842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188482,6 +195470,7 @@ "id": "bettertls::nameconstraints::tc6843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188509,6 +195498,7 @@ "id": "bettertls::nameconstraints::tc6844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188536,6 +195526,7 @@ "id": "bettertls::nameconstraints::tc6845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188563,6 +195554,7 @@ "id": "bettertls::nameconstraints::tc6846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188590,6 +195582,7 @@ "id": "bettertls::nameconstraints::tc6847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188617,6 +195610,7 @@ "id": "bettertls::nameconstraints::tc6848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188644,6 +195638,7 @@ "id": "bettertls::nameconstraints::tc6849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188671,6 +195666,7 @@ "id": "bettertls::nameconstraints::tc6850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188698,6 +195694,7 @@ "id": "bettertls::nameconstraints::tc6851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188725,6 +195722,7 @@ "id": "bettertls::nameconstraints::tc6852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188752,6 +195750,7 @@ "id": "bettertls::nameconstraints::tc6853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188779,6 +195778,7 @@ "id": "bettertls::nameconstraints::tc6854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188806,6 +195806,7 @@ "id": "bettertls::nameconstraints::tc6855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188833,6 +195834,7 @@ "id": "bettertls::nameconstraints::tc6856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188860,6 +195862,7 @@ "id": "bettertls::nameconstraints::tc6857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188887,6 +195890,7 @@ "id": "bettertls::nameconstraints::tc6858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188914,6 +195918,7 @@ "id": "bettertls::nameconstraints::tc6859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188941,6 +195946,7 @@ "id": "bettertls::nameconstraints::tc6860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188968,6 +195974,7 @@ "id": "bettertls::nameconstraints::tc6861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -188995,6 +196002,7 @@ "id": "bettertls::nameconstraints::tc6862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189022,6 +196030,7 @@ "id": "bettertls::nameconstraints::tc6863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189049,6 +196058,7 @@ "id": "bettertls::nameconstraints::tc6864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189076,6 +196086,7 @@ "id": "bettertls::nameconstraints::tc6865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189103,6 +196114,7 @@ "id": "bettertls::nameconstraints::tc6866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189130,6 +196142,7 @@ "id": "bettertls::nameconstraints::tc6867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189157,6 +196170,7 @@ "id": "bettertls::nameconstraints::tc6868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189184,6 +196198,7 @@ "id": "bettertls::nameconstraints::tc6869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189211,6 +196226,7 @@ "id": "bettertls::nameconstraints::tc6870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189238,6 +196254,7 @@ "id": "bettertls::nameconstraints::tc6871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189265,6 +196282,7 @@ "id": "bettertls::nameconstraints::tc6872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189292,6 +196310,7 @@ "id": "bettertls::nameconstraints::tc6873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189319,6 +196338,7 @@ "id": "bettertls::nameconstraints::tc6874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189346,6 +196366,7 @@ "id": "bettertls::nameconstraints::tc6875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189373,6 +196394,7 @@ "id": "bettertls::nameconstraints::tc6876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189400,6 +196422,7 @@ "id": "bettertls::nameconstraints::tc6877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189427,6 +196450,7 @@ "id": "bettertls::nameconstraints::tc6878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189454,6 +196478,7 @@ "id": "bettertls::nameconstraints::tc6879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189481,6 +196506,7 @@ "id": "bettertls::nameconstraints::tc6880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189508,6 +196534,7 @@ "id": "bettertls::nameconstraints::tc6881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189535,6 +196562,7 @@ "id": "bettertls::nameconstraints::tc6882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189562,6 +196590,7 @@ "id": "bettertls::nameconstraints::tc6883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189589,6 +196618,7 @@ "id": "bettertls::nameconstraints::tc6884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189616,6 +196646,7 @@ "id": "bettertls::nameconstraints::tc6885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189643,6 +196674,7 @@ "id": "bettertls::nameconstraints::tc6886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189670,6 +196702,7 @@ "id": "bettertls::nameconstraints::tc6887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189697,6 +196730,7 @@ "id": "bettertls::nameconstraints::tc6888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189724,6 +196758,7 @@ "id": "bettertls::nameconstraints::tc6889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189751,6 +196786,7 @@ "id": "bettertls::nameconstraints::tc6890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189778,6 +196814,7 @@ "id": "bettertls::nameconstraints::tc6891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189805,6 +196842,7 @@ "id": "bettertls::nameconstraints::tc6892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189832,6 +196870,7 @@ "id": "bettertls::nameconstraints::tc6893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189859,6 +196898,7 @@ "id": "bettertls::nameconstraints::tc6894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189886,6 +196926,7 @@ "id": "bettertls::nameconstraints::tc6895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189913,6 +196954,7 @@ "id": "bettertls::nameconstraints::tc6896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189940,6 +196982,7 @@ "id": "bettertls::nameconstraints::tc6897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189967,6 +197010,7 @@ "id": "bettertls::nameconstraints::tc6898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -189994,6 +197038,7 @@ "id": "bettertls::nameconstraints::tc6899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190021,6 +197066,7 @@ "id": "bettertls::nameconstraints::tc6900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190048,6 +197094,7 @@ "id": "bettertls::nameconstraints::tc6901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190075,6 +197122,7 @@ "id": "bettertls::nameconstraints::tc6902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190102,6 +197150,7 @@ "id": "bettertls::nameconstraints::tc6903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190129,6 +197178,7 @@ "id": "bettertls::nameconstraints::tc6904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190156,6 +197206,7 @@ "id": "bettertls::nameconstraints::tc6905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190183,6 +197234,7 @@ "id": "bettertls::nameconstraints::tc6906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190210,6 +197262,7 @@ "id": "bettertls::nameconstraints::tc6907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190237,6 +197290,7 @@ "id": "bettertls::nameconstraints::tc6908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190264,6 +197318,7 @@ "id": "bettertls::nameconstraints::tc6909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190291,6 +197346,7 @@ "id": "bettertls::nameconstraints::tc6910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190318,6 +197374,7 @@ "id": "bettertls::nameconstraints::tc6911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190345,6 +197402,7 @@ "id": "bettertls::nameconstraints::tc6912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190372,6 +197430,7 @@ "id": "bettertls::nameconstraints::tc6913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190399,6 +197458,7 @@ "id": "bettertls::nameconstraints::tc6914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190426,6 +197486,7 @@ "id": "bettertls::nameconstraints::tc6915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190453,6 +197514,7 @@ "id": "bettertls::nameconstraints::tc6916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190480,6 +197542,7 @@ "id": "bettertls::nameconstraints::tc6917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190507,6 +197570,7 @@ "id": "bettertls::nameconstraints::tc6918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190534,6 +197598,7 @@ "id": "bettertls::nameconstraints::tc6919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190561,6 +197626,7 @@ "id": "bettertls::nameconstraints::tc6920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190588,6 +197654,7 @@ "id": "bettertls::nameconstraints::tc6921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190615,6 +197682,7 @@ "id": "bettertls::nameconstraints::tc6922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190642,6 +197710,7 @@ "id": "bettertls::nameconstraints::tc6923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190669,6 +197738,7 @@ "id": "bettertls::nameconstraints::tc6924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190696,6 +197766,7 @@ "id": "bettertls::nameconstraints::tc6925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190723,6 +197794,7 @@ "id": "bettertls::nameconstraints::tc6926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190750,6 +197822,7 @@ "id": "bettertls::nameconstraints::tc6927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190777,6 +197850,7 @@ "id": "bettertls::nameconstraints::tc6928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190804,6 +197878,7 @@ "id": "bettertls::nameconstraints::tc6929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190831,6 +197906,7 @@ "id": "bettertls::nameconstraints::tc6930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190858,6 +197934,7 @@ "id": "bettertls::nameconstraints::tc6931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190885,6 +197962,7 @@ "id": "bettertls::nameconstraints::tc6932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190912,6 +197990,7 @@ "id": "bettertls::nameconstraints::tc6933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190939,6 +198018,7 @@ "id": "bettertls::nameconstraints::tc6934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190966,6 +198046,7 @@ "id": "bettertls::nameconstraints::tc6935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -190993,6 +198074,7 @@ "id": "bettertls::nameconstraints::tc6936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191020,6 +198102,7 @@ "id": "bettertls::nameconstraints::tc6937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191047,6 +198130,7 @@ "id": "bettertls::nameconstraints::tc6938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191074,6 +198158,7 @@ "id": "bettertls::nameconstraints::tc6939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191101,6 +198186,7 @@ "id": "bettertls::nameconstraints::tc6940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191128,6 +198214,7 @@ "id": "bettertls::nameconstraints::tc6941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191155,6 +198242,7 @@ "id": "bettertls::nameconstraints::tc6942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191182,6 +198270,7 @@ "id": "bettertls::nameconstraints::tc6943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191209,6 +198298,7 @@ "id": "bettertls::nameconstraints::tc6944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191236,6 +198326,7 @@ "id": "bettertls::nameconstraints::tc6945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191263,6 +198354,7 @@ "id": "bettertls::nameconstraints::tc6946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191290,6 +198382,7 @@ "id": "bettertls::nameconstraints::tc6947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191317,6 +198410,7 @@ "id": "bettertls::nameconstraints::tc6948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191344,6 +198438,7 @@ "id": "bettertls::nameconstraints::tc6949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191371,6 +198466,7 @@ "id": "bettertls::nameconstraints::tc6950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191398,6 +198494,7 @@ "id": "bettertls::nameconstraints::tc6951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191425,6 +198522,7 @@ "id": "bettertls::nameconstraints::tc6952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191452,6 +198550,7 @@ "id": "bettertls::nameconstraints::tc6953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191479,6 +198578,7 @@ "id": "bettertls::nameconstraints::tc6954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191506,6 +198606,7 @@ "id": "bettertls::nameconstraints::tc6955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191533,6 +198634,7 @@ "id": "bettertls::nameconstraints::tc6956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191560,6 +198662,7 @@ "id": "bettertls::nameconstraints::tc6957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191587,6 +198690,7 @@ "id": "bettertls::nameconstraints::tc6958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191614,6 +198718,7 @@ "id": "bettertls::nameconstraints::tc6959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191641,6 +198746,7 @@ "id": "bettertls::nameconstraints::tc6960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191668,6 +198774,7 @@ "id": "bettertls::nameconstraints::tc6961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191695,6 +198802,7 @@ "id": "bettertls::nameconstraints::tc6962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191722,6 +198830,7 @@ "id": "bettertls::nameconstraints::tc6963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191749,6 +198858,7 @@ "id": "bettertls::nameconstraints::tc6964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191776,6 +198886,7 @@ "id": "bettertls::nameconstraints::tc6965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191803,6 +198914,7 @@ "id": "bettertls::nameconstraints::tc6966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191830,6 +198942,7 @@ "id": "bettertls::nameconstraints::tc6967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191857,6 +198970,7 @@ "id": "bettertls::nameconstraints::tc6968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191884,6 +198998,7 @@ "id": "bettertls::nameconstraints::tc6969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191911,6 +199026,7 @@ "id": "bettertls::nameconstraints::tc6970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191938,6 +199054,7 @@ "id": "bettertls::nameconstraints::tc6971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191965,6 +199082,7 @@ "id": "bettertls::nameconstraints::tc6972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -191992,6 +199110,7 @@ "id": "bettertls::nameconstraints::tc6973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192019,6 +199138,7 @@ "id": "bettertls::nameconstraints::tc6974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192046,6 +199166,7 @@ "id": "bettertls::nameconstraints::tc6975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192073,6 +199194,7 @@ "id": "bettertls::nameconstraints::tc6976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192100,6 +199222,7 @@ "id": "bettertls::nameconstraints::tc6977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192127,6 +199250,7 @@ "id": "bettertls::nameconstraints::tc6978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192154,6 +199278,7 @@ "id": "bettertls::nameconstraints::tc6979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192181,6 +199306,7 @@ "id": "bettertls::nameconstraints::tc6980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192208,6 +199334,7 @@ "id": "bettertls::nameconstraints::tc6981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192235,6 +199362,7 @@ "id": "bettertls::nameconstraints::tc6982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192262,6 +199390,7 @@ "id": "bettertls::nameconstraints::tc6983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192289,6 +199418,7 @@ "id": "bettertls::nameconstraints::tc6984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192316,6 +199446,7 @@ "id": "bettertls::nameconstraints::tc6985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192343,6 +199474,7 @@ "id": "bettertls::nameconstraints::tc6986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192370,6 +199502,7 @@ "id": "bettertls::nameconstraints::tc6987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192397,6 +199530,7 @@ "id": "bettertls::nameconstraints::tc6988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192424,6 +199558,7 @@ "id": "bettertls::nameconstraints::tc6989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192451,6 +199586,7 @@ "id": "bettertls::nameconstraints::tc6990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192478,6 +199614,7 @@ "id": "bettertls::nameconstraints::tc6991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192505,6 +199642,7 @@ "id": "bettertls::nameconstraints::tc6992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192532,6 +199670,7 @@ "id": "bettertls::nameconstraints::tc6993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192559,6 +199698,7 @@ "id": "bettertls::nameconstraints::tc6994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192586,6 +199726,7 @@ "id": "bettertls::nameconstraints::tc6995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192613,6 +199754,7 @@ "id": "bettertls::nameconstraints::tc6996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192640,6 +199782,7 @@ "id": "bettertls::nameconstraints::tc6997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192667,6 +199810,7 @@ "id": "bettertls::nameconstraints::tc6998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192694,6 +199838,7 @@ "id": "bettertls::nameconstraints::tc6999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192721,6 +199866,7 @@ "id": "bettertls::nameconstraints::tc7000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192748,6 +199894,7 @@ "id": "bettertls::nameconstraints::tc7001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192775,6 +199922,7 @@ "id": "bettertls::nameconstraints::tc7002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192802,6 +199950,7 @@ "id": "bettertls::nameconstraints::tc7003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192829,6 +199978,7 @@ "id": "bettertls::nameconstraints::tc7004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192856,6 +200006,7 @@ "id": "bettertls::nameconstraints::tc7005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192883,6 +200034,7 @@ "id": "bettertls::nameconstraints::tc7006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192910,6 +200062,7 @@ "id": "bettertls::nameconstraints::tc7007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192937,6 +200090,7 @@ "id": "bettertls::nameconstraints::tc7008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192964,6 +200118,7 @@ "id": "bettertls::nameconstraints::tc7009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -192991,6 +200146,7 @@ "id": "bettertls::nameconstraints::tc7010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193018,6 +200174,7 @@ "id": "bettertls::nameconstraints::tc7011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193045,6 +200202,7 @@ "id": "bettertls::nameconstraints::tc7012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193072,6 +200230,7 @@ "id": "bettertls::nameconstraints::tc7013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193099,6 +200258,7 @@ "id": "bettertls::nameconstraints::tc7014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193126,6 +200286,7 @@ "id": "bettertls::nameconstraints::tc7015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193153,6 +200314,7 @@ "id": "bettertls::nameconstraints::tc7016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193180,6 +200342,7 @@ "id": "bettertls::nameconstraints::tc7017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193207,6 +200370,7 @@ "id": "bettertls::nameconstraints::tc7018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193234,6 +200398,7 @@ "id": "bettertls::nameconstraints::tc7019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193261,6 +200426,7 @@ "id": "bettertls::nameconstraints::tc7020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193288,6 +200454,7 @@ "id": "bettertls::nameconstraints::tc7021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193315,6 +200482,7 @@ "id": "bettertls::nameconstraints::tc7022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193342,6 +200510,7 @@ "id": "bettertls::nameconstraints::tc7023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193369,6 +200538,7 @@ "id": "bettertls::nameconstraints::tc7024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193396,6 +200566,7 @@ "id": "bettertls::nameconstraints::tc7025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193423,6 +200594,7 @@ "id": "bettertls::nameconstraints::tc7026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193450,6 +200622,7 @@ "id": "bettertls::nameconstraints::tc7027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193477,6 +200650,7 @@ "id": "bettertls::nameconstraints::tc7028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193504,6 +200678,7 @@ "id": "bettertls::nameconstraints::tc7029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193531,6 +200706,7 @@ "id": "bettertls::nameconstraints::tc7030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193558,6 +200734,7 @@ "id": "bettertls::nameconstraints::tc7031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193585,6 +200762,7 @@ "id": "bettertls::nameconstraints::tc7032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193612,6 +200790,7 @@ "id": "bettertls::nameconstraints::tc7033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193639,6 +200818,7 @@ "id": "bettertls::nameconstraints::tc7034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193666,6 +200846,7 @@ "id": "bettertls::nameconstraints::tc7035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193693,6 +200874,7 @@ "id": "bettertls::nameconstraints::tc7036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193720,6 +200902,7 @@ "id": "bettertls::nameconstraints::tc7037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193747,6 +200930,7 @@ "id": "bettertls::nameconstraints::tc7038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193774,6 +200958,7 @@ "id": "bettertls::nameconstraints::tc7039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193801,6 +200986,7 @@ "id": "bettertls::nameconstraints::tc7040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193828,6 +201014,7 @@ "id": "bettertls::nameconstraints::tc7041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193855,6 +201042,7 @@ "id": "bettertls::nameconstraints::tc7042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193882,6 +201070,7 @@ "id": "bettertls::nameconstraints::tc7043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193909,6 +201098,7 @@ "id": "bettertls::nameconstraints::tc7044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193936,6 +201126,7 @@ "id": "bettertls::nameconstraints::tc7045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193963,6 +201154,7 @@ "id": "bettertls::nameconstraints::tc7046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -193990,6 +201182,7 @@ "id": "bettertls::nameconstraints::tc7047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194017,6 +201210,7 @@ "id": "bettertls::nameconstraints::tc7048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194044,6 +201238,7 @@ "id": "bettertls::nameconstraints::tc7049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194071,6 +201266,7 @@ "id": "bettertls::nameconstraints::tc7050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194098,6 +201294,7 @@ "id": "bettertls::nameconstraints::tc7051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194125,6 +201322,7 @@ "id": "bettertls::nameconstraints::tc7052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194152,6 +201350,7 @@ "id": "bettertls::nameconstraints::tc7053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194179,6 +201378,7 @@ "id": "bettertls::nameconstraints::tc7054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194206,6 +201406,7 @@ "id": "bettertls::nameconstraints::tc7055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194233,6 +201434,7 @@ "id": "bettertls::nameconstraints::tc7056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194260,6 +201462,7 @@ "id": "bettertls::nameconstraints::tc7057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194287,6 +201490,7 @@ "id": "bettertls::nameconstraints::tc7058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194314,6 +201518,7 @@ "id": "bettertls::nameconstraints::tc7059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194341,6 +201546,7 @@ "id": "bettertls::nameconstraints::tc7060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194368,6 +201574,7 @@ "id": "bettertls::nameconstraints::tc7061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194395,6 +201602,7 @@ "id": "bettertls::nameconstraints::tc7062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194422,6 +201630,7 @@ "id": "bettertls::nameconstraints::tc7063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194449,6 +201658,7 @@ "id": "bettertls::nameconstraints::tc7064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194476,6 +201686,7 @@ "id": "bettertls::nameconstraints::tc7065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194503,6 +201714,7 @@ "id": "bettertls::nameconstraints::tc7066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194530,6 +201742,7 @@ "id": "bettertls::nameconstraints::tc7067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194557,6 +201770,7 @@ "id": "bettertls::nameconstraints::tc7068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194584,6 +201798,7 @@ "id": "bettertls::nameconstraints::tc7069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194611,6 +201826,7 @@ "id": "bettertls::nameconstraints::tc7070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194638,6 +201854,7 @@ "id": "bettertls::nameconstraints::tc7071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194665,6 +201882,7 @@ "id": "bettertls::nameconstraints::tc7072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194692,6 +201910,7 @@ "id": "bettertls::nameconstraints::tc7073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194719,6 +201938,7 @@ "id": "bettertls::nameconstraints::tc7074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194746,6 +201966,7 @@ "id": "bettertls::nameconstraints::tc7075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194773,6 +201994,7 @@ "id": "bettertls::nameconstraints::tc7076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194800,6 +202022,7 @@ "id": "bettertls::nameconstraints::tc7077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194827,6 +202050,7 @@ "id": "bettertls::nameconstraints::tc7078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194854,6 +202078,7 @@ "id": "bettertls::nameconstraints::tc7079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194881,6 +202106,7 @@ "id": "bettertls::nameconstraints::tc7080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194908,6 +202134,7 @@ "id": "bettertls::nameconstraints::tc7081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194935,6 +202162,7 @@ "id": "bettertls::nameconstraints::tc7082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194962,6 +202190,7 @@ "id": "bettertls::nameconstraints::tc7083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -194989,6 +202218,7 @@ "id": "bettertls::nameconstraints::tc7084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195016,6 +202246,7 @@ "id": "bettertls::nameconstraints::tc7085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195043,6 +202274,7 @@ "id": "bettertls::nameconstraints::tc7086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195070,6 +202302,7 @@ "id": "bettertls::nameconstraints::tc7087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195097,6 +202330,7 @@ "id": "bettertls::nameconstraints::tc7088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195124,6 +202358,7 @@ "id": "bettertls::nameconstraints::tc7089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195151,6 +202386,7 @@ "id": "bettertls::nameconstraints::tc7090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195178,6 +202414,7 @@ "id": "bettertls::nameconstraints::tc7091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195205,6 +202442,7 @@ "id": "bettertls::nameconstraints::tc7092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195232,6 +202470,7 @@ "id": "bettertls::nameconstraints::tc7093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195259,6 +202498,7 @@ "id": "bettertls::nameconstraints::tc7094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195286,6 +202526,7 @@ "id": "bettertls::nameconstraints::tc7095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195313,6 +202554,7 @@ "id": "bettertls::nameconstraints::tc7096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195340,6 +202582,7 @@ "id": "bettertls::nameconstraints::tc7097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195367,6 +202610,7 @@ "id": "bettertls::nameconstraints::tc7098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195394,6 +202638,7 @@ "id": "bettertls::nameconstraints::tc7099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195421,6 +202666,7 @@ "id": "bettertls::nameconstraints::tc7100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195448,6 +202694,7 @@ "id": "bettertls::nameconstraints::tc7101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195475,6 +202722,7 @@ "id": "bettertls::nameconstraints::tc7102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195502,6 +202750,7 @@ "id": "bettertls::nameconstraints::tc7103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195529,6 +202778,7 @@ "id": "bettertls::nameconstraints::tc7104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195556,6 +202806,7 @@ "id": "bettertls::nameconstraints::tc7105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195583,6 +202834,7 @@ "id": "bettertls::nameconstraints::tc7106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195610,6 +202862,7 @@ "id": "bettertls::nameconstraints::tc7107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195637,6 +202890,7 @@ "id": "bettertls::nameconstraints::tc7108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195664,6 +202918,7 @@ "id": "bettertls::nameconstraints::tc7109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195691,6 +202946,7 @@ "id": "bettertls::nameconstraints::tc7110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195718,6 +202974,7 @@ "id": "bettertls::nameconstraints::tc7111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195745,6 +203002,7 @@ "id": "bettertls::nameconstraints::tc7112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195772,6 +203030,7 @@ "id": "bettertls::nameconstraints::tc7113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195799,6 +203058,7 @@ "id": "bettertls::nameconstraints::tc7114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195826,6 +203086,7 @@ "id": "bettertls::nameconstraints::tc7115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195853,6 +203114,7 @@ "id": "bettertls::nameconstraints::tc7116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195880,6 +203142,7 @@ "id": "bettertls::nameconstraints::tc7117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195907,6 +203170,7 @@ "id": "bettertls::nameconstraints::tc7118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195934,6 +203198,7 @@ "id": "bettertls::nameconstraints::tc7119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195961,6 +203226,7 @@ "id": "bettertls::nameconstraints::tc7120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -195988,6 +203254,7 @@ "id": "bettertls::nameconstraints::tc7121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196015,6 +203282,7 @@ "id": "bettertls::nameconstraints::tc7122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196042,6 +203310,7 @@ "id": "bettertls::nameconstraints::tc7123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196069,6 +203338,7 @@ "id": "bettertls::nameconstraints::tc7124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196096,6 +203366,7 @@ "id": "bettertls::nameconstraints::tc7125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196123,6 +203394,7 @@ "id": "bettertls::nameconstraints::tc7126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196150,6 +203422,7 @@ "id": "bettertls::nameconstraints::tc7127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196177,6 +203450,7 @@ "id": "bettertls::nameconstraints::tc7128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196204,6 +203478,7 @@ "id": "bettertls::nameconstraints::tc7129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196231,6 +203506,7 @@ "id": "bettertls::nameconstraints::tc7130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196258,6 +203534,7 @@ "id": "bettertls::nameconstraints::tc7131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196285,6 +203562,7 @@ "id": "bettertls::nameconstraints::tc7132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196312,6 +203590,7 @@ "id": "bettertls::nameconstraints::tc7133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196339,6 +203618,7 @@ "id": "bettertls::nameconstraints::tc7134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196366,6 +203646,7 @@ "id": "bettertls::nameconstraints::tc7135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196393,6 +203674,7 @@ "id": "bettertls::nameconstraints::tc7136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196420,6 +203702,7 @@ "id": "bettertls::nameconstraints::tc7137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196447,6 +203730,7 @@ "id": "bettertls::nameconstraints::tc7138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196474,6 +203758,7 @@ "id": "bettertls::nameconstraints::tc7139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196501,6 +203786,7 @@ "id": "bettertls::nameconstraints::tc7140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196528,6 +203814,7 @@ "id": "bettertls::nameconstraints::tc7141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196555,6 +203842,7 @@ "id": "bettertls::nameconstraints::tc7142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196582,6 +203870,7 @@ "id": "bettertls::nameconstraints::tc7143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196609,6 +203898,7 @@ "id": "bettertls::nameconstraints::tc7144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196636,6 +203926,7 @@ "id": "bettertls::nameconstraints::tc7145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196663,6 +203954,7 @@ "id": "bettertls::nameconstraints::tc7146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196690,6 +203982,7 @@ "id": "bettertls::nameconstraints::tc7147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196717,6 +204010,7 @@ "id": "bettertls::nameconstraints::tc7148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196744,6 +204038,7 @@ "id": "bettertls::nameconstraints::tc7149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196771,6 +204066,7 @@ "id": "bettertls::nameconstraints::tc7150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196798,6 +204094,7 @@ "id": "bettertls::nameconstraints::tc7151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196825,6 +204122,7 @@ "id": "bettertls::nameconstraints::tc7152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196852,6 +204150,7 @@ "id": "bettertls::nameconstraints::tc7153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196879,6 +204178,7 @@ "id": "bettertls::nameconstraints::tc7154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196906,6 +204206,7 @@ "id": "bettertls::nameconstraints::tc7155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196933,6 +204234,7 @@ "id": "bettertls::nameconstraints::tc7156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196960,6 +204262,7 @@ "id": "bettertls::nameconstraints::tc7157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -196987,6 +204290,7 @@ "id": "bettertls::nameconstraints::tc7158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197014,6 +204318,7 @@ "id": "bettertls::nameconstraints::tc7159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197041,6 +204346,7 @@ "id": "bettertls::nameconstraints::tc7160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197068,6 +204374,7 @@ "id": "bettertls::nameconstraints::tc7161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197095,6 +204402,7 @@ "id": "bettertls::nameconstraints::tc7162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197122,6 +204430,7 @@ "id": "bettertls::nameconstraints::tc7163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197149,6 +204458,7 @@ "id": "bettertls::nameconstraints::tc7164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197176,6 +204486,7 @@ "id": "bettertls::nameconstraints::tc7165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197203,6 +204514,7 @@ "id": "bettertls::nameconstraints::tc7166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197230,6 +204542,7 @@ "id": "bettertls::nameconstraints::tc7167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197257,6 +204570,7 @@ "id": "bettertls::nameconstraints::tc7168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197284,6 +204598,7 @@ "id": "bettertls::nameconstraints::tc7169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197311,6 +204626,7 @@ "id": "bettertls::nameconstraints::tc7170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197338,6 +204654,7 @@ "id": "bettertls::nameconstraints::tc7171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197365,6 +204682,7 @@ "id": "bettertls::nameconstraints::tc7172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197392,6 +204710,7 @@ "id": "bettertls::nameconstraints::tc7173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197419,6 +204738,7 @@ "id": "bettertls::nameconstraints::tc7174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197446,6 +204766,7 @@ "id": "bettertls::nameconstraints::tc7175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197473,6 +204794,7 @@ "id": "bettertls::nameconstraints::tc7176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197500,6 +204822,7 @@ "id": "bettertls::nameconstraints::tc7177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197527,6 +204850,7 @@ "id": "bettertls::nameconstraints::tc7178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197554,6 +204878,7 @@ "id": "bettertls::nameconstraints::tc7179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197581,6 +204906,7 @@ "id": "bettertls::nameconstraints::tc7180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197608,6 +204934,7 @@ "id": "bettertls::nameconstraints::tc7181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197635,6 +204962,7 @@ "id": "bettertls::nameconstraints::tc7182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197662,6 +204990,7 @@ "id": "bettertls::nameconstraints::tc7183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197689,6 +205018,7 @@ "id": "bettertls::nameconstraints::tc7184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197716,6 +205046,7 @@ "id": "bettertls::nameconstraints::tc7185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197743,6 +205074,7 @@ "id": "bettertls::nameconstraints::tc7186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197770,6 +205102,7 @@ "id": "bettertls::nameconstraints::tc7187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197797,6 +205130,7 @@ "id": "bettertls::nameconstraints::tc7188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197824,6 +205158,7 @@ "id": "bettertls::nameconstraints::tc7189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197851,6 +205186,7 @@ "id": "bettertls::nameconstraints::tc7190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197878,6 +205214,7 @@ "id": "bettertls::nameconstraints::tc7191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197905,6 +205242,7 @@ "id": "bettertls::nameconstraints::tc7192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197932,6 +205270,7 @@ "id": "bettertls::nameconstraints::tc7193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197959,6 +205298,7 @@ "id": "bettertls::nameconstraints::tc7194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -197986,6 +205326,7 @@ "id": "bettertls::nameconstraints::tc7195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198013,6 +205354,7 @@ "id": "bettertls::nameconstraints::tc7196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198040,6 +205382,7 @@ "id": "bettertls::nameconstraints::tc7197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198067,6 +205410,7 @@ "id": "bettertls::nameconstraints::tc7198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198094,6 +205438,7 @@ "id": "bettertls::nameconstraints::tc7199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198121,6 +205466,7 @@ "id": "bettertls::nameconstraints::tc7200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198148,6 +205494,7 @@ "id": "bettertls::nameconstraints::tc7201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198175,6 +205522,7 @@ "id": "bettertls::nameconstraints::tc7202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198202,6 +205550,7 @@ "id": "bettertls::nameconstraints::tc7203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198229,6 +205578,7 @@ "id": "bettertls::nameconstraints::tc7204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198256,6 +205606,7 @@ "id": "bettertls::nameconstraints::tc7205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198283,6 +205634,7 @@ "id": "bettertls::nameconstraints::tc7206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198310,6 +205662,7 @@ "id": "bettertls::nameconstraints::tc7207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198337,6 +205690,7 @@ "id": "bettertls::nameconstraints::tc7208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198364,6 +205718,7 @@ "id": "bettertls::nameconstraints::tc7209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198391,6 +205746,7 @@ "id": "bettertls::nameconstraints::tc7210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198418,6 +205774,7 @@ "id": "bettertls::nameconstraints::tc7211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198445,6 +205802,7 @@ "id": "bettertls::nameconstraints::tc7212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198472,6 +205830,7 @@ "id": "bettertls::nameconstraints::tc7213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198499,6 +205858,7 @@ "id": "bettertls::nameconstraints::tc7214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198526,6 +205886,7 @@ "id": "bettertls::nameconstraints::tc7215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198553,6 +205914,7 @@ "id": "bettertls::nameconstraints::tc7216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198580,6 +205942,7 @@ "id": "bettertls::nameconstraints::tc7217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198607,6 +205970,7 @@ "id": "bettertls::nameconstraints::tc7218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198634,6 +205998,7 @@ "id": "bettertls::nameconstraints::tc7219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198661,6 +206026,7 @@ "id": "bettertls::nameconstraints::tc7220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198688,6 +206054,7 @@ "id": "bettertls::nameconstraints::tc7221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198715,6 +206082,7 @@ "id": "bettertls::nameconstraints::tc7222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198742,6 +206110,7 @@ "id": "bettertls::nameconstraints::tc7223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198769,6 +206138,7 @@ "id": "bettertls::nameconstraints::tc7224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198796,6 +206166,7 @@ "id": "bettertls::nameconstraints::tc7225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198823,6 +206194,7 @@ "id": "bettertls::nameconstraints::tc7226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198850,6 +206222,7 @@ "id": "bettertls::nameconstraints::tc7227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198877,6 +206250,7 @@ "id": "bettertls::nameconstraints::tc7228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198904,6 +206278,7 @@ "id": "bettertls::nameconstraints::tc7229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198931,6 +206306,7 @@ "id": "bettertls::nameconstraints::tc7230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198958,6 +206334,7 @@ "id": "bettertls::nameconstraints::tc7231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -198985,6 +206362,7 @@ "id": "bettertls::nameconstraints::tc7232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199012,6 +206390,7 @@ "id": "bettertls::nameconstraints::tc7233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199039,6 +206418,7 @@ "id": "bettertls::nameconstraints::tc7234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199066,6 +206446,7 @@ "id": "bettertls::nameconstraints::tc7235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199093,6 +206474,7 @@ "id": "bettertls::nameconstraints::tc7236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199120,6 +206502,7 @@ "id": "bettertls::nameconstraints::tc7237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199147,6 +206530,7 @@ "id": "bettertls::nameconstraints::tc7238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199174,6 +206558,7 @@ "id": "bettertls::nameconstraints::tc7239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199201,6 +206586,7 @@ "id": "bettertls::nameconstraints::tc7240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199228,6 +206614,7 @@ "id": "bettertls::nameconstraints::tc7241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199255,6 +206642,7 @@ "id": "bettertls::nameconstraints::tc7242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199282,6 +206670,7 @@ "id": "bettertls::nameconstraints::tc7243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199309,6 +206698,7 @@ "id": "bettertls::nameconstraints::tc7244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199336,6 +206726,7 @@ "id": "bettertls::nameconstraints::tc7245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199363,6 +206754,7 @@ "id": "bettertls::nameconstraints::tc7246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199390,6 +206782,7 @@ "id": "bettertls::nameconstraints::tc7247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199417,6 +206810,7 @@ "id": "bettertls::nameconstraints::tc7248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199444,6 +206838,7 @@ "id": "bettertls::nameconstraints::tc7249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199471,6 +206866,7 @@ "id": "bettertls::nameconstraints::tc7250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199498,6 +206894,7 @@ "id": "bettertls::nameconstraints::tc7251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199525,6 +206922,7 @@ "id": "bettertls::nameconstraints::tc7252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199552,6 +206950,7 @@ "id": "bettertls::nameconstraints::tc7253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199579,6 +206978,7 @@ "id": "bettertls::nameconstraints::tc7254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199606,6 +207006,7 @@ "id": "bettertls::nameconstraints::tc7255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199633,6 +207034,7 @@ "id": "bettertls::nameconstraints::tc7256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199660,6 +207062,7 @@ "id": "bettertls::nameconstraints::tc7257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199687,6 +207090,7 @@ "id": "bettertls::nameconstraints::tc7258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199714,6 +207118,7 @@ "id": "bettertls::nameconstraints::tc7259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199741,6 +207146,7 @@ "id": "bettertls::nameconstraints::tc7260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199768,6 +207174,7 @@ "id": "bettertls::nameconstraints::tc7261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199795,6 +207202,7 @@ "id": "bettertls::nameconstraints::tc7262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199822,6 +207230,7 @@ "id": "bettertls::nameconstraints::tc7263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199849,6 +207258,7 @@ "id": "bettertls::nameconstraints::tc7264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199876,6 +207286,7 @@ "id": "bettertls::nameconstraints::tc7265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199903,6 +207314,7 @@ "id": "bettertls::nameconstraints::tc7266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199930,6 +207342,7 @@ "id": "bettertls::nameconstraints::tc7267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199957,6 +207370,7 @@ "id": "bettertls::nameconstraints::tc7268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -199984,6 +207398,7 @@ "id": "bettertls::nameconstraints::tc7269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200011,6 +207426,7 @@ "id": "bettertls::nameconstraints::tc7270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200038,6 +207454,7 @@ "id": "bettertls::nameconstraints::tc7271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200065,6 +207482,7 @@ "id": "bettertls::nameconstraints::tc7272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200092,6 +207510,7 @@ "id": "bettertls::nameconstraints::tc7273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200119,6 +207538,7 @@ "id": "bettertls::nameconstraints::tc7274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200146,6 +207566,7 @@ "id": "bettertls::nameconstraints::tc7275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200173,6 +207594,7 @@ "id": "bettertls::nameconstraints::tc7276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200200,6 +207622,7 @@ "id": "bettertls::nameconstraints::tc7277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200227,6 +207650,7 @@ "id": "bettertls::nameconstraints::tc7278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200254,6 +207678,7 @@ "id": "bettertls::nameconstraints::tc7279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200281,6 +207706,7 @@ "id": "bettertls::nameconstraints::tc7280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200308,6 +207734,7 @@ "id": "bettertls::nameconstraints::tc7281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200335,6 +207762,7 @@ "id": "bettertls::nameconstraints::tc7282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200362,6 +207790,7 @@ "id": "bettertls::nameconstraints::tc7283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200389,6 +207818,7 @@ "id": "bettertls::nameconstraints::tc7284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200416,6 +207846,7 @@ "id": "bettertls::nameconstraints::tc7285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200443,6 +207874,7 @@ "id": "bettertls::nameconstraints::tc7286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200470,6 +207902,7 @@ "id": "bettertls::nameconstraints::tc7287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200497,6 +207930,7 @@ "id": "bettertls::nameconstraints::tc7288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200524,6 +207958,7 @@ "id": "bettertls::nameconstraints::tc7289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200551,6 +207986,7 @@ "id": "bettertls::nameconstraints::tc7290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200578,6 +208014,7 @@ "id": "bettertls::nameconstraints::tc7291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200605,6 +208042,7 @@ "id": "bettertls::nameconstraints::tc7292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200632,6 +208070,7 @@ "id": "bettertls::nameconstraints::tc7293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200659,6 +208098,7 @@ "id": "bettertls::nameconstraints::tc7294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200686,6 +208126,7 @@ "id": "bettertls::nameconstraints::tc7295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200713,6 +208154,7 @@ "id": "bettertls::nameconstraints::tc7296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200740,6 +208182,7 @@ "id": "bettertls::nameconstraints::tc7297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200767,6 +208210,7 @@ "id": "bettertls::nameconstraints::tc7298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200794,6 +208238,7 @@ "id": "bettertls::nameconstraints::tc7299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200821,6 +208266,7 @@ "id": "bettertls::nameconstraints::tc7300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200848,6 +208294,7 @@ "id": "bettertls::nameconstraints::tc7301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200875,6 +208322,7 @@ "id": "bettertls::nameconstraints::tc7302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200902,6 +208350,7 @@ "id": "bettertls::nameconstraints::tc7303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200929,6 +208378,7 @@ "id": "bettertls::nameconstraints::tc7304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200956,6 +208406,7 @@ "id": "bettertls::nameconstraints::tc7305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -200983,6 +208434,7 @@ "id": "bettertls::nameconstraints::tc7306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201010,6 +208462,7 @@ "id": "bettertls::nameconstraints::tc7307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201037,6 +208490,7 @@ "id": "bettertls::nameconstraints::tc7308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201064,6 +208518,7 @@ "id": "bettertls::nameconstraints::tc7309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201091,6 +208546,7 @@ "id": "bettertls::nameconstraints::tc7310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201118,6 +208574,7 @@ "id": "bettertls::nameconstraints::tc7311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201145,6 +208602,7 @@ "id": "bettertls::nameconstraints::tc7312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201172,6 +208630,7 @@ "id": "bettertls::nameconstraints::tc7313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201199,6 +208658,7 @@ "id": "bettertls::nameconstraints::tc7314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201226,6 +208686,7 @@ "id": "bettertls::nameconstraints::tc7315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201253,6 +208714,7 @@ "id": "bettertls::nameconstraints::tc7316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201280,6 +208742,7 @@ "id": "bettertls::nameconstraints::tc7317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201307,6 +208770,7 @@ "id": "bettertls::nameconstraints::tc7318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201334,6 +208798,7 @@ "id": "bettertls::nameconstraints::tc7319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201361,6 +208826,7 @@ "id": "bettertls::nameconstraints::tc7320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201388,6 +208854,7 @@ "id": "bettertls::nameconstraints::tc7321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201415,6 +208882,7 @@ "id": "bettertls::nameconstraints::tc7322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201442,6 +208910,7 @@ "id": "bettertls::nameconstraints::tc7323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201469,6 +208938,7 @@ "id": "bettertls::nameconstraints::tc7324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201496,6 +208966,7 @@ "id": "bettertls::nameconstraints::tc7325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201523,6 +208994,7 @@ "id": "bettertls::nameconstraints::tc7326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201550,6 +209022,7 @@ "id": "bettertls::nameconstraints::tc7327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201577,6 +209050,7 @@ "id": "bettertls::nameconstraints::tc7328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201604,6 +209078,7 @@ "id": "bettertls::nameconstraints::tc7329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201631,6 +209106,7 @@ "id": "bettertls::nameconstraints::tc7330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201658,6 +209134,7 @@ "id": "bettertls::nameconstraints::tc7331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201685,6 +209162,7 @@ "id": "bettertls::nameconstraints::tc7332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201712,6 +209190,7 @@ "id": "bettertls::nameconstraints::tc7333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201739,6 +209218,7 @@ "id": "bettertls::nameconstraints::tc7334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201766,6 +209246,7 @@ "id": "bettertls::nameconstraints::tc7335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201793,6 +209274,7 @@ "id": "bettertls::nameconstraints::tc7336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201820,6 +209302,7 @@ "id": "bettertls::nameconstraints::tc7337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201847,6 +209330,7 @@ "id": "bettertls::nameconstraints::tc7338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201874,6 +209358,7 @@ "id": "bettertls::nameconstraints::tc7339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201901,6 +209386,7 @@ "id": "bettertls::nameconstraints::tc7340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201928,6 +209414,7 @@ "id": "bettertls::nameconstraints::tc7341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201955,6 +209442,7 @@ "id": "bettertls::nameconstraints::tc7342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -201982,6 +209470,7 @@ "id": "bettertls::nameconstraints::tc7343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202009,6 +209498,7 @@ "id": "bettertls::nameconstraints::tc7344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202036,6 +209526,7 @@ "id": "bettertls::nameconstraints::tc7345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202063,6 +209554,7 @@ "id": "bettertls::nameconstraints::tc7346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202090,6 +209582,7 @@ "id": "bettertls::nameconstraints::tc7347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202117,6 +209610,7 @@ "id": "bettertls::nameconstraints::tc7348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202144,6 +209638,7 @@ "id": "bettertls::nameconstraints::tc7349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202171,6 +209666,7 @@ "id": "bettertls::nameconstraints::tc7350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202198,6 +209694,7 @@ "id": "bettertls::nameconstraints::tc7351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202225,6 +209722,7 @@ "id": "bettertls::nameconstraints::tc7352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202252,6 +209750,7 @@ "id": "bettertls::nameconstraints::tc7353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202279,6 +209778,7 @@ "id": "bettertls::nameconstraints::tc7354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202306,6 +209806,7 @@ "id": "bettertls::nameconstraints::tc7355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202333,6 +209834,7 @@ "id": "bettertls::nameconstraints::tc7356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202360,6 +209862,7 @@ "id": "bettertls::nameconstraints::tc7357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202387,6 +209890,7 @@ "id": "bettertls::nameconstraints::tc7358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202414,6 +209918,7 @@ "id": "bettertls::nameconstraints::tc7359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202441,6 +209946,7 @@ "id": "bettertls::nameconstraints::tc7360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202468,6 +209974,7 @@ "id": "bettertls::nameconstraints::tc7361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202495,6 +210002,7 @@ "id": "bettertls::nameconstraints::tc7362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202522,6 +210030,7 @@ "id": "bettertls::nameconstraints::tc7363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202549,6 +210058,7 @@ "id": "bettertls::nameconstraints::tc7364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202576,6 +210086,7 @@ "id": "bettertls::nameconstraints::tc7365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202603,6 +210114,7 @@ "id": "bettertls::nameconstraints::tc7366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202630,6 +210142,7 @@ "id": "bettertls::nameconstraints::tc7367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202657,6 +210170,7 @@ "id": "bettertls::nameconstraints::tc7368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202684,6 +210198,7 @@ "id": "bettertls::nameconstraints::tc7369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202711,6 +210226,7 @@ "id": "bettertls::nameconstraints::tc7370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202738,6 +210254,7 @@ "id": "bettertls::nameconstraints::tc7371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202765,6 +210282,7 @@ "id": "bettertls::nameconstraints::tc7372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202792,6 +210310,7 @@ "id": "bettertls::nameconstraints::tc7373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202819,6 +210338,7 @@ "id": "bettertls::nameconstraints::tc7374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202846,6 +210366,7 @@ "id": "bettertls::nameconstraints::tc7375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202873,6 +210394,7 @@ "id": "bettertls::nameconstraints::tc7376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202900,6 +210422,7 @@ "id": "bettertls::nameconstraints::tc7377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202927,6 +210450,7 @@ "id": "bettertls::nameconstraints::tc7378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202954,6 +210478,7 @@ "id": "bettertls::nameconstraints::tc7379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -202981,6 +210506,7 @@ "id": "bettertls::nameconstraints::tc7380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203008,6 +210534,7 @@ "id": "bettertls::nameconstraints::tc7381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203035,6 +210562,7 @@ "id": "bettertls::nameconstraints::tc7382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203062,6 +210590,7 @@ "id": "bettertls::nameconstraints::tc7383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203089,6 +210618,7 @@ "id": "bettertls::nameconstraints::tc7384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203116,6 +210646,7 @@ "id": "bettertls::nameconstraints::tc7385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203143,6 +210674,7 @@ "id": "bettertls::nameconstraints::tc7386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203170,6 +210702,7 @@ "id": "bettertls::nameconstraints::tc7387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203197,6 +210730,7 @@ "id": "bettertls::nameconstraints::tc7388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203224,6 +210758,7 @@ "id": "bettertls::nameconstraints::tc7389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203251,6 +210786,7 @@ "id": "bettertls::nameconstraints::tc7390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203278,6 +210814,7 @@ "id": "bettertls::nameconstraints::tc7391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203305,6 +210842,7 @@ "id": "bettertls::nameconstraints::tc7392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203332,6 +210870,7 @@ "id": "bettertls::nameconstraints::tc7393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203359,6 +210898,7 @@ "id": "bettertls::nameconstraints::tc7394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203386,6 +210926,7 @@ "id": "bettertls::nameconstraints::tc7395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203413,6 +210954,7 @@ "id": "bettertls::nameconstraints::tc7396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203440,6 +210982,7 @@ "id": "bettertls::nameconstraints::tc7397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203467,6 +211010,7 @@ "id": "bettertls::nameconstraints::tc7398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203494,6 +211038,7 @@ "id": "bettertls::nameconstraints::tc7399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203521,6 +211066,7 @@ "id": "bettertls::nameconstraints::tc7400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203548,6 +211094,7 @@ "id": "bettertls::nameconstraints::tc7401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203575,6 +211122,7 @@ "id": "bettertls::nameconstraints::tc7402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203602,6 +211150,7 @@ "id": "bettertls::nameconstraints::tc7403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203629,6 +211178,7 @@ "id": "bettertls::nameconstraints::tc7404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203656,6 +211206,7 @@ "id": "bettertls::nameconstraints::tc7405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203683,6 +211234,7 @@ "id": "bettertls::nameconstraints::tc7406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203710,6 +211262,7 @@ "id": "bettertls::nameconstraints::tc7407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203737,6 +211290,7 @@ "id": "bettertls::nameconstraints::tc7408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203764,6 +211318,7 @@ "id": "bettertls::nameconstraints::tc7409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203791,6 +211346,7 @@ "id": "bettertls::nameconstraints::tc7410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203818,6 +211374,7 @@ "id": "bettertls::nameconstraints::tc7411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203845,6 +211402,7 @@ "id": "bettertls::nameconstraints::tc7412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203872,6 +211430,7 @@ "id": "bettertls::nameconstraints::tc7413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203899,6 +211458,7 @@ "id": "bettertls::nameconstraints::tc7414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203926,6 +211486,7 @@ "id": "bettertls::nameconstraints::tc7415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203953,6 +211514,7 @@ "id": "bettertls::nameconstraints::tc7416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -203980,6 +211542,7 @@ "id": "bettertls::nameconstraints::tc7417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204007,6 +211570,7 @@ "id": "bettertls::nameconstraints::tc7418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204034,6 +211598,7 @@ "id": "bettertls::nameconstraints::tc7419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204061,6 +211626,7 @@ "id": "bettertls::nameconstraints::tc7420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204088,6 +211654,7 @@ "id": "bettertls::nameconstraints::tc7421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204115,6 +211682,7 @@ "id": "bettertls::nameconstraints::tc7422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204142,6 +211710,7 @@ "id": "bettertls::nameconstraints::tc7423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204169,6 +211738,7 @@ "id": "bettertls::nameconstraints::tc7424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204196,6 +211766,7 @@ "id": "bettertls::nameconstraints::tc7425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204223,6 +211794,7 @@ "id": "bettertls::nameconstraints::tc7426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204250,6 +211822,7 @@ "id": "bettertls::nameconstraints::tc7427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204277,6 +211850,7 @@ "id": "bettertls::nameconstraints::tc7428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204304,6 +211878,7 @@ "id": "bettertls::nameconstraints::tc7429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204331,6 +211906,7 @@ "id": "bettertls::nameconstraints::tc7430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204358,6 +211934,7 @@ "id": "bettertls::nameconstraints::tc7431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204385,6 +211962,7 @@ "id": "bettertls::nameconstraints::tc7432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204412,6 +211990,7 @@ "id": "bettertls::nameconstraints::tc7433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204439,6 +212018,7 @@ "id": "bettertls::nameconstraints::tc7434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204466,6 +212046,7 @@ "id": "bettertls::nameconstraints::tc7435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204493,6 +212074,7 @@ "id": "bettertls::nameconstraints::tc7436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204520,6 +212102,7 @@ "id": "bettertls::nameconstraints::tc7437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204547,6 +212130,7 @@ "id": "bettertls::nameconstraints::tc7438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204574,6 +212158,7 @@ "id": "bettertls::nameconstraints::tc7439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204601,6 +212186,7 @@ "id": "bettertls::nameconstraints::tc7440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204628,6 +212214,7 @@ "id": "bettertls::nameconstraints::tc7441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204655,6 +212242,7 @@ "id": "bettertls::nameconstraints::tc7442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204682,6 +212270,7 @@ "id": "bettertls::nameconstraints::tc7443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204709,6 +212298,7 @@ "id": "bettertls::nameconstraints::tc7444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204736,6 +212326,7 @@ "id": "bettertls::nameconstraints::tc7445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204763,6 +212354,7 @@ "id": "bettertls::nameconstraints::tc7446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204790,6 +212382,7 @@ "id": "bettertls::nameconstraints::tc7447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204817,6 +212410,7 @@ "id": "bettertls::nameconstraints::tc7448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204844,6 +212438,7 @@ "id": "bettertls::nameconstraints::tc7449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204871,6 +212466,7 @@ "id": "bettertls::nameconstraints::tc7450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204898,6 +212494,7 @@ "id": "bettertls::nameconstraints::tc7451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204925,6 +212522,7 @@ "id": "bettertls::nameconstraints::tc7452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204952,6 +212550,7 @@ "id": "bettertls::nameconstraints::tc7453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -204979,6 +212578,7 @@ "id": "bettertls::nameconstraints::tc7454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205006,6 +212606,7 @@ "id": "bettertls::nameconstraints::tc7455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205033,6 +212634,7 @@ "id": "bettertls::nameconstraints::tc7456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205060,6 +212662,7 @@ "id": "bettertls::nameconstraints::tc7457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205087,6 +212690,7 @@ "id": "bettertls::nameconstraints::tc7458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205114,6 +212718,7 @@ "id": "bettertls::nameconstraints::tc7459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205141,6 +212746,7 @@ "id": "bettertls::nameconstraints::tc7460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205168,6 +212774,7 @@ "id": "bettertls::nameconstraints::tc7461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205195,6 +212802,7 @@ "id": "bettertls::nameconstraints::tc7462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205222,6 +212830,7 @@ "id": "bettertls::nameconstraints::tc7463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205249,6 +212858,7 @@ "id": "bettertls::nameconstraints::tc7464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205276,6 +212886,7 @@ "id": "bettertls::nameconstraints::tc7465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205303,6 +212914,7 @@ "id": "bettertls::nameconstraints::tc7466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205330,6 +212942,7 @@ "id": "bettertls::nameconstraints::tc7467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205357,6 +212970,7 @@ "id": "bettertls::nameconstraints::tc7468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205384,6 +212998,7 @@ "id": "bettertls::nameconstraints::tc7469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205411,6 +213026,7 @@ "id": "bettertls::nameconstraints::tc7470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205438,6 +213054,7 @@ "id": "bettertls::nameconstraints::tc7471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205465,6 +213082,7 @@ "id": "bettertls::nameconstraints::tc7472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205492,6 +213110,7 @@ "id": "bettertls::nameconstraints::tc7473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205519,6 +213138,7 @@ "id": "bettertls::nameconstraints::tc7474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205546,6 +213166,7 @@ "id": "bettertls::nameconstraints::tc7475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205573,6 +213194,7 @@ "id": "bettertls::nameconstraints::tc7476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205600,6 +213222,7 @@ "id": "bettertls::nameconstraints::tc7477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205627,6 +213250,7 @@ "id": "bettertls::nameconstraints::tc7478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205654,6 +213278,7 @@ "id": "bettertls::nameconstraints::tc7479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205681,6 +213306,7 @@ "id": "bettertls::nameconstraints::tc7480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205708,6 +213334,7 @@ "id": "bettertls::nameconstraints::tc7481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205735,6 +213362,7 @@ "id": "bettertls::nameconstraints::tc7482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205762,6 +213390,7 @@ "id": "bettertls::nameconstraints::tc7483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205789,6 +213418,7 @@ "id": "bettertls::nameconstraints::tc7484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205816,6 +213446,7 @@ "id": "bettertls::nameconstraints::tc7485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205843,6 +213474,7 @@ "id": "bettertls::nameconstraints::tc7486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205870,6 +213502,7 @@ "id": "bettertls::nameconstraints::tc7487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205897,6 +213530,7 @@ "id": "bettertls::nameconstraints::tc7488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205924,6 +213558,7 @@ "id": "bettertls::nameconstraints::tc7489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205951,6 +213586,7 @@ "id": "bettertls::nameconstraints::tc7490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -205978,6 +213614,7 @@ "id": "bettertls::nameconstraints::tc7491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206005,6 +213642,7 @@ "id": "bettertls::nameconstraints::tc7492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206032,6 +213670,7 @@ "id": "bettertls::nameconstraints::tc7493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206059,6 +213698,7 @@ "id": "bettertls::nameconstraints::tc7494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206086,6 +213726,7 @@ "id": "bettertls::nameconstraints::tc7495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206113,6 +213754,7 @@ "id": "bettertls::nameconstraints::tc7496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206140,6 +213782,7 @@ "id": "bettertls::nameconstraints::tc7497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206167,6 +213810,7 @@ "id": "bettertls::nameconstraints::tc7498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206194,6 +213838,7 @@ "id": "bettertls::nameconstraints::tc7499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206221,6 +213866,7 @@ "id": "bettertls::nameconstraints::tc7500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206248,6 +213894,7 @@ "id": "bettertls::nameconstraints::tc7501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206275,6 +213922,7 @@ "id": "bettertls::nameconstraints::tc7502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206302,6 +213950,7 @@ "id": "bettertls::nameconstraints::tc7503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206329,6 +213978,7 @@ "id": "bettertls::nameconstraints::tc7504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206356,6 +214006,7 @@ "id": "bettertls::nameconstraints::tc7505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206383,6 +214034,7 @@ "id": "bettertls::nameconstraints::tc7506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206410,6 +214062,7 @@ "id": "bettertls::nameconstraints::tc7507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206437,6 +214090,7 @@ "id": "bettertls::nameconstraints::tc7508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206464,6 +214118,7 @@ "id": "bettertls::nameconstraints::tc7509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206491,6 +214146,7 @@ "id": "bettertls::nameconstraints::tc7510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206518,6 +214174,7 @@ "id": "bettertls::nameconstraints::tc7511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206545,6 +214202,7 @@ "id": "bettertls::nameconstraints::tc7512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206572,6 +214230,7 @@ "id": "bettertls::nameconstraints::tc7513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206599,6 +214258,7 @@ "id": "bettertls::nameconstraints::tc7514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206626,6 +214286,7 @@ "id": "bettertls::nameconstraints::tc7515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206653,6 +214314,7 @@ "id": "bettertls::nameconstraints::tc7516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206680,6 +214342,7 @@ "id": "bettertls::nameconstraints::tc7517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206707,6 +214370,7 @@ "id": "bettertls::nameconstraints::tc7518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206734,6 +214398,7 @@ "id": "bettertls::nameconstraints::tc7519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206761,6 +214426,7 @@ "id": "bettertls::nameconstraints::tc7520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206788,6 +214454,7 @@ "id": "bettertls::nameconstraints::tc7521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206815,6 +214482,7 @@ "id": "bettertls::nameconstraints::tc7522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206842,6 +214510,7 @@ "id": "bettertls::nameconstraints::tc7523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206869,6 +214538,7 @@ "id": "bettertls::nameconstraints::tc7524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206896,6 +214566,7 @@ "id": "bettertls::nameconstraints::tc7525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206923,6 +214594,7 @@ "id": "bettertls::nameconstraints::tc7526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206950,6 +214622,7 @@ "id": "bettertls::nameconstraints::tc7527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -206977,6 +214650,7 @@ "id": "bettertls::nameconstraints::tc7528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207004,6 +214678,7 @@ "id": "bettertls::nameconstraints::tc7529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207031,6 +214706,7 @@ "id": "bettertls::nameconstraints::tc7530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207058,6 +214734,7 @@ "id": "bettertls::nameconstraints::tc7531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207085,6 +214762,7 @@ "id": "bettertls::nameconstraints::tc7532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207112,6 +214790,7 @@ "id": "bettertls::nameconstraints::tc7533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207139,6 +214818,7 @@ "id": "bettertls::nameconstraints::tc7534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207166,6 +214846,7 @@ "id": "bettertls::nameconstraints::tc7535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207193,6 +214874,7 @@ "id": "bettertls::nameconstraints::tc7536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207220,6 +214902,7 @@ "id": "bettertls::nameconstraints::tc7537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207247,6 +214930,7 @@ "id": "bettertls::nameconstraints::tc7538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207274,6 +214958,7 @@ "id": "bettertls::nameconstraints::tc7539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207301,6 +214986,7 @@ "id": "bettertls::nameconstraints::tc7540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207328,6 +215014,7 @@ "id": "bettertls::nameconstraints::tc7541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207355,6 +215042,7 @@ "id": "bettertls::nameconstraints::tc7542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207382,6 +215070,7 @@ "id": "bettertls::nameconstraints::tc7543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207409,6 +215098,7 @@ "id": "bettertls::nameconstraints::tc7544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207436,6 +215126,7 @@ "id": "bettertls::nameconstraints::tc7545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207463,6 +215154,7 @@ "id": "bettertls::nameconstraints::tc7546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207490,6 +215182,7 @@ "id": "bettertls::nameconstraints::tc7547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207517,6 +215210,7 @@ "id": "bettertls::nameconstraints::tc7548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207544,6 +215238,7 @@ "id": "bettertls::nameconstraints::tc7549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207571,6 +215266,7 @@ "id": "bettertls::nameconstraints::tc7550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207598,6 +215294,7 @@ "id": "bettertls::nameconstraints::tc7551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207625,6 +215322,7 @@ "id": "bettertls::nameconstraints::tc7552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207652,6 +215350,7 @@ "id": "bettertls::nameconstraints::tc7553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207679,6 +215378,7 @@ "id": "bettertls::nameconstraints::tc7554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207706,6 +215406,7 @@ "id": "bettertls::nameconstraints::tc7555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207733,6 +215434,7 @@ "id": "bettertls::nameconstraints::tc7556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207760,6 +215462,7 @@ "id": "bettertls::nameconstraints::tc7557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207787,6 +215490,7 @@ "id": "bettertls::nameconstraints::tc7558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207814,6 +215518,7 @@ "id": "bettertls::nameconstraints::tc7559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207841,6 +215546,7 @@ "id": "bettertls::nameconstraints::tc7560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207868,6 +215574,7 @@ "id": "bettertls::nameconstraints::tc7561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207895,6 +215602,7 @@ "id": "bettertls::nameconstraints::tc7562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207922,6 +215630,7 @@ "id": "bettertls::nameconstraints::tc7563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207949,6 +215658,7 @@ "id": "bettertls::nameconstraints::tc7564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -207976,6 +215686,7 @@ "id": "bettertls::nameconstraints::tc7565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208003,6 +215714,7 @@ "id": "bettertls::nameconstraints::tc7566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208030,6 +215742,7 @@ "id": "bettertls::nameconstraints::tc7567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208057,6 +215770,7 @@ "id": "bettertls::nameconstraints::tc7568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208084,6 +215798,7 @@ "id": "bettertls::nameconstraints::tc7569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208111,6 +215826,7 @@ "id": "bettertls::nameconstraints::tc7570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208138,6 +215854,7 @@ "id": "bettertls::nameconstraints::tc7571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208165,6 +215882,7 @@ "id": "bettertls::nameconstraints::tc7572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208192,6 +215910,7 @@ "id": "bettertls::nameconstraints::tc7573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208219,6 +215938,7 @@ "id": "bettertls::nameconstraints::tc7574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208246,6 +215966,7 @@ "id": "bettertls::nameconstraints::tc7575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208273,6 +215994,7 @@ "id": "bettertls::nameconstraints::tc7576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208300,6 +216022,7 @@ "id": "bettertls::nameconstraints::tc7577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208327,6 +216050,7 @@ "id": "bettertls::nameconstraints::tc7578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208354,6 +216078,7 @@ "id": "bettertls::nameconstraints::tc7579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208381,6 +216106,7 @@ "id": "bettertls::nameconstraints::tc7580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208408,6 +216134,7 @@ "id": "bettertls::nameconstraints::tc7581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208435,6 +216162,7 @@ "id": "bettertls::nameconstraints::tc7582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208462,6 +216190,7 @@ "id": "bettertls::nameconstraints::tc7583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208489,6 +216218,7 @@ "id": "bettertls::nameconstraints::tc7584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208516,6 +216246,7 @@ "id": "bettertls::nameconstraints::tc7585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208543,6 +216274,7 @@ "id": "bettertls::nameconstraints::tc7586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208570,6 +216302,7 @@ "id": "bettertls::nameconstraints::tc7587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208597,6 +216330,7 @@ "id": "bettertls::nameconstraints::tc7588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208624,6 +216358,7 @@ "id": "bettertls::nameconstraints::tc7589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208651,6 +216386,7 @@ "id": "bettertls::nameconstraints::tc7590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208678,6 +216414,7 @@ "id": "bettertls::nameconstraints::tc7591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208705,6 +216442,7 @@ "id": "bettertls::nameconstraints::tc7592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208732,6 +216470,7 @@ "id": "bettertls::nameconstraints::tc7593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208759,6 +216498,7 @@ "id": "bettertls::nameconstraints::tc7594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208786,6 +216526,7 @@ "id": "bettertls::nameconstraints::tc7595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208813,6 +216554,7 @@ "id": "bettertls::nameconstraints::tc7596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208840,6 +216582,7 @@ "id": "bettertls::nameconstraints::tc7597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208867,6 +216610,7 @@ "id": "bettertls::nameconstraints::tc7598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208894,6 +216638,7 @@ "id": "bettertls::nameconstraints::tc7599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208921,6 +216666,7 @@ "id": "bettertls::nameconstraints::tc7600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208948,6 +216694,7 @@ "id": "bettertls::nameconstraints::tc7601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -208975,6 +216722,7 @@ "id": "bettertls::nameconstraints::tc7602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209002,6 +216750,7 @@ "id": "bettertls::nameconstraints::tc7603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209029,6 +216778,7 @@ "id": "bettertls::nameconstraints::tc7604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209056,6 +216806,7 @@ "id": "bettertls::nameconstraints::tc7605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209083,6 +216834,7 @@ "id": "bettertls::nameconstraints::tc7606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209110,6 +216862,7 @@ "id": "bettertls::nameconstraints::tc7607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209137,6 +216890,7 @@ "id": "bettertls::nameconstraints::tc7608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209164,6 +216918,7 @@ "id": "bettertls::nameconstraints::tc7609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209191,6 +216946,7 @@ "id": "bettertls::nameconstraints::tc7610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209218,6 +216974,7 @@ "id": "bettertls::nameconstraints::tc7611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209245,6 +217002,7 @@ "id": "bettertls::nameconstraints::tc7612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209272,6 +217030,7 @@ "id": "bettertls::nameconstraints::tc7613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209299,6 +217058,7 @@ "id": "bettertls::nameconstraints::tc7614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209326,6 +217086,7 @@ "id": "bettertls::nameconstraints::tc7615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209353,6 +217114,7 @@ "id": "bettertls::nameconstraints::tc7616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209380,6 +217142,7 @@ "id": "bettertls::nameconstraints::tc7617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209407,6 +217170,7 @@ "id": "bettertls::nameconstraints::tc7618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209434,6 +217198,7 @@ "id": "bettertls::nameconstraints::tc7619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209461,6 +217226,7 @@ "id": "bettertls::nameconstraints::tc7620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209488,6 +217254,7 @@ "id": "bettertls::nameconstraints::tc7621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209515,6 +217282,7 @@ "id": "bettertls::nameconstraints::tc7622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209542,6 +217310,7 @@ "id": "bettertls::nameconstraints::tc7623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209569,6 +217338,7 @@ "id": "bettertls::nameconstraints::tc7624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209596,6 +217366,7 @@ "id": "bettertls::nameconstraints::tc7625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209623,6 +217394,7 @@ "id": "bettertls::nameconstraints::tc7626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209650,6 +217422,7 @@ "id": "bettertls::nameconstraints::tc7627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209677,6 +217450,7 @@ "id": "bettertls::nameconstraints::tc7628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209704,6 +217478,7 @@ "id": "bettertls::nameconstraints::tc7629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209731,6 +217506,7 @@ "id": "bettertls::nameconstraints::tc7630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209758,6 +217534,7 @@ "id": "bettertls::nameconstraints::tc7631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209785,6 +217562,7 @@ "id": "bettertls::nameconstraints::tc7632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209812,6 +217590,7 @@ "id": "bettertls::nameconstraints::tc7633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209839,6 +217618,7 @@ "id": "bettertls::nameconstraints::tc7634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209866,6 +217646,7 @@ "id": "bettertls::nameconstraints::tc7635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209893,6 +217674,7 @@ "id": "bettertls::nameconstraints::tc7636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209920,6 +217702,7 @@ "id": "bettertls::nameconstraints::tc7637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209947,6 +217730,7 @@ "id": "bettertls::nameconstraints::tc7638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -209974,6 +217758,7 @@ "id": "bettertls::nameconstraints::tc7639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210001,6 +217786,7 @@ "id": "bettertls::nameconstraints::tc7640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210028,6 +217814,7 @@ "id": "bettertls::nameconstraints::tc7641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210055,6 +217842,7 @@ "id": "bettertls::nameconstraints::tc7642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210082,6 +217870,7 @@ "id": "bettertls::nameconstraints::tc7643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210109,6 +217898,7 @@ "id": "bettertls::nameconstraints::tc7644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210136,6 +217926,7 @@ "id": "bettertls::nameconstraints::tc7645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210163,6 +217954,7 @@ "id": "bettertls::nameconstraints::tc7646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210190,6 +217982,7 @@ "id": "bettertls::nameconstraints::tc7647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210217,6 +218010,7 @@ "id": "bettertls::nameconstraints::tc7648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210244,6 +218038,7 @@ "id": "bettertls::nameconstraints::tc7649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210271,6 +218066,7 @@ "id": "bettertls::nameconstraints::tc7650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210298,6 +218094,7 @@ "id": "bettertls::nameconstraints::tc7651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210325,6 +218122,7 @@ "id": "bettertls::nameconstraints::tc7652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210352,6 +218150,7 @@ "id": "bettertls::nameconstraints::tc7653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210379,6 +218178,7 @@ "id": "bettertls::nameconstraints::tc7654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210406,6 +218206,7 @@ "id": "bettertls::nameconstraints::tc7655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210433,6 +218234,7 @@ "id": "bettertls::nameconstraints::tc7656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210460,6 +218262,7 @@ "id": "bettertls::nameconstraints::tc7657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210487,6 +218290,7 @@ "id": "bettertls::nameconstraints::tc7658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210514,6 +218318,7 @@ "id": "bettertls::nameconstraints::tc7659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210541,6 +218346,7 @@ "id": "bettertls::nameconstraints::tc7660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210568,6 +218374,7 @@ "id": "bettertls::nameconstraints::tc7661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210595,6 +218402,7 @@ "id": "bettertls::nameconstraints::tc7662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210622,6 +218430,7 @@ "id": "bettertls::nameconstraints::tc7663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210649,6 +218458,7 @@ "id": "bettertls::nameconstraints::tc7664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210676,6 +218486,7 @@ "id": "bettertls::nameconstraints::tc7665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210703,6 +218514,7 @@ "id": "bettertls::nameconstraints::tc7666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210730,6 +218542,7 @@ "id": "bettertls::nameconstraints::tc7667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210757,6 +218570,7 @@ "id": "bettertls::nameconstraints::tc7668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210784,6 +218598,7 @@ "id": "bettertls::nameconstraints::tc7669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210811,6 +218626,7 @@ "id": "bettertls::nameconstraints::tc7670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210838,6 +218654,7 @@ "id": "bettertls::nameconstraints::tc7671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210865,6 +218682,7 @@ "id": "bettertls::nameconstraints::tc7672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210892,6 +218710,7 @@ "id": "bettertls::nameconstraints::tc7673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210919,6 +218738,7 @@ "id": "bettertls::nameconstraints::tc7674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210946,6 +218766,7 @@ "id": "bettertls::nameconstraints::tc7675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -210973,6 +218794,7 @@ "id": "bettertls::nameconstraints::tc7676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211000,6 +218822,7 @@ "id": "bettertls::nameconstraints::tc7677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211027,6 +218850,7 @@ "id": "bettertls::nameconstraints::tc7678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211054,6 +218878,7 @@ "id": "bettertls::nameconstraints::tc7679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211081,6 +218906,7 @@ "id": "bettertls::nameconstraints::tc7680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211108,6 +218934,7 @@ "id": "bettertls::nameconstraints::tc7681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211135,6 +218962,7 @@ "id": "bettertls::nameconstraints::tc7682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211162,6 +218990,7 @@ "id": "bettertls::nameconstraints::tc7683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211189,6 +219018,7 @@ "id": "bettertls::nameconstraints::tc7684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211216,6 +219046,7 @@ "id": "bettertls::nameconstraints::tc7685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211243,6 +219074,7 @@ "id": "bettertls::nameconstraints::tc7686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211270,6 +219102,7 @@ "id": "bettertls::nameconstraints::tc7687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211297,6 +219130,7 @@ "id": "bettertls::nameconstraints::tc7688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211324,6 +219158,7 @@ "id": "bettertls::nameconstraints::tc7689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211351,6 +219186,7 @@ "id": "bettertls::nameconstraints::tc7690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211378,6 +219214,7 @@ "id": "bettertls::nameconstraints::tc7691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211405,6 +219242,7 @@ "id": "bettertls::nameconstraints::tc7692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211432,6 +219270,7 @@ "id": "bettertls::nameconstraints::tc7693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211459,6 +219298,7 @@ "id": "bettertls::nameconstraints::tc7694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211486,6 +219326,7 @@ "id": "bettertls::nameconstraints::tc7695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211513,6 +219354,7 @@ "id": "bettertls::nameconstraints::tc7696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211540,6 +219382,7 @@ "id": "bettertls::nameconstraints::tc7697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211567,6 +219410,7 @@ "id": "bettertls::nameconstraints::tc7698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211594,6 +219438,7 @@ "id": "bettertls::nameconstraints::tc7699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211621,6 +219466,7 @@ "id": "bettertls::nameconstraints::tc7700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211648,6 +219494,7 @@ "id": "bettertls::nameconstraints::tc7701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211675,6 +219522,7 @@ "id": "bettertls::nameconstraints::tc7702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211702,6 +219550,7 @@ "id": "bettertls::nameconstraints::tc7703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211729,6 +219578,7 @@ "id": "bettertls::nameconstraints::tc7704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211756,6 +219606,7 @@ "id": "bettertls::nameconstraints::tc7705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211783,6 +219634,7 @@ "id": "bettertls::nameconstraints::tc7706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211810,6 +219662,7 @@ "id": "bettertls::nameconstraints::tc7707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211837,6 +219690,7 @@ "id": "bettertls::nameconstraints::tc7708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211864,6 +219718,7 @@ "id": "bettertls::nameconstraints::tc7709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211891,6 +219746,7 @@ "id": "bettertls::nameconstraints::tc7710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211918,6 +219774,7 @@ "id": "bettertls::nameconstraints::tc7711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211945,6 +219802,7 @@ "id": "bettertls::nameconstraints::tc7712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211972,6 +219830,7 @@ "id": "bettertls::nameconstraints::tc7713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -211999,6 +219858,7 @@ "id": "bettertls::nameconstraints::tc7714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212026,6 +219886,7 @@ "id": "bettertls::nameconstraints::tc7715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212053,6 +219914,7 @@ "id": "bettertls::nameconstraints::tc7716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212080,6 +219942,7 @@ "id": "bettertls::nameconstraints::tc7717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212107,6 +219970,7 @@ "id": "bettertls::nameconstraints::tc7718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212134,6 +219998,7 @@ "id": "bettertls::nameconstraints::tc7719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212161,6 +220026,7 @@ "id": "bettertls::nameconstraints::tc7720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212188,6 +220054,7 @@ "id": "bettertls::nameconstraints::tc7721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212215,6 +220082,7 @@ "id": "bettertls::nameconstraints::tc7722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212242,6 +220110,7 @@ "id": "bettertls::nameconstraints::tc7723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212269,6 +220138,7 @@ "id": "bettertls::nameconstraints::tc7724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212296,6 +220166,7 @@ "id": "bettertls::nameconstraints::tc7725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212323,6 +220194,7 @@ "id": "bettertls::nameconstraints::tc7726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212350,6 +220222,7 @@ "id": "bettertls::nameconstraints::tc7727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212377,6 +220250,7 @@ "id": "bettertls::nameconstraints::tc7728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212404,6 +220278,7 @@ "id": "bettertls::nameconstraints::tc7729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212431,6 +220306,7 @@ "id": "bettertls::nameconstraints::tc7730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212458,6 +220334,7 @@ "id": "bettertls::nameconstraints::tc7731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212485,6 +220362,7 @@ "id": "bettertls::nameconstraints::tc7732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212512,6 +220390,7 @@ "id": "bettertls::nameconstraints::tc7733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212539,6 +220418,7 @@ "id": "bettertls::nameconstraints::tc7734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212566,6 +220446,7 @@ "id": "bettertls::nameconstraints::tc7735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212593,6 +220474,7 @@ "id": "bettertls::nameconstraints::tc7736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212620,6 +220502,7 @@ "id": "bettertls::nameconstraints::tc7737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212647,6 +220530,7 @@ "id": "bettertls::nameconstraints::tc7738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212674,6 +220558,7 @@ "id": "bettertls::nameconstraints::tc7739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212701,6 +220586,7 @@ "id": "bettertls::nameconstraints::tc7740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212728,6 +220614,7 @@ "id": "bettertls::nameconstraints::tc7741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212755,6 +220642,7 @@ "id": "bettertls::nameconstraints::tc7742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212782,6 +220670,7 @@ "id": "bettertls::nameconstraints::tc7743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212809,6 +220698,7 @@ "id": "bettertls::nameconstraints::tc7744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212836,6 +220726,7 @@ "id": "bettertls::nameconstraints::tc7745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212863,6 +220754,7 @@ "id": "bettertls::nameconstraints::tc7746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212890,6 +220782,7 @@ "id": "bettertls::nameconstraints::tc7747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212917,6 +220810,7 @@ "id": "bettertls::nameconstraints::tc7748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212944,6 +220838,7 @@ "id": "bettertls::nameconstraints::tc7749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212971,6 +220866,7 @@ "id": "bettertls::nameconstraints::tc7750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -212998,6 +220894,7 @@ "id": "bettertls::nameconstraints::tc7751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213025,6 +220922,7 @@ "id": "bettertls::nameconstraints::tc7752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213052,6 +220950,7 @@ "id": "bettertls::nameconstraints::tc7753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213079,6 +220978,7 @@ "id": "bettertls::nameconstraints::tc7754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213106,6 +221006,7 @@ "id": "bettertls::nameconstraints::tc7755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213133,6 +221034,7 @@ "id": "bettertls::nameconstraints::tc7756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213160,6 +221062,7 @@ "id": "bettertls::nameconstraints::tc7757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213187,6 +221090,7 @@ "id": "bettertls::nameconstraints::tc7758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213214,6 +221118,7 @@ "id": "bettertls::nameconstraints::tc7759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213241,6 +221146,7 @@ "id": "bettertls::nameconstraints::tc7760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213268,6 +221174,7 @@ "id": "bettertls::nameconstraints::tc7761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213295,6 +221202,7 @@ "id": "bettertls::nameconstraints::tc7762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213322,6 +221230,7 @@ "id": "bettertls::nameconstraints::tc7763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213349,6 +221258,7 @@ "id": "bettertls::nameconstraints::tc7764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213376,6 +221286,7 @@ "id": "bettertls::nameconstraints::tc7765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213403,6 +221314,7 @@ "id": "bettertls::nameconstraints::tc7766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213430,6 +221342,7 @@ "id": "bettertls::nameconstraints::tc7767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213457,6 +221370,7 @@ "id": "bettertls::nameconstraints::tc7768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213484,6 +221398,7 @@ "id": "bettertls::nameconstraints::tc7769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213511,6 +221426,7 @@ "id": "bettertls::nameconstraints::tc7770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213538,6 +221454,7 @@ "id": "bettertls::nameconstraints::tc7771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213565,6 +221482,7 @@ "id": "bettertls::nameconstraints::tc7772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213592,6 +221510,7 @@ "id": "bettertls::nameconstraints::tc7773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213619,6 +221538,7 @@ "id": "bettertls::nameconstraints::tc7774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213646,6 +221566,7 @@ "id": "bettertls::nameconstraints::tc7775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213673,6 +221594,7 @@ "id": "bettertls::nameconstraints::tc7776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213700,6 +221622,7 @@ "id": "bettertls::nameconstraints::tc7777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213727,6 +221650,7 @@ "id": "bettertls::nameconstraints::tc7778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213754,6 +221678,7 @@ "id": "bettertls::nameconstraints::tc7779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213781,6 +221706,7 @@ "id": "bettertls::nameconstraints::tc7780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213808,6 +221734,7 @@ "id": "bettertls::nameconstraints::tc7781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213835,6 +221762,7 @@ "id": "bettertls::nameconstraints::tc7782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213862,6 +221790,7 @@ "id": "bettertls::nameconstraints::tc7783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213889,6 +221818,7 @@ "id": "bettertls::nameconstraints::tc7784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213916,6 +221846,7 @@ "id": "bettertls::nameconstraints::tc7785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213943,6 +221874,7 @@ "id": "bettertls::nameconstraints::tc7786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213970,6 +221902,7 @@ "id": "bettertls::nameconstraints::tc7787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -213997,6 +221930,7 @@ "id": "bettertls::nameconstraints::tc7788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214024,6 +221958,7 @@ "id": "bettertls::nameconstraints::tc7789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214051,6 +221986,7 @@ "id": "bettertls::nameconstraints::tc7790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214078,6 +222014,7 @@ "id": "bettertls::nameconstraints::tc7791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214105,6 +222042,7 @@ "id": "bettertls::nameconstraints::tc7792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214132,6 +222070,7 @@ "id": "bettertls::nameconstraints::tc7793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214159,6 +222098,7 @@ "id": "bettertls::nameconstraints::tc7794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214186,6 +222126,7 @@ "id": "bettertls::nameconstraints::tc7795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214213,6 +222154,7 @@ "id": "bettertls::nameconstraints::tc7796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214240,6 +222182,7 @@ "id": "bettertls::nameconstraints::tc7797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214267,6 +222210,7 @@ "id": "bettertls::nameconstraints::tc7798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214294,6 +222238,7 @@ "id": "bettertls::nameconstraints::tc7799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214321,6 +222266,7 @@ "id": "bettertls::nameconstraints::tc7800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214348,6 +222294,7 @@ "id": "bettertls::nameconstraints::tc7801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214375,6 +222322,7 @@ "id": "bettertls::nameconstraints::tc7802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214402,6 +222350,7 @@ "id": "bettertls::nameconstraints::tc7803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214429,6 +222378,7 @@ "id": "bettertls::nameconstraints::tc7804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214456,6 +222406,7 @@ "id": "bettertls::nameconstraints::tc7805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214483,6 +222434,7 @@ "id": "bettertls::nameconstraints::tc7806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214510,6 +222462,7 @@ "id": "bettertls::nameconstraints::tc7807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214537,6 +222490,7 @@ "id": "bettertls::nameconstraints::tc7808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214564,6 +222518,7 @@ "id": "bettertls::nameconstraints::tc7809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214591,6 +222546,7 @@ "id": "bettertls::nameconstraints::tc7810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214618,6 +222574,7 @@ "id": "bettertls::nameconstraints::tc7811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214645,6 +222602,7 @@ "id": "bettertls::nameconstraints::tc7812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214672,6 +222630,7 @@ "id": "bettertls::nameconstraints::tc7813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214699,6 +222658,7 @@ "id": "bettertls::nameconstraints::tc7814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214726,6 +222686,7 @@ "id": "bettertls::nameconstraints::tc7815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214753,6 +222714,7 @@ "id": "bettertls::nameconstraints::tc7816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214780,6 +222742,7 @@ "id": "bettertls::nameconstraints::tc7817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214807,6 +222770,7 @@ "id": "bettertls::nameconstraints::tc7818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214834,6 +222798,7 @@ "id": "bettertls::nameconstraints::tc7819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214861,6 +222826,7 @@ "id": "bettertls::nameconstraints::tc7820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214888,6 +222854,7 @@ "id": "bettertls::nameconstraints::tc7821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214915,6 +222882,7 @@ "id": "bettertls::nameconstraints::tc7822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214942,6 +222910,7 @@ "id": "bettertls::nameconstraints::tc7823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214969,6 +222938,7 @@ "id": "bettertls::nameconstraints::tc7824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -214996,6 +222966,7 @@ "id": "bettertls::nameconstraints::tc7825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215023,6 +222994,7 @@ "id": "bettertls::nameconstraints::tc7826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215050,6 +223022,7 @@ "id": "bettertls::nameconstraints::tc7827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215077,6 +223050,7 @@ "id": "bettertls::nameconstraints::tc7828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215104,6 +223078,7 @@ "id": "bettertls::nameconstraints::tc7829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215131,6 +223106,7 @@ "id": "bettertls::nameconstraints::tc7830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215158,6 +223134,7 @@ "id": "bettertls::nameconstraints::tc7831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215185,6 +223162,7 @@ "id": "bettertls::nameconstraints::tc7832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215212,6 +223190,7 @@ "id": "bettertls::nameconstraints::tc7833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215239,6 +223218,7 @@ "id": "bettertls::nameconstraints::tc7834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215266,6 +223246,7 @@ "id": "bettertls::nameconstraints::tc7835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215293,6 +223274,7 @@ "id": "bettertls::nameconstraints::tc7836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215320,6 +223302,7 @@ "id": "bettertls::nameconstraints::tc7837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215347,6 +223330,7 @@ "id": "bettertls::nameconstraints::tc7838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215374,6 +223358,7 @@ "id": "bettertls::nameconstraints::tc7839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215401,6 +223386,7 @@ "id": "bettertls::nameconstraints::tc7840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215428,6 +223414,7 @@ "id": "bettertls::nameconstraints::tc7841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215455,6 +223442,7 @@ "id": "bettertls::nameconstraints::tc7842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215482,6 +223470,7 @@ "id": "bettertls::nameconstraints::tc7843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215509,6 +223498,7 @@ "id": "bettertls::nameconstraints::tc7844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215536,6 +223526,7 @@ "id": "bettertls::nameconstraints::tc7845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215563,6 +223554,7 @@ "id": "bettertls::nameconstraints::tc7846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215590,6 +223582,7 @@ "id": "bettertls::nameconstraints::tc7847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215617,6 +223610,7 @@ "id": "bettertls::nameconstraints::tc7848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215644,6 +223638,7 @@ "id": "bettertls::nameconstraints::tc7849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215671,6 +223666,7 @@ "id": "bettertls::nameconstraints::tc7850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215698,6 +223694,7 @@ "id": "bettertls::nameconstraints::tc7851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215725,6 +223722,7 @@ "id": "bettertls::nameconstraints::tc7852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215752,6 +223750,7 @@ "id": "bettertls::nameconstraints::tc7853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215779,6 +223778,7 @@ "id": "bettertls::nameconstraints::tc7854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215806,6 +223806,7 @@ "id": "bettertls::nameconstraints::tc7855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215833,6 +223834,7 @@ "id": "bettertls::nameconstraints::tc7856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215860,6 +223862,7 @@ "id": "bettertls::nameconstraints::tc7857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215887,6 +223890,7 @@ "id": "bettertls::nameconstraints::tc7858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215914,6 +223918,7 @@ "id": "bettertls::nameconstraints::tc7859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215941,6 +223946,7 @@ "id": "bettertls::nameconstraints::tc7860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215968,6 +223974,7 @@ "id": "bettertls::nameconstraints::tc7861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -215995,6 +224002,7 @@ "id": "bettertls::nameconstraints::tc7862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216022,6 +224030,7 @@ "id": "bettertls::nameconstraints::tc7863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216049,6 +224058,7 @@ "id": "bettertls::nameconstraints::tc7864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216076,6 +224086,7 @@ "id": "bettertls::nameconstraints::tc7865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216103,6 +224114,7 @@ "id": "bettertls::nameconstraints::tc7866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216130,6 +224142,7 @@ "id": "bettertls::nameconstraints::tc7867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216157,6 +224170,7 @@ "id": "bettertls::nameconstraints::tc7868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216184,6 +224198,7 @@ "id": "bettertls::nameconstraints::tc7869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216211,6 +224226,7 @@ "id": "bettertls::nameconstraints::tc7870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216238,6 +224254,7 @@ "id": "bettertls::nameconstraints::tc7871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216265,6 +224282,7 @@ "id": "bettertls::nameconstraints::tc7872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216292,6 +224310,7 @@ "id": "bettertls::nameconstraints::tc7873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216319,6 +224338,7 @@ "id": "bettertls::nameconstraints::tc7874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216346,6 +224366,7 @@ "id": "bettertls::nameconstraints::tc7875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216373,6 +224394,7 @@ "id": "bettertls::nameconstraints::tc7876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216400,6 +224422,7 @@ "id": "bettertls::nameconstraints::tc7877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216427,6 +224450,7 @@ "id": "bettertls::nameconstraints::tc7878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216454,6 +224478,7 @@ "id": "bettertls::nameconstraints::tc7879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216481,6 +224506,7 @@ "id": "bettertls::nameconstraints::tc7880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216508,6 +224534,7 @@ "id": "bettertls::nameconstraints::tc7881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216535,6 +224562,7 @@ "id": "bettertls::nameconstraints::tc7882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216562,6 +224590,7 @@ "id": "bettertls::nameconstraints::tc7883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216589,6 +224618,7 @@ "id": "bettertls::nameconstraints::tc7884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216616,6 +224646,7 @@ "id": "bettertls::nameconstraints::tc7885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216643,6 +224674,7 @@ "id": "bettertls::nameconstraints::tc7886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216670,6 +224702,7 @@ "id": "bettertls::nameconstraints::tc7887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216697,6 +224730,7 @@ "id": "bettertls::nameconstraints::tc7888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216724,6 +224758,7 @@ "id": "bettertls::nameconstraints::tc7889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216751,6 +224786,7 @@ "id": "bettertls::nameconstraints::tc7890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216778,6 +224814,7 @@ "id": "bettertls::nameconstraints::tc7891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216805,6 +224842,7 @@ "id": "bettertls::nameconstraints::tc7892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216832,6 +224870,7 @@ "id": "bettertls::nameconstraints::tc7893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216859,6 +224898,7 @@ "id": "bettertls::nameconstraints::tc7894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216886,6 +224926,7 @@ "id": "bettertls::nameconstraints::tc7895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216913,6 +224954,7 @@ "id": "bettertls::nameconstraints::tc7896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216940,6 +224982,7 @@ "id": "bettertls::nameconstraints::tc7897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216967,6 +225010,7 @@ "id": "bettertls::nameconstraints::tc7898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -216994,6 +225038,7 @@ "id": "bettertls::nameconstraints::tc7899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217021,6 +225066,7 @@ "id": "bettertls::nameconstraints::tc7900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217048,6 +225094,7 @@ "id": "bettertls::nameconstraints::tc7901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217075,6 +225122,7 @@ "id": "bettertls::nameconstraints::tc7902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217102,6 +225150,7 @@ "id": "bettertls::nameconstraints::tc7903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217129,6 +225178,7 @@ "id": "bettertls::nameconstraints::tc7904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217156,6 +225206,7 @@ "id": "bettertls::nameconstraints::tc7905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217183,6 +225234,7 @@ "id": "bettertls::nameconstraints::tc7906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217210,6 +225262,7 @@ "id": "bettertls::nameconstraints::tc7907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217237,6 +225290,7 @@ "id": "bettertls::nameconstraints::tc7908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217264,6 +225318,7 @@ "id": "bettertls::nameconstraints::tc7909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217291,6 +225346,7 @@ "id": "bettertls::nameconstraints::tc7910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217318,6 +225374,7 @@ "id": "bettertls::nameconstraints::tc7911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217345,6 +225402,7 @@ "id": "bettertls::nameconstraints::tc7912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217372,6 +225430,7 @@ "id": "bettertls::nameconstraints::tc7913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217399,6 +225458,7 @@ "id": "bettertls::nameconstraints::tc7914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217426,6 +225486,7 @@ "id": "bettertls::nameconstraints::tc7915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217453,6 +225514,7 @@ "id": "bettertls::nameconstraints::tc7916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217480,6 +225542,7 @@ "id": "bettertls::nameconstraints::tc7917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217507,6 +225570,7 @@ "id": "bettertls::nameconstraints::tc7918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217534,6 +225598,7 @@ "id": "bettertls::nameconstraints::tc7919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217561,6 +225626,7 @@ "id": "bettertls::nameconstraints::tc7920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217588,6 +225654,7 @@ "id": "bettertls::nameconstraints::tc7921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217615,6 +225682,7 @@ "id": "bettertls::nameconstraints::tc7922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217642,6 +225710,7 @@ "id": "bettertls::nameconstraints::tc7923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217669,6 +225738,7 @@ "id": "bettertls::nameconstraints::tc7924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217696,6 +225766,7 @@ "id": "bettertls::nameconstraints::tc7925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217723,6 +225794,7 @@ "id": "bettertls::nameconstraints::tc7926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217750,6 +225822,7 @@ "id": "bettertls::nameconstraints::tc7927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217777,6 +225850,7 @@ "id": "bettertls::nameconstraints::tc7928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217804,6 +225878,7 @@ "id": "bettertls::nameconstraints::tc7929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217831,6 +225906,7 @@ "id": "bettertls::nameconstraints::tc7930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217858,6 +225934,7 @@ "id": "bettertls::nameconstraints::tc7931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217885,6 +225962,7 @@ "id": "bettertls::nameconstraints::tc7932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217912,6 +225990,7 @@ "id": "bettertls::nameconstraints::tc7933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217939,6 +226018,7 @@ "id": "bettertls::nameconstraints::tc7934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217966,6 +226046,7 @@ "id": "bettertls::nameconstraints::tc7935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -217993,6 +226074,7 @@ "id": "bettertls::nameconstraints::tc7936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218020,6 +226102,7 @@ "id": "bettertls::nameconstraints::tc7937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218047,6 +226130,7 @@ "id": "bettertls::nameconstraints::tc7938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218074,6 +226158,7 @@ "id": "bettertls::nameconstraints::tc7939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218101,6 +226186,7 @@ "id": "bettertls::nameconstraints::tc7940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218128,6 +226214,7 @@ "id": "bettertls::nameconstraints::tc7941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218155,6 +226242,7 @@ "id": "bettertls::nameconstraints::tc7942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218182,6 +226270,7 @@ "id": "bettertls::nameconstraints::tc7943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218209,6 +226298,7 @@ "id": "bettertls::nameconstraints::tc7944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218236,6 +226326,7 @@ "id": "bettertls::nameconstraints::tc7945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218263,6 +226354,7 @@ "id": "bettertls::nameconstraints::tc7946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218290,6 +226382,7 @@ "id": "bettertls::nameconstraints::tc7947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218317,6 +226410,7 @@ "id": "bettertls::nameconstraints::tc7948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218344,6 +226438,7 @@ "id": "bettertls::nameconstraints::tc7949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218371,6 +226466,7 @@ "id": "bettertls::nameconstraints::tc7950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218398,6 +226494,7 @@ "id": "bettertls::nameconstraints::tc7951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218425,6 +226522,7 @@ "id": "bettertls::nameconstraints::tc7952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218452,6 +226550,7 @@ "id": "bettertls::nameconstraints::tc7953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218479,6 +226578,7 @@ "id": "bettertls::nameconstraints::tc7954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218506,6 +226606,7 @@ "id": "bettertls::nameconstraints::tc7955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218533,6 +226634,7 @@ "id": "bettertls::nameconstraints::tc7956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218560,6 +226662,7 @@ "id": "bettertls::nameconstraints::tc7957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218587,6 +226690,7 @@ "id": "bettertls::nameconstraints::tc7958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218614,6 +226718,7 @@ "id": "bettertls::nameconstraints::tc7959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218641,6 +226746,7 @@ "id": "bettertls::nameconstraints::tc7960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218668,6 +226774,7 @@ "id": "bettertls::nameconstraints::tc7961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218695,6 +226802,7 @@ "id": "bettertls::nameconstraints::tc7962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218722,6 +226830,7 @@ "id": "bettertls::nameconstraints::tc7963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218749,6 +226858,7 @@ "id": "bettertls::nameconstraints::tc7964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218776,6 +226886,7 @@ "id": "bettertls::nameconstraints::tc7965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218803,6 +226914,7 @@ "id": "bettertls::nameconstraints::tc7966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218830,6 +226942,7 @@ "id": "bettertls::nameconstraints::tc7967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218857,6 +226970,7 @@ "id": "bettertls::nameconstraints::tc7968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218884,6 +226998,7 @@ "id": "bettertls::nameconstraints::tc7969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218911,6 +227026,7 @@ "id": "bettertls::nameconstraints::tc7970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218938,6 +227054,7 @@ "id": "bettertls::nameconstraints::tc7971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218965,6 +227082,7 @@ "id": "bettertls::nameconstraints::tc7972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -218992,6 +227110,7 @@ "id": "bettertls::nameconstraints::tc7973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219019,6 +227138,7 @@ "id": "bettertls::nameconstraints::tc7974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219046,6 +227166,7 @@ "id": "bettertls::nameconstraints::tc7975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219073,6 +227194,7 @@ "id": "bettertls::nameconstraints::tc7976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219100,6 +227222,7 @@ "id": "bettertls::nameconstraints::tc7977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219127,6 +227250,7 @@ "id": "bettertls::nameconstraints::tc7978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219154,6 +227278,7 @@ "id": "bettertls::nameconstraints::tc7979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219181,6 +227306,7 @@ "id": "bettertls::nameconstraints::tc7980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219208,6 +227334,7 @@ "id": "bettertls::nameconstraints::tc7981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219235,6 +227362,7 @@ "id": "bettertls::nameconstraints::tc7982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219262,6 +227390,7 @@ "id": "bettertls::nameconstraints::tc7983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219289,6 +227418,7 @@ "id": "bettertls::nameconstraints::tc7984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219316,6 +227446,7 @@ "id": "bettertls::nameconstraints::tc7985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219343,6 +227474,7 @@ "id": "bettertls::nameconstraints::tc7986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219370,6 +227502,7 @@ "id": "bettertls::nameconstraints::tc7987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219397,6 +227530,7 @@ "id": "bettertls::nameconstraints::tc7988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219424,6 +227558,7 @@ "id": "bettertls::nameconstraints::tc7989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219451,6 +227586,7 @@ "id": "bettertls::nameconstraints::tc7990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219478,6 +227614,7 @@ "id": "bettertls::nameconstraints::tc7991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219505,6 +227642,7 @@ "id": "bettertls::nameconstraints::tc7992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219532,6 +227670,7 @@ "id": "bettertls::nameconstraints::tc7993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219559,6 +227698,7 @@ "id": "bettertls::nameconstraints::tc7994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219586,6 +227726,7 @@ "id": "bettertls::nameconstraints::tc7995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219613,6 +227754,7 @@ "id": "bettertls::nameconstraints::tc7996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219640,6 +227782,7 @@ "id": "bettertls::nameconstraints::tc7997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219667,6 +227810,7 @@ "id": "bettertls::nameconstraints::tc7998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219694,6 +227838,7 @@ "id": "bettertls::nameconstraints::tc7999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219721,6 +227866,7 @@ "id": "bettertls::nameconstraints::tc8000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219748,6 +227894,7 @@ "id": "bettertls::nameconstraints::tc8001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219775,6 +227922,7 @@ "id": "bettertls::nameconstraints::tc8002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219802,6 +227950,7 @@ "id": "bettertls::nameconstraints::tc8003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219829,6 +227978,7 @@ "id": "bettertls::nameconstraints::tc8004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219856,6 +228006,7 @@ "id": "bettertls::nameconstraints::tc8005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219883,6 +228034,7 @@ "id": "bettertls::nameconstraints::tc8006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219910,6 +228062,7 @@ "id": "bettertls::nameconstraints::tc8007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219937,6 +228090,7 @@ "id": "bettertls::nameconstraints::tc8008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219964,6 +228118,7 @@ "id": "bettertls::nameconstraints::tc8009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -219991,6 +228146,7 @@ "id": "bettertls::nameconstraints::tc8010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220018,6 +228174,7 @@ "id": "bettertls::nameconstraints::tc8011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220045,6 +228202,7 @@ "id": "bettertls::nameconstraints::tc8012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220072,6 +228230,7 @@ "id": "bettertls::nameconstraints::tc8013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220099,6 +228258,7 @@ "id": "bettertls::nameconstraints::tc8014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220126,6 +228286,7 @@ "id": "bettertls::nameconstraints::tc8015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220153,6 +228314,7 @@ "id": "bettertls::nameconstraints::tc8016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220180,6 +228342,7 @@ "id": "bettertls::nameconstraints::tc8017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220207,6 +228370,7 @@ "id": "bettertls::nameconstraints::tc8018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220234,6 +228398,7 @@ "id": "bettertls::nameconstraints::tc8019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220261,6 +228426,7 @@ "id": "bettertls::nameconstraints::tc8020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220288,6 +228454,7 @@ "id": "bettertls::nameconstraints::tc8021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220315,6 +228482,7 @@ "id": "bettertls::nameconstraints::tc8022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220342,6 +228510,7 @@ "id": "bettertls::nameconstraints::tc8023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220369,6 +228538,7 @@ "id": "bettertls::nameconstraints::tc8024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220396,6 +228566,7 @@ "id": "bettertls::nameconstraints::tc8025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220423,6 +228594,7 @@ "id": "bettertls::nameconstraints::tc8026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220450,6 +228622,7 @@ "id": "bettertls::nameconstraints::tc8027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220477,6 +228650,7 @@ "id": "bettertls::nameconstraints::tc8028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220504,6 +228678,7 @@ "id": "bettertls::nameconstraints::tc8029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220531,6 +228706,7 @@ "id": "bettertls::nameconstraints::tc8030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220558,6 +228734,7 @@ "id": "bettertls::nameconstraints::tc8031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220585,6 +228762,7 @@ "id": "bettertls::nameconstraints::tc8032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220612,6 +228790,7 @@ "id": "bettertls::nameconstraints::tc8033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220639,6 +228818,7 @@ "id": "bettertls::nameconstraints::tc8034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220666,6 +228846,7 @@ "id": "bettertls::nameconstraints::tc8035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220693,6 +228874,7 @@ "id": "bettertls::nameconstraints::tc8036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220720,6 +228902,7 @@ "id": "bettertls::nameconstraints::tc8037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220747,6 +228930,7 @@ "id": "bettertls::nameconstraints::tc8038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220774,6 +228958,7 @@ "id": "bettertls::nameconstraints::tc8039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220801,6 +228986,7 @@ "id": "bettertls::nameconstraints::tc8040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220828,6 +229014,7 @@ "id": "bettertls::nameconstraints::tc8041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220855,6 +229042,7 @@ "id": "bettertls::nameconstraints::tc8042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220882,6 +229070,7 @@ "id": "bettertls::nameconstraints::tc8043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220909,6 +229098,7 @@ "id": "bettertls::nameconstraints::tc8044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220936,6 +229126,7 @@ "id": "bettertls::nameconstraints::tc8045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220963,6 +229154,7 @@ "id": "bettertls::nameconstraints::tc8046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -220990,6 +229182,7 @@ "id": "bettertls::nameconstraints::tc8047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221017,6 +229210,7 @@ "id": "bettertls::nameconstraints::tc8048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221044,6 +229238,7 @@ "id": "bettertls::nameconstraints::tc8049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221071,6 +229266,7 @@ "id": "bettertls::nameconstraints::tc8050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221098,6 +229294,7 @@ "id": "bettertls::nameconstraints::tc8051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221125,6 +229322,7 @@ "id": "bettertls::nameconstraints::tc8052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221152,6 +229350,7 @@ "id": "bettertls::nameconstraints::tc8053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221179,6 +229378,7 @@ "id": "bettertls::nameconstraints::tc8054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221206,6 +229406,7 @@ "id": "bettertls::nameconstraints::tc8055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221233,6 +229434,7 @@ "id": "bettertls::nameconstraints::tc8056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221260,6 +229462,7 @@ "id": "bettertls::nameconstraints::tc8057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221287,6 +229490,7 @@ "id": "bettertls::nameconstraints::tc8058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221314,6 +229518,7 @@ "id": "bettertls::nameconstraints::tc8059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221341,6 +229546,7 @@ "id": "bettertls::nameconstraints::tc8060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221368,6 +229574,7 @@ "id": "bettertls::nameconstraints::tc8061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221395,6 +229602,7 @@ "id": "bettertls::nameconstraints::tc8062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221422,6 +229630,7 @@ "id": "bettertls::nameconstraints::tc8063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221449,6 +229658,7 @@ "id": "bettertls::nameconstraints::tc8064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221476,6 +229686,7 @@ "id": "bettertls::nameconstraints::tc8065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221503,6 +229714,7 @@ "id": "bettertls::nameconstraints::tc8066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221530,6 +229742,7 @@ "id": "bettertls::nameconstraints::tc8067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221557,6 +229770,7 @@ "id": "bettertls::nameconstraints::tc8068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221584,6 +229798,7 @@ "id": "bettertls::nameconstraints::tc8069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221611,6 +229826,7 @@ "id": "bettertls::nameconstraints::tc8070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221638,6 +229854,7 @@ "id": "bettertls::nameconstraints::tc8071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221665,6 +229882,7 @@ "id": "bettertls::nameconstraints::tc8072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221692,6 +229910,7 @@ "id": "bettertls::nameconstraints::tc8073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221719,6 +229938,7 @@ "id": "bettertls::nameconstraints::tc8074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221746,6 +229966,7 @@ "id": "bettertls::nameconstraints::tc8075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221773,6 +229994,7 @@ "id": "bettertls::nameconstraints::tc8076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221800,6 +230022,7 @@ "id": "bettertls::nameconstraints::tc8077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221827,6 +230050,7 @@ "id": "bettertls::nameconstraints::tc8078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221854,6 +230078,7 @@ "id": "bettertls::nameconstraints::tc8079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221881,6 +230106,7 @@ "id": "bettertls::nameconstraints::tc8080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221908,6 +230134,7 @@ "id": "bettertls::nameconstraints::tc8081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221935,6 +230162,7 @@ "id": "bettertls::nameconstraints::tc8082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221962,6 +230190,7 @@ "id": "bettertls::nameconstraints::tc8083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -221989,6 +230218,7 @@ "id": "bettertls::nameconstraints::tc8084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222016,6 +230246,7 @@ "id": "bettertls::nameconstraints::tc8085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222043,6 +230274,7 @@ "id": "bettertls::nameconstraints::tc8086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222070,6 +230302,7 @@ "id": "bettertls::nameconstraints::tc8087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222097,6 +230330,7 @@ "id": "bettertls::nameconstraints::tc8088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222124,6 +230358,7 @@ "id": "bettertls::nameconstraints::tc8089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222151,6 +230386,7 @@ "id": "bettertls::nameconstraints::tc8090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222178,6 +230414,7 @@ "id": "bettertls::nameconstraints::tc8091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222205,6 +230442,7 @@ "id": "bettertls::nameconstraints::tc8092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222232,6 +230470,7 @@ "id": "bettertls::nameconstraints::tc8093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222259,6 +230498,7 @@ "id": "bettertls::nameconstraints::tc8094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222286,6 +230526,7 @@ "id": "bettertls::nameconstraints::tc8095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222313,6 +230554,7 @@ "id": "bettertls::nameconstraints::tc8096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222340,6 +230582,7 @@ "id": "bettertls::nameconstraints::tc8097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222367,6 +230610,7 @@ "id": "bettertls::nameconstraints::tc8098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222394,6 +230638,7 @@ "id": "bettertls::nameconstraints::tc8099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222421,6 +230666,7 @@ "id": "bettertls::nameconstraints::tc8100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222448,6 +230694,7 @@ "id": "bettertls::nameconstraints::tc8101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222475,6 +230722,7 @@ "id": "bettertls::nameconstraints::tc8102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222502,6 +230750,7 @@ "id": "bettertls::nameconstraints::tc8103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222529,6 +230778,7 @@ "id": "bettertls::nameconstraints::tc8104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222556,6 +230806,7 @@ "id": "bettertls::nameconstraints::tc8105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222583,6 +230834,7 @@ "id": "bettertls::nameconstraints::tc8106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222610,6 +230862,7 @@ "id": "bettertls::nameconstraints::tc8107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222637,6 +230890,7 @@ "id": "bettertls::nameconstraints::tc8108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222664,6 +230918,7 @@ "id": "bettertls::nameconstraints::tc8109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222691,6 +230946,7 @@ "id": "bettertls::nameconstraints::tc8110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222718,6 +230974,7 @@ "id": "bettertls::nameconstraints::tc8111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222745,6 +231002,7 @@ "id": "bettertls::nameconstraints::tc8112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222772,6 +231030,7 @@ "id": "bettertls::nameconstraints::tc8113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222799,6 +231058,7 @@ "id": "bettertls::nameconstraints::tc8114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222826,6 +231086,7 @@ "id": "bettertls::nameconstraints::tc8115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222853,6 +231114,7 @@ "id": "bettertls::nameconstraints::tc8116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222880,6 +231142,7 @@ "id": "bettertls::nameconstraints::tc8117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222907,6 +231170,7 @@ "id": "bettertls::nameconstraints::tc8118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222934,6 +231198,7 @@ "id": "bettertls::nameconstraints::tc8119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222961,6 +231226,7 @@ "id": "bettertls::nameconstraints::tc8120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -222988,6 +231254,7 @@ "id": "bettertls::nameconstraints::tc8121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223015,6 +231282,7 @@ "id": "bettertls::nameconstraints::tc8122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223042,6 +231310,7 @@ "id": "bettertls::nameconstraints::tc8123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223069,6 +231338,7 @@ "id": "bettertls::nameconstraints::tc8124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223096,6 +231366,7 @@ "id": "bettertls::nameconstraints::tc8125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223123,6 +231394,7 @@ "id": "bettertls::nameconstraints::tc8126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223150,6 +231422,7 @@ "id": "bettertls::nameconstraints::tc8127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223177,6 +231450,7 @@ "id": "bettertls::nameconstraints::tc8128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223204,6 +231478,7 @@ "id": "bettertls::nameconstraints::tc8129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223231,6 +231506,7 @@ "id": "bettertls::nameconstraints::tc8130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223258,6 +231534,7 @@ "id": "bettertls::nameconstraints::tc8131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223285,6 +231562,7 @@ "id": "bettertls::nameconstraints::tc8132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223312,6 +231590,7 @@ "id": "bettertls::nameconstraints::tc8133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223339,6 +231618,7 @@ "id": "bettertls::nameconstraints::tc8134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223366,6 +231646,7 @@ "id": "bettertls::nameconstraints::tc8135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223393,6 +231674,7 @@ "id": "bettertls::nameconstraints::tc8136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223420,6 +231702,7 @@ "id": "bettertls::nameconstraints::tc8137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223447,6 +231730,7 @@ "id": "bettertls::nameconstraints::tc8138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223474,6 +231758,7 @@ "id": "bettertls::nameconstraints::tc8139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223501,6 +231786,7 @@ "id": "bettertls::nameconstraints::tc8140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223528,6 +231814,7 @@ "id": "bettertls::nameconstraints::tc8141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223555,6 +231842,7 @@ "id": "bettertls::nameconstraints::tc8142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223582,6 +231870,7 @@ "id": "bettertls::nameconstraints::tc8143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223609,6 +231898,7 @@ "id": "bettertls::nameconstraints::tc8144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223636,6 +231926,7 @@ "id": "bettertls::nameconstraints::tc8145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223663,6 +231954,7 @@ "id": "bettertls::nameconstraints::tc8146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223690,6 +231982,7 @@ "id": "bettertls::nameconstraints::tc8147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223717,6 +232010,7 @@ "id": "bettertls::nameconstraints::tc8148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223744,6 +232038,7 @@ "id": "bettertls::nameconstraints::tc8149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223771,6 +232066,7 @@ "id": "bettertls::nameconstraints::tc8150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223798,6 +232094,7 @@ "id": "bettertls::nameconstraints::tc8151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223825,6 +232122,7 @@ "id": "bettertls::nameconstraints::tc8152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223852,6 +232150,7 @@ "id": "bettertls::nameconstraints::tc8153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223879,6 +232178,7 @@ "id": "bettertls::nameconstraints::tc8154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223906,6 +232206,7 @@ "id": "bettertls::nameconstraints::tc8155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223933,6 +232234,7 @@ "id": "bettertls::nameconstraints::tc8156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223960,6 +232262,7 @@ "id": "bettertls::nameconstraints::tc8157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -223987,6 +232290,7 @@ "id": "bettertls::nameconstraints::tc8158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224014,6 +232318,7 @@ "id": "bettertls::nameconstraints::tc8159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224041,6 +232346,7 @@ "id": "bettertls::nameconstraints::tc8160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224068,6 +232374,7 @@ "id": "bettertls::nameconstraints::tc8161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224095,6 +232402,7 @@ "id": "bettertls::nameconstraints::tc8162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224122,6 +232430,7 @@ "id": "bettertls::nameconstraints::tc8163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224149,6 +232458,7 @@ "id": "bettertls::nameconstraints::tc8164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224176,6 +232486,7 @@ "id": "bettertls::nameconstraints::tc8165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224203,6 +232514,7 @@ "id": "bettertls::nameconstraints::tc8166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224230,6 +232542,7 @@ "id": "bettertls::nameconstraints::tc8167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224257,6 +232570,7 @@ "id": "bettertls::nameconstraints::tc8168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224284,6 +232598,7 @@ "id": "bettertls::nameconstraints::tc8169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224311,6 +232626,7 @@ "id": "bettertls::nameconstraints::tc8170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224338,6 +232654,7 @@ "id": "bettertls::nameconstraints::tc8171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224365,6 +232682,7 @@ "id": "bettertls::nameconstraints::tc8172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224392,6 +232710,7 @@ "id": "bettertls::nameconstraints::tc8173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224419,6 +232738,7 @@ "id": "bettertls::nameconstraints::tc8174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224446,6 +232766,7 @@ "id": "bettertls::nameconstraints::tc8175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224473,6 +232794,7 @@ "id": "bettertls::nameconstraints::tc8176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224500,6 +232822,7 @@ "id": "bettertls::nameconstraints::tc8177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224527,6 +232850,7 @@ "id": "bettertls::nameconstraints::tc8178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224554,6 +232878,7 @@ "id": "bettertls::nameconstraints::tc8179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224581,6 +232906,7 @@ "id": "bettertls::nameconstraints::tc8180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224608,6 +232934,7 @@ "id": "bettertls::nameconstraints::tc8181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224635,6 +232962,7 @@ "id": "bettertls::nameconstraints::tc8182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224662,6 +232990,7 @@ "id": "bettertls::nameconstraints::tc8183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224689,6 +233018,7 @@ "id": "bettertls::nameconstraints::tc8184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224716,6 +233046,7 @@ "id": "bettertls::nameconstraints::tc8185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224743,6 +233074,7 @@ "id": "bettertls::nameconstraints::tc8186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224770,6 +233102,7 @@ "id": "bettertls::nameconstraints::tc8187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224797,6 +233130,7 @@ "id": "bettertls::nameconstraints::tc8188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224824,6 +233158,7 @@ "id": "bettertls::nameconstraints::tc8189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224851,6 +233186,7 @@ "id": "bettertls::nameconstraints::tc8190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224878,6 +233214,7 @@ "id": "bettertls::nameconstraints::tc8191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224905,6 +233242,7 @@ "id": "bettertls::nameconstraints::tc8192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224932,6 +233270,7 @@ "id": "bettertls::nameconstraints::tc8193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224959,6 +233298,7 @@ "id": "bettertls::nameconstraints::tc8194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -224986,6 +233326,7 @@ "id": "bettertls::nameconstraints::tc8195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225013,6 +233354,7 @@ "id": "bettertls::nameconstraints::tc8196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225040,6 +233382,7 @@ "id": "bettertls::nameconstraints::tc8197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225067,6 +233410,7 @@ "id": "bettertls::nameconstraints::tc8198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225094,6 +233438,7 @@ "id": "bettertls::nameconstraints::tc8199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225121,6 +233466,7 @@ "id": "bettertls::nameconstraints::tc8200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225148,6 +233494,7 @@ "id": "bettertls::nameconstraints::tc8201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225175,6 +233522,7 @@ "id": "bettertls::nameconstraints::tc8202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225202,6 +233550,7 @@ "id": "bettertls::nameconstraints::tc8203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225229,6 +233578,7 @@ "id": "bettertls::nameconstraints::tc8204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225256,6 +233606,7 @@ "id": "bettertls::nameconstraints::tc8205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225283,6 +233634,7 @@ "id": "bettertls::nameconstraints::tc8206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225310,6 +233662,7 @@ "id": "bettertls::nameconstraints::tc8207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225337,6 +233690,7 @@ "id": "bettertls::nameconstraints::tc8208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225364,6 +233718,7 @@ "id": "bettertls::nameconstraints::tc8209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225391,6 +233746,7 @@ "id": "bettertls::nameconstraints::tc8210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225418,6 +233774,7 @@ "id": "bettertls::nameconstraints::tc8211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225445,6 +233802,7 @@ "id": "bettertls::nameconstraints::tc8212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225472,6 +233830,7 @@ "id": "bettertls::nameconstraints::tc8213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225499,6 +233858,7 @@ "id": "bettertls::nameconstraints::tc8214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225526,6 +233886,7 @@ "id": "bettertls::nameconstraints::tc8215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225553,6 +233914,7 @@ "id": "bettertls::nameconstraints::tc8216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225580,6 +233942,7 @@ "id": "bettertls::nameconstraints::tc8217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225607,6 +233970,7 @@ "id": "bettertls::nameconstraints::tc8218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225634,6 +233998,7 @@ "id": "bettertls::nameconstraints::tc8219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225661,6 +234026,7 @@ "id": "bettertls::nameconstraints::tc8220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225688,6 +234054,7 @@ "id": "bettertls::nameconstraints::tc8221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225715,6 +234082,7 @@ "id": "bettertls::nameconstraints::tc8222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225742,6 +234110,7 @@ "id": "bettertls::nameconstraints::tc8223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225769,6 +234138,7 @@ "id": "bettertls::nameconstraints::tc8224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225796,6 +234166,7 @@ "id": "bettertls::nameconstraints::tc8225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225823,6 +234194,7 @@ "id": "bettertls::nameconstraints::tc8226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225850,6 +234222,7 @@ "id": "bettertls::nameconstraints::tc8227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225877,6 +234250,7 @@ "id": "bettertls::nameconstraints::tc8228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225904,6 +234278,7 @@ "id": "bettertls::nameconstraints::tc8229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225931,6 +234306,7 @@ "id": "bettertls::nameconstraints::tc8230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225958,6 +234334,7 @@ "id": "bettertls::nameconstraints::tc8231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -225985,6 +234362,7 @@ "id": "bettertls::nameconstraints::tc8232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226012,6 +234390,7 @@ "id": "bettertls::nameconstraints::tc8233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226039,6 +234418,7 @@ "id": "bettertls::nameconstraints::tc8234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226066,6 +234446,7 @@ "id": "bettertls::nameconstraints::tc8235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226093,6 +234474,7 @@ "id": "bettertls::nameconstraints::tc8236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226120,6 +234502,7 @@ "id": "bettertls::nameconstraints::tc8237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226147,6 +234530,7 @@ "id": "bettertls::nameconstraints::tc8238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226174,6 +234558,7 @@ "id": "bettertls::nameconstraints::tc8239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226201,6 +234586,7 @@ "id": "bettertls::nameconstraints::tc8240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226228,6 +234614,7 @@ "id": "bettertls::nameconstraints::tc8241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226255,6 +234642,7 @@ "id": "bettertls::nameconstraints::tc8242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226282,6 +234670,7 @@ "id": "bettertls::nameconstraints::tc8243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226309,6 +234698,7 @@ "id": "bettertls::nameconstraints::tc8244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226336,6 +234726,7 @@ "id": "bettertls::nameconstraints::tc8245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226363,6 +234754,7 @@ "id": "bettertls::nameconstraints::tc8246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226390,6 +234782,7 @@ "id": "bettertls::nameconstraints::tc8247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226417,6 +234810,7 @@ "id": "bettertls::nameconstraints::tc8248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226444,6 +234838,7 @@ "id": "bettertls::nameconstraints::tc8249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226471,6 +234866,7 @@ "id": "bettertls::nameconstraints::tc8250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226498,6 +234894,7 @@ "id": "bettertls::nameconstraints::tc8251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226525,6 +234922,7 @@ "id": "bettertls::nameconstraints::tc8252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226552,6 +234950,7 @@ "id": "bettertls::nameconstraints::tc8253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226579,6 +234978,7 @@ "id": "bettertls::nameconstraints::tc8254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226606,6 +235006,7 @@ "id": "bettertls::nameconstraints::tc8255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226633,6 +235034,7 @@ "id": "bettertls::nameconstraints::tc8256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226660,6 +235062,7 @@ "id": "bettertls::nameconstraints::tc8257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226687,6 +235090,7 @@ "id": "bettertls::nameconstraints::tc8258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226714,6 +235118,7 @@ "id": "bettertls::nameconstraints::tc8259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226741,6 +235146,7 @@ "id": "bettertls::nameconstraints::tc8260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226768,6 +235174,7 @@ "id": "bettertls::nameconstraints::tc8261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226795,6 +235202,7 @@ "id": "bettertls::nameconstraints::tc8262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226822,6 +235230,7 @@ "id": "bettertls::nameconstraints::tc8263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226849,6 +235258,7 @@ "id": "bettertls::nameconstraints::tc8264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226876,6 +235286,7 @@ "id": "bettertls::nameconstraints::tc8265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226903,6 +235314,7 @@ "id": "bettertls::nameconstraints::tc8266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226930,6 +235342,7 @@ "id": "bettertls::nameconstraints::tc8267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226957,6 +235370,7 @@ "id": "bettertls::nameconstraints::tc8268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -226984,6 +235398,7 @@ "id": "bettertls::nameconstraints::tc8269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227011,6 +235426,7 @@ "id": "bettertls::nameconstraints::tc8270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227038,6 +235454,7 @@ "id": "bettertls::nameconstraints::tc8271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227065,6 +235482,7 @@ "id": "bettertls::nameconstraints::tc8272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227092,6 +235510,7 @@ "id": "bettertls::nameconstraints::tc8273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227119,6 +235538,7 @@ "id": "bettertls::nameconstraints::tc8274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227146,6 +235566,7 @@ "id": "bettertls::nameconstraints::tc8275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227173,6 +235594,7 @@ "id": "bettertls::nameconstraints::tc8276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227200,6 +235622,7 @@ "id": "bettertls::nameconstraints::tc8277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227227,6 +235650,7 @@ "id": "bettertls::nameconstraints::tc8278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227254,6 +235678,7 @@ "id": "bettertls::nameconstraints::tc8279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227281,6 +235706,7 @@ "id": "bettertls::nameconstraints::tc8280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227308,6 +235734,7 @@ "id": "bettertls::nameconstraints::tc8281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227335,6 +235762,7 @@ "id": "bettertls::nameconstraints::tc8282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227362,6 +235790,7 @@ "id": "bettertls::nameconstraints::tc8283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227389,6 +235818,7 @@ "id": "bettertls::nameconstraints::tc8284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227416,6 +235846,7 @@ "id": "bettertls::nameconstraints::tc8285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227443,6 +235874,7 @@ "id": "bettertls::nameconstraints::tc8286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227470,6 +235902,7 @@ "id": "bettertls::nameconstraints::tc8287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227497,6 +235930,7 @@ "id": "bettertls::nameconstraints::tc8288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227524,6 +235958,7 @@ "id": "bettertls::nameconstraints::tc8289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227551,6 +235986,7 @@ "id": "bettertls::nameconstraints::tc8290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227578,6 +236014,7 @@ "id": "bettertls::nameconstraints::tc8291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227605,6 +236042,7 @@ "id": "bettertls::nameconstraints::tc8292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227632,6 +236070,7 @@ "id": "bettertls::nameconstraints::tc8293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227659,6 +236098,7 @@ "id": "bettertls::nameconstraints::tc8294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227686,6 +236126,7 @@ "id": "bettertls::nameconstraints::tc8295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227713,6 +236154,7 @@ "id": "bettertls::nameconstraints::tc8296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227740,6 +236182,7 @@ "id": "bettertls::nameconstraints::tc8297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227767,6 +236210,7 @@ "id": "bettertls::nameconstraints::tc8298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227794,6 +236238,7 @@ "id": "bettertls::nameconstraints::tc8299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227821,6 +236266,7 @@ "id": "bettertls::nameconstraints::tc8300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227848,6 +236294,7 @@ "id": "bettertls::nameconstraints::tc8301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227875,6 +236322,7 @@ "id": "bettertls::nameconstraints::tc8302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227902,6 +236350,7 @@ "id": "bettertls::nameconstraints::tc8303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227929,6 +236378,7 @@ "id": "bettertls::nameconstraints::tc8304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227956,6 +236406,7 @@ "id": "bettertls::nameconstraints::tc8305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -227983,6 +236434,7 @@ "id": "bettertls::nameconstraints::tc8306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228010,6 +236462,7 @@ "id": "bettertls::nameconstraints::tc8307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228037,6 +236490,7 @@ "id": "bettertls::nameconstraints::tc8308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228064,6 +236518,7 @@ "id": "bettertls::nameconstraints::tc8309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228091,6 +236546,7 @@ "id": "bettertls::nameconstraints::tc8310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228118,6 +236574,7 @@ "id": "bettertls::nameconstraints::tc8311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228145,6 +236602,7 @@ "id": "bettertls::nameconstraints::tc8312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228172,6 +236630,7 @@ "id": "bettertls::nameconstraints::tc8313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228199,6 +236658,7 @@ "id": "bettertls::nameconstraints::tc8314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228226,6 +236686,7 @@ "id": "bettertls::nameconstraints::tc8315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228253,6 +236714,7 @@ "id": "bettertls::nameconstraints::tc8316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228280,6 +236742,7 @@ "id": "bettertls::nameconstraints::tc8317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228307,6 +236770,7 @@ "id": "bettertls::nameconstraints::tc8318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228334,6 +236798,7 @@ "id": "bettertls::nameconstraints::tc8319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228361,6 +236826,7 @@ "id": "bettertls::nameconstraints::tc8320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228388,6 +236854,7 @@ "id": "bettertls::nameconstraints::tc8321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228415,6 +236882,7 @@ "id": "bettertls::nameconstraints::tc8322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228442,6 +236910,7 @@ "id": "bettertls::nameconstraints::tc8323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228469,6 +236938,7 @@ "id": "bettertls::nameconstraints::tc8324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228496,6 +236966,7 @@ "id": "bettertls::nameconstraints::tc8325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228523,6 +236994,7 @@ "id": "bettertls::nameconstraints::tc8326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228550,6 +237022,7 @@ "id": "bettertls::nameconstraints::tc8327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228577,6 +237050,7 @@ "id": "bettertls::nameconstraints::tc8328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228604,6 +237078,7 @@ "id": "bettertls::nameconstraints::tc8329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228631,6 +237106,7 @@ "id": "bettertls::nameconstraints::tc8330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228658,6 +237134,7 @@ "id": "bettertls::nameconstraints::tc8331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228685,6 +237162,7 @@ "id": "bettertls::nameconstraints::tc8332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228712,6 +237190,7 @@ "id": "bettertls::nameconstraints::tc8333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228739,6 +237218,7 @@ "id": "bettertls::nameconstraints::tc8334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228766,6 +237246,7 @@ "id": "bettertls::nameconstraints::tc8335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228793,6 +237274,7 @@ "id": "bettertls::nameconstraints::tc8336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228820,6 +237302,7 @@ "id": "bettertls::nameconstraints::tc8337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228847,6 +237330,7 @@ "id": "bettertls::nameconstraints::tc8338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228874,6 +237358,7 @@ "id": "bettertls::nameconstraints::tc8339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228901,6 +237386,7 @@ "id": "bettertls::nameconstraints::tc8340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228928,6 +237414,7 @@ "id": "bettertls::nameconstraints::tc8341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228955,6 +237442,7 @@ "id": "bettertls::nameconstraints::tc8342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -228982,6 +237470,7 @@ "id": "bettertls::nameconstraints::tc8343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229009,6 +237498,7 @@ "id": "bettertls::nameconstraints::tc8344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229036,6 +237526,7 @@ "id": "bettertls::nameconstraints::tc8345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229063,6 +237554,7 @@ "id": "bettertls::nameconstraints::tc8346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229090,6 +237582,7 @@ "id": "bettertls::nameconstraints::tc8347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229117,6 +237610,7 @@ "id": "bettertls::nameconstraints::tc8348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229144,6 +237638,7 @@ "id": "bettertls::nameconstraints::tc8349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229171,6 +237666,7 @@ "id": "bettertls::nameconstraints::tc8350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229198,6 +237694,7 @@ "id": "bettertls::nameconstraints::tc8351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229225,6 +237722,7 @@ "id": "bettertls::nameconstraints::tc8352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229252,6 +237750,7 @@ "id": "bettertls::nameconstraints::tc8353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229279,6 +237778,7 @@ "id": "bettertls::nameconstraints::tc8354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229306,6 +237806,7 @@ "id": "bettertls::nameconstraints::tc8355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229333,6 +237834,7 @@ "id": "bettertls::nameconstraints::tc8356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229360,6 +237862,7 @@ "id": "bettertls::nameconstraints::tc8357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229387,6 +237890,7 @@ "id": "bettertls::nameconstraints::tc8358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229414,6 +237918,7 @@ "id": "bettertls::nameconstraints::tc8359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229441,6 +237946,7 @@ "id": "bettertls::nameconstraints::tc8360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229468,6 +237974,7 @@ "id": "bettertls::nameconstraints::tc8361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229495,6 +238002,7 @@ "id": "bettertls::nameconstraints::tc8362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229522,6 +238030,7 @@ "id": "bettertls::nameconstraints::tc8363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229549,6 +238058,7 @@ "id": "bettertls::nameconstraints::tc8364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229576,6 +238086,7 @@ "id": "bettertls::nameconstraints::tc8365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229603,6 +238114,7 @@ "id": "bettertls::nameconstraints::tc8366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229630,6 +238142,7 @@ "id": "bettertls::nameconstraints::tc8367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229657,6 +238170,7 @@ "id": "bettertls::nameconstraints::tc8368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229684,6 +238198,7 @@ "id": "bettertls::nameconstraints::tc8369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229711,6 +238226,7 @@ "id": "bettertls::nameconstraints::tc8370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229738,6 +238254,7 @@ "id": "bettertls::nameconstraints::tc8371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229765,6 +238282,7 @@ "id": "bettertls::nameconstraints::tc8372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229792,6 +238310,7 @@ "id": "bettertls::nameconstraints::tc8373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229819,6 +238338,7 @@ "id": "bettertls::nameconstraints::tc8374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229846,6 +238366,7 @@ "id": "bettertls::nameconstraints::tc8375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229873,6 +238394,7 @@ "id": "bettertls::nameconstraints::tc8376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229900,6 +238422,7 @@ "id": "bettertls::nameconstraints::tc8377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229927,6 +238450,7 @@ "id": "bettertls::nameconstraints::tc8378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229954,6 +238478,7 @@ "id": "bettertls::nameconstraints::tc8379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -229981,6 +238506,7 @@ "id": "bettertls::nameconstraints::tc8380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230008,6 +238534,7 @@ "id": "bettertls::nameconstraints::tc8381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230035,6 +238562,7 @@ "id": "bettertls::nameconstraints::tc8382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230062,6 +238590,7 @@ "id": "bettertls::nameconstraints::tc8383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230089,6 +238618,7 @@ "id": "bettertls::nameconstraints::tc8384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230116,6 +238646,7 @@ "id": "bettertls::nameconstraints::tc8385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230143,6 +238674,7 @@ "id": "bettertls::nameconstraints::tc8386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230170,6 +238702,7 @@ "id": "bettertls::nameconstraints::tc8387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230197,6 +238730,7 @@ "id": "bettertls::nameconstraints::tc8388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230224,6 +238758,7 @@ "id": "bettertls::nameconstraints::tc8389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230251,6 +238786,7 @@ "id": "bettertls::nameconstraints::tc8390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230278,6 +238814,7 @@ "id": "bettertls::nameconstraints::tc8391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230305,6 +238842,7 @@ "id": "bettertls::nameconstraints::tc8392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230332,6 +238870,7 @@ "id": "bettertls::nameconstraints::tc8393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230359,6 +238898,7 @@ "id": "bettertls::nameconstraints::tc8394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230386,6 +238926,7 @@ "id": "bettertls::nameconstraints::tc8395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230413,6 +238954,7 @@ "id": "bettertls::nameconstraints::tc8396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230440,6 +238982,7 @@ "id": "bettertls::nameconstraints::tc8397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230467,6 +239010,7 @@ "id": "bettertls::nameconstraints::tc8398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230494,6 +239038,7 @@ "id": "bettertls::nameconstraints::tc8399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230521,6 +239066,7 @@ "id": "bettertls::nameconstraints::tc8400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230548,6 +239094,7 @@ "id": "bettertls::nameconstraints::tc8401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230575,6 +239122,7 @@ "id": "bettertls::nameconstraints::tc8402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230602,6 +239150,7 @@ "id": "bettertls::nameconstraints::tc8403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230629,6 +239178,7 @@ "id": "bettertls::nameconstraints::tc8404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230656,6 +239206,7 @@ "id": "bettertls::nameconstraints::tc8405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230683,6 +239234,7 @@ "id": "bettertls::nameconstraints::tc8406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230710,6 +239262,7 @@ "id": "bettertls::nameconstraints::tc8407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230737,6 +239290,7 @@ "id": "bettertls::nameconstraints::tc8408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230764,6 +239318,7 @@ "id": "bettertls::nameconstraints::tc8409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230791,6 +239346,7 @@ "id": "bettertls::nameconstraints::tc8410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230818,6 +239374,7 @@ "id": "bettertls::nameconstraints::tc8411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230845,6 +239402,7 @@ "id": "bettertls::nameconstraints::tc8412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230872,6 +239430,7 @@ "id": "bettertls::nameconstraints::tc8413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230899,6 +239458,7 @@ "id": "bettertls::nameconstraints::tc8414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230926,6 +239486,7 @@ "id": "bettertls::nameconstraints::tc8415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230953,6 +239514,7 @@ "id": "bettertls::nameconstraints::tc8416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -230980,6 +239542,7 @@ "id": "bettertls::nameconstraints::tc8417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231007,6 +239570,7 @@ "id": "bettertls::nameconstraints::tc8418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231034,6 +239598,7 @@ "id": "bettertls::nameconstraints::tc8419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231061,6 +239626,7 @@ "id": "bettertls::nameconstraints::tc8420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231088,6 +239654,7 @@ "id": "bettertls::nameconstraints::tc8421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231115,6 +239682,7 @@ "id": "bettertls::nameconstraints::tc8422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231142,6 +239710,7 @@ "id": "bettertls::nameconstraints::tc8423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231169,6 +239738,7 @@ "id": "bettertls::nameconstraints::tc8424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231196,6 +239766,7 @@ "id": "bettertls::nameconstraints::tc8425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231223,6 +239794,7 @@ "id": "bettertls::nameconstraints::tc8426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231250,6 +239822,7 @@ "id": "bettertls::nameconstraints::tc8427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231277,6 +239850,7 @@ "id": "bettertls::nameconstraints::tc8428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231304,6 +239878,7 @@ "id": "bettertls::nameconstraints::tc8429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231331,6 +239906,7 @@ "id": "bettertls::nameconstraints::tc8430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231358,6 +239934,7 @@ "id": "bettertls::nameconstraints::tc8431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231385,6 +239962,7 @@ "id": "bettertls::nameconstraints::tc8432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231412,6 +239990,7 @@ "id": "bettertls::nameconstraints::tc8433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231439,6 +240018,7 @@ "id": "bettertls::nameconstraints::tc8434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231466,6 +240046,7 @@ "id": "bettertls::nameconstraints::tc8435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231493,6 +240074,7 @@ "id": "bettertls::nameconstraints::tc8436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231520,6 +240102,7 @@ "id": "bettertls::nameconstraints::tc8437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231547,6 +240130,7 @@ "id": "bettertls::nameconstraints::tc8438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231574,6 +240158,7 @@ "id": "bettertls::nameconstraints::tc8439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231601,6 +240186,7 @@ "id": "bettertls::nameconstraints::tc8440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231628,6 +240214,7 @@ "id": "bettertls::nameconstraints::tc8441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231655,6 +240242,7 @@ "id": "bettertls::nameconstraints::tc8442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231682,6 +240270,7 @@ "id": "bettertls::nameconstraints::tc8443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231709,6 +240298,7 @@ "id": "bettertls::nameconstraints::tc8444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231736,6 +240326,7 @@ "id": "bettertls::nameconstraints::tc8445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231763,6 +240354,7 @@ "id": "bettertls::nameconstraints::tc8446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231790,6 +240382,7 @@ "id": "bettertls::nameconstraints::tc8447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231817,6 +240410,7 @@ "id": "bettertls::nameconstraints::tc8448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231844,6 +240438,7 @@ "id": "bettertls::nameconstraints::tc8449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231871,6 +240466,7 @@ "id": "bettertls::nameconstraints::tc8450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231898,6 +240494,7 @@ "id": "bettertls::nameconstraints::tc8451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231925,6 +240522,7 @@ "id": "bettertls::nameconstraints::tc8452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231952,6 +240550,7 @@ "id": "bettertls::nameconstraints::tc8453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -231979,6 +240578,7 @@ "id": "bettertls::nameconstraints::tc8454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232006,6 +240606,7 @@ "id": "bettertls::nameconstraints::tc8455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232033,6 +240634,7 @@ "id": "bettertls::nameconstraints::tc8456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232060,6 +240662,7 @@ "id": "bettertls::nameconstraints::tc8457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232087,6 +240690,7 @@ "id": "bettertls::nameconstraints::tc8458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232114,6 +240718,7 @@ "id": "bettertls::nameconstraints::tc8459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232141,6 +240746,7 @@ "id": "bettertls::nameconstraints::tc8460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232168,6 +240774,7 @@ "id": "bettertls::nameconstraints::tc8461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232195,6 +240802,7 @@ "id": "bettertls::nameconstraints::tc8462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232222,6 +240830,7 @@ "id": "bettertls::nameconstraints::tc8463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232249,6 +240858,7 @@ "id": "bettertls::nameconstraints::tc8464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232276,6 +240886,7 @@ "id": "bettertls::nameconstraints::tc8465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232303,6 +240914,7 @@ "id": "bettertls::nameconstraints::tc8466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232330,6 +240942,7 @@ "id": "bettertls::nameconstraints::tc8467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232357,6 +240970,7 @@ "id": "bettertls::nameconstraints::tc8468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232384,6 +240998,7 @@ "id": "bettertls::nameconstraints::tc8469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232411,6 +241026,7 @@ "id": "bettertls::nameconstraints::tc8470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232438,6 +241054,7 @@ "id": "bettertls::nameconstraints::tc8471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232465,6 +241082,7 @@ "id": "bettertls::nameconstraints::tc8472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232492,6 +241110,7 @@ "id": "bettertls::nameconstraints::tc8473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232519,6 +241138,7 @@ "id": "bettertls::nameconstraints::tc8474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232546,6 +241166,7 @@ "id": "bettertls::nameconstraints::tc8475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232573,6 +241194,7 @@ "id": "bettertls::nameconstraints::tc8476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232600,6 +241222,7 @@ "id": "bettertls::nameconstraints::tc8477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232627,6 +241250,7 @@ "id": "bettertls::nameconstraints::tc8478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232654,6 +241278,7 @@ "id": "bettertls::nameconstraints::tc8479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232681,6 +241306,7 @@ "id": "bettertls::nameconstraints::tc8480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232708,6 +241334,7 @@ "id": "bettertls::nameconstraints::tc8481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232735,6 +241362,7 @@ "id": "bettertls::nameconstraints::tc8482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232762,6 +241390,7 @@ "id": "bettertls::nameconstraints::tc8483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232789,6 +241418,7 @@ "id": "bettertls::nameconstraints::tc8484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232816,6 +241446,7 @@ "id": "bettertls::nameconstraints::tc8485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232843,6 +241474,7 @@ "id": "bettertls::nameconstraints::tc8486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232870,6 +241502,7 @@ "id": "bettertls::nameconstraints::tc8487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232897,6 +241530,7 @@ "id": "bettertls::nameconstraints::tc8488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232924,6 +241558,7 @@ "id": "bettertls::nameconstraints::tc8489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232951,6 +241586,7 @@ "id": "bettertls::nameconstraints::tc8490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -232978,6 +241614,7 @@ "id": "bettertls::nameconstraints::tc8491", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8491` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233005,6 +241642,7 @@ "id": "bettertls::nameconstraints::tc8492", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8492` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233032,6 +241670,7 @@ "id": "bettertls::nameconstraints::tc8493", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8493` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233059,6 +241698,7 @@ "id": "bettertls::nameconstraints::tc8494", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8494` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233086,6 +241726,7 @@ "id": "bettertls::nameconstraints::tc8495", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8495` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233113,6 +241754,7 @@ "id": "bettertls::nameconstraints::tc8496", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8496` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233140,6 +241782,7 @@ "id": "bettertls::nameconstraints::tc8497", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8497` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233167,6 +241810,7 @@ "id": "bettertls::nameconstraints::tc8498", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8498` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233194,6 +241838,7 @@ "id": "bettertls::nameconstraints::tc8499", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8499` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233221,6 +241866,7 @@ "id": "bettertls::nameconstraints::tc8500", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8500` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233248,6 +241894,7 @@ "id": "bettertls::nameconstraints::tc8501", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8501` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233275,6 +241922,7 @@ "id": "bettertls::nameconstraints::tc8502", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8502` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233302,6 +241950,7 @@ "id": "bettertls::nameconstraints::tc8503", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8503` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233329,6 +241978,7 @@ "id": "bettertls::nameconstraints::tc8504", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8504` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233356,6 +242006,7 @@ "id": "bettertls::nameconstraints::tc8505", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8505` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233383,6 +242034,7 @@ "id": "bettertls::nameconstraints::tc8506", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8506` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233410,6 +242062,7 @@ "id": "bettertls::nameconstraints::tc8507", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8507` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233437,6 +242090,7 @@ "id": "bettertls::nameconstraints::tc8508", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8508` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233464,6 +242118,7 @@ "id": "bettertls::nameconstraints::tc8509", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8509` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233491,6 +242146,7 @@ "id": "bettertls::nameconstraints::tc8510", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8510` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233518,6 +242174,7 @@ "id": "bettertls::nameconstraints::tc8511", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8511` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233545,6 +242202,7 @@ "id": "bettertls::nameconstraints::tc8512", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8512` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233572,6 +242230,7 @@ "id": "bettertls::nameconstraints::tc8513", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8513` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233599,6 +242258,7 @@ "id": "bettertls::nameconstraints::tc8514", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8514` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233626,6 +242286,7 @@ "id": "bettertls::nameconstraints::tc8515", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8515` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233653,6 +242314,7 @@ "id": "bettertls::nameconstraints::tc8516", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8516` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233680,6 +242342,7 @@ "id": "bettertls::nameconstraints::tc8517", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8517` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233707,6 +242370,7 @@ "id": "bettertls::nameconstraints::tc8518", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8518` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233734,6 +242398,7 @@ "id": "bettertls::nameconstraints::tc8519", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8519` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233761,6 +242426,7 @@ "id": "bettertls::nameconstraints::tc8520", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8520` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233788,6 +242454,7 @@ "id": "bettertls::nameconstraints::tc8521", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8521` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233815,6 +242482,7 @@ "id": "bettertls::nameconstraints::tc8522", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8522` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233842,6 +242510,7 @@ "id": "bettertls::nameconstraints::tc8523", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8523` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233869,6 +242538,7 @@ "id": "bettertls::nameconstraints::tc8524", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8524` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233896,6 +242566,7 @@ "id": "bettertls::nameconstraints::tc8525", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8525` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233923,6 +242594,7 @@ "id": "bettertls::nameconstraints::tc8526", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8526` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233950,6 +242622,7 @@ "id": "bettertls::nameconstraints::tc8527", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8527` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -233977,6 +242650,7 @@ "id": "bettertls::nameconstraints::tc8528", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8528` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234004,6 +242678,7 @@ "id": "bettertls::nameconstraints::tc8529", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8529` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234031,6 +242706,7 @@ "id": "bettertls::nameconstraints::tc8530", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8530` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234058,6 +242734,7 @@ "id": "bettertls::nameconstraints::tc8531", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8531` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234085,6 +242762,7 @@ "id": "bettertls::nameconstraints::tc8532", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8532` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234112,6 +242790,7 @@ "id": "bettertls::nameconstraints::tc8533", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8533` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234139,6 +242818,7 @@ "id": "bettertls::nameconstraints::tc8534", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8534` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234166,6 +242846,7 @@ "id": "bettertls::nameconstraints::tc8535", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8535` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234193,6 +242874,7 @@ "id": "bettertls::nameconstraints::tc8536", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8536` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234220,6 +242902,7 @@ "id": "bettertls::nameconstraints::tc8537", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8537` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234247,6 +242930,7 @@ "id": "bettertls::nameconstraints::tc8538", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8538` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234274,6 +242958,7 @@ "id": "bettertls::nameconstraints::tc8539", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8539` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234301,6 +242986,7 @@ "id": "bettertls::nameconstraints::tc8540", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8540` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234328,6 +243014,7 @@ "id": "bettertls::nameconstraints::tc8541", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8541` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234355,6 +243042,7 @@ "id": "bettertls::nameconstraints::tc8542", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8542` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234382,6 +243070,7 @@ "id": "bettertls::nameconstraints::tc8543", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8543` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234409,6 +243098,7 @@ "id": "bettertls::nameconstraints::tc8544", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8544` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234436,6 +243126,7 @@ "id": "bettertls::nameconstraints::tc8545", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8545` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234463,6 +243154,7 @@ "id": "bettertls::nameconstraints::tc8546", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8546` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234490,6 +243182,7 @@ "id": "bettertls::nameconstraints::tc8547", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8547` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234517,6 +243210,7 @@ "id": "bettertls::nameconstraints::tc8548", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8548` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234544,6 +243238,7 @@ "id": "bettertls::nameconstraints::tc8549", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8549` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234571,6 +243266,7 @@ "id": "bettertls::nameconstraints::tc8550", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8550` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234598,6 +243294,7 @@ "id": "bettertls::nameconstraints::tc8551", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8551` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234625,6 +243322,7 @@ "id": "bettertls::nameconstraints::tc8552", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8552` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234652,6 +243350,7 @@ "id": "bettertls::nameconstraints::tc8553", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8553` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234679,6 +243378,7 @@ "id": "bettertls::nameconstraints::tc8554", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8554` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234706,6 +243406,7 @@ "id": "bettertls::nameconstraints::tc8555", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8555` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234733,6 +243434,7 @@ "id": "bettertls::nameconstraints::tc8556", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8556` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234760,6 +243462,7 @@ "id": "bettertls::nameconstraints::tc8557", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8557` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234787,6 +243490,7 @@ "id": "bettertls::nameconstraints::tc8558", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8558` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234814,6 +243518,7 @@ "id": "bettertls::nameconstraints::tc8559", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8559` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234841,6 +243546,7 @@ "id": "bettertls::nameconstraints::tc8560", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8560` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234868,6 +243574,7 @@ "id": "bettertls::nameconstraints::tc8561", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8561` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234895,6 +243602,7 @@ "id": "bettertls::nameconstraints::tc8562", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8562` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234922,6 +243630,7 @@ "id": "bettertls::nameconstraints::tc8563", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8563` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234949,6 +243658,7 @@ "id": "bettertls::nameconstraints::tc8564", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8564` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -234976,6 +243686,7 @@ "id": "bettertls::nameconstraints::tc8565", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8565` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235003,6 +243714,7 @@ "id": "bettertls::nameconstraints::tc8566", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8566` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235030,6 +243742,7 @@ "id": "bettertls::nameconstraints::tc8567", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8567` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235057,6 +243770,7 @@ "id": "bettertls::nameconstraints::tc8568", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8568` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235084,6 +243798,7 @@ "id": "bettertls::nameconstraints::tc8569", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8569` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235111,6 +243826,7 @@ "id": "bettertls::nameconstraints::tc8570", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8570` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235138,6 +243854,7 @@ "id": "bettertls::nameconstraints::tc8571", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8571` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235165,6 +243882,7 @@ "id": "bettertls::nameconstraints::tc8572", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8572` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235192,6 +243910,7 @@ "id": "bettertls::nameconstraints::tc8573", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8573` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235219,6 +243938,7 @@ "id": "bettertls::nameconstraints::tc8574", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8574` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235246,6 +243966,7 @@ "id": "bettertls::nameconstraints::tc8575", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8575` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235273,6 +243994,7 @@ "id": "bettertls::nameconstraints::tc8576", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8576` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235300,6 +244022,7 @@ "id": "bettertls::nameconstraints::tc8577", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8577` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235327,6 +244050,7 @@ "id": "bettertls::nameconstraints::tc8578", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8578` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235354,6 +244078,7 @@ "id": "bettertls::nameconstraints::tc8579", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8579` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235381,6 +244106,7 @@ "id": "bettertls::nameconstraints::tc8580", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8580` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235408,6 +244134,7 @@ "id": "bettertls::nameconstraints::tc8581", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8581` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235435,6 +244162,7 @@ "id": "bettertls::nameconstraints::tc8582", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8582` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235462,6 +244190,7 @@ "id": "bettertls::nameconstraints::tc8583", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8583` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235489,6 +244218,7 @@ "id": "bettertls::nameconstraints::tc8584", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8584` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235516,6 +244246,7 @@ "id": "bettertls::nameconstraints::tc8585", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8585` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235543,6 +244274,7 @@ "id": "bettertls::nameconstraints::tc8586", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8586` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235570,6 +244302,7 @@ "id": "bettertls::nameconstraints::tc8587", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8587` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235597,6 +244330,7 @@ "id": "bettertls::nameconstraints::tc8588", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8588` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235624,6 +244358,7 @@ "id": "bettertls::nameconstraints::tc8589", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8589` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235651,6 +244386,7 @@ "id": "bettertls::nameconstraints::tc8590", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8590` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235678,6 +244414,7 @@ "id": "bettertls::nameconstraints::tc8591", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8591` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235705,6 +244442,7 @@ "id": "bettertls::nameconstraints::tc8592", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8592` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235732,6 +244470,7 @@ "id": "bettertls::nameconstraints::tc8593", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8593` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235759,6 +244498,7 @@ "id": "bettertls::nameconstraints::tc8594", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8594` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235786,6 +244526,7 @@ "id": "bettertls::nameconstraints::tc8595", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8595` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235813,6 +244554,7 @@ "id": "bettertls::nameconstraints::tc8596", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8596` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235840,6 +244582,7 @@ "id": "bettertls::nameconstraints::tc8597", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8597` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235867,6 +244610,7 @@ "id": "bettertls::nameconstraints::tc8598", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8598` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235894,6 +244638,7 @@ "id": "bettertls::nameconstraints::tc8599", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8599` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235921,6 +244666,7 @@ "id": "bettertls::nameconstraints::tc8600", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8600` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235948,6 +244694,7 @@ "id": "bettertls::nameconstraints::tc8601", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8601` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -235975,6 +244722,7 @@ "id": "bettertls::nameconstraints::tc8602", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8602` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236002,6 +244750,7 @@ "id": "bettertls::nameconstraints::tc8603", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8603` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236029,6 +244778,7 @@ "id": "bettertls::nameconstraints::tc8604", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8604` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236056,6 +244806,7 @@ "id": "bettertls::nameconstraints::tc8605", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8605` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236083,6 +244834,7 @@ "id": "bettertls::nameconstraints::tc8606", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8606` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236110,6 +244862,7 @@ "id": "bettertls::nameconstraints::tc8607", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8607` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236137,6 +244890,7 @@ "id": "bettertls::nameconstraints::tc8608", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8608` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236164,6 +244918,7 @@ "id": "bettertls::nameconstraints::tc8609", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8609` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236191,6 +244946,7 @@ "id": "bettertls::nameconstraints::tc8610", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8610` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236218,6 +244974,7 @@ "id": "bettertls::nameconstraints::tc8611", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8611` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236245,6 +245002,7 @@ "id": "bettertls::nameconstraints::tc8612", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8612` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236272,6 +245030,7 @@ "id": "bettertls::nameconstraints::tc8613", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8613` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236299,6 +245058,7 @@ "id": "bettertls::nameconstraints::tc8614", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8614` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236326,6 +245086,7 @@ "id": "bettertls::nameconstraints::tc8615", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8615` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236353,6 +245114,7 @@ "id": "bettertls::nameconstraints::tc8616", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8616` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236380,6 +245142,7 @@ "id": "bettertls::nameconstraints::tc8617", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8617` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236407,6 +245170,7 @@ "id": "bettertls::nameconstraints::tc8618", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8618` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236434,6 +245198,7 @@ "id": "bettertls::nameconstraints::tc8619", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8619` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236461,6 +245226,7 @@ "id": "bettertls::nameconstraints::tc8620", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8620` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236488,6 +245254,7 @@ "id": "bettertls::nameconstraints::tc8621", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8621` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236515,6 +245282,7 @@ "id": "bettertls::nameconstraints::tc8622", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8622` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236542,6 +245310,7 @@ "id": "bettertls::nameconstraints::tc8623", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8623` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236569,6 +245338,7 @@ "id": "bettertls::nameconstraints::tc8624", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8624` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236596,6 +245366,7 @@ "id": "bettertls::nameconstraints::tc8625", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8625` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236623,6 +245394,7 @@ "id": "bettertls::nameconstraints::tc8626", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8626` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236650,6 +245422,7 @@ "id": "bettertls::nameconstraints::tc8627", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8627` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236677,6 +245450,7 @@ "id": "bettertls::nameconstraints::tc8628", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8628` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236704,6 +245478,7 @@ "id": "bettertls::nameconstraints::tc8629", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8629` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236731,6 +245506,7 @@ "id": "bettertls::nameconstraints::tc8630", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8630` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236758,6 +245534,7 @@ "id": "bettertls::nameconstraints::tc8631", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8631` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236785,6 +245562,7 @@ "id": "bettertls::nameconstraints::tc8632", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8632` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236812,6 +245590,7 @@ "id": "bettertls::nameconstraints::tc8633", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8633` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236839,6 +245618,7 @@ "id": "bettertls::nameconstraints::tc8634", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8634` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236866,6 +245646,7 @@ "id": "bettertls::nameconstraints::tc8635", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8635` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236893,6 +245674,7 @@ "id": "bettertls::nameconstraints::tc8636", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8636` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236920,6 +245702,7 @@ "id": "bettertls::nameconstraints::tc8637", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8637` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236947,6 +245730,7 @@ "id": "bettertls::nameconstraints::tc8638", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8638` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -236974,6 +245758,7 @@ "id": "bettertls::nameconstraints::tc8639", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8639` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237001,6 +245786,7 @@ "id": "bettertls::nameconstraints::tc8640", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8640` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237028,6 +245814,7 @@ "id": "bettertls::nameconstraints::tc8641", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8641` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237055,6 +245842,7 @@ "id": "bettertls::nameconstraints::tc8642", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8642` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237082,6 +245870,7 @@ "id": "bettertls::nameconstraints::tc8643", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8643` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237109,6 +245898,7 @@ "id": "bettertls::nameconstraints::tc8644", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8644` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237136,6 +245926,7 @@ "id": "bettertls::nameconstraints::tc8645", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8645` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237163,6 +245954,7 @@ "id": "bettertls::nameconstraints::tc8646", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8646` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237190,6 +245982,7 @@ "id": "bettertls::nameconstraints::tc8647", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8647` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237217,6 +246010,7 @@ "id": "bettertls::nameconstraints::tc8648", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8648` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237244,6 +246038,7 @@ "id": "bettertls::nameconstraints::tc8649", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8649` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237271,6 +246066,7 @@ "id": "bettertls::nameconstraints::tc8650", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8650` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237298,6 +246094,7 @@ "id": "bettertls::nameconstraints::tc8651", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8651` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237325,6 +246122,7 @@ "id": "bettertls::nameconstraints::tc8652", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8652` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237352,6 +246150,7 @@ "id": "bettertls::nameconstraints::tc8653", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8653` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237379,6 +246178,7 @@ "id": "bettertls::nameconstraints::tc8654", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8654` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237406,6 +246206,7 @@ "id": "bettertls::nameconstraints::tc8655", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8655` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237433,6 +246234,7 @@ "id": "bettertls::nameconstraints::tc8656", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8656` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237460,6 +246262,7 @@ "id": "bettertls::nameconstraints::tc8657", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8657` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237487,6 +246290,7 @@ "id": "bettertls::nameconstraints::tc8658", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8658` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237514,6 +246318,7 @@ "id": "bettertls::nameconstraints::tc8659", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8659` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237541,6 +246346,7 @@ "id": "bettertls::nameconstraints::tc8660", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8660` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237568,6 +246374,7 @@ "id": "bettertls::nameconstraints::tc8661", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8661` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237595,6 +246402,7 @@ "id": "bettertls::nameconstraints::tc8662", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8662` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237622,6 +246430,7 @@ "id": "bettertls::nameconstraints::tc8663", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8663` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237649,6 +246458,7 @@ "id": "bettertls::nameconstraints::tc8664", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8664` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237676,6 +246486,7 @@ "id": "bettertls::nameconstraints::tc8665", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8665` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237703,6 +246514,7 @@ "id": "bettertls::nameconstraints::tc8666", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8666` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237730,6 +246542,7 @@ "id": "bettertls::nameconstraints::tc8667", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8667` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237757,6 +246570,7 @@ "id": "bettertls::nameconstraints::tc8668", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8668` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237784,6 +246598,7 @@ "id": "bettertls::nameconstraints::tc8669", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8669` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237811,6 +246626,7 @@ "id": "bettertls::nameconstraints::tc8670", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8670` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237838,6 +246654,7 @@ "id": "bettertls::nameconstraints::tc8671", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8671` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237865,6 +246682,7 @@ "id": "bettertls::nameconstraints::tc8672", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8672` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237892,6 +246710,7 @@ "id": "bettertls::nameconstraints::tc8673", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8673` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237919,6 +246738,7 @@ "id": "bettertls::nameconstraints::tc8674", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8674` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237946,6 +246766,7 @@ "id": "bettertls::nameconstraints::tc8675", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8675` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -237973,6 +246794,7 @@ "id": "bettertls::nameconstraints::tc8676", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8676` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238000,6 +246822,7 @@ "id": "bettertls::nameconstraints::tc8677", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8677` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238027,6 +246850,7 @@ "id": "bettertls::nameconstraints::tc8678", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8678` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238054,6 +246878,7 @@ "id": "bettertls::nameconstraints::tc8679", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8679` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238081,6 +246906,7 @@ "id": "bettertls::nameconstraints::tc8680", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8680` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238108,6 +246934,7 @@ "id": "bettertls::nameconstraints::tc8681", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8681` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238135,6 +246962,7 @@ "id": "bettertls::nameconstraints::tc8682", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8682` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238162,6 +246990,7 @@ "id": "bettertls::nameconstraints::tc8683", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8683` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238189,6 +247018,7 @@ "id": "bettertls::nameconstraints::tc8684", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8684` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238216,6 +247046,7 @@ "id": "bettertls::nameconstraints::tc8685", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8685` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238243,6 +247074,7 @@ "id": "bettertls::nameconstraints::tc8686", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8686` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238270,6 +247102,7 @@ "id": "bettertls::nameconstraints::tc8687", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8687` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238297,6 +247130,7 @@ "id": "bettertls::nameconstraints::tc8688", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8688` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238324,6 +247158,7 @@ "id": "bettertls::nameconstraints::tc8689", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8689` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238351,6 +247186,7 @@ "id": "bettertls::nameconstraints::tc8690", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8690` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238378,6 +247214,7 @@ "id": "bettertls::nameconstraints::tc8691", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8691` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238405,6 +247242,7 @@ "id": "bettertls::nameconstraints::tc8692", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8692` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238432,6 +247270,7 @@ "id": "bettertls::nameconstraints::tc8693", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8693` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238459,6 +247298,7 @@ "id": "bettertls::nameconstraints::tc8694", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8694` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238486,6 +247326,7 @@ "id": "bettertls::nameconstraints::tc8695", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8695` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238513,6 +247354,7 @@ "id": "bettertls::nameconstraints::tc8696", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8696` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238540,6 +247382,7 @@ "id": "bettertls::nameconstraints::tc8697", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8697` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238567,6 +247410,7 @@ "id": "bettertls::nameconstraints::tc8698", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8698` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238594,6 +247438,7 @@ "id": "bettertls::nameconstraints::tc8699", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8699` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238621,6 +247466,7 @@ "id": "bettertls::nameconstraints::tc8700", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8700` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238648,6 +247494,7 @@ "id": "bettertls::nameconstraints::tc8701", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8701` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238675,6 +247522,7 @@ "id": "bettertls::nameconstraints::tc8702", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8702` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238702,6 +247550,7 @@ "id": "bettertls::nameconstraints::tc8703", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8703` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238729,6 +247578,7 @@ "id": "bettertls::nameconstraints::tc8704", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8704` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238756,6 +247606,7 @@ "id": "bettertls::nameconstraints::tc8705", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8705` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238783,6 +247634,7 @@ "id": "bettertls::nameconstraints::tc8706", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8706` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238810,6 +247662,7 @@ "id": "bettertls::nameconstraints::tc8707", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8707` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238837,6 +247690,7 @@ "id": "bettertls::nameconstraints::tc8708", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8708` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238864,6 +247718,7 @@ "id": "bettertls::nameconstraints::tc8709", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8709` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238891,6 +247746,7 @@ "id": "bettertls::nameconstraints::tc8710", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8710` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238918,6 +247774,7 @@ "id": "bettertls::nameconstraints::tc8711", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8711` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238945,6 +247802,7 @@ "id": "bettertls::nameconstraints::tc8712", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8712` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238972,6 +247830,7 @@ "id": "bettertls::nameconstraints::tc8713", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8713` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -238999,6 +247858,7 @@ "id": "bettertls::nameconstraints::tc8714", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8714` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239026,6 +247886,7 @@ "id": "bettertls::nameconstraints::tc8715", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8715` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239053,6 +247914,7 @@ "id": "bettertls::nameconstraints::tc8716", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8716` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239080,6 +247942,7 @@ "id": "bettertls::nameconstraints::tc8717", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8717` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239107,6 +247970,7 @@ "id": "bettertls::nameconstraints::tc8718", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8718` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239134,6 +247998,7 @@ "id": "bettertls::nameconstraints::tc8719", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8719` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239161,6 +248026,7 @@ "id": "bettertls::nameconstraints::tc8720", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8720` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239188,6 +248054,7 @@ "id": "bettertls::nameconstraints::tc8721", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8721` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239215,6 +248082,7 @@ "id": "bettertls::nameconstraints::tc8722", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8722` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239242,6 +248110,7 @@ "id": "bettertls::nameconstraints::tc8723", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8723` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239269,6 +248138,7 @@ "id": "bettertls::nameconstraints::tc8724", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8724` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239296,6 +248166,7 @@ "id": "bettertls::nameconstraints::tc8725", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8725` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239323,6 +248194,7 @@ "id": "bettertls::nameconstraints::tc8726", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8726` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239350,6 +248222,7 @@ "id": "bettertls::nameconstraints::tc8727", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8727` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239377,6 +248250,7 @@ "id": "bettertls::nameconstraints::tc8728", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8728` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239404,6 +248278,7 @@ "id": "bettertls::nameconstraints::tc8729", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8729` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239431,6 +248306,7 @@ "id": "bettertls::nameconstraints::tc8730", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8730` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239458,6 +248334,7 @@ "id": "bettertls::nameconstraints::tc8731", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8731` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239485,6 +248362,7 @@ "id": "bettertls::nameconstraints::tc8732", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8732` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239512,6 +248390,7 @@ "id": "bettertls::nameconstraints::tc8733", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8733` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239539,6 +248418,7 @@ "id": "bettertls::nameconstraints::tc8734", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8734` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239566,6 +248446,7 @@ "id": "bettertls::nameconstraints::tc8735", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8735` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239593,6 +248474,7 @@ "id": "bettertls::nameconstraints::tc8736", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8736` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239620,6 +248502,7 @@ "id": "bettertls::nameconstraints::tc8737", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8737` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239647,6 +248530,7 @@ "id": "bettertls::nameconstraints::tc8738", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8738` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239674,6 +248558,7 @@ "id": "bettertls::nameconstraints::tc8739", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8739` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239701,6 +248586,7 @@ "id": "bettertls::nameconstraints::tc8740", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8740` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239728,6 +248614,7 @@ "id": "bettertls::nameconstraints::tc8741", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8741` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239755,6 +248642,7 @@ "id": "bettertls::nameconstraints::tc8742", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8742` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239782,6 +248670,7 @@ "id": "bettertls::nameconstraints::tc8743", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8743` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239809,6 +248698,7 @@ "id": "bettertls::nameconstraints::tc8744", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8744` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239836,6 +248726,7 @@ "id": "bettertls::nameconstraints::tc8745", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8745` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239863,6 +248754,7 @@ "id": "bettertls::nameconstraints::tc8746", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8746` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239890,6 +248782,7 @@ "id": "bettertls::nameconstraints::tc8747", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8747` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239917,6 +248810,7 @@ "id": "bettertls::nameconstraints::tc8748", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8748` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239944,6 +248838,7 @@ "id": "bettertls::nameconstraints::tc8749", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8749` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239971,6 +248866,7 @@ "id": "bettertls::nameconstraints::tc8750", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8750` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -239998,6 +248894,7 @@ "id": "bettertls::nameconstraints::tc8751", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8751` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240025,6 +248922,7 @@ "id": "bettertls::nameconstraints::tc8752", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8752` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240052,6 +248950,7 @@ "id": "bettertls::nameconstraints::tc8753", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8753` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240079,6 +248978,7 @@ "id": "bettertls::nameconstraints::tc8754", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8754` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240106,6 +249006,7 @@ "id": "bettertls::nameconstraints::tc8755", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8755` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240133,6 +249034,7 @@ "id": "bettertls::nameconstraints::tc8756", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8756` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240160,6 +249062,7 @@ "id": "bettertls::nameconstraints::tc8757", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8757` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240187,6 +249090,7 @@ "id": "bettertls::nameconstraints::tc8758", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8758` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240214,6 +249118,7 @@ "id": "bettertls::nameconstraints::tc8759", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8759` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240241,6 +249146,7 @@ "id": "bettertls::nameconstraints::tc8760", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8760` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240268,6 +249174,7 @@ "id": "bettertls::nameconstraints::tc8761", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8761` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240295,6 +249202,7 @@ "id": "bettertls::nameconstraints::tc8762", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8762` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240322,6 +249230,7 @@ "id": "bettertls::nameconstraints::tc8763", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8763` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240349,6 +249258,7 @@ "id": "bettertls::nameconstraints::tc8764", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8764` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240376,6 +249286,7 @@ "id": "bettertls::nameconstraints::tc8765", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8765` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240403,6 +249314,7 @@ "id": "bettertls::nameconstraints::tc8766", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8766` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240430,6 +249342,7 @@ "id": "bettertls::nameconstraints::tc8767", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8767` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240457,6 +249370,7 @@ "id": "bettertls::nameconstraints::tc8768", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8768` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240484,6 +249398,7 @@ "id": "bettertls::nameconstraints::tc8769", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8769` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240511,6 +249426,7 @@ "id": "bettertls::nameconstraints::tc8770", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8770` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240538,6 +249454,7 @@ "id": "bettertls::nameconstraints::tc8771", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8771` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240565,6 +249482,7 @@ "id": "bettertls::nameconstraints::tc8772", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8772` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240592,6 +249510,7 @@ "id": "bettertls::nameconstraints::tc8773", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8773` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240619,6 +249538,7 @@ "id": "bettertls::nameconstraints::tc8774", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8774` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240646,6 +249566,7 @@ "id": "bettertls::nameconstraints::tc8775", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8775` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240673,6 +249594,7 @@ "id": "bettertls::nameconstraints::tc8776", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8776` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240700,6 +249622,7 @@ "id": "bettertls::nameconstraints::tc8777", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8777` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240727,6 +249650,7 @@ "id": "bettertls::nameconstraints::tc8778", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8778` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240754,6 +249678,7 @@ "id": "bettertls::nameconstraints::tc8779", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8779` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240781,6 +249706,7 @@ "id": "bettertls::nameconstraints::tc8780", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8780` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240808,6 +249734,7 @@ "id": "bettertls::nameconstraints::tc8781", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8781` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240835,6 +249762,7 @@ "id": "bettertls::nameconstraints::tc8782", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8782` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240862,6 +249790,7 @@ "id": "bettertls::nameconstraints::tc8783", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8783` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240889,6 +249818,7 @@ "id": "bettertls::nameconstraints::tc8784", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8784` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240916,6 +249846,7 @@ "id": "bettertls::nameconstraints::tc8785", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8785` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240943,6 +249874,7 @@ "id": "bettertls::nameconstraints::tc8786", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8786` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240970,6 +249902,7 @@ "id": "bettertls::nameconstraints::tc8787", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8787` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -240997,6 +249930,7 @@ "id": "bettertls::nameconstraints::tc8788", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8788` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241024,6 +249958,7 @@ "id": "bettertls::nameconstraints::tc8789", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8789` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241051,6 +249986,7 @@ "id": "bettertls::nameconstraints::tc8790", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8790` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241078,6 +250014,7 @@ "id": "bettertls::nameconstraints::tc8791", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8791` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241105,6 +250042,7 @@ "id": "bettertls::nameconstraints::tc8792", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8792` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241132,6 +250070,7 @@ "id": "bettertls::nameconstraints::tc8793", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8793` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241159,6 +250098,7 @@ "id": "bettertls::nameconstraints::tc8794", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8794` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241186,6 +250126,7 @@ "id": "bettertls::nameconstraints::tc8795", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8795` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241213,6 +250154,7 @@ "id": "bettertls::nameconstraints::tc8796", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8796` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241240,6 +250182,7 @@ "id": "bettertls::nameconstraints::tc8797", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8797` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241267,6 +250210,7 @@ "id": "bettertls::nameconstraints::tc8798", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8798` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241294,6 +250238,7 @@ "id": "bettertls::nameconstraints::tc8799", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8799` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241321,6 +250266,7 @@ "id": "bettertls::nameconstraints::tc8800", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8800` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241348,6 +250294,7 @@ "id": "bettertls::nameconstraints::tc8801", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8801` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241375,6 +250322,7 @@ "id": "bettertls::nameconstraints::tc8802", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8802` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241402,6 +250350,7 @@ "id": "bettertls::nameconstraints::tc8803", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8803` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241429,6 +250378,7 @@ "id": "bettertls::nameconstraints::tc8804", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8804` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241456,6 +250406,7 @@ "id": "bettertls::nameconstraints::tc8805", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8805` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241483,6 +250434,7 @@ "id": "bettertls::nameconstraints::tc8806", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8806` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241510,6 +250462,7 @@ "id": "bettertls::nameconstraints::tc8807", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8807` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241537,6 +250490,7 @@ "id": "bettertls::nameconstraints::tc8808", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8808` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241564,6 +250518,7 @@ "id": "bettertls::nameconstraints::tc8809", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8809` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241591,6 +250546,7 @@ "id": "bettertls::nameconstraints::tc8810", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8810` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241618,6 +250574,7 @@ "id": "bettertls::nameconstraints::tc8811", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8811` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241645,6 +250602,7 @@ "id": "bettertls::nameconstraints::tc8812", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8812` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241672,6 +250630,7 @@ "id": "bettertls::nameconstraints::tc8813", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8813` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241699,6 +250658,7 @@ "id": "bettertls::nameconstraints::tc8814", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8814` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241726,6 +250686,7 @@ "id": "bettertls::nameconstraints::tc8815", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8815` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241753,6 +250714,7 @@ "id": "bettertls::nameconstraints::tc8816", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8816` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241780,6 +250742,7 @@ "id": "bettertls::nameconstraints::tc8817", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8817` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241807,6 +250770,7 @@ "id": "bettertls::nameconstraints::tc8818", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8818` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241834,6 +250798,7 @@ "id": "bettertls::nameconstraints::tc8819", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8819` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241861,6 +250826,7 @@ "id": "bettertls::nameconstraints::tc8820", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8820` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241888,6 +250854,7 @@ "id": "bettertls::nameconstraints::tc8821", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8821` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241915,6 +250882,7 @@ "id": "bettertls::nameconstraints::tc8822", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8822` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241942,6 +250910,7 @@ "id": "bettertls::nameconstraints::tc8823", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8823` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241969,6 +250938,7 @@ "id": "bettertls::nameconstraints::tc8824", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8824` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -241996,6 +250966,7 @@ "id": "bettertls::nameconstraints::tc8825", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8825` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242023,6 +250994,7 @@ "id": "bettertls::nameconstraints::tc8826", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8826` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242050,6 +251022,7 @@ "id": "bettertls::nameconstraints::tc8827", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8827` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242077,6 +251050,7 @@ "id": "bettertls::nameconstraints::tc8828", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8828` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242104,6 +251078,7 @@ "id": "bettertls::nameconstraints::tc8829", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8829` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242131,6 +251106,7 @@ "id": "bettertls::nameconstraints::tc8830", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8830` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242158,6 +251134,7 @@ "id": "bettertls::nameconstraints::tc8831", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8831` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242185,6 +251162,7 @@ "id": "bettertls::nameconstraints::tc8832", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8832` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242212,6 +251190,7 @@ "id": "bettertls::nameconstraints::tc8833", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8833` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242239,6 +251218,7 @@ "id": "bettertls::nameconstraints::tc8834", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8834` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242266,6 +251246,7 @@ "id": "bettertls::nameconstraints::tc8835", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8835` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242293,6 +251274,7 @@ "id": "bettertls::nameconstraints::tc8836", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8836` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242320,6 +251302,7 @@ "id": "bettertls::nameconstraints::tc8837", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8837` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242347,6 +251330,7 @@ "id": "bettertls::nameconstraints::tc8838", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8838` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242374,6 +251358,7 @@ "id": "bettertls::nameconstraints::tc8839", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8839` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242401,6 +251386,7 @@ "id": "bettertls::nameconstraints::tc8840", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8840` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242428,6 +251414,7 @@ "id": "bettertls::nameconstraints::tc8841", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8841` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242455,6 +251442,7 @@ "id": "bettertls::nameconstraints::tc8842", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8842` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242482,6 +251470,7 @@ "id": "bettertls::nameconstraints::tc8843", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8843` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242509,6 +251498,7 @@ "id": "bettertls::nameconstraints::tc8844", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8844` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242536,6 +251526,7 @@ "id": "bettertls::nameconstraints::tc8845", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8845` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242563,6 +251554,7 @@ "id": "bettertls::nameconstraints::tc8846", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8846` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242590,6 +251582,7 @@ "id": "bettertls::nameconstraints::tc8847", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8847` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242617,6 +251610,7 @@ "id": "bettertls::nameconstraints::tc8848", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8848` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242644,6 +251638,7 @@ "id": "bettertls::nameconstraints::tc8849", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8849` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242671,6 +251666,7 @@ "id": "bettertls::nameconstraints::tc8850", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8850` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242698,6 +251694,7 @@ "id": "bettertls::nameconstraints::tc8851", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8851` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242725,6 +251722,7 @@ "id": "bettertls::nameconstraints::tc8852", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8852` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242752,6 +251750,7 @@ "id": "bettertls::nameconstraints::tc8853", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8853` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242779,6 +251778,7 @@ "id": "bettertls::nameconstraints::tc8854", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8854` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242806,6 +251806,7 @@ "id": "bettertls::nameconstraints::tc8855", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8855` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242833,6 +251834,7 @@ "id": "bettertls::nameconstraints::tc8856", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8856` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242860,6 +251862,7 @@ "id": "bettertls::nameconstraints::tc8857", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8857` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242887,6 +251890,7 @@ "id": "bettertls::nameconstraints::tc8858", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8858` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242914,6 +251918,7 @@ "id": "bettertls::nameconstraints::tc8859", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8859` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242941,6 +251946,7 @@ "id": "bettertls::nameconstraints::tc8860", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8860` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242968,6 +251974,7 @@ "id": "bettertls::nameconstraints::tc8861", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8861` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -242995,6 +252002,7 @@ "id": "bettertls::nameconstraints::tc8862", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8862` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243022,6 +252030,7 @@ "id": "bettertls::nameconstraints::tc8863", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8863` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243049,6 +252058,7 @@ "id": "bettertls::nameconstraints::tc8864", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8864` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243076,6 +252086,7 @@ "id": "bettertls::nameconstraints::tc8865", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8865` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243103,6 +252114,7 @@ "id": "bettertls::nameconstraints::tc8866", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8866` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243130,6 +252142,7 @@ "id": "bettertls::nameconstraints::tc8867", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8867` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243157,6 +252170,7 @@ "id": "bettertls::nameconstraints::tc8868", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8868` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243184,6 +252198,7 @@ "id": "bettertls::nameconstraints::tc8869", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8869` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243211,6 +252226,7 @@ "id": "bettertls::nameconstraints::tc8870", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8870` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243238,6 +252254,7 @@ "id": "bettertls::nameconstraints::tc8871", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8871` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243265,6 +252282,7 @@ "id": "bettertls::nameconstraints::tc8872", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8872` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243292,6 +252310,7 @@ "id": "bettertls::nameconstraints::tc8873", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8873` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243319,6 +252338,7 @@ "id": "bettertls::nameconstraints::tc8874", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8874` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243346,6 +252366,7 @@ "id": "bettertls::nameconstraints::tc8875", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8875` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243373,6 +252394,7 @@ "id": "bettertls::nameconstraints::tc8876", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8876` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243400,6 +252422,7 @@ "id": "bettertls::nameconstraints::tc8877", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8877` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243427,6 +252450,7 @@ "id": "bettertls::nameconstraints::tc8878", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8878` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243454,6 +252478,7 @@ "id": "bettertls::nameconstraints::tc8879", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8879` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243481,6 +252506,7 @@ "id": "bettertls::nameconstraints::tc8880", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8880` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243508,6 +252534,7 @@ "id": "bettertls::nameconstraints::tc8881", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8881` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243535,6 +252562,7 @@ "id": "bettertls::nameconstraints::tc8882", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8882` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243562,6 +252590,7 @@ "id": "bettertls::nameconstraints::tc8883", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8883` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243589,6 +252618,7 @@ "id": "bettertls::nameconstraints::tc8884", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8884` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243616,6 +252646,7 @@ "id": "bettertls::nameconstraints::tc8885", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8885` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243643,6 +252674,7 @@ "id": "bettertls::nameconstraints::tc8886", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8886` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243670,6 +252702,7 @@ "id": "bettertls::nameconstraints::tc8887", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8887` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243697,6 +252730,7 @@ "id": "bettertls::nameconstraints::tc8888", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8888` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243724,6 +252758,7 @@ "id": "bettertls::nameconstraints::tc8889", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8889` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243751,6 +252786,7 @@ "id": "bettertls::nameconstraints::tc8890", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8890` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243778,6 +252814,7 @@ "id": "bettertls::nameconstraints::tc8891", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8891` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243805,6 +252842,7 @@ "id": "bettertls::nameconstraints::tc8892", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8892` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243832,6 +252870,7 @@ "id": "bettertls::nameconstraints::tc8893", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8893` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243859,6 +252898,7 @@ "id": "bettertls::nameconstraints::tc8894", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8894` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243886,6 +252926,7 @@ "id": "bettertls::nameconstraints::tc8895", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8895` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243913,6 +252954,7 @@ "id": "bettertls::nameconstraints::tc8896", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8896` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243940,6 +252982,7 @@ "id": "bettertls::nameconstraints::tc8897", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8897` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243967,6 +253010,7 @@ "id": "bettertls::nameconstraints::tc8898", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8898` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -243994,6 +253038,7 @@ "id": "bettertls::nameconstraints::tc8899", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8899` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244021,6 +253066,7 @@ "id": "bettertls::nameconstraints::tc8900", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8900` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244048,6 +253094,7 @@ "id": "bettertls::nameconstraints::tc8901", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8901` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244075,6 +253122,7 @@ "id": "bettertls::nameconstraints::tc8902", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8902` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244102,6 +253150,7 @@ "id": "bettertls::nameconstraints::tc8903", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8903` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244129,6 +253178,7 @@ "id": "bettertls::nameconstraints::tc8904", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8904` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244156,6 +253206,7 @@ "id": "bettertls::nameconstraints::tc8905", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8905` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244183,6 +253234,7 @@ "id": "bettertls::nameconstraints::tc8906", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8906` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244210,6 +253262,7 @@ "id": "bettertls::nameconstraints::tc8907", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8907` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244237,6 +253290,7 @@ "id": "bettertls::nameconstraints::tc8908", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8908` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244264,6 +253318,7 @@ "id": "bettertls::nameconstraints::tc8909", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8909` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244291,6 +253346,7 @@ "id": "bettertls::nameconstraints::tc8910", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8910` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244318,6 +253374,7 @@ "id": "bettertls::nameconstraints::tc8911", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8911` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244345,6 +253402,7 @@ "id": "bettertls::nameconstraints::tc8912", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8912` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244372,6 +253430,7 @@ "id": "bettertls::nameconstraints::tc8913", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8913` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244399,6 +253458,7 @@ "id": "bettertls::nameconstraints::tc8914", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8914` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244426,6 +253486,7 @@ "id": "bettertls::nameconstraints::tc8915", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8915` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244453,6 +253514,7 @@ "id": "bettertls::nameconstraints::tc8916", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8916` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244480,6 +253542,7 @@ "id": "bettertls::nameconstraints::tc8917", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8917` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244507,6 +253570,7 @@ "id": "bettertls::nameconstraints::tc8918", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8918` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244534,6 +253598,7 @@ "id": "bettertls::nameconstraints::tc8919", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8919` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244561,6 +253626,7 @@ "id": "bettertls::nameconstraints::tc8920", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8920` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244588,6 +253654,7 @@ "id": "bettertls::nameconstraints::tc8921", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8921` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244615,6 +253682,7 @@ "id": "bettertls::nameconstraints::tc8922", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8922` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244642,6 +253710,7 @@ "id": "bettertls::nameconstraints::tc8923", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8923` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244669,6 +253738,7 @@ "id": "bettertls::nameconstraints::tc8924", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8924` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244696,6 +253766,7 @@ "id": "bettertls::nameconstraints::tc8925", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8925` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244723,6 +253794,7 @@ "id": "bettertls::nameconstraints::tc8926", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8926` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244750,6 +253822,7 @@ "id": "bettertls::nameconstraints::tc8927", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8927` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244777,6 +253850,7 @@ "id": "bettertls::nameconstraints::tc8928", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8928` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244804,6 +253878,7 @@ "id": "bettertls::nameconstraints::tc8929", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8929` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244831,6 +253906,7 @@ "id": "bettertls::nameconstraints::tc8930", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8930` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244858,6 +253934,7 @@ "id": "bettertls::nameconstraints::tc8931", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8931` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244885,6 +253962,7 @@ "id": "bettertls::nameconstraints::tc8932", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8932` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244912,6 +253990,7 @@ "id": "bettertls::nameconstraints::tc8933", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8933` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244939,6 +254018,7 @@ "id": "bettertls::nameconstraints::tc8934", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8934` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244966,6 +254046,7 @@ "id": "bettertls::nameconstraints::tc8935", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8935` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -244993,6 +254074,7 @@ "id": "bettertls::nameconstraints::tc8936", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8936` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245020,6 +254102,7 @@ "id": "bettertls::nameconstraints::tc8937", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8937` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245047,6 +254130,7 @@ "id": "bettertls::nameconstraints::tc8938", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8938` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245074,6 +254158,7 @@ "id": "bettertls::nameconstraints::tc8939", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8939` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245101,6 +254186,7 @@ "id": "bettertls::nameconstraints::tc8940", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8940` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245128,6 +254214,7 @@ "id": "bettertls::nameconstraints::tc8941", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8941` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245155,6 +254242,7 @@ "id": "bettertls::nameconstraints::tc8942", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8942` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245182,6 +254270,7 @@ "id": "bettertls::nameconstraints::tc8943", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8943` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245209,6 +254298,7 @@ "id": "bettertls::nameconstraints::tc8944", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8944` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245236,6 +254326,7 @@ "id": "bettertls::nameconstraints::tc8945", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8945` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245263,6 +254354,7 @@ "id": "bettertls::nameconstraints::tc8946", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8946` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245290,6 +254382,7 @@ "id": "bettertls::nameconstraints::tc8947", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8947` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245317,6 +254410,7 @@ "id": "bettertls::nameconstraints::tc8948", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8948` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245344,6 +254438,7 @@ "id": "bettertls::nameconstraints::tc8949", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8949` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245371,6 +254466,7 @@ "id": "bettertls::nameconstraints::tc8950", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8950` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245398,6 +254494,7 @@ "id": "bettertls::nameconstraints::tc8951", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8951` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245425,6 +254522,7 @@ "id": "bettertls::nameconstraints::tc8952", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8952` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245452,6 +254550,7 @@ "id": "bettertls::nameconstraints::tc8953", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8953` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245479,6 +254578,7 @@ "id": "bettertls::nameconstraints::tc8954", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8954` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245506,6 +254606,7 @@ "id": "bettertls::nameconstraints::tc8955", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8955` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245533,6 +254634,7 @@ "id": "bettertls::nameconstraints::tc8956", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8956` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245560,6 +254662,7 @@ "id": "bettertls::nameconstraints::tc8957", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8957` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245587,6 +254690,7 @@ "id": "bettertls::nameconstraints::tc8958", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8958` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245614,6 +254718,7 @@ "id": "bettertls::nameconstraints::tc8959", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8959` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245641,6 +254746,7 @@ "id": "bettertls::nameconstraints::tc8960", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8960` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245668,6 +254774,7 @@ "id": "bettertls::nameconstraints::tc8961", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8961` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245695,6 +254802,7 @@ "id": "bettertls::nameconstraints::tc8962", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8962` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245722,6 +254830,7 @@ "id": "bettertls::nameconstraints::tc8963", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8963` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245749,6 +254858,7 @@ "id": "bettertls::nameconstraints::tc8964", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8964` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245776,6 +254886,7 @@ "id": "bettertls::nameconstraints::tc8965", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8965` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245803,6 +254914,7 @@ "id": "bettertls::nameconstraints::tc8966", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8966` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245830,6 +254942,7 @@ "id": "bettertls::nameconstraints::tc8967", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8967` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245857,6 +254970,7 @@ "id": "bettertls::nameconstraints::tc8968", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8968` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245884,6 +254998,7 @@ "id": "bettertls::nameconstraints::tc8969", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8969` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245911,6 +255026,7 @@ "id": "bettertls::nameconstraints::tc8970", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8970` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245938,6 +255054,7 @@ "id": "bettertls::nameconstraints::tc8971", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8971` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245965,6 +255082,7 @@ "id": "bettertls::nameconstraints::tc8972", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8972` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -245992,6 +255110,7 @@ "id": "bettertls::nameconstraints::tc8973", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8973` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246019,6 +255138,7 @@ "id": "bettertls::nameconstraints::tc8974", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8974` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246046,6 +255166,7 @@ "id": "bettertls::nameconstraints::tc8975", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8975` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246073,6 +255194,7 @@ "id": "bettertls::nameconstraints::tc8976", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8976` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246100,6 +255222,7 @@ "id": "bettertls::nameconstraints::tc8977", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8977` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246127,6 +255250,7 @@ "id": "bettertls::nameconstraints::tc8978", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8978` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246154,6 +255278,7 @@ "id": "bettertls::nameconstraints::tc8979", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8979` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246181,6 +255306,7 @@ "id": "bettertls::nameconstraints::tc8980", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8980` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246208,6 +255334,7 @@ "id": "bettertls::nameconstraints::tc8981", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8981` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246235,6 +255362,7 @@ "id": "bettertls::nameconstraints::tc8982", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8982` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246262,6 +255390,7 @@ "id": "bettertls::nameconstraints::tc8983", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8983` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246289,6 +255418,7 @@ "id": "bettertls::nameconstraints::tc8984", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8984` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246316,6 +255446,7 @@ "id": "bettertls::nameconstraints::tc8985", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8985` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246343,6 +255474,7 @@ "id": "bettertls::nameconstraints::tc8986", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8986` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246370,6 +255502,7 @@ "id": "bettertls::nameconstraints::tc8987", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8987` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246397,6 +255530,7 @@ "id": "bettertls::nameconstraints::tc8988", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8988` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246424,6 +255558,7 @@ "id": "bettertls::nameconstraints::tc8989", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8989` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246451,6 +255586,7 @@ "id": "bettertls::nameconstraints::tc8990", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8990` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246478,6 +255614,7 @@ "id": "bettertls::nameconstraints::tc8991", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8991` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246505,6 +255642,7 @@ "id": "bettertls::nameconstraints::tc8992", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8992` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246532,6 +255670,7 @@ "id": "bettertls::nameconstraints::tc8993", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8993` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246559,6 +255698,7 @@ "id": "bettertls::nameconstraints::tc8994", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8994` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246586,6 +255726,7 @@ "id": "bettertls::nameconstraints::tc8995", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8995` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246613,6 +255754,7 @@ "id": "bettertls::nameconstraints::tc8996", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8996` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246640,6 +255782,7 @@ "id": "bettertls::nameconstraints::tc8997", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8997` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246667,6 +255810,7 @@ "id": "bettertls::nameconstraints::tc8998", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8998` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246694,6 +255838,7 @@ "id": "bettertls::nameconstraints::tc8999", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8999` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246721,6 +255866,7 @@ "id": "bettertls::nameconstraints::tc9000", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9000` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246748,6 +255894,7 @@ "id": "bettertls::nameconstraints::tc9001", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9001` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246775,6 +255922,7 @@ "id": "bettertls::nameconstraints::tc9002", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9002` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246802,6 +255950,7 @@ "id": "bettertls::nameconstraints::tc9003", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9003` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246829,6 +255978,7 @@ "id": "bettertls::nameconstraints::tc9004", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9004` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246856,6 +256006,7 @@ "id": "bettertls::nameconstraints::tc9005", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9005` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246883,6 +256034,7 @@ "id": "bettertls::nameconstraints::tc9006", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9006` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246910,6 +256062,7 @@ "id": "bettertls::nameconstraints::tc9007", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9007` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246937,6 +256090,7 @@ "id": "bettertls::nameconstraints::tc9008", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9008` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246964,6 +256118,7 @@ "id": "bettertls::nameconstraints::tc9009", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9009` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -246991,6 +256146,7 @@ "id": "bettertls::nameconstraints::tc9010", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9010` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247018,6 +256174,7 @@ "id": "bettertls::nameconstraints::tc9011", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9011` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247045,6 +256202,7 @@ "id": "bettertls::nameconstraints::tc9012", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9012` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247072,6 +256230,7 @@ "id": "bettertls::nameconstraints::tc9013", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9013` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247099,6 +256258,7 @@ "id": "bettertls::nameconstraints::tc9014", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9014` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247126,6 +256286,7 @@ "id": "bettertls::nameconstraints::tc9015", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9015` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247153,6 +256314,7 @@ "id": "bettertls::nameconstraints::tc9016", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9016` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247180,6 +256342,7 @@ "id": "bettertls::nameconstraints::tc9017", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9017` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247207,6 +256370,7 @@ "id": "bettertls::nameconstraints::tc9018", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9018` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247234,6 +256398,7 @@ "id": "bettertls::nameconstraints::tc9019", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9019` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247261,6 +256426,7 @@ "id": "bettertls::nameconstraints::tc9020", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9020` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247288,6 +256454,7 @@ "id": "bettertls::nameconstraints::tc9021", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9021` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247315,6 +256482,7 @@ "id": "bettertls::nameconstraints::tc9022", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9022` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247342,6 +256510,7 @@ "id": "bettertls::nameconstraints::tc9023", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9023` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247369,6 +256538,7 @@ "id": "bettertls::nameconstraints::tc9024", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9024` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247396,6 +256566,7 @@ "id": "bettertls::nameconstraints::tc9025", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9025` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247423,6 +256594,7 @@ "id": "bettertls::nameconstraints::tc9026", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9026` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247450,6 +256622,7 @@ "id": "bettertls::nameconstraints::tc9027", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9027` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247477,6 +256650,7 @@ "id": "bettertls::nameconstraints::tc9028", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9028` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247504,6 +256678,7 @@ "id": "bettertls::nameconstraints::tc9029", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9029` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247531,6 +256706,7 @@ "id": "bettertls::nameconstraints::tc9030", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9030` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247558,6 +256734,7 @@ "id": "bettertls::nameconstraints::tc9031", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9031` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247585,6 +256762,7 @@ "id": "bettertls::nameconstraints::tc9032", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9032` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247612,6 +256790,7 @@ "id": "bettertls::nameconstraints::tc9033", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9033` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247639,6 +256818,7 @@ "id": "bettertls::nameconstraints::tc9034", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9034` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247666,6 +256846,7 @@ "id": "bettertls::nameconstraints::tc9035", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9035` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247693,6 +256874,7 @@ "id": "bettertls::nameconstraints::tc9036", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9036` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247720,6 +256902,7 @@ "id": "bettertls::nameconstraints::tc9037", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9037` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247747,6 +256930,7 @@ "id": "bettertls::nameconstraints::tc9038", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9038` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247774,6 +256958,7 @@ "id": "bettertls::nameconstraints::tc9039", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9039` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247801,6 +256986,7 @@ "id": "bettertls::nameconstraints::tc9040", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9040` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247828,6 +257014,7 @@ "id": "bettertls::nameconstraints::tc9041", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9041` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247855,6 +257042,7 @@ "id": "bettertls::nameconstraints::tc9042", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9042` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247882,6 +257070,7 @@ "id": "bettertls::nameconstraints::tc9043", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9043` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247909,6 +257098,7 @@ "id": "bettertls::nameconstraints::tc9044", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9044` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247936,6 +257126,7 @@ "id": "bettertls::nameconstraints::tc9045", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9045` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247963,6 +257154,7 @@ "id": "bettertls::nameconstraints::tc9046", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9046` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -247990,6 +257182,7 @@ "id": "bettertls::nameconstraints::tc9047", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9047` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248017,6 +257210,7 @@ "id": "bettertls::nameconstraints::tc9048", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9048` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248044,6 +257238,7 @@ "id": "bettertls::nameconstraints::tc9049", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9049` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248071,6 +257266,7 @@ "id": "bettertls::nameconstraints::tc9050", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9050` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248098,6 +257294,7 @@ "id": "bettertls::nameconstraints::tc9051", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9051` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248125,6 +257322,7 @@ "id": "bettertls::nameconstraints::tc9052", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9052` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248152,6 +257350,7 @@ "id": "bettertls::nameconstraints::tc9053", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9053` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248179,6 +257378,7 @@ "id": "bettertls::nameconstraints::tc9054", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9054` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248206,6 +257406,7 @@ "id": "bettertls::nameconstraints::tc9055", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9055` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248233,6 +257434,7 @@ "id": "bettertls::nameconstraints::tc9056", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9056` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248260,6 +257462,7 @@ "id": "bettertls::nameconstraints::tc9057", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9057` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248287,6 +257490,7 @@ "id": "bettertls::nameconstraints::tc9058", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9058` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248314,6 +257518,7 @@ "id": "bettertls::nameconstraints::tc9059", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9059` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248341,6 +257546,7 @@ "id": "bettertls::nameconstraints::tc9060", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9060` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248368,6 +257574,7 @@ "id": "bettertls::nameconstraints::tc9061", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9061` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248395,6 +257602,7 @@ "id": "bettertls::nameconstraints::tc9062", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9062` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248422,6 +257630,7 @@ "id": "bettertls::nameconstraints::tc9063", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9063` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248449,6 +257658,7 @@ "id": "bettertls::nameconstraints::tc9064", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9064` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248476,6 +257686,7 @@ "id": "bettertls::nameconstraints::tc9065", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9065` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248503,6 +257714,7 @@ "id": "bettertls::nameconstraints::tc9066", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9066` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248530,6 +257742,7 @@ "id": "bettertls::nameconstraints::tc9067", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9067` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248557,6 +257770,7 @@ "id": "bettertls::nameconstraints::tc9068", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9068` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248584,6 +257798,7 @@ "id": "bettertls::nameconstraints::tc9069", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9069` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248611,6 +257826,7 @@ "id": "bettertls::nameconstraints::tc9070", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9070` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248638,6 +257854,7 @@ "id": "bettertls::nameconstraints::tc9071", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9071` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248665,6 +257882,7 @@ "id": "bettertls::nameconstraints::tc9072", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9072` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248692,6 +257910,7 @@ "id": "bettertls::nameconstraints::tc9073", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9073` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248719,6 +257938,7 @@ "id": "bettertls::nameconstraints::tc9074", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9074` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248746,6 +257966,7 @@ "id": "bettertls::nameconstraints::tc9075", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9075` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248773,6 +257994,7 @@ "id": "bettertls::nameconstraints::tc9076", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9076` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248800,6 +258022,7 @@ "id": "bettertls::nameconstraints::tc9077", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9077` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248827,6 +258050,7 @@ "id": "bettertls::nameconstraints::tc9078", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9078` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248854,6 +258078,7 @@ "id": "bettertls::nameconstraints::tc9079", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9079` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248881,6 +258106,7 @@ "id": "bettertls::nameconstraints::tc9080", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9080` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248908,6 +258134,7 @@ "id": "bettertls::nameconstraints::tc9081", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9081` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248935,6 +258162,7 @@ "id": "bettertls::nameconstraints::tc9082", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9082` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248962,6 +258190,7 @@ "id": "bettertls::nameconstraints::tc9083", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9083` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -248989,6 +258218,7 @@ "id": "bettertls::nameconstraints::tc9084", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9084` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249016,6 +258246,7 @@ "id": "bettertls::nameconstraints::tc9085", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9085` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249043,6 +258274,7 @@ "id": "bettertls::nameconstraints::tc9086", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9086` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249070,6 +258302,7 @@ "id": "bettertls::nameconstraints::tc9087", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9087` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249097,6 +258330,7 @@ "id": "bettertls::nameconstraints::tc9088", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9088` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249124,6 +258358,7 @@ "id": "bettertls::nameconstraints::tc9089", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9089` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249151,6 +258386,7 @@ "id": "bettertls::nameconstraints::tc9090", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9090` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249178,6 +258414,7 @@ "id": "bettertls::nameconstraints::tc9091", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9091` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249205,6 +258442,7 @@ "id": "bettertls::nameconstraints::tc9092", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9092` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249232,6 +258470,7 @@ "id": "bettertls::nameconstraints::tc9093", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9093` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249259,6 +258498,7 @@ "id": "bettertls::nameconstraints::tc9094", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9094` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249286,6 +258526,7 @@ "id": "bettertls::nameconstraints::tc9095", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9095` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249313,6 +258554,7 @@ "id": "bettertls::nameconstraints::tc9096", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9096` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249340,6 +258582,7 @@ "id": "bettertls::nameconstraints::tc9097", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9097` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249367,6 +258610,7 @@ "id": "bettertls::nameconstraints::tc9098", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9098` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249394,6 +258638,7 @@ "id": "bettertls::nameconstraints::tc9099", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9099` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249421,6 +258666,7 @@ "id": "bettertls::nameconstraints::tc9100", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9100` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249448,6 +258694,7 @@ "id": "bettertls::nameconstraints::tc9101", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9101` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249475,6 +258722,7 @@ "id": "bettertls::nameconstraints::tc9102", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9102` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249502,6 +258750,7 @@ "id": "bettertls::nameconstraints::tc9103", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9103` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249529,6 +258778,7 @@ "id": "bettertls::nameconstraints::tc9104", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9104` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249556,6 +258806,7 @@ "id": "bettertls::nameconstraints::tc9105", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9105` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249583,6 +258834,7 @@ "id": "bettertls::nameconstraints::tc9106", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9106` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249610,6 +258862,7 @@ "id": "bettertls::nameconstraints::tc9107", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9107` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249637,6 +258890,7 @@ "id": "bettertls::nameconstraints::tc9108", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9108` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249664,6 +258918,7 @@ "id": "bettertls::nameconstraints::tc9109", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9109` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249691,6 +258946,7 @@ "id": "bettertls::nameconstraints::tc9110", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9110` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249718,6 +258974,7 @@ "id": "bettertls::nameconstraints::tc9111", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9111` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249745,6 +259002,7 @@ "id": "bettertls::nameconstraints::tc9112", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9112` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249772,6 +259030,7 @@ "id": "bettertls::nameconstraints::tc9113", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9113` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249799,6 +259058,7 @@ "id": "bettertls::nameconstraints::tc9114", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9114` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249826,6 +259086,7 @@ "id": "bettertls::nameconstraints::tc9115", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9115` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249853,6 +259114,7 @@ "id": "bettertls::nameconstraints::tc9116", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9116` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249880,6 +259142,7 @@ "id": "bettertls::nameconstraints::tc9117", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9117` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249907,6 +259170,7 @@ "id": "bettertls::nameconstraints::tc9118", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9118` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249934,6 +259198,7 @@ "id": "bettertls::nameconstraints::tc9119", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9119` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249961,6 +259226,7 @@ "id": "bettertls::nameconstraints::tc9120", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9120` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -249988,6 +259254,7 @@ "id": "bettertls::nameconstraints::tc9121", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9121` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250015,6 +259282,7 @@ "id": "bettertls::nameconstraints::tc9122", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9122` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250042,6 +259310,7 @@ "id": "bettertls::nameconstraints::tc9123", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9123` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250069,6 +259338,7 @@ "id": "bettertls::nameconstraints::tc9124", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9124` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250096,6 +259366,7 @@ "id": "bettertls::nameconstraints::tc9125", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9125` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250123,6 +259394,7 @@ "id": "bettertls::nameconstraints::tc9126", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9126` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250150,6 +259422,7 @@ "id": "bettertls::nameconstraints::tc9127", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9127` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250177,6 +259450,7 @@ "id": "bettertls::nameconstraints::tc9128", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9128` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250204,6 +259478,7 @@ "id": "bettertls::nameconstraints::tc9129", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9129` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250231,6 +259506,7 @@ "id": "bettertls::nameconstraints::tc9130", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9130` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250258,6 +259534,7 @@ "id": "bettertls::nameconstraints::tc9131", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9131` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250285,6 +259562,7 @@ "id": "bettertls::nameconstraints::tc9132", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9132` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250312,6 +259590,7 @@ "id": "bettertls::nameconstraints::tc9133", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9133` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250339,6 +259618,7 @@ "id": "bettertls::nameconstraints::tc9134", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9134` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250366,6 +259646,7 @@ "id": "bettertls::nameconstraints::tc9135", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9135` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250393,6 +259674,7 @@ "id": "bettertls::nameconstraints::tc9136", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9136` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250420,6 +259702,7 @@ "id": "bettertls::nameconstraints::tc9137", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9137` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250447,6 +259730,7 @@ "id": "bettertls::nameconstraints::tc9138", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9138` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250474,6 +259758,7 @@ "id": "bettertls::nameconstraints::tc9139", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9139` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250501,6 +259786,7 @@ "id": "bettertls::nameconstraints::tc9140", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9140` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250528,6 +259814,7 @@ "id": "bettertls::nameconstraints::tc9141", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9141` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250555,6 +259842,7 @@ "id": "bettertls::nameconstraints::tc9142", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9142` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250582,6 +259870,7 @@ "id": "bettertls::nameconstraints::tc9143", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9143` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250609,6 +259898,7 @@ "id": "bettertls::nameconstraints::tc9144", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9144` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250636,6 +259926,7 @@ "id": "bettertls::nameconstraints::tc9145", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9145` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250663,6 +259954,7 @@ "id": "bettertls::nameconstraints::tc9146", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9146` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250690,6 +259982,7 @@ "id": "bettertls::nameconstraints::tc9147", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9147` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250717,6 +260010,7 @@ "id": "bettertls::nameconstraints::tc9148", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9148` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250744,6 +260038,7 @@ "id": "bettertls::nameconstraints::tc9149", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9149` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250771,6 +260066,7 @@ "id": "bettertls::nameconstraints::tc9150", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9150` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250798,6 +260094,7 @@ "id": "bettertls::nameconstraints::tc9151", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9151` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250825,6 +260122,7 @@ "id": "bettertls::nameconstraints::tc9152", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9152` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250852,6 +260150,7 @@ "id": "bettertls::nameconstraints::tc9153", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9153` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250879,6 +260178,7 @@ "id": "bettertls::nameconstraints::tc9154", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9154` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250906,6 +260206,7 @@ "id": "bettertls::nameconstraints::tc9155", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9155` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250933,6 +260234,7 @@ "id": "bettertls::nameconstraints::tc9156", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9156` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250960,6 +260262,7 @@ "id": "bettertls::nameconstraints::tc9157", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9157` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -250987,6 +260290,7 @@ "id": "bettertls::nameconstraints::tc9158", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9158` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251014,6 +260318,7 @@ "id": "bettertls::nameconstraints::tc9159", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9159` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251041,6 +260346,7 @@ "id": "bettertls::nameconstraints::tc9160", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9160` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251068,6 +260374,7 @@ "id": "bettertls::nameconstraints::tc9161", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9161` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251095,6 +260402,7 @@ "id": "bettertls::nameconstraints::tc9162", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9162` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251122,6 +260430,7 @@ "id": "bettertls::nameconstraints::tc9163", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9163` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251149,6 +260458,7 @@ "id": "bettertls::nameconstraints::tc9164", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9164` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251176,6 +260486,7 @@ "id": "bettertls::nameconstraints::tc9165", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9165` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251203,6 +260514,7 @@ "id": "bettertls::nameconstraints::tc9166", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9166` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251230,6 +260542,7 @@ "id": "bettertls::nameconstraints::tc9167", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9167` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251257,6 +260570,7 @@ "id": "bettertls::nameconstraints::tc9168", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9168` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251284,6 +260598,7 @@ "id": "bettertls::nameconstraints::tc9169", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9169` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251311,6 +260626,7 @@ "id": "bettertls::nameconstraints::tc9170", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9170` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251338,6 +260654,7 @@ "id": "bettertls::nameconstraints::tc9171", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9171` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251365,6 +260682,7 @@ "id": "bettertls::nameconstraints::tc9172", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9172` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251392,6 +260710,7 @@ "id": "bettertls::nameconstraints::tc9173", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9173` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251419,6 +260738,7 @@ "id": "bettertls::nameconstraints::tc9174", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9174` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251446,6 +260766,7 @@ "id": "bettertls::nameconstraints::tc9175", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9175` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251473,6 +260794,7 @@ "id": "bettertls::nameconstraints::tc9176", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9176` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251500,6 +260822,7 @@ "id": "bettertls::nameconstraints::tc9177", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9177` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251527,6 +260850,7 @@ "id": "bettertls::nameconstraints::tc9178", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9178` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251554,6 +260878,7 @@ "id": "bettertls::nameconstraints::tc9179", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9179` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251581,6 +260906,7 @@ "id": "bettertls::nameconstraints::tc9180", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9180` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251608,6 +260934,7 @@ "id": "bettertls::nameconstraints::tc9181", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9181` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251635,6 +260962,7 @@ "id": "bettertls::nameconstraints::tc9182", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9182` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251662,6 +260990,7 @@ "id": "bettertls::nameconstraints::tc9183", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9183` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251689,6 +261018,7 @@ "id": "bettertls::nameconstraints::tc9184", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9184` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251716,6 +261046,7 @@ "id": "bettertls::nameconstraints::tc9185", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9185` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251743,6 +261074,7 @@ "id": "bettertls::nameconstraints::tc9186", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9186` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251770,6 +261102,7 @@ "id": "bettertls::nameconstraints::tc9187", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9187` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251797,6 +261130,7 @@ "id": "bettertls::nameconstraints::tc9188", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9188` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251824,6 +261158,7 @@ "id": "bettertls::nameconstraints::tc9189", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9189` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251851,6 +261186,7 @@ "id": "bettertls::nameconstraints::tc9190", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9190` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251878,6 +261214,7 @@ "id": "bettertls::nameconstraints::tc9191", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9191` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251905,6 +261242,7 @@ "id": "bettertls::nameconstraints::tc9192", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9192` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251932,6 +261270,7 @@ "id": "bettertls::nameconstraints::tc9193", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9193` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251959,6 +261298,7 @@ "id": "bettertls::nameconstraints::tc9194", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9194` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -251986,6 +261326,7 @@ "id": "bettertls::nameconstraints::tc9195", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9195` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252013,6 +261354,7 @@ "id": "bettertls::nameconstraints::tc9196", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9196` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252040,6 +261382,7 @@ "id": "bettertls::nameconstraints::tc9197", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9197` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252067,6 +261410,7 @@ "id": "bettertls::nameconstraints::tc9198", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9198` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252094,6 +261438,7 @@ "id": "bettertls::nameconstraints::tc9199", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9199` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252121,6 +261466,7 @@ "id": "bettertls::nameconstraints::tc9200", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9200` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252148,6 +261494,7 @@ "id": "bettertls::nameconstraints::tc9201", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9201` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252175,6 +261522,7 @@ "id": "bettertls::nameconstraints::tc9202", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9202` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252202,6 +261550,7 @@ "id": "bettertls::nameconstraints::tc9203", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9203` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252229,6 +261578,7 @@ "id": "bettertls::nameconstraints::tc9204", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9204` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252256,6 +261606,7 @@ "id": "bettertls::nameconstraints::tc9205", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9205` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252283,6 +261634,7 @@ "id": "bettertls::nameconstraints::tc9206", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9206` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252310,6 +261662,7 @@ "id": "bettertls::nameconstraints::tc9207", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9207` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252337,6 +261690,7 @@ "id": "bettertls::nameconstraints::tc9208", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9208` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252364,6 +261718,7 @@ "id": "bettertls::nameconstraints::tc9209", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9209` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252391,6 +261746,7 @@ "id": "bettertls::nameconstraints::tc9210", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9210` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252418,6 +261774,7 @@ "id": "bettertls::nameconstraints::tc9211", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9211` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252445,6 +261802,7 @@ "id": "bettertls::nameconstraints::tc9212", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9212` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252472,6 +261830,7 @@ "id": "bettertls::nameconstraints::tc9213", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9213` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252499,6 +261858,7 @@ "id": "bettertls::nameconstraints::tc9214", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9214` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252526,6 +261886,7 @@ "id": "bettertls::nameconstraints::tc9215", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9215` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252553,6 +261914,7 @@ "id": "bettertls::nameconstraints::tc9216", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9216` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252580,6 +261942,7 @@ "id": "bettertls::nameconstraints::tc9217", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9217` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252607,6 +261970,7 @@ "id": "bettertls::nameconstraints::tc9218", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9218` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252634,6 +261998,7 @@ "id": "bettertls::nameconstraints::tc9219", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9219` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252661,6 +262026,7 @@ "id": "bettertls::nameconstraints::tc9220", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9220` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252688,6 +262054,7 @@ "id": "bettertls::nameconstraints::tc9221", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9221` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252715,6 +262082,7 @@ "id": "bettertls::nameconstraints::tc9222", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9222` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252742,6 +262110,7 @@ "id": "bettertls::nameconstraints::tc9223", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9223` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252769,6 +262138,7 @@ "id": "bettertls::nameconstraints::tc9224", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9224` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252796,6 +262166,7 @@ "id": "bettertls::nameconstraints::tc9225", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9225` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252823,6 +262194,7 @@ "id": "bettertls::nameconstraints::tc9226", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9226` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252850,6 +262222,7 @@ "id": "bettertls::nameconstraints::tc9227", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9227` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252877,6 +262250,7 @@ "id": "bettertls::nameconstraints::tc9228", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9228` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252904,6 +262278,7 @@ "id": "bettertls::nameconstraints::tc9229", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9229` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252931,6 +262306,7 @@ "id": "bettertls::nameconstraints::tc9230", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9230` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252958,6 +262334,7 @@ "id": "bettertls::nameconstraints::tc9231", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9231` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -252985,6 +262362,7 @@ "id": "bettertls::nameconstraints::tc9232", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9232` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253012,6 +262390,7 @@ "id": "bettertls::nameconstraints::tc9233", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9233` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253039,6 +262418,7 @@ "id": "bettertls::nameconstraints::tc9234", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9234` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253066,6 +262446,7 @@ "id": "bettertls::nameconstraints::tc9235", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9235` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253093,6 +262474,7 @@ "id": "bettertls::nameconstraints::tc9236", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9236` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253120,6 +262502,7 @@ "id": "bettertls::nameconstraints::tc9237", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9237` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253147,6 +262530,7 @@ "id": "bettertls::nameconstraints::tc9238", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9238` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253174,6 +262558,7 @@ "id": "bettertls::nameconstraints::tc9239", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9239` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253201,6 +262586,7 @@ "id": "bettertls::nameconstraints::tc9240", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9240` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253228,6 +262614,7 @@ "id": "bettertls::nameconstraints::tc9241", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9241` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253255,6 +262642,7 @@ "id": "bettertls::nameconstraints::tc9242", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9242` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253282,6 +262670,7 @@ "id": "bettertls::nameconstraints::tc9243", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9243` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253309,6 +262698,7 @@ "id": "bettertls::nameconstraints::tc9244", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9244` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253336,6 +262726,7 @@ "id": "bettertls::nameconstraints::tc9245", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9245` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253363,6 +262754,7 @@ "id": "bettertls::nameconstraints::tc9246", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9246` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253390,6 +262782,7 @@ "id": "bettertls::nameconstraints::tc9247", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9247` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253417,6 +262810,7 @@ "id": "bettertls::nameconstraints::tc9248", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9248` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253444,6 +262838,7 @@ "id": "bettertls::nameconstraints::tc9249", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9249` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253471,6 +262866,7 @@ "id": "bettertls::nameconstraints::tc9250", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9250` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253498,6 +262894,7 @@ "id": "bettertls::nameconstraints::tc9251", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9251` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253525,6 +262922,7 @@ "id": "bettertls::nameconstraints::tc9252", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9252` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253552,6 +262950,7 @@ "id": "bettertls::nameconstraints::tc9253", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9253` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253579,6 +262978,7 @@ "id": "bettertls::nameconstraints::tc9254", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9254` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253606,6 +263006,7 @@ "id": "bettertls::nameconstraints::tc9255", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9255` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253633,6 +263034,7 @@ "id": "bettertls::nameconstraints::tc9256", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9256` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253660,6 +263062,7 @@ "id": "bettertls::nameconstraints::tc9257", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9257` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253687,6 +263090,7 @@ "id": "bettertls::nameconstraints::tc9258", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9258` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253714,6 +263118,7 @@ "id": "bettertls::nameconstraints::tc9259", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9259` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253741,6 +263146,7 @@ "id": "bettertls::nameconstraints::tc9260", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9260` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253768,6 +263174,7 @@ "id": "bettertls::nameconstraints::tc9261", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9261` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253795,6 +263202,7 @@ "id": "bettertls::nameconstraints::tc9262", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9262` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253822,6 +263230,7 @@ "id": "bettertls::nameconstraints::tc9263", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9263` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253849,6 +263258,7 @@ "id": "bettertls::nameconstraints::tc9264", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9264` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253876,6 +263286,7 @@ "id": "bettertls::nameconstraints::tc9265", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9265` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253903,6 +263314,7 @@ "id": "bettertls::nameconstraints::tc9266", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9266` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253930,6 +263342,7 @@ "id": "bettertls::nameconstraints::tc9267", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9267` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253957,6 +263370,7 @@ "id": "bettertls::nameconstraints::tc9268", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9268` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -253984,6 +263398,7 @@ "id": "bettertls::nameconstraints::tc9269", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9269` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254011,6 +263426,7 @@ "id": "bettertls::nameconstraints::tc9270", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9270` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254038,6 +263454,7 @@ "id": "bettertls::nameconstraints::tc9271", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9271` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254065,6 +263482,7 @@ "id": "bettertls::nameconstraints::tc9272", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9272` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254092,6 +263510,7 @@ "id": "bettertls::nameconstraints::tc9273", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9273` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254119,6 +263538,7 @@ "id": "bettertls::nameconstraints::tc9274", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9274` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254146,6 +263566,7 @@ "id": "bettertls::nameconstraints::tc9275", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9275` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254173,6 +263594,7 @@ "id": "bettertls::nameconstraints::tc9276", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9276` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254200,6 +263622,7 @@ "id": "bettertls::nameconstraints::tc9277", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9277` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254227,6 +263650,7 @@ "id": "bettertls::nameconstraints::tc9278", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9278` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254254,6 +263678,7 @@ "id": "bettertls::nameconstraints::tc9279", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9279` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254281,6 +263706,7 @@ "id": "bettertls::nameconstraints::tc9280", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9280` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254308,6 +263734,7 @@ "id": "bettertls::nameconstraints::tc9281", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9281` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254335,6 +263762,7 @@ "id": "bettertls::nameconstraints::tc9282", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9282` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254362,6 +263790,7 @@ "id": "bettertls::nameconstraints::tc9283", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9283` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254389,6 +263818,7 @@ "id": "bettertls::nameconstraints::tc9284", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9284` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254416,6 +263846,7 @@ "id": "bettertls::nameconstraints::tc9285", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9285` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254443,6 +263874,7 @@ "id": "bettertls::nameconstraints::tc9286", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9286` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254470,6 +263902,7 @@ "id": "bettertls::nameconstraints::tc9287", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9287` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254497,6 +263930,7 @@ "id": "bettertls::nameconstraints::tc9288", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9288` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254524,6 +263958,7 @@ "id": "bettertls::nameconstraints::tc9289", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9289` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254551,6 +263986,7 @@ "id": "bettertls::nameconstraints::tc9290", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9290` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254578,6 +264014,7 @@ "id": "bettertls::nameconstraints::tc9291", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9291` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254605,6 +264042,7 @@ "id": "bettertls::nameconstraints::tc9292", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9292` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254632,6 +264070,7 @@ "id": "bettertls::nameconstraints::tc9293", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9293` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254659,6 +264098,7 @@ "id": "bettertls::nameconstraints::tc9294", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9294` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254686,6 +264126,7 @@ "id": "bettertls::nameconstraints::tc9295", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9295` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254713,6 +264154,7 @@ "id": "bettertls::nameconstraints::tc9296", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9296` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254740,6 +264182,7 @@ "id": "bettertls::nameconstraints::tc9297", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9297` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254767,6 +264210,7 @@ "id": "bettertls::nameconstraints::tc9298", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9298` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254794,6 +264238,7 @@ "id": "bettertls::nameconstraints::tc9299", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9299` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254821,6 +264266,7 @@ "id": "bettertls::nameconstraints::tc9300", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9300` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254848,6 +264294,7 @@ "id": "bettertls::nameconstraints::tc9301", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9301` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254875,6 +264322,7 @@ "id": "bettertls::nameconstraints::tc9302", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9302` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254902,6 +264350,7 @@ "id": "bettertls::nameconstraints::tc9303", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9303` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254929,6 +264378,7 @@ "id": "bettertls::nameconstraints::tc9304", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9304` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254956,6 +264406,7 @@ "id": "bettertls::nameconstraints::tc9305", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9305` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -254983,6 +264434,7 @@ "id": "bettertls::nameconstraints::tc9306", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9306` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255010,6 +264462,7 @@ "id": "bettertls::nameconstraints::tc9307", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9307` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255037,6 +264490,7 @@ "id": "bettertls::nameconstraints::tc9308", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9308` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255064,6 +264518,7 @@ "id": "bettertls::nameconstraints::tc9309", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9309` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255091,6 +264546,7 @@ "id": "bettertls::nameconstraints::tc9310", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9310` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255118,6 +264574,7 @@ "id": "bettertls::nameconstraints::tc9311", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9311` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255145,6 +264602,7 @@ "id": "bettertls::nameconstraints::tc9312", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9312` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255172,6 +264630,7 @@ "id": "bettertls::nameconstraints::tc9313", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9313` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255199,6 +264658,7 @@ "id": "bettertls::nameconstraints::tc9314", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9314` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255226,6 +264686,7 @@ "id": "bettertls::nameconstraints::tc9315", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9315` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255253,6 +264714,7 @@ "id": "bettertls::nameconstraints::tc9316", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9316` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255280,6 +264742,7 @@ "id": "bettertls::nameconstraints::tc9317", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9317` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255307,6 +264770,7 @@ "id": "bettertls::nameconstraints::tc9318", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9318` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255334,6 +264798,7 @@ "id": "bettertls::nameconstraints::tc9319", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9319` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255361,6 +264826,7 @@ "id": "bettertls::nameconstraints::tc9320", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9320` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255388,6 +264854,7 @@ "id": "bettertls::nameconstraints::tc9321", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9321` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255415,6 +264882,7 @@ "id": "bettertls::nameconstraints::tc9322", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9322` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255442,6 +264910,7 @@ "id": "bettertls::nameconstraints::tc9323", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9323` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255469,6 +264938,7 @@ "id": "bettertls::nameconstraints::tc9324", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9324` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255496,6 +264966,7 @@ "id": "bettertls::nameconstraints::tc9325", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9325` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255523,6 +264994,7 @@ "id": "bettertls::nameconstraints::tc9326", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9326` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255550,6 +265022,7 @@ "id": "bettertls::nameconstraints::tc9327", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9327` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255577,6 +265050,7 @@ "id": "bettertls::nameconstraints::tc9328", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9328` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255604,6 +265078,7 @@ "id": "bettertls::nameconstraints::tc9329", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9329` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255631,6 +265106,7 @@ "id": "bettertls::nameconstraints::tc9330", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9330` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255658,6 +265134,7 @@ "id": "bettertls::nameconstraints::tc9331", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9331` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255685,6 +265162,7 @@ "id": "bettertls::nameconstraints::tc9332", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9332` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255712,6 +265190,7 @@ "id": "bettertls::nameconstraints::tc9333", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9333` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255739,6 +265218,7 @@ "id": "bettertls::nameconstraints::tc9334", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9334` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255766,6 +265246,7 @@ "id": "bettertls::nameconstraints::tc9335", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9335` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255793,6 +265274,7 @@ "id": "bettertls::nameconstraints::tc9336", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9336` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255820,6 +265302,7 @@ "id": "bettertls::nameconstraints::tc9337", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9337` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255847,6 +265330,7 @@ "id": "bettertls::nameconstraints::tc9338", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9338` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255874,6 +265358,7 @@ "id": "bettertls::nameconstraints::tc9339", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9339` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255901,6 +265386,7 @@ "id": "bettertls::nameconstraints::tc9340", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9340` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255928,6 +265414,7 @@ "id": "bettertls::nameconstraints::tc9341", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9341` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255955,6 +265442,7 @@ "id": "bettertls::nameconstraints::tc9342", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9342` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -255982,6 +265470,7 @@ "id": "bettertls::nameconstraints::tc9343", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9343` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256009,6 +265498,7 @@ "id": "bettertls::nameconstraints::tc9344", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9344` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256036,6 +265526,7 @@ "id": "bettertls::nameconstraints::tc9345", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9345` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256063,6 +265554,7 @@ "id": "bettertls::nameconstraints::tc9346", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9346` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256090,6 +265582,7 @@ "id": "bettertls::nameconstraints::tc9347", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9347` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256117,6 +265610,7 @@ "id": "bettertls::nameconstraints::tc9348", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9348` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256144,6 +265638,7 @@ "id": "bettertls::nameconstraints::tc9349", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9349` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256171,6 +265666,7 @@ "id": "bettertls::nameconstraints::tc9350", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9350` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256198,6 +265694,7 @@ "id": "bettertls::nameconstraints::tc9351", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9351` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256225,6 +265722,7 @@ "id": "bettertls::nameconstraints::tc9352", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9352` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256252,6 +265750,7 @@ "id": "bettertls::nameconstraints::tc9353", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9353` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256279,6 +265778,7 @@ "id": "bettertls::nameconstraints::tc9354", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9354` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256306,6 +265806,7 @@ "id": "bettertls::nameconstraints::tc9355", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9355` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256333,6 +265834,7 @@ "id": "bettertls::nameconstraints::tc9356", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9356` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256360,6 +265862,7 @@ "id": "bettertls::nameconstraints::tc9357", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9357` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256387,6 +265890,7 @@ "id": "bettertls::nameconstraints::tc9358", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9358` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256414,6 +265918,7 @@ "id": "bettertls::nameconstraints::tc9359", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9359` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256441,6 +265946,7 @@ "id": "bettertls::nameconstraints::tc9360", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9360` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256468,6 +265974,7 @@ "id": "bettertls::nameconstraints::tc9361", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9361` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256495,6 +266002,7 @@ "id": "bettertls::nameconstraints::tc9362", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9362` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256522,6 +266030,7 @@ "id": "bettertls::nameconstraints::tc9363", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9363` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256549,6 +266058,7 @@ "id": "bettertls::nameconstraints::tc9364", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9364` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256576,6 +266086,7 @@ "id": "bettertls::nameconstraints::tc9365", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9365` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256603,6 +266114,7 @@ "id": "bettertls::nameconstraints::tc9366", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9366` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256630,6 +266142,7 @@ "id": "bettertls::nameconstraints::tc9367", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9367` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256657,6 +266170,7 @@ "id": "bettertls::nameconstraints::tc9368", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9368` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256684,6 +266198,7 @@ "id": "bettertls::nameconstraints::tc9369", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9369` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256711,6 +266226,7 @@ "id": "bettertls::nameconstraints::tc9370", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9370` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256738,6 +266254,7 @@ "id": "bettertls::nameconstraints::tc9371", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9371` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256765,6 +266282,7 @@ "id": "bettertls::nameconstraints::tc9372", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9372` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256792,6 +266310,7 @@ "id": "bettertls::nameconstraints::tc9373", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9373` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256819,6 +266338,7 @@ "id": "bettertls::nameconstraints::tc9374", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9374` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256846,6 +266366,7 @@ "id": "bettertls::nameconstraints::tc9375", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9375` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256873,6 +266394,7 @@ "id": "bettertls::nameconstraints::tc9376", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9376` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256900,6 +266422,7 @@ "id": "bettertls::nameconstraints::tc9377", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9377` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256927,6 +266450,7 @@ "id": "bettertls::nameconstraints::tc9378", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9378` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256954,6 +266478,7 @@ "id": "bettertls::nameconstraints::tc9379", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9379` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -256981,6 +266506,7 @@ "id": "bettertls::nameconstraints::tc9380", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9380` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257008,6 +266534,7 @@ "id": "bettertls::nameconstraints::tc9381", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9381` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257035,6 +266562,7 @@ "id": "bettertls::nameconstraints::tc9382", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9382` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257062,6 +266590,7 @@ "id": "bettertls::nameconstraints::tc9383", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9383` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257089,6 +266618,7 @@ "id": "bettertls::nameconstraints::tc9384", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9384` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257116,6 +266646,7 @@ "id": "bettertls::nameconstraints::tc9385", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9385` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257143,6 +266674,7 @@ "id": "bettertls::nameconstraints::tc9386", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9386` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257170,6 +266702,7 @@ "id": "bettertls::nameconstraints::tc9387", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9387` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257197,6 +266730,7 @@ "id": "bettertls::nameconstraints::tc9388", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9388` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257224,6 +266758,7 @@ "id": "bettertls::nameconstraints::tc9389", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9389` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257251,6 +266786,7 @@ "id": "bettertls::nameconstraints::tc9390", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9390` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257278,6 +266814,7 @@ "id": "bettertls::nameconstraints::tc9391", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9391` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257305,6 +266842,7 @@ "id": "bettertls::nameconstraints::tc9392", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9392` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257332,6 +266870,7 @@ "id": "bettertls::nameconstraints::tc9393", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9393` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257359,6 +266898,7 @@ "id": "bettertls::nameconstraints::tc9394", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9394` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257386,6 +266926,7 @@ "id": "bettertls::nameconstraints::tc9395", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9395` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257413,6 +266954,7 @@ "id": "bettertls::nameconstraints::tc9396", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9396` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257440,6 +266982,7 @@ "id": "bettertls::nameconstraints::tc9397", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9397` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257467,6 +267010,7 @@ "id": "bettertls::nameconstraints::tc9398", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9398` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257494,6 +267038,7 @@ "id": "bettertls::nameconstraints::tc9399", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9399` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257521,6 +267066,7 @@ "id": "bettertls::nameconstraints::tc9400", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9400` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257548,6 +267094,7 @@ "id": "bettertls::nameconstraints::tc9401", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9401` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257575,6 +267122,7 @@ "id": "bettertls::nameconstraints::tc9402", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9402` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257602,6 +267150,7 @@ "id": "bettertls::nameconstraints::tc9403", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9403` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257629,6 +267178,7 @@ "id": "bettertls::nameconstraints::tc9404", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9404` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257656,6 +267206,7 @@ "id": "bettertls::nameconstraints::tc9405", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9405` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257683,6 +267234,7 @@ "id": "bettertls::nameconstraints::tc9406", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9406` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257710,6 +267262,7 @@ "id": "bettertls::nameconstraints::tc9407", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9407` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257737,6 +267290,7 @@ "id": "bettertls::nameconstraints::tc9408", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9408` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257764,6 +267318,7 @@ "id": "bettertls::nameconstraints::tc9409", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9409` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257791,6 +267346,7 @@ "id": "bettertls::nameconstraints::tc9410", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9410` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257818,6 +267374,7 @@ "id": "bettertls::nameconstraints::tc9411", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9411` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257845,6 +267402,7 @@ "id": "bettertls::nameconstraints::tc9412", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9412` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257872,6 +267430,7 @@ "id": "bettertls::nameconstraints::tc9413", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9413` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257899,6 +267458,7 @@ "id": "bettertls::nameconstraints::tc9414", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9414` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257926,6 +267486,7 @@ "id": "bettertls::nameconstraints::tc9415", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9415` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257953,6 +267514,7 @@ "id": "bettertls::nameconstraints::tc9416", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9416` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -257980,6 +267542,7 @@ "id": "bettertls::nameconstraints::tc9417", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9417` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258007,6 +267570,7 @@ "id": "bettertls::nameconstraints::tc9418", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9418` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258034,6 +267598,7 @@ "id": "bettertls::nameconstraints::tc9419", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9419` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258061,6 +267626,7 @@ "id": "bettertls::nameconstraints::tc9420", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9420` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258088,6 +267654,7 @@ "id": "bettertls::nameconstraints::tc9421", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9421` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258115,6 +267682,7 @@ "id": "bettertls::nameconstraints::tc9422", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9422` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258142,6 +267710,7 @@ "id": "bettertls::nameconstraints::tc9423", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9423` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258169,6 +267738,7 @@ "id": "bettertls::nameconstraints::tc9424", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9424` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258196,6 +267766,7 @@ "id": "bettertls::nameconstraints::tc9425", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9425` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258223,6 +267794,7 @@ "id": "bettertls::nameconstraints::tc9426", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9426` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258250,6 +267822,7 @@ "id": "bettertls::nameconstraints::tc9427", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9427` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258277,6 +267850,7 @@ "id": "bettertls::nameconstraints::tc9428", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9428` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258304,6 +267878,7 @@ "id": "bettertls::nameconstraints::tc9429", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9429` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258331,6 +267906,7 @@ "id": "bettertls::nameconstraints::tc9430", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9430` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258358,6 +267934,7 @@ "id": "bettertls::nameconstraints::tc9431", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9431` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258385,6 +267962,7 @@ "id": "bettertls::nameconstraints::tc9432", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9432` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258412,6 +267990,7 @@ "id": "bettertls::nameconstraints::tc9433", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9433` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258439,6 +268018,7 @@ "id": "bettertls::nameconstraints::tc9434", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9434` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258466,6 +268046,7 @@ "id": "bettertls::nameconstraints::tc9435", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9435` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258493,6 +268074,7 @@ "id": "bettertls::nameconstraints::tc9436", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9436` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258520,6 +268102,7 @@ "id": "bettertls::nameconstraints::tc9437", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9437` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258547,6 +268130,7 @@ "id": "bettertls::nameconstraints::tc9438", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9438` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258574,6 +268158,7 @@ "id": "bettertls::nameconstraints::tc9439", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9439` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258601,6 +268186,7 @@ "id": "bettertls::nameconstraints::tc9440", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9440` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258628,6 +268214,7 @@ "id": "bettertls::nameconstraints::tc9441", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9441` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258655,6 +268242,7 @@ "id": "bettertls::nameconstraints::tc9442", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9442` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258682,6 +268270,7 @@ "id": "bettertls::nameconstraints::tc9443", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9443` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258709,6 +268298,7 @@ "id": "bettertls::nameconstraints::tc9444", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9444` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258736,6 +268326,7 @@ "id": "bettertls::nameconstraints::tc9445", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9445` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258763,6 +268354,7 @@ "id": "bettertls::nameconstraints::tc9446", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9446` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258790,6 +268382,7 @@ "id": "bettertls::nameconstraints::tc9447", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9447` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258817,6 +268410,7 @@ "id": "bettertls::nameconstraints::tc9448", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9448` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258844,6 +268438,7 @@ "id": "bettertls::nameconstraints::tc9449", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9449` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258871,6 +268466,7 @@ "id": "bettertls::nameconstraints::tc9450", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9450` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258898,6 +268494,7 @@ "id": "bettertls::nameconstraints::tc9451", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9451` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258925,6 +268522,7 @@ "id": "bettertls::nameconstraints::tc9452", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9452` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258952,6 +268550,7 @@ "id": "bettertls::nameconstraints::tc9453", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9453` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -258979,6 +268578,7 @@ "id": "bettertls::nameconstraints::tc9454", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9454` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259006,6 +268606,7 @@ "id": "bettertls::nameconstraints::tc9455", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9455` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259033,6 +268634,7 @@ "id": "bettertls::nameconstraints::tc9456", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9456` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259060,6 +268662,7 @@ "id": "bettertls::nameconstraints::tc9457", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9457` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259087,6 +268690,7 @@ "id": "bettertls::nameconstraints::tc9458", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9458` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259114,6 +268718,7 @@ "id": "bettertls::nameconstraints::tc9459", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9459` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259141,6 +268746,7 @@ "id": "bettertls::nameconstraints::tc9460", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9460` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259168,6 +268774,7 @@ "id": "bettertls::nameconstraints::tc9461", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9461` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259195,6 +268802,7 @@ "id": "bettertls::nameconstraints::tc9462", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9462` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259222,6 +268830,7 @@ "id": "bettertls::nameconstraints::tc9463", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9463` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259249,6 +268858,7 @@ "id": "bettertls::nameconstraints::tc9464", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9464` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259276,6 +268886,7 @@ "id": "bettertls::nameconstraints::tc9465", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9465` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259303,6 +268914,7 @@ "id": "bettertls::nameconstraints::tc9466", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9466` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259330,6 +268942,7 @@ "id": "bettertls::nameconstraints::tc9467", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9467` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259357,6 +268970,7 @@ "id": "bettertls::nameconstraints::tc9468", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9468` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259384,6 +268998,7 @@ "id": "bettertls::nameconstraints::tc9469", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9469` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259411,6 +269026,7 @@ "id": "bettertls::nameconstraints::tc9470", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9470` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259438,6 +269054,7 @@ "id": "bettertls::nameconstraints::tc9471", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9471` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259465,6 +269082,7 @@ "id": "bettertls::nameconstraints::tc9472", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9472` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259492,6 +269110,7 @@ "id": "bettertls::nameconstraints::tc9473", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9473` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259519,6 +269138,7 @@ "id": "bettertls::nameconstraints::tc9474", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9474` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259546,6 +269166,7 @@ "id": "bettertls::nameconstraints::tc9475", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9475` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259573,6 +269194,7 @@ "id": "bettertls::nameconstraints::tc9476", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9476` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259600,6 +269222,7 @@ "id": "bettertls::nameconstraints::tc9477", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9477` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259627,6 +269250,7 @@ "id": "bettertls::nameconstraints::tc9478", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9478` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259654,6 +269278,7 @@ "id": "bettertls::nameconstraints::tc9479", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9479` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259681,6 +269306,7 @@ "id": "bettertls::nameconstraints::tc9480", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9480` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259708,6 +269334,7 @@ "id": "bettertls::nameconstraints::tc9481", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9481` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259735,6 +269362,7 @@ "id": "bettertls::nameconstraints::tc9482", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9482` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259762,6 +269390,7 @@ "id": "bettertls::nameconstraints::tc9483", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9483` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259789,6 +269418,7 @@ "id": "bettertls::nameconstraints::tc9484", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9484` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259816,6 +269446,7 @@ "id": "bettertls::nameconstraints::tc9485", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9485` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259843,6 +269474,7 @@ "id": "bettertls::nameconstraints::tc9486", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9486` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259870,6 +269502,7 @@ "id": "bettertls::nameconstraints::tc9487", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9487` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259897,6 +269530,7 @@ "id": "bettertls::nameconstraints::tc9488", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9488` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259924,6 +269558,7 @@ "id": "bettertls::nameconstraints::tc9489", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9489` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259951,6 +269586,7 @@ "id": "bettertls::nameconstraints::tc9490", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9490` from the BetterTLS `nameconstraints` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -259978,6 +269614,7 @@ "id": "bettertls::pathbuilding::tc0", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `0` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260004,6 +269641,7 @@ "id": "bettertls::pathbuilding::tc1", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `1` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260031,6 +269669,7 @@ "id": "bettertls::pathbuilding::tc2", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `2` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260058,6 +269697,7 @@ "id": "bettertls::pathbuilding::tc3", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `3` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260084,6 +269724,7 @@ "id": "bettertls::pathbuilding::tc4", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `4` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260110,6 +269751,7 @@ "id": "bettertls::pathbuilding::tc5", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `5` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260136,6 +269778,7 @@ "id": "bettertls::pathbuilding::tc6", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `6` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260162,6 +269805,7 @@ "id": "bettertls::pathbuilding::tc7", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `7` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260188,6 +269832,7 @@ "id": "bettertls::pathbuilding::tc8", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `8` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260214,6 +269859,7 @@ "id": "bettertls::pathbuilding::tc9", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `9` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260240,6 +269886,7 @@ "id": "bettertls::pathbuilding::tc10", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `10` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260266,6 +269913,7 @@ "id": "bettertls::pathbuilding::tc11", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `11` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260292,6 +269940,7 @@ "id": "bettertls::pathbuilding::tc12", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `12` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260318,6 +269967,7 @@ "id": "bettertls::pathbuilding::tc13", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `13` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260344,6 +269994,7 @@ "id": "bettertls::pathbuilding::tc14", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `14` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260370,6 +270021,7 @@ "id": "bettertls::pathbuilding::tc15", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `15` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260396,6 +270048,7 @@ "id": "bettertls::pathbuilding::tc16", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `16` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260422,6 +270075,7 @@ "id": "bettertls::pathbuilding::tc17", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `17` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260448,6 +270102,7 @@ "id": "bettertls::pathbuilding::tc18", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `18` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260474,6 +270129,7 @@ "id": "bettertls::pathbuilding::tc19", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `19` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260500,6 +270156,7 @@ "id": "bettertls::pathbuilding::tc20", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `20` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260526,6 +270183,7 @@ "id": "bettertls::pathbuilding::tc21", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `21` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260552,6 +270210,7 @@ "id": "bettertls::pathbuilding::tc22", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `22` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260579,6 +270238,7 @@ "id": "bettertls::pathbuilding::tc23", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `23` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260606,6 +270266,7 @@ "id": "bettertls::pathbuilding::tc24", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `24` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260633,6 +270294,7 @@ "id": "bettertls::pathbuilding::tc25", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `25` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260660,6 +270322,7 @@ "id": "bettertls::pathbuilding::tc26", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `26` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260687,6 +270350,7 @@ "id": "bettertls::pathbuilding::tc27", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `27` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260714,6 +270378,7 @@ "id": "bettertls::pathbuilding::tc28", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `28` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260741,6 +270406,7 @@ "id": "bettertls::pathbuilding::tc29", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `29` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260768,6 +270434,7 @@ "id": "bettertls::pathbuilding::tc30", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `30` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260795,6 +270462,7 @@ "id": "bettertls::pathbuilding::tc31", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `31` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260822,6 +270490,7 @@ "id": "bettertls::pathbuilding::tc32", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `32` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260849,6 +270518,7 @@ "id": "bettertls::pathbuilding::tc33", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `33` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260876,6 +270546,7 @@ "id": "bettertls::pathbuilding::tc34", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `34` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260903,6 +270574,7 @@ "id": "bettertls::pathbuilding::tc35", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `35` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260930,6 +270602,7 @@ "id": "bettertls::pathbuilding::tc36", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `36` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260957,6 +270630,7 @@ "id": "bettertls::pathbuilding::tc37", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `37` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -260984,6 +270658,7 @@ "id": "bettertls::pathbuilding::tc38", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `38` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261011,6 +270686,7 @@ "id": "bettertls::pathbuilding::tc39", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `39` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261038,6 +270714,7 @@ "id": "bettertls::pathbuilding::tc40", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `40` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261065,6 +270742,7 @@ "id": "bettertls::pathbuilding::tc41", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `41` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261092,6 +270770,7 @@ "id": "bettertls::pathbuilding::tc42", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `42` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261119,6 +270798,7 @@ "id": "bettertls::pathbuilding::tc43", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `43` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261146,6 +270826,7 @@ "id": "bettertls::pathbuilding::tc44", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `44` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261173,6 +270854,7 @@ "id": "bettertls::pathbuilding::tc45", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `45` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261200,6 +270882,7 @@ "id": "bettertls::pathbuilding::tc46", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `46` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261227,6 +270910,7 @@ "id": "bettertls::pathbuilding::tc47", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `47` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261254,6 +270938,7 @@ "id": "bettertls::pathbuilding::tc48", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `48` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261285,6 +270970,7 @@ "id": "bettertls::pathbuilding::tc49", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `49` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261316,6 +271002,7 @@ "id": "bettertls::pathbuilding::tc50", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `50` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261347,6 +271034,7 @@ "id": "bettertls::pathbuilding::tc51", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `51` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261378,6 +271066,7 @@ "id": "bettertls::pathbuilding::tc52", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `52` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261409,6 +271098,7 @@ "id": "bettertls::pathbuilding::tc53", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `53` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261440,6 +271130,7 @@ "id": "bettertls::pathbuilding::tc54", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `54` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261471,6 +271162,7 @@ "id": "bettertls::pathbuilding::tc55", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `55` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261502,6 +271194,7 @@ "id": "bettertls::pathbuilding::tc56", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `56` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261533,6 +271226,7 @@ "id": "bettertls::pathbuilding::tc57", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `57` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261564,6 +271258,7 @@ "id": "bettertls::pathbuilding::tc58", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `58` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261595,6 +271290,7 @@ "id": "bettertls::pathbuilding::tc59", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `59` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261626,6 +271322,7 @@ "id": "bettertls::pathbuilding::tc60", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `60` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261657,6 +271354,7 @@ "id": "bettertls::pathbuilding::tc61", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `61` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261717,6 +271415,7 @@ "id": "bettertls::pathbuilding::tc62", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `62` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261777,6 +271476,7 @@ "id": "bettertls::pathbuilding::tc63", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `63` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261837,6 +271537,7 @@ "id": "bettertls::pathbuilding::tc64", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `64` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261897,6 +271598,7 @@ "id": "bettertls::pathbuilding::tc65", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `65` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -261957,6 +271659,7 @@ "id": "bettertls::pathbuilding::tc66", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `66` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262017,6 +271720,7 @@ "id": "bettertls::pathbuilding::tc67", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `67` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262077,6 +271781,7 @@ "id": "bettertls::pathbuilding::tc68", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `68` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262137,6 +271842,7 @@ "id": "bettertls::pathbuilding::tc69", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `69` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262197,6 +271903,7 @@ "id": "bettertls::pathbuilding::tc70", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `70` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262257,6 +271964,7 @@ "id": "bettertls::pathbuilding::tc71", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `71` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262317,6 +272025,7 @@ "id": "bettertls::pathbuilding::tc72", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `72` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262377,6 +272086,7 @@ "id": "bettertls::pathbuilding::tc73", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `73` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262437,6 +272147,7 @@ "id": "bettertls::pathbuilding::tc74", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `74` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262497,6 +272208,7 @@ "id": "bettertls::pathbuilding::tc75", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `75` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262557,6 +272269,7 @@ "id": "bettertls::pathbuilding::tc76", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `76` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262617,6 +272330,7 @@ "id": "bettertls::pathbuilding::tc77", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `77` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262677,6 +272391,7 @@ "id": "bettertls::pathbuilding::tc78", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `78` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262737,6 +272452,7 @@ "id": "bettertls::pathbuilding::tc79", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `79` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262797,6 +272513,7 @@ "id": "bettertls::pathbuilding::tc80", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "Testcase `80` from the BetterTLS `pathbuilding` suite.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262857,6 +272574,7 @@ "id": "online::akamai.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `akamai.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262883,6 +272601,7 @@ "id": "online::bing.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `bing.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262909,6 +272628,7 @@ "id": "online::fastly.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `fastly.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262935,6 +272655,7 @@ "id": "online::s3.amazonaws.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `s3.amazonaws.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262961,6 +272682,7 @@ "id": "online::aws.amazon.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `aws.amazon.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -262987,6 +272709,7 @@ "id": "online::docs.python.org", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `docs.python.org`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263013,6 +272736,7 @@ "id": "online::amazon.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `amazon.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263039,6 +272763,7 @@ "id": "online::facebook.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `facebook.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263065,6 +272790,7 @@ "id": "online::google.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `google.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263091,6 +272817,7 @@ "id": "online::storage.googleapis.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `storage.googleapis.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263117,6 +272844,7 @@ "id": "online::apple.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `apple.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263143,6 +272871,7 @@ "id": "online::cloudflare.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `cloudflare.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263169,6 +272898,7 @@ "id": "online::microsoft.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `microsoft.com`.", "validation_kind": "SERVER", "trusted_certs": [ @@ -263195,6 +272925,7 @@ "id": "online::stackoverflow.com", "conflicts_with": [], "features": [], + "importance": "undetermined", "description": "A valid chain for `stackoverflow.com`.", "validation_kind": "SERVER", "trusted_certs": [ diff --git a/limbo/_assets/templates/testcase.md b/limbo/_assets/templates/testcase.md index f265ebb4..a3a26dd1 100644 --- a/limbo/_assets/templates/testcase.md +++ b/limbo/_assets/templates/testcase.md @@ -3,8 +3,8 @@ {{ description }} -| Expected result | Validation kind | Validation time | Features | Conflicts | Download | -| --------------- | --------------- | --------------- | -------------- | --------------- | ---------- | -| {{ exp_result }}| {{ val_kind }} | {{ val_time }} | {{ features }} | {{ conflicts }} | {{ pems }} | | +| Expected result | Validation kind | Validation time | Features | Importance | Conflicts | Download | +| --------------- | --------------- | --------------- | -------------- | ---------------- | --------------- | ---------- | +| {{ exp_result }}| {{ val_kind }} | {{ val_time }} | {{ features }} | {{ importance }} | {{ conflicts }} | {{ pems }} | | {{ harness_results }} diff --git a/limbo/models.py b/limbo/models.py index ba66b1fd..38bc650c 100644 --- a/limbo/models.py +++ b/limbo/models.py @@ -216,6 +216,41 @@ class Feature(str, Enum): """ +class Importance(str, Enum): + """ + A subjective ranking of a testcase's importance. + """ + + UNDETERMINED = "undetermined" + """ + Not yet determined. + """ + + LOW = "low" + """ + Low importance, e.g. due to a pedantic reading of the specifications + or being commonly ignored by other implementations. + """ + + MEDIUM = "medium" + """ + Medium importance; implementations should address these but are unlikely + to encounter issues with real-world chains due to them. + """ + + HIGH = "high" + """ + High importance; implementations should address these due to expected issues + with real-world chains. + """ + + CRITICAL = "critical" + """ + Critical importance; failure to handle this indicates a potentially + exploitable vulnerability in the implementation under test. + """ + + class ValidationKind(str, Enum): """ The kind of validation to perform. @@ -247,6 +282,8 @@ class Testcase(BaseModel): ), ) + importance: Importance = Field(Importance.UNDETERMINED, description="The testcase's importance") + description: StrictStr = Field(..., description="A short, Markdown-formatted description") validation_kind: ValidationKind = Field(..., description="The kind of validation to perform") diff --git a/site/render-testcases.py b/site/render-testcases.py index 95df9bc2..7e01fa03 100644 --- a/site/render-testcases.py +++ b/site/render-testcases.py @@ -163,6 +163,7 @@ def _render_harness_results( features=", ".join([f.value for f in r.tc.features]) if r.tc.features else "N/A", + importance=r.tc.importance.value, description=_linkify(r.tc.description.strip()), conflicts=_render_conflicts(r.tc), pems=_tc_pem_bundle(r.tc),