void encode(ASN1OutputStream out) throws IOException {
   if (encoded != null) {
     out.writeEncoded(BERTags.SEQUENCE | BERTags.CONSTRUCTED, encoded);
   } else {
     super.toDLObject().encode(out);
   }
 }