public class org.apache.commons.net.nntp.NNTPClient extends org.apache.commons.net.nntp.NNTP
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.net.nntp.NNTPClient
  super_class: org.apache.commons.net.nntp.NNTP
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 86
            aload 0 /* this */
            invokespecial org.apache.commons.net.nntp.NNTP.<init>:()V
            return
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;

  private void __parseArticlePointer(java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String reply
        start local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 100
            aload 1 /* reply */
            ldc " "
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 3 /* tokens */
        start local 3 // java.lang.String[] tokens
         1: .line 101
            aload 3 /* tokens */
            arraylength
            iconst_3
            if_icmplt 7
         2: .line 102
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         3: .line 106
            aload 2 /* pointer */
            aload 3 /* tokens */
            iload 4 /* i */
            iinc 4 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            putfield org.apache.commons.net.nntp.ArticleInfo.articleNumber:J
         4: .line 108
            aload 2 /* pointer */
            aload 3 /* tokens */
            iload 4 /* i */
            iinc 4 /* i */ 1
            aaload
            putfield org.apache.commons.net.nntp.ArticleInfo.articleId:Ljava/lang/String;
         5: .line 109
            return
         6: .line 111
      StackMap locals: org.apache.commons.net.nntp.NNTPClient java.lang.String org.apache.commons.net.nntp.ArticleInfo java.lang.String[] int
      StackMap stack: java.lang.NumberFormatException
            pop
        end local 4 // int i
         7: .line 116
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.MalformedServerReplyException
            dup
         8: .line 117
            new java.lang.StringBuilder
            dup
            ldc "Could not parse article pointer.\nServer reply: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* reply */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         9: .line 116
            invokespecial org.apache.commons.net.MalformedServerReplyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String[] tokens
        end local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // java.lang.String reply
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0   10     1    reply  Ljava/lang/String;
            0   10     2  pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
            1   10     3   tokens  [Ljava/lang/String;
            3    7     4        i  I
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.NumberFormatException
    Exceptions:
      throws org.apache.commons.net.MalformedServerReplyException
    MethodParameters:
         Name  Flags
      reply    
      pointer  

  private static void __parseGroupReply(java.lang.String, org.apache.commons.net.nntp.NewsgroupInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/NewsgroupInfo;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // java.lang.String reply
        start local 1 // org.apache.commons.net.nntp.NewsgroupInfo info
         0: .line 131
            aload 0 /* reply */
            ldc " "
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 2 /* tokens */
        start local 2 // java.lang.String[] tokens
         1: .line 132
            aload 2 /* tokens */
            arraylength
            iconst_5
            if_icmplt 10
         2: .line 133
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         3: .line 137
            aload 1 /* info */
            aload 2 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setArticleCount:(J)V
         4: .line 139
            aload 1 /* info */
            aload 2 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setFirstArticle:(J)V
         5: .line 141
            aload 1 /* info */
            aload 2 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setLastArticle:(J)V
         6: .line 143
            aload 1 /* info */
            aload 2 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setNewsgroup:(Ljava/lang/String;)V
         7: .line 145
            aload 1 /* info */
            iconst_0
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setPostingPermission:(I)V
         8: .line 146
            return
         9: .line 147
      StackMap locals: java.lang.String org.apache.commons.net.nntp.NewsgroupInfo java.lang.String[] int
      StackMap stack: java.lang.NumberFormatException
            pop
        end local 3 // int i
        10: .line 153
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.MalformedServerReplyException
            dup
        11: .line 154
            new java.lang.StringBuilder
            dup
            ldc "Could not parse newsgroup info.\nServer reply: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* reply */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 153
            invokespecial org.apache.commons.net.MalformedServerReplyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String[] tokens
        end local 1 // org.apache.commons.net.nntp.NewsgroupInfo info
        end local 0 // java.lang.String reply
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0   reply  Ljava/lang/String;
            0   13     1    info  Lorg/apache/commons/net/nntp/NewsgroupInfo;
            1   13     2  tokens  [Ljava/lang/String;
            3   10     3       i  I
      Exception table:
        from    to  target  type
           3     8       9  Class java.lang.NumberFormatException
    Exceptions:
      throws org.apache.commons.net.MalformedServerReplyException
    MethodParameters:
       Name  Flags
      reply  
      info   

  static org.apache.commons.net.nntp.NewsgroupInfo __parseNewsgroupListEntry(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/commons/net/nntp/NewsgroupInfo;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // java.lang.String entry
         0: .line 161
            aload 0 /* entry */
            ldc " "
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 1 /* tokens */
        start local 1 // java.lang.String[] tokens
         1: .line 162
            aload 1 /* tokens */
            arraylength
            iconst_4
            if_icmpge 3
         2: .line 163
            aconst_null
            areturn
         3: .line 165
      StackMap locals: java.lang.String[]
      StackMap stack:
            new org.apache.commons.net.nntp.NewsgroupInfo
            dup
            invokespecial org.apache.commons.net.nntp.NewsgroupInfo.<init>:()V
            astore 2 /* result */
        start local 2 // org.apache.commons.net.nntp.NewsgroupInfo result
         4: .line 167
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: .line 169
            aload 2 /* result */
            aload 1 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setNewsgroup:(Ljava/lang/String;)V
         6: .line 173
            aload 1 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lstore 4 /* lastNum */
        start local 4 // long lastNum
         7: .line 174
            aload 1 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lstore 6 /* firstNum */
        start local 6 // long firstNum
         8: .line 175
            aload 2 /* result */
            lload 6 /* firstNum */
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setFirstArticle:(J)V
         9: .line 176
            aload 2 /* result */
            lload 4 /* lastNum */
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setLastArticle:(J)V
        10: .line 177
            lload 6 /* firstNum */
            lconst_0
            lcmp
            ifne 13
            lload 4 /* lastNum */
            lconst_0
            lcmp
            ifne 13
        11: .line 178
            aload 2 /* result */
            lconst_0
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setArticleCount:(J)V
        12: .line 179
            goto 17
        13: .line 180
      StackMap locals: java.lang.String java.lang.String[] org.apache.commons.net.nntp.NewsgroupInfo int long long
      StackMap stack:
            aload 2 /* result */
            lload 4 /* lastNum */
            lload 6 /* firstNum */
            lsub
            lconst_1
            ladd
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setArticleCount:(J)V
        end local 6 // long firstNum
        end local 4 // long lastNum
        14: .line 182
            goto 17
      StackMap locals: java.lang.String java.lang.String[] org.apache.commons.net.nntp.NewsgroupInfo int
      StackMap stack: java.lang.NumberFormatException
        15: pop
        16: .line 183
            aconst_null
            areturn
        17: .line 186
      StackMap locals:
      StackMap stack:
            aload 1 /* tokens */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            lookupswitch { // 6
                   77: 26
                   78: 22
                   89: 18
                  109: 26
                  110: 22
                  121: 18
              default: 30
          }
        18: .line 190
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
        19: .line 191
            iconst_2
        20: .line 190
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setPostingPermission:(I)V
        21: .line 192
            goto 33
        22: .line 195
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
        23: .line 196
            iconst_3
        24: .line 195
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setPostingPermission:(I)V
        25: .line 197
            goto 33
        26: .line 200
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
        27: .line 201
            iconst_1
        28: .line 200
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setPostingPermission:(I)V
        29: .line 202
            goto 33
        30: .line 204
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
        31: .line 205
            iconst_0
        32: .line 204
            invokevirtual org.apache.commons.net.nntp.NewsgroupInfo._setPostingPermission:(I)V
        33: .line 209
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 3 // int i
        end local 2 // org.apache.commons.net.nntp.NewsgroupInfo result
        end local 1 // java.lang.String[] tokens
        end local 0 // java.lang.String entry
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   34     0     entry  Ljava/lang/String;
            1   34     1    tokens  [Ljava/lang/String;
            4   34     2    result  Lorg/apache/commons/net/nntp/NewsgroupInfo;
            5   34     3         i  I
            7   14     4   lastNum  J
            8   14     6  firstNum  J
      Exception table:
        from    to  target  type
           6    14      15  Class java.lang.NumberFormatException
    MethodParameters:
       Name  Flags
      entry  

  static org.apache.commons.net.nntp.Article __parseArticleEntry(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/commons/net/nntp/Article;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.lang.String line
         0: .line 225
            new org.apache.commons.net.nntp.Article
            dup
            invokespecial org.apache.commons.net.nntp.Article.<init>:()V
            astore 1 /* article */
        start local 1 // org.apache.commons.net.nntp.Article article
         1: .line 226
            aload 1 /* article */
            aload 0 /* line */
            invokevirtual org.apache.commons.net.nntp.Article.setSubject:(Ljava/lang/String;)V
         2: .line 227
            aload 0 /* line */
            ldc "\t"
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 2 /* parts */
        start local 2 // java.lang.String[] parts
         3: .line 228
            aload 2 /* parts */
            arraylength
            bipush 6
            if_icmple 13
         4: .line 229
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: .line 231
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokevirtual org.apache.commons.net.nntp.Article.setArticleNumber:(J)V
         6: .line 232
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.Article.setSubject:(Ljava/lang/String;)V
         7: .line 233
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.Article.setFrom:(Ljava/lang/String;)V
         8: .line 234
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.Article.setDate:(Ljava/lang/String;)V
         9: .line 235
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.Article.setArticleId:(Ljava/lang/String;)V
        10: .line 236
            aload 1 /* article */
            aload 2 /* parts */
            iload 3 /* i */
            iinc 3 /* i */ 1
            aaload
            invokevirtual org.apache.commons.net.nntp.Article.addReference:(Ljava/lang/String;)V
        11: .line 237
            goto 13
      StackMap locals: java.lang.String org.apache.commons.net.nntp.Article java.lang.String[] int
      StackMap stack: java.lang.NumberFormatException
        12: pop
        end local 3 // int i
        13: .line 241
      StackMap locals:
      StackMap stack:
            aload 1 /* article */
            areturn
        end local 2 // java.lang.String[] parts
        end local 1 // org.apache.commons.net.nntp.Article article
        end local 0 // java.lang.String line
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     line  Ljava/lang/String;
            1   14     1  article  Lorg/apache/commons/net/nntp/Article;
            3   14     2    parts  [Ljava/lang/String;
            5   13     3        i  I
      Exception table:
        from    to  target  type
           5    11      12  Class java.lang.NumberFormatException
    MethodParameters:
      Name  Flags
      line  

  private org.apache.commons.net.nntp.NewsgroupInfo[] __readNewsgroupListing();
    descriptor: ()[Lorg/apache/commons/net/nntp/NewsgroupInfo;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 247
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            astore 1 /* reader */
        start local 1 // java.io.BufferedReader reader
         1: .line 250
            new java.util.Vector
            dup
            sipush 2048
            invokespecial java.util.Vector.<init>:(I)V
            astore 2 /* list */
        start local 2 // java.util.Vector list
         2: .line 254
            goto 8
        start local 3 // java.lang.String line
         3: .line 255
      StackMap locals: java.io.BufferedReader java.util.Vector java.lang.String
      StackMap stack:
            aload 3 /* line */
            invokestatic org.apache.commons.net.nntp.NNTPClient.__parseNewsgroupListEntry:(Ljava/lang/String;)Lorg/apache/commons/net/nntp/NewsgroupInfo;
            astore 4 /* tmp */
        start local 4 // org.apache.commons.net.nntp.NewsgroupInfo tmp
         4: .line 256
            aload 4 /* tmp */
            ifnull 7
         5: .line 257
            aload 2 /* list */
            aload 4 /* tmp */
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
         6: .line 258
            goto 8
         7: .line 259
      StackMap locals: org.apache.commons.net.nntp.NewsgroupInfo
      StackMap stack:
            new org.apache.commons.net.MalformedServerReplyException
            dup
            aload 3 /* line */
            invokespecial org.apache.commons.net.MalformedServerReplyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // org.apache.commons.net.nntp.NewsgroupInfo tmp
        end local 3 // java.lang.String line
         8: .line 254
      StackMap locals:
      StackMap stack:
            aload 1 /* reader */
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            dup
            astore 3 /* line */
        start local 3 // java.lang.String line
         9: ifnonnull 3
        10: .line 262
            goto 14
        end local 3 // java.lang.String line
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 5
        12: .line 263
            aload 1 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
        13: .line 264
            aload 5
            athrow
        start local 3 // java.lang.String line
        14: .line 263
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
        15: .line 266
            aload 2 /* list */
            invokevirtual java.util.Vector.size:()I
            dup
            istore 4 /* size */
        start local 4 // int size
        16: iconst_1
            if_icmpge 18
        17: .line 267
            iconst_0
            anewarray org.apache.commons.net.nntp.NewsgroupInfo
            areturn
        18: .line 270
      StackMap locals: int
      StackMap stack:
            iload 4 /* size */
            anewarray org.apache.commons.net.nntp.NewsgroupInfo
            astore 5 /* info */
        start local 5 // org.apache.commons.net.nntp.NewsgroupInfo[] info
        19: .line 271
            aload 2 /* list */
            aload 5 /* info */
            invokevirtual java.util.Vector.copyInto:([Ljava/lang/Object;)V
        20: .line 273
            aload 5 /* info */
            areturn
        end local 5 // org.apache.commons.net.nntp.NewsgroupInfo[] info
        end local 4 // int size
        end local 3 // java.lang.String line
        end local 2 // java.util.Vector list
        end local 1 // java.io.BufferedReader reader
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   21     0    this  Lorg/apache/commons/net/nntp/NNTPClient;
            1   21     1  reader  Ljava/io/BufferedReader;
            2   21     2    list  Ljava/util/Vector<Lorg/apache/commons/net/nntp/NewsgroupInfo;>;
            3    8     3    line  Ljava/lang/String;
            9   11     3    line  Ljava/lang/String;
           14   21     3    line  Ljava/lang/String;
            4    8     4     tmp  Lorg/apache/commons/net/nntp/NewsgroupInfo;
           16   21     4    size  I
           19   21     5    info  [Lorg/apache/commons/net/nntp/NewsgroupInfo;
      Exception table:
        from    to  target  type
           2    11      11  any
    Exceptions:
      throws java.io.IOException

  private java.io.BufferedReader __retrieve(int, java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (ILjava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int command
        start local 2 // java.lang.String articleId
        start local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 280
            aload 2 /* articleId */
            ifnull 3
         1: .line 282
            aload 0 /* this */
            iload 1 /* command */
            aload 2 /* articleId */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.sendCommand:(ILjava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 5
         2: .line 283
            aconst_null
            areturn
         3: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* command */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.sendCommand:(I)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 5
         4: .line 289
            aconst_null
            areturn
         5: .line 294
      StackMap locals:
      StackMap stack:
            aload 3 /* pointer */
            ifnull 7
         6: .line 295
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 3 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         7: .line 298
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            areturn
        end local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 2 // java.lang.String articleId
        end local 1 // int command
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    8     1    command  I
            0    8     2  articleId  Ljava/lang/String;
            0    8     3    pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      command    
      articleId  
      pointer    

  private java.io.BufferedReader __retrieve(int, long, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (IJLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int command
        start local 2 // long articleNumber
        start local 4 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 305
            aload 0 /* this */
            iload 1 /* command */
         1: .line 306
            lload 2 /* articleNumber */
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
         2: .line 305
            invokevirtual org.apache.commons.net.nntp.NNTPClient.sendCommand:(ILjava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
         3: .line 306
            ifne 5
         4: .line 307
            aconst_null
            areturn
         5: .line 310
      StackMap locals:
      StackMap stack:
            aload 4 /* pointer */
            ifnull 7
         6: .line 311
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 4 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         7: .line 314
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            areturn
        end local 4 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 2 // long articleNumber
        end local 1 // int command
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    8     1        command  I
            0    8     2  articleNumber  J
            0    8     4        pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      command        
      articleNumber  
      pointer        

  public java.io.BufferedReader retrieveArticle(java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 361
            aload 0 /* this */
            iconst_0
            aload 1 /* articleId */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(ILjava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
            0    1     2    pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public java.io.Reader retrieveArticle(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
         0: .line 375
            aload 0 /* this */
            aload 1 /* articleId */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  

  public java.io.Reader retrieveArticle();
    descriptor: ()Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 387
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(Ljava/lang/String;)Ljava/io/Reader;
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.io.BufferedReader retrieveArticle(long, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
        start local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 432
            aload 0 /* this */
            iconst_0
            lload 1 /* articleNumber */
            aload 3 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(IJLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
            0    1     3        pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  
      pointer        

  public java.io.BufferedReader retrieveArticle(long);
    descriptor: (J)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
         0: .line 444
            aload 0 /* this */
            lload 1 /* articleNumber */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  

  public java.io.BufferedReader retrieveArticleHeader(java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 492
            aload 0 /* this */
            iconst_3
            aload 1 /* articleId */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(ILjava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
            0    1     2    pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public java.io.Reader retrieveArticleHeader(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
         0: .line 505
            aload 0 /* this */
            aload 1 /* articleId */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  

  public java.io.Reader retrieveArticleHeader();
    descriptor: ()Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 516
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(Ljava/lang/String;)Ljava/io/Reader;
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.io.BufferedReader retrieveArticleHeader(long, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
        start local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 562
            aload 0 /* this */
            iconst_3
            lload 1 /* articleNumber */
            aload 3 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(IJLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
            0    1     3        pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  
      pointer        

  public java.io.BufferedReader retrieveArticleHeader(long);
    descriptor: (J)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
         0: .line 575
            aload 0 /* this */
            lload 1 /* articleNumber */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  

  public java.io.BufferedReader retrieveArticleBody(java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 623
            aload 0 /* this */
            iconst_1
            aload 1 /* articleId */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(ILjava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
            0    1     2    pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public java.io.Reader retrieveArticleBody(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
         0: .line 637
            aload 0 /* this */
            aload 1 /* articleId */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  

  public java.io.Reader retrieveArticleBody();
    descriptor: ()Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 649
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(Ljava/lang/String;)Ljava/io/Reader;
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.io.BufferedReader retrieveArticleBody(long, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
        start local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 695
            aload 0 /* this */
            iconst_1
            lload 1 /* articleNumber */
            aload 3 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieve:(IJLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
            0    1     3        pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  
      pointer        

  public java.io.BufferedReader retrieveArticleBody(long);
    descriptor: (J)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
         0: .line 707
            aload 0 /* this */
            lload 1 /* articleNumber */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            areturn
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  

  public boolean selectNewsgroup(java.lang.String, org.apache.commons.net.nntp.NewsgroupInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/NewsgroupInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String newsgroup
        start local 2 // org.apache.commons.net.nntp.NewsgroupInfo info
         0: .line 732
            aload 0 /* this */
            aload 1 /* newsgroup */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.group:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 733
            iconst_0
            ireturn
         2: .line 736
      StackMap locals:
      StackMap stack:
            aload 2 /* info */
            ifnull 4
         3: .line 737
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 2 /* info */
            invokestatic org.apache.commons.net.nntp.NNTPClient.__parseGroupReply:(Ljava/lang/String;Lorg/apache/commons/net/nntp/NewsgroupInfo;)V
         4: .line 740
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.commons.net.nntp.NewsgroupInfo info
        end local 1 // java.lang.String newsgroup
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    5     1  newsgroup  Ljava/lang/String;
            0    5     2       info  Lorg/apache/commons/net/nntp/NewsgroupInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      newsgroup  
      info       

  public boolean selectNewsgroup(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String newsgroup
         0: .line 751
            aload 0 /* this */
            aload 1 /* newsgroup */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectNewsgroup:(Ljava/lang/String;Lorg/apache/commons/net/nntp/NewsgroupInfo;)Z
            ireturn
        end local 1 // java.lang.String newsgroup
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  newsgroup  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      newsgroup  

  public java.lang.String listHelp();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 768
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.help:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isInformational:(I)Z
            ifne 2
         1: .line 769
            aconst_null
            areturn
         2: .line 772
      StackMap locals:
      StackMap stack:
            new java.io.StringWriter
            dup
            invokespecial java.io.StringWriter.<init>:()V
            astore 1 /* help */
        start local 1 // java.io.StringWriter help
         3: .line 773
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            astore 2 /* reader */
        start local 2 // java.io.BufferedReader reader
         4: .line 774
            aload 2 /* reader */
            aload 1 /* help */
            invokestatic org.apache.commons.net.io.Util.copyReader:(Ljava/io/Reader;Ljava/io/Writer;)J
            pop2
         5: .line 775
            aload 2 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
         6: .line 776
            aload 1 /* help */
            invokevirtual java.io.StringWriter.close:()V
         7: .line 777
            aload 1 /* help */
            invokevirtual java.io.StringWriter.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.io.BufferedReader reader
        end local 1 // java.io.StringWriter help
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/commons/net/nntp/NNTPClient;
            3    8     1    help  Ljava/io/StringWriter;
            4    8     2  reader  Ljava/io/BufferedReader;
    Exceptions:
      throws java.io.IOException

  public java.lang.String[] listOverviewFmt();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 788
            aload 0 /* this */
            ldc "LIST"
            ldc "OVERVIEW.FMT"
            invokevirtual org.apache.commons.net.nntp.NNTPClient.sendCommand:(Ljava/lang/String;Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 789
            aconst_null
            areturn
         2: .line 792
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            astore 1 /* reader */
        start local 1 // java.io.BufferedReader reader
         3: .line 794
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* list */
        start local 3 // java.util.ArrayList list
         4: .line 795
            goto 6
        start local 2 // java.lang.String line
         5: .line 796
      StackMap locals: java.io.BufferedReader java.lang.String java.util.ArrayList
      StackMap stack:
            aload 3 /* list */
            aload 2 /* line */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // java.lang.String line
         6: .line 795
      StackMap locals: org.apache.commons.net.nntp.NNTPClient java.io.BufferedReader top java.util.ArrayList
      StackMap stack:
            aload 1 /* reader */
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            dup
            astore 2 /* line */
        start local 2 // java.lang.String line
         7: ifnonnull 5
         8: .line 798
            aload 1 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
         9: .line 799
            aload 3 /* list */
            aload 3 /* list */
            invokevirtual java.util.ArrayList.size:()I
            anewarray java.lang.String
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.lang.String[]
            areturn
        end local 3 // java.util.ArrayList list
        end local 2 // java.lang.String line
        end local 1 // java.io.BufferedReader reader
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/net/nntp/NNTPClient;
            3   10     1  reader  Ljava/io/BufferedReader;
            5    6     2    line  Ljava/lang/String;
            7   10     2    line  Ljava/lang/String;
            4   10     3    list  Ljava/util/ArrayList<Ljava/lang/String;>;
    Exceptions:
      throws java.io.IOException

  public boolean selectArticle(java.lang.String, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 830
            aload 1 /* articleId */
            ifnull 3
         1: .line 831
            aload 0 /* this */
            aload 1 /* articleId */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.stat:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 5
         2: .line 832
            iconst_0
            ireturn
         3: .line 835
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.stat:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 5
         4: .line 836
            iconst_0
            ireturn
         5: .line 840
      StackMap locals:
      StackMap stack:
            aload 2 /* pointer */
            ifnull 7
         6: .line 841
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         7: .line 844
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    8     1  articleId  Ljava/lang/String;
            0    8     2    pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public boolean selectArticle(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
         0: .line 855
            aload 0 /* this */
            aload 1 /* articleId */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            ireturn
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  

  public boolean selectArticle(org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Lorg/apache/commons/net/nntp/ArticleInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 867
            aload 0 /* this */
            aconst_null
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            ireturn
        end local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      pointer  

  public boolean selectArticle(long, org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (JLorg/apache/commons/net/nntp/ArticleInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
        start local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 899
            aload 0 /* this */
            lload 1 /* articleNumber */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.stat:(J)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 900
            iconst_0
            ireturn
         2: .line 903
      StackMap locals:
      StackMap stack:
            aload 3 /* pointer */
            ifnull 4
         3: .line 904
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 3 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         4: .line 907
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    5     1  articleNumber  J
            0    5     3        pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  
      pointer        

  public boolean selectArticle(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
         0: .line 917
            aload 0 /* this */
            lload 1 /* articleNumber */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(JLorg/apache/commons/net/nntp/ArticleInfo;)Z
            ireturn
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  

  public boolean selectPreviousArticle(org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Lorg/apache/commons/net/nntp/ArticleInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 948
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.last:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 949
            iconst_0
            ireturn
         2: .line 952
      StackMap locals:
      StackMap stack:
            aload 1 /* pointer */
            ifnull 4
         3: .line 953
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         4: .line 956
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    5     1  pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      pointer  

  public boolean selectPreviousArticle();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 964
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectPreviousArticle:(Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            ireturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public boolean selectNextArticle(org.apache.commons.net.nntp.ArticleInfo);
    descriptor: (Lorg/apache/commons/net/nntp/ArticleInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
         0: .line 994
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.next:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 995
            iconst_0
            ireturn
         2: .line 998
      StackMap locals:
      StackMap stack:
            aload 1 /* pointer */
            ifnull 4
         3: .line 999
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__parseArticlePointer:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)V
         4: .line 1002
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // org.apache.commons.net.nntp.ArticleInfo pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    5     1  pointer  Lorg/apache/commons/net/nntp/ArticleInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      pointer  

  public boolean selectNextArticle();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1011
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectNextArticle:(Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            ireturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public org.apache.commons.net.nntp.NewsgroupInfo[] listNewsgroups();
    descriptor: ()[Lorg/apache/commons/net/nntp/NewsgroupInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1037
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.list:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 1038
            aconst_null
            areturn
         2: .line 1041
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__readNewsgroupListing:()[Lorg/apache/commons/net/nntp/NewsgroupInfo;
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.lang.Iterable<java.lang.String> iterateNewsgroupListing();
    descriptor: ()Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1062
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.list:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifeq 2
         1: .line 1063
            new org.apache.commons.net.nntp.ReplyIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.nntp.ReplyIterator.<init>:(Ljava/io/BufferedReader;)V
            areturn
         2: .line 1065
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "LIST command failed: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException
    Signature: ()Ljava/lang/Iterable<Ljava/lang/String;>;

  public java.lang.Iterable<org.apache.commons.net.nntp.NewsgroupInfo> iterateNewsgroups();
    descriptor: ()Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1086
            new org.apache.commons.net.nntp.NewsgroupIterator
            dup
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.iterateNewsgroupListing:()Ljava/lang/Iterable;
            invokespecial org.apache.commons.net.nntp.NewsgroupIterator.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException
    Signature: ()Ljava/lang/Iterable<Lorg/apache/commons/net/nntp/NewsgroupInfo;>;

  public org.apache.commons.net.nntp.NewsgroupInfo[] listNewsgroups(java.lang.String);
    descriptor: (Ljava/lang/String;)[Lorg/apache/commons/net/nntp/NewsgroupInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String wildmat
         0: .line 1104
            aload 0 /* this */
            aload 1 /* wildmat */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.listActive:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 1105
            aconst_null
            areturn
         2: .line 1107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__readNewsgroupListing:()[Lorg/apache/commons/net/nntp/NewsgroupInfo;
            areturn
        end local 1 // java.lang.String wildmat
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    3     1  wildmat  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      wildmat  

  public java.lang.Iterable<java.lang.String> iterateNewsgroupListing(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String wildmat
         0: .line 1124
            aload 0 /* this */
            aload 1 /* wildmat */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.listActive:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifeq 2
         1: .line 1125
            new org.apache.commons.net.nntp.ReplyIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.nntp.ReplyIterator.<init>:(Ljava/io/BufferedReader;)V
            areturn
         2: .line 1127
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "LIST ACTIVE "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* wildmat */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " command failed: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String wildmat
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    3     1  wildmat  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/lang/String;)Ljava/lang/Iterable<Ljava/lang/String;>;
    MethodParameters:
         Name  Flags
      wildmat  

  public java.lang.Iterable<org.apache.commons.net.nntp.NewsgroupInfo> iterateNewsgroups(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String wildmat
         0: .line 1143
            new org.apache.commons.net.nntp.NewsgroupIterator
            dup
            aload 0 /* this */
            aload 1 /* wildmat */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.iterateNewsgroupListing:(Ljava/lang/String;)Ljava/lang/Iterable;
            invokespecial org.apache.commons.net.nntp.NewsgroupIterator.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 1 // java.lang.String wildmat
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  wildmat  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/lang/String;)Ljava/lang/Iterable<Lorg/apache/commons/net/nntp/NewsgroupInfo;>;
    MethodParameters:
         Name  Flags
      wildmat  

  public org.apache.commons.net.nntp.NewsgroupInfo[] listNewNewsgroups(org.apache.commons.net.nntp.NewGroupsOrNewsQuery);
    descriptor: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)[Lorg/apache/commons/net/nntp/NewsgroupInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
         0: .line 1171
            aload 0 /* this */
         1: .line 1172
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDate:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getTime:()Ljava/lang/String;
         2: .line 1173
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.isGMT:()Z
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDistributions:()Ljava/lang/String;
         3: .line 1171
            invokevirtual org.apache.commons.net.nntp.NNTPClient.newgroups:(Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
         4: .line 1173
            ifne 6
         5: .line 1175
            aconst_null
            areturn
         6: .line 1178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__readNewsgroupListing:()[Lorg/apache/commons/net/nntp/NewsgroupInfo;
            areturn
        end local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    7     1  query  Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      query  

  public java.lang.Iterable<java.lang.String> iterateNewNewsgroupListing(org.apache.commons.net.nntp.NewGroupsOrNewsQuery);
    descriptor: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
         0: .line 1201
            aload 0 /* this */
         1: .line 1202
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDate:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getTime:()Ljava/lang/String;
         2: .line 1203
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.isGMT:()Z
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDistributions:()Ljava/lang/String;
         3: .line 1201
            invokevirtual org.apache.commons.net.nntp.NNTPClient.newgroups:(Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
         4: .line 1203
            ifeq 6
         5: .line 1204
            new org.apache.commons.net.nntp.ReplyIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.nntp.ReplyIterator.<init>:(Ljava/io/BufferedReader;)V
            areturn
         6: .line 1206
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "NEWGROUPS command failed: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    7     1  query  Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;
    Exceptions:
      throws java.io.IOException
    Signature: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable<Ljava/lang/String;>;
    MethodParameters:
       Name  Flags
      query  

  public java.lang.Iterable<org.apache.commons.net.nntp.NewsgroupInfo> iterateNewNewsgroups(org.apache.commons.net.nntp.NewGroupsOrNewsQuery);
    descriptor: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
         0: .line 1229
            new org.apache.commons.net.nntp.NewsgroupIterator
            dup
            aload 0 /* this */
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.iterateNewNewsgroupListing:(Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable;
            invokespecial org.apache.commons.net.nntp.NewsgroupIterator.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  query  Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;
    Exceptions:
      throws java.io.IOException
    Signature: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable<Lorg/apache/commons/net/nntp/NewsgroupInfo;>;
    MethodParameters:
       Name  Flags
      query  

  public java.lang.String[] listNewNews(org.apache.commons.net.nntp.NewGroupsOrNewsQuery);
    descriptor: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
         0: .line 1262
            aload 0 /* this */
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getNewsgroups:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDate:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getTime:()Ljava/lang/String;
         1: .line 1263
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.isGMT:()Z
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDistributions:()Ljava/lang/String;
         2: .line 1262
            invokevirtual org.apache.commons.net.nntp.NNTPClient.newnews:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)I
         3: .line 1261
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
         4: .line 1263
            ifne 6
         5: .line 1264
            aconst_null
            areturn
         6: .line 1267
      StackMap locals:
      StackMap stack:
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            astore 2 /* list */
        start local 2 // java.util.Vector list
         7: .line 1268
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            astore 3 /* reader */
        start local 3 // java.io.BufferedReader reader
         8: .line 1272
            goto 10
        start local 4 // java.lang.String line
         9: .line 1273
      StackMap locals: java.util.Vector java.io.BufferedReader java.lang.String
      StackMap stack:
            aload 2 /* list */
            aload 4 /* line */
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
        end local 4 // java.lang.String line
        10: .line 1272
      StackMap locals:
      StackMap stack:
            aload 3 /* reader */
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            dup
            astore 4 /* line */
        start local 4 // java.lang.String line
        11: ifnonnull 9
        12: .line 1275
            goto 16
        end local 4 // java.lang.String line
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: astore 5
        14: .line 1276
            aload 3 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
        15: .line 1277
            aload 5
            athrow
        start local 4 // java.lang.String line
        16: .line 1276
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* reader */
            invokevirtual java.io.BufferedReader.close:()V
        17: .line 1279
            aload 2 /* list */
            invokevirtual java.util.Vector.size:()I
            istore 5 /* size */
        start local 5 // int size
        18: .line 1280
            iload 5 /* size */
            iconst_1
            if_icmpge 20
        19: .line 1281
            iconst_0
            anewarray java.lang.String
            areturn
        20: .line 1284
      StackMap locals: int
      StackMap stack:
            iload 5 /* size */
            anewarray java.lang.String
            astore 6 /* result */
        start local 6 // java.lang.String[] result
        21: .line 1285
            aload 2 /* list */
            aload 6 /* result */
            invokevirtual java.util.Vector.copyInto:([Ljava/lang/Object;)V
        22: .line 1287
            aload 6 /* result */
            areturn
        end local 6 // java.lang.String[] result
        end local 5 // int size
        end local 4 // java.lang.String line
        end local 3 // java.io.BufferedReader reader
        end local 2 // java.util.Vector list
        end local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   23     0    this  Lorg/apache/commons/net/nntp/NNTPClient;
            0   23     1   query  Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;
            7   23     2    list  Ljava/util/Vector<Ljava/lang/String;>;
            8   23     3  reader  Ljava/io/BufferedReader;
            9   10     4    line  Ljava/lang/String;
           11   13     4    line  Ljava/lang/String;
           16   23     4    line  Ljava/lang/String;
           18   23     5    size  I
           21   23     6  result  [Ljava/lang/String;
      Exception table:
        from    to  target  type
           8    13      13  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      query  

  public java.lang.Iterable<java.lang.String> iterateNewNews(org.apache.commons.net.nntp.NewGroupsOrNewsQuery);
    descriptor: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
         0: .line 1314
            aload 0 /* this */
         1: .line 1315
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getNewsgroups:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDate:()Ljava/lang/String;
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getTime:()Ljava/lang/String;
         2: .line 1316
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.isGMT:()Z
            aload 1 /* query */
            invokevirtual org.apache.commons.net.nntp.NewGroupsOrNewsQuery.getDistributions:()Ljava/lang/String;
         3: .line 1314
            invokevirtual org.apache.commons.net.nntp.NNTPClient.newnews:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
         4: .line 1316
            ifeq 6
         5: .line 1317
            new org.apache.commons.net.nntp.ReplyIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.nntp.ReplyIterator.<init>:(Ljava/io/BufferedReader;)V
            areturn
         6: .line 1319
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "NEWNEWS command failed: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.apache.commons.net.nntp.NewGroupsOrNewsQuery query
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    7     1  query  Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;
    Exceptions:
      throws java.io.IOException
    Signature: (Lorg/apache/commons/net/nntp/NewGroupsOrNewsQuery;)Ljava/lang/Iterable<Ljava/lang/String;>;
    MethodParameters:
       Name  Flags
      query  

  public boolean completePendingCommand();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1356
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReply:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ireturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.io.Writer postArticle();
    descriptor: ()Ljava/io/Writer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1399
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.post:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveIntermediate:(I)Z
            ifne 2
         1: .line 1400
            aconst_null
            areturn
         2: .line 1403
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageWriter
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._writer_:Ljava/io/BufferedWriter;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageWriter.<init>:(Ljava/io/Writer;)V
            areturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public java.io.Writer forwardArticle(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/Writer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
         0: .line 1409
            aload 0 /* this */
            aload 1 /* articleId */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.ihave:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveIntermediate:(I)Z
            ifne 2
         1: .line 1410
            aconst_null
            areturn
         2: .line 1413
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageWriter
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._writer_:Ljava/io/BufferedWriter;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageWriter.<init>:(Ljava/io/Writer;)V
            areturn
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    3     1  articleId  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      articleId  

  public boolean logout();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
         0: .line 1428
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.quit:()I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ireturn
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
    Exceptions:
      throws java.io.IOException

  public boolean authenticate(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String username
        start local 2 // java.lang.String password
         0: .line 1445
            aload 0 /* this */
            aload 1 /* username */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.authinfoUser:(Ljava/lang/String;)I
            istore 3 /* replyCode */
        start local 3 // int replyCode
         1: .line 1447
            iload 3 /* replyCode */
            sipush 381
            if_icmpne 6
         2: .line 1449
            aload 0 /* this */
            aload 2 /* password */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.authinfoPass:(Ljava/lang/String;)I
            istore 3 /* replyCode */
         3: .line 1451
            iload 3 /* replyCode */
            sipush 281
            if_icmpne 6
         4: .line 1453
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.net.nntp.NNTPClient._isAllowedToPost:Z
         5: .line 1454
            iconst_1
            ireturn
         6: .line 1457
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int replyCode
        end local 2 // java.lang.String password
        end local 1 // java.lang.String username
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    7     1   username  Ljava/lang/String;
            0    7     2   password  Ljava/lang/String;
            1    7     3  replyCode  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      username  
      password  

  private java.io.BufferedReader __retrieveArticleInfo(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/io/BufferedReader;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleRange
         0: .line 1474
            aload 0 /* this */
            aload 1 /* articleRange */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.xover:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 1475
            aconst_null
            areturn
         2: .line 1478
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            areturn
        end local 1 // java.lang.String articleRange
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    3     1  articleRange  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      articleRange  

  public java.io.BufferedReader retrieveArticleInfo(long);
    descriptor: (J)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long articleNumber
         0: .line 1490
            aload 0 /* this */
            lload 1 /* articleNumber */
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieveArticleInfo:(Ljava/lang/String;)Ljava/io/BufferedReader;
            areturn
        end local 1 // long articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      articleNumber  

  public java.io.BufferedReader retrieveArticleInfo(long, long);
    descriptor: (JJ)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long lowArticleNumber
        start local 3 // long highArticleNumber
         0: .line 1507
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            lload 1 /* lowArticleNumber */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 1508
            lload 3 /* highArticleNumber */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         2: .line 1507
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieveArticleInfo:(Ljava/lang/String;)Ljava/io/BufferedReader;
         3: .line 1506
            areturn
        end local 3 // long highArticleNumber
        end local 1 // long lowArticleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1   lowArticleNumber  J
            0    4     3  highArticleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                   Name  Flags
      lowArticleNumber   
      highArticleNumber  

  public java.lang.Iterable<org.apache.commons.net.nntp.Article> iterateArticleInfo(long, long);
    descriptor: (JJ)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // long lowArticleNumber
        start local 3 // long highArticleNumber
         0: .line 1524
            aload 0 /* this */
            lload 1 /* lowArticleNumber */
            lload 3 /* highArticleNumber */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleInfo:(JJ)Ljava/io/BufferedReader;
            astore 5 /* info */
        start local 5 // java.io.BufferedReader info
         1: .line 1525
            aload 5 /* info */
            ifnonnull 3
         2: .line 1526
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "XOVER command failed: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.getReplyString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1529
      StackMap locals: java.io.BufferedReader
      StackMap stack:
            new org.apache.commons.net.nntp.ArticleIterator
            dup
            new org.apache.commons.net.nntp.ReplyIterator
            dup
            aload 5 /* info */
            iconst_0
            invokespecial org.apache.commons.net.nntp.ReplyIterator.<init>:(Ljava/io/BufferedReader;Z)V
            invokespecial org.apache.commons.net.nntp.ArticleIterator.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 5 // java.io.BufferedReader info
        end local 3 // long highArticleNumber
        end local 1 // long lowArticleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1   lowArticleNumber  J
            0    4     3  highArticleNumber  J
            1    4     5               info  Ljava/io/BufferedReader;
    Exceptions:
      throws java.io.IOException
    Signature: (JJ)Ljava/lang/Iterable<Lorg/apache/commons/net/nntp/Article;>;
    MethodParameters:
                   Name  Flags
      lowArticleNumber   
      highArticleNumber  

  private java.io.BufferedReader __retrieveHeader(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljava/io/BufferedReader;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String header
        start local 2 // java.lang.String articleRange
         0: .line 1547
            aload 0 /* this */
            aload 1 /* header */
            aload 2 /* articleRange */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.xhdr:(Ljava/lang/String;Ljava/lang/String;)I
            invokestatic org.apache.commons.net.nntp.NNTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 1548
            aconst_null
            areturn
         2: .line 1551
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.io.DotTerminatedMessageReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.nntp.NNTPClient._reader_:Ljava/io/BufferedReader;
            invokespecial org.apache.commons.net.io.DotTerminatedMessageReader.<init>:(Ljava/io/Reader;)V
            areturn
        end local 2 // java.lang.String articleRange
        end local 1 // java.lang.String header
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    3     1        header  Ljava/lang/String;
            0    3     2  articleRange  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      header        
      articleRange  

  public java.io.BufferedReader retrieveHeader(java.lang.String, long);
    descriptor: (Ljava/lang/String;J)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String header
        start local 2 // long articleNumber
         0: .line 1565
            aload 0 /* this */
            aload 1 /* header */
            lload 2 /* articleNumber */
            invokestatic java.lang.Long.toString:(J)Ljava/lang/String;
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieveHeader:(Ljava/lang/String;Ljava/lang/String;)Ljava/io/BufferedReader;
            areturn
        end local 2 // long articleNumber
        end local 1 // java.lang.String header
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1         header  Ljava/lang/String;
            0    1     2  articleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      header         
      articleNumber  

  public java.io.BufferedReader retrieveHeader(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Ljava/io/BufferedReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String header
        start local 2 // long lowArticleNumber
        start local 4 // long highArticleNumber
         0: .line 1583
            aload 0 /* this */
            aload 1 /* header */
            new java.lang.StringBuilder
            dup
            lload 2 /* lowArticleNumber */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 4 /* highArticleNumber */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__retrieveHeader:(Ljava/lang/String;Ljava/lang/String;)Ljava/io/BufferedReader;
         1: .line 1582
            areturn
        end local 4 // long highArticleNumber
        end local 2 // long lowArticleNumber
        end local 1 // java.lang.String header
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    2     1             header  Ljava/lang/String;
            0    2     2   lowArticleNumber  J
            0    2     4  highArticleNumber  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                   Name  Flags
      header             
      lowArticleNumber   
      highArticleNumber  

  public java.io.Reader retrieveHeader(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String header
        start local 2 // int lowArticleNumber
        start local 3 // int highArticleNumber
         0: .line 1607
            aload 0 /* this */
            aload 1 /* header */
            iload 2 /* lowArticleNumber */
            i2l
            iload 3 /* highArticleNumber */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveHeader:(Ljava/lang/String;JJ)Ljava/io/BufferedReader;
            areturn
        end local 3 // int highArticleNumber
        end local 2 // int lowArticleNumber
        end local 1 // java.lang.String header
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1             header  Ljava/lang/String;
            0    1     2   lowArticleNumber  I
            0    1     3  highArticleNumber  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                   Name  Flags
      header             
      lowArticleNumber   
      highArticleNumber  

  public java.io.Reader retrieveArticleInfo(int, int);
    descriptor: (II)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int lowArticleNumber
        start local 2 // int highArticleNumber
         0: .line 1619
            aload 0 /* this */
            iload 1 /* lowArticleNumber */
            i2l
            iload 2 /* highArticleNumber */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleInfo:(JJ)Ljava/io/BufferedReader;
            areturn
        end local 2 // int highArticleNumber
        end local 1 // int lowArticleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1   lowArticleNumber  I
            0    1     2  highArticleNumber  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                   Name  Flags
      lowArticleNumber   
      highArticleNumber  

  public java.io.Reader retrieveHeader(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String a
        start local 2 // int b
         0: .line 1631
            aload 0 /* this */
            aload 1 /* a */
            iload 2 /* b */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveHeader:(Ljava/lang/String;J)Ljava/io/BufferedReader;
            areturn
        end local 2 // int b
        end local 1 // java.lang.String a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1     a  Ljava/lang/String;
            0    1     2     b  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     
      b     

  public boolean selectArticle(int, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (ILorg/apache/commons/net/nntp/ArticlePointer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
        start local 2 // org.apache.commons.net.nntp.ArticlePointer ap
         0: .line 1643
            aload 0 /* this */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1644
            aload 0 /* this */
            iload 1 /* a */
            i2l
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(JLorg/apache/commons/net/nntp/ArticleInfo;)Z
            istore 4 /* b */
        start local 4 // boolean b
         2: .line 1645
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1646
            iload 4 /* b */
            ireturn
        end local 4 // boolean b
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer ap
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1     a  I
            0    4     2    ap  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3    ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4     b  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     
      ap    

  public java.io.Reader retrieveArticleInfo(int);
    descriptor: (I)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int lowArticleNumber
         0: .line 1657
            aload 0 /* this */
            iload 1 /* lowArticleNumber */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleInfo:(J)Ljava/io/BufferedReader;
            areturn
        end local 1 // int lowArticleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  lowArticleNumber  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                  Name  Flags
      lowArticleNumber  

  public boolean selectArticle(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
         0: .line 1668
            aload 0 /* this */
            iload 1 /* a */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(J)Z
            ireturn
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1     a  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     

  public java.io.Reader retrieveArticleHeader(int);
    descriptor: (I)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
         0: .line 1679
            aload 0 /* this */
            iload 1 /* a */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(J)Ljava/io/BufferedReader;
            areturn
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1     a  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     

  public java.io.Reader retrieveArticleHeader(int, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (ILorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
        start local 2 // org.apache.commons.net.nntp.ArticlePointer ap
         0: .line 1691
            aload 0 /* this */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1692
            aload 0 /* this */
            iload 1 /* a */
            i2l
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1693
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1694
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer ap
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1     a  I
            0    4     2    ap  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3    ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4   rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     
      ap    

  public java.io.Reader retrieveArticleBody(int);
    descriptor: (I)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
         0: .line 1705
            aload 0 /* this */
            iload 1 /* a */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(J)Ljava/io/BufferedReader;
            areturn
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1     a  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     

  public java.io.Reader retrieveArticle(int, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (ILorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int articleNumber
        start local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1718
            aload 0 /* this */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1719
            aload 0 /* this */
            iload 1 /* articleNumber */
            i2l
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1720
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1721
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 1 // int articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  articleNumber  I
            0    4     2        pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3             ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4            rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
               Name  Flags
      articleNumber  
      pointer        

  public java.io.Reader retrieveArticle(int);
    descriptor: (I)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int articleNumber
         0: .line 1733
            aload 0 /* this */
            iload 1 /* articleNumber */
            i2l
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(J)Ljava/io/BufferedReader;
            areturn
        end local 1 // int articleNumber
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    1     1  articleNumber  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
               Name  Flags
      articleNumber  

  public java.io.Reader retrieveArticleBody(int, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (ILorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // int a
        start local 2 // org.apache.commons.net.nntp.ArticlePointer ap
         0: .line 1745
            aload 0 /* this */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1746
            aload 0 /* this */
            iload 1 /* a */
            i2l
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(JLorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1747
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* ap */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1748
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer ap
        end local 1 // int a
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1     a  I
            0    4     2    ap  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3    ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4   rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      a     
      ap    

  public java.io.Reader retrieveArticle(java.lang.String, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1761
            aload 0 /* this */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1762
            aload 0 /* this */
            aload 1 /* articleId */
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticle:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1763
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1764
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  articleId  Ljava/lang/String;
            0    4     2    pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3         ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4        rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public java.io.Reader retrieveArticleBody(java.lang.String, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1777
            aload 0 /* this */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1778
            aload 0 /* this */
            aload 1 /* articleId */
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleBody:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1779
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1780
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  articleId  Ljava/lang/String;
            0    4     2    pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3         ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4        rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public java.io.Reader retrieveArticleHeader(java.lang.String, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticlePointer;)Ljava/io/Reader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1793
            aload 0 /* this */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1794
            aload 0 /* this */
            aload 1 /* articleId */
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.retrieveArticleHeader:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Ljava/io/BufferedReader;
            astore 4 /* rdr */
        start local 4 // java.io.Reader rdr
         2: .line 1795
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1796
            aload 4 /* rdr */
            areturn
        end local 4 // java.io.Reader rdr
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  articleId  Ljava/lang/String;
            0    4     2    pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3         ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4        rdr  Ljava/io/Reader;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public boolean selectArticle(java.lang.String, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticlePointer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // java.lang.String articleId
        start local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1809
            aload 0 /* this */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 3 /* ai */
        start local 3 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1810
            aload 0 /* this */
            aload 1 /* articleId */
            aload 3 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(Ljava/lang/String;Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            istore 4 /* b */
        start local 4 // boolean b
         2: .line 1811
            aload 0 /* this */
            aload 3 /* ai */
            aload 2 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1812
            iload 4 /* b */
            ireturn
        end local 4 // boolean b
        end local 3 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 2 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 1 // java.lang.String articleId
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  articleId  Ljava/lang/String;
            0    4     2    pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     3         ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     4          b  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
           Name  Flags
      articleId  
      pointer    

  public boolean selectArticle(org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Lorg/apache/commons/net/nntp/ArticlePointer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1824
            aload 0 /* this */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 2 /* ai */
        start local 2 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1825
            aload 0 /* this */
            aload 2 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectArticle:(Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            istore 3 /* b */
        start local 3 // boolean b
         2: .line 1826
            aload 0 /* this */
            aload 2 /* ai */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1827
            iload 3 /* b */
            ireturn
        end local 3 // boolean b
        end local 2 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     2       ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     3        b  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      pointer  

  public boolean selectNextArticle(org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Lorg/apache/commons/net/nntp/ArticlePointer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1839
            aload 0 /* this */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 2 /* ai */
        start local 2 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1840
            aload 0 /* this */
            aload 2 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectNextArticle:(Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            istore 3 /* b */
        start local 3 // boolean b
         2: .line 1841
            aload 0 /* this */
            aload 2 /* ai */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1842
            iload 3 /* b */
            ireturn
        end local 3 // boolean b
        end local 2 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     2       ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     3        b  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      pointer  

  public boolean selectPreviousArticle(org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Lorg/apache/commons/net/nntp/ArticlePointer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
         0: .line 1854
            aload 0 /* this */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ap2ai:(Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
            astore 2 /* ai */
        start local 2 // org.apache.commons.net.nntp.ArticleInfo ai
         1: .line 1855
            aload 0 /* this */
            aload 2 /* ai */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.selectPreviousArticle:(Lorg/apache/commons/net/nntp/ArticleInfo;)Z
            istore 3 /* b */
        start local 3 // boolean b
         2: .line 1856
            aload 0 /* this */
            aload 2 /* ai */
            aload 1 /* pointer */
            invokevirtual org.apache.commons.net.nntp.NNTPClient.__ai2ap:(Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
         3: .line 1857
            iload 3 /* b */
            ireturn
        end local 3 // boolean b
        end local 2 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 1 // org.apache.commons.net.nntp.ArticlePointer pointer
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1  pointer  Lorg/apache/commons/net/nntp/ArticlePointer;
            1    4     2       ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            2    4     3        b  Z
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      pointer  

  private org.apache.commons.net.nntp.ArticleInfo __ap2ai(org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Lorg/apache/commons/net/nntp/ArticlePointer;)Lorg/apache/commons/net/nntp/ArticleInfo;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticlePointer ap
         0: .line 1863
            aload 1 /* ap */
            ifnonnull 2
         1: .line 1864
            aconst_null
            areturn
         2: .line 1866
      StackMap locals:
      StackMap stack:
            new org.apache.commons.net.nntp.ArticleInfo
            dup
            invokespecial org.apache.commons.net.nntp.ArticleInfo.<init>:()V
            astore 2 /* ai */
        start local 2 // org.apache.commons.net.nntp.ArticleInfo ai
         3: .line 1867
            aload 2 /* ai */
            areturn
        end local 2 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 1 // org.apache.commons.net.nntp.ArticlePointer ap
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1    ap  Lorg/apache/commons/net/nntp/ArticlePointer;
            3    4     2    ai  Lorg/apache/commons/net/nntp/ArticleInfo;
    MethodParameters:
      Name  Flags
      ap    

  private void __ai2ap(org.apache.commons.net.nntp.ArticleInfo, org.apache.commons.net.nntp.ArticlePointer);
    descriptor: (Lorg/apache/commons/net/nntp/ArticleInfo;Lorg/apache/commons/net/nntp/ArticlePointer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.net.nntp.NNTPClient this
        start local 1 // org.apache.commons.net.nntp.ArticleInfo ai
        start local 2 // org.apache.commons.net.nntp.ArticlePointer ap
         0: .line 1872
            aload 2 /* ap */
            ifnull 3
         1: .line 1873
            aload 2 /* ap */
            aload 1 /* ai */
            getfield org.apache.commons.net.nntp.ArticleInfo.articleId:Ljava/lang/String;
            putfield org.apache.commons.net.nntp.ArticlePointer.articleId:Ljava/lang/String;
         2: .line 1874
            aload 2 /* ap */
            aload 1 /* ai */
            getfield org.apache.commons.net.nntp.ArticleInfo.articleNumber:J
            l2i
            putfield org.apache.commons.net.nntp.ArticlePointer.articleNumber:I
         3: .line 1876
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.apache.commons.net.nntp.ArticlePointer ap
        end local 1 // org.apache.commons.net.nntp.ArticleInfo ai
        end local 0 // org.apache.commons.net.nntp.NNTPClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/nntp/NNTPClient;
            0    4     1    ai  Lorg/apache/commons/net/nntp/ArticleInfo;
            0    4     2    ap  Lorg/apache/commons/net/nntp/ArticlePointer;
    MethodParameters:
      Name  Flags
      ai    
      ap    
}
SourceFile: "NNTPClient.java"