public class org.apache.commons.fileupload.MultipartStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.fileupload.MultipartStream
  super_class: java.lang.Object
{
  public static final byte CR;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 13

  public static final byte LF;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  public static final byte DASH;
    descriptor: B
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 45

  public static final int HEADER_PART_SIZE_MAX;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 10240

  protected static final int DEFAULT_BUFSIZE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 4096

  protected static final byte[] HEADER_SEPARATOR;
    descriptor: [B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final byte[] FIELD_SEPARATOR;
    descriptor: [B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final byte[] STREAM_TERMINATOR;
    descriptor: [B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final byte[] BOUNDARY_PREFIX;
    descriptor: [B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  private final java.io.InputStream input;
    descriptor: Ljava/io/InputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int boundaryLength;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final int keepRegion;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] boundary;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] boundaryTable;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int bufSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] buffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int head;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int tail;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String headerEncoding;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private final org.apache.commons.fileupload.MultipartStream$ProgressNotifier notifier;
    descriptor: Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 188
            iconst_4
            newarray 8
            dup
            iconst_0
            bipush 13
            bastore
            dup
            iconst_1
            bipush 10
            bastore
            dup
            iconst_2
            bipush 13
            bastore
            dup
            iconst_3
            bipush 10
            bastore
            putstatic org.apache.commons.fileupload.MultipartStream.HEADER_SEPARATOR:[B
         1: .line 194
            iconst_2
            newarray 8
            dup
            iconst_0
            bipush 13
            bastore
            dup
            iconst_1
            bipush 10
            bastore
            putstatic org.apache.commons.fileupload.MultipartStream.FIELD_SEPARATOR:[B
         2: .line 200
            iconst_2
            newarray 8
            dup
            iconst_0
            bipush 45
            bastore
            dup
            iconst_1
            bipush 45
            bastore
            putstatic org.apache.commons.fileupload.MultipartStream.STREAM_TERMINATOR:[B
         3: .line 205
            iconst_4
            newarray 8
            dup
            iconst_0
            bipush 13
            bastore
            dup
            iconst_1
            bipush 10
            bastore
            dup
            iconst_2
            bipush 45
            bastore
            dup
            iconst_3
            bipush 45
            bastore
            putstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 279
            aload 0 /* this */
            aconst_null
            aconst_null
            aconst_null
            invokespecial org.apache.commons.fileupload.MultipartStream.<init>:(Ljava/io/InputStream;[BLorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
         1: .line 280
            return
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/fileupload/MultipartStream;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public void <init>(java.io.InputStream, byte[], int);
    descriptor: (Ljava/io/InputStream;[BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.io.InputStream input
        start local 2 // byte[] boundary
        start local 3 // int bufSize
         0: .line 301
            aload 0 /* this */
            aload 1 /* input */
            aload 2 /* boundary */
            iload 3 /* bufSize */
            aconst_null
            invokespecial org.apache.commons.fileupload.MultipartStream.<init>:(Ljava/io/InputStream;[BILorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
         1: .line 302
            return
        end local 3 // int bufSize
        end local 2 // byte[] boundary
        end local 1 // java.io.InputStream input
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/fileupload/MultipartStream;
            0    2     1     input  Ljava/io/InputStream;
            0    2     2  boundary  [B
            0    2     3   bufSize  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      input     
      boundary  
      bufSize   

  public void <init>(java.io.InputStream, byte[], int, org.apache.commons.fileupload.MultipartStream$ProgressNotifier);
    descriptor: (Ljava/io/InputStream;[BILorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.io.InputStream input
        start local 2 // byte[] boundary
        start local 3 // int bufSize
        start local 4 // org.apache.commons.fileupload.MultipartStream$ProgressNotifier pNotifier
         0: .line 323
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 328
            aload 2 /* boundary */
            ifnonnull 3
         2: .line 329
            new java.lang.IllegalArgumentException
            dup
            ldc "boundary may not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 333
      StackMap locals: org.apache.commons.fileupload.MultipartStream java.io.InputStream byte[] int org.apache.commons.fileupload.MultipartStream$ProgressNotifier
      StackMap stack:
            aload 0 /* this */
            aload 2 /* boundary */
            arraylength
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            arraylength
            iadd
            putfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
         4: .line 334
            iload 3 /* bufSize */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            iconst_1
            iadd
            if_icmpge 8
         5: .line 335
            new java.lang.IllegalArgumentException
            dup
         6: .line 336
            ldc "The buffer size specified for the MultipartStream is too small"
         7: .line 335
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* input */
            putfield org.apache.commons.fileupload.MultipartStream.input:Ljava/io/InputStream;
         9: .line 340
            aload 0 /* this */
            iload 3 /* bufSize */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            iconst_2
            imul
            invokestatic java.lang.Math.max:(II)I
            putfield org.apache.commons.fileupload.MultipartStream.bufSize:I
        10: .line 341
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.bufSize:I
            newarray 8
            putfield org.apache.commons.fileupload.MultipartStream.buffer:[B
        11: .line 342
            aload 0 /* this */
            aload 4 /* pNotifier */
            putfield org.apache.commons.fileupload.MultipartStream.notifier:Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
        12: .line 344
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            newarray 8
            putfield org.apache.commons.fileupload.MultipartStream.boundary:[B
        13: .line 345
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            iconst_1
            iadd
            newarray 10
            putfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
        14: .line 346
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            putfield org.apache.commons.fileupload.MultipartStream.keepRegion:I
        15: .line 348
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
        16: .line 349
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            arraylength
        17: .line 348
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 350
            aload 2 /* boundary */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            arraylength
        19: .line 351
            aload 2 /* boundary */
            arraylength
        20: .line 350
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 352
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
        22: .line 354
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.fileupload.MultipartStream.head:I
        23: .line 355
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.fileupload.MultipartStream.tail:I
        24: .line 356
            return
        end local 4 // org.apache.commons.fileupload.MultipartStream$ProgressNotifier pNotifier
        end local 3 // int bufSize
        end local 2 // byte[] boundary
        end local 1 // java.io.InputStream input
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   25     0       this  Lorg/apache/commons/fileupload/MultipartStream;
            0   25     1      input  Ljava/io/InputStream;
            0   25     2   boundary  [B
            0   25     3    bufSize  I
            0   25     4  pNotifier  Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
    MethodParameters:
           Name  Flags
      input      
      boundary   
      bufSize    
      pNotifier  

  void <init>(java.io.InputStream, byte[], org.apache.commons.fileupload.MultipartStream$ProgressNotifier);
    descriptor: (Ljava/io/InputStream;[BLorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.io.InputStream input
        start local 2 // byte[] boundary
        start local 3 // org.apache.commons.fileupload.MultipartStream$ProgressNotifier pNotifier
         0: .line 372
            aload 0 /* this */
            aload 1 /* input */
            aload 2 /* boundary */
            sipush 4096
            aload 3 /* pNotifier */
            invokespecial org.apache.commons.fileupload.MultipartStream.<init>:(Ljava/io/InputStream;[BILorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
         1: .line 373
            return
        end local 3 // org.apache.commons.fileupload.MultipartStream$ProgressNotifier pNotifier
        end local 2 // byte[] boundary
        end local 1 // java.io.InputStream input
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/fileupload/MultipartStream;
            0    2     1      input  Ljava/io/InputStream;
            0    2     2   boundary  [B
            0    2     3  pNotifier  Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
    MethodParameters:
           Name  Flags
      input      
      boundary   
      pNotifier  

  public void <init>(java.io.InputStream, byte[]);
    descriptor: (Ljava/io/InputStream;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.io.InputStream input
        start local 2 // byte[] boundary
         0: .line 388
            aload 0 /* this */
            aload 1 /* input */
            aload 2 /* boundary */
            sipush 4096
            aconst_null
            invokespecial org.apache.commons.fileupload.MultipartStream.<init>:(Ljava/io/InputStream;[BILorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;)V
         1: .line 389
            return
        end local 2 // byte[] boundary
        end local 1 // java.io.InputStream input
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/fileupload/MultipartStream;
            0    2     1     input  Ljava/io/InputStream;
            0    2     2  boundary  [B
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      input     
      boundary  

  public java.lang.String getHeaderEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 401
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.headerEncoding:Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/fileupload/MultipartStream;

  public void setHeaderEncoding(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.lang.String encoding
         0: .line 412
            aload 0 /* this */
            aload 1 /* encoding */
            putfield org.apache.commons.fileupload.MultipartStream.headerEncoding:Ljava/lang/String;
         1: .line 413
            return
        end local 1 // java.lang.String encoding
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/fileupload/MultipartStream;
            0    2     1  encoding  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      encoding  

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 425
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.head:I
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.tail:I
            if_icmpne 7
         1: .line 426
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.fileupload.MultipartStream.head:I
         2: .line 428
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.input:Ljava/io/InputStream;
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.buffer:[B
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.head:I
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.bufSize:I
            invokevirtual java.io.InputStream.read:([BII)I
            putfield org.apache.commons.fileupload.MultipartStream.tail:I
         3: .line 429
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.tail:I
            iconst_m1
            if_icmpne 5
         4: .line 431
            new java.io.IOException
            dup
            ldc "No more data is available"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 433
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.notifier:Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
            ifnull 7
         6: .line 434
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.notifier:Lorg/apache/commons/fileupload/MultipartStream$ProgressNotifier;
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.tail:I
            invokevirtual org.apache.commons.fileupload.MultipartStream$ProgressNotifier.noteBytesRead:(I)V
         7: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.buffer:[B
            aload 0 /* this */
            dup
            getfield org.apache.commons.fileupload.MultipartStream.head:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.commons.fileupload.MultipartStream.head:I
            baload
            ireturn
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/fileupload/MultipartStream;
    Exceptions:
      throws java.io.IOException

  public boolean readBoundary();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 453
            iconst_2
            newarray 8
            astore 1 /* marker */
        start local 1 // byte[] marker
         1: .line 454
            iconst_0
            istore 2 /* nextChunk */
        start local 2 // boolean nextChunk
         2: .line 456
            aload 0 /* this */
            dup
            getfield org.apache.commons.fileupload.MultipartStream.head:I
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            iadd
            putfield org.apache.commons.fileupload.MultipartStream.head:I
         3: .line 458
            aload 1 /* marker */
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.readByte:()B
            bastore
         4: .line 459
            aload 1 /* marker */
            iconst_0
            baload
            bipush 10
            if_icmpne 6
         5: .line 466
            iconst_1
            ireturn
         6: .line 469
      StackMap locals: byte[] int
      StackMap stack:
            aload 1 /* marker */
            iconst_1
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.readByte:()B
            bastore
         7: .line 470
            aload 1 /* marker */
            getstatic org.apache.commons.fileupload.MultipartStream.STREAM_TERMINATOR:[B
            iconst_2
            invokestatic org.apache.commons.fileupload.MultipartStream.arrayequals:([B[BI)Z
            ifeq 10
         8: .line 471
            iconst_0
            istore 2 /* nextChunk */
         9: .line 472
            goto 20
      StackMap locals:
      StackMap stack:
        10: aload 1 /* marker */
            getstatic org.apache.commons.fileupload.MultipartStream.FIELD_SEPARATOR:[B
            iconst_2
            invokestatic org.apache.commons.fileupload.MultipartStream.arrayequals:([B[BI)Z
            ifeq 13
        11: .line 473
            iconst_1
            istore 2 /* nextChunk */
        12: .line 474
            goto 20
        13: .line 475
      StackMap locals:
      StackMap stack:
            new org.apache.commons.fileupload.MultipartStream$MalformedStreamException
            dup
        14: .line 476
            ldc "Unexpected characters follow a boundary"
        15: .line 475
            invokespecial org.apache.commons.fileupload.MultipartStream$MalformedStreamException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 478
      StackMap locals:
      StackMap stack: org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
            astore 3 /* e */
        start local 3 // org.apache.commons.fileupload.FileUploadBase$FileUploadIOException e
        17: .line 480
            aload 3 /* e */
            athrow
        end local 3 // org.apache.commons.fileupload.FileUploadBase$FileUploadIOException e
        18: .line 481
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
        19: .line 482
            new org.apache.commons.fileupload.MultipartStream$MalformedStreamException
            dup
            ldc "Stream ended unexpectedly"
            invokespecial org.apache.commons.fileupload.MultipartStream$MalformedStreamException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 484
      StackMap locals:
      StackMap stack:
            iload 2 /* nextChunk */
            ireturn
        end local 2 // boolean nextChunk
        end local 1 // byte[] marker
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lorg/apache/commons/fileupload/MultipartStream;
            1   21     1     marker  [B
            2   21     2  nextChunk  Z
           17   18     3          e  Lorg/apache/commons/fileupload/FileUploadBase$FileUploadIOException;
      Exception table:
        from    to  target  type
           3     5      16  Class org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
           6    16      16  Class org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
           3     5      18  Class java.io.IOException
           6    16      18  Class java.io.IOException
    Exceptions:
      throws org.apache.commons.fileupload.FileUploadBase$FileUploadIOException, org.apache.commons.fileupload.MultipartStream$MalformedStreamException

  public void setBoundary(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // byte[] boundary
         0: .line 508
            aload 1 /* boundary */
            arraylength
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            arraylength
            isub
            if_icmpeq 4
         1: .line 509
            new org.apache.commons.fileupload.MultipartStream$IllegalBoundaryException
            dup
         2: .line 510
            ldc "The length of a boundary token cannot be changed"
         3: .line 509
            invokespecial org.apache.commons.fileupload.MultipartStream$IllegalBoundaryException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 512
      StackMap locals:
      StackMap stack:
            aload 1 /* boundary */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            getstatic org.apache.commons.fileupload.MultipartStream.BOUNDARY_PREFIX:[B
            arraylength
         5: .line 513
            aload 1 /* boundary */
            arraylength
         6: .line 512
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 514
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
         8: .line 515
            return
        end local 1 // byte[] boundary
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/apache/commons/fileupload/MultipartStream;
            0    9     1  boundary  [B
    Exceptions:
      throws org.apache.commons.fileupload.MultipartStream$IllegalBoundaryException
    MethodParameters:
          Name  Flags
      boundary  

  private void computeBoundaryTable();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 521
            iconst_2
            istore 1 /* position */
        start local 1 // int position
         1: .line 522
            iconst_0
            istore 2 /* candidate */
        start local 2 // int candidate
         2: .line 524
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iconst_0
            iconst_m1
            iastore
         3: .line 525
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iconst_1
            iconst_0
            iastore
         4: .line 527
            goto 15
         5: .line 528
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iload 1 /* position */
            iconst_1
            isub
            baload
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iload 2 /* candidate */
            baload
            if_icmpne 10
         6: .line 529
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iload 1 /* position */
            iload 2 /* candidate */
            iconst_1
            iadd
            iastore
         7: .line 530
            iinc 2 /* candidate */ 1
         8: .line 531
            iinc 1 /* position */ 1
         9: .line 532
            goto 15
      StackMap locals:
      StackMap stack:
        10: iload 2 /* candidate */
            ifle 13
        11: .line 533
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iload 2 /* candidate */
            iaload
            istore 2 /* candidate */
        12: .line 534
            goto 15
        13: .line 535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iload 1 /* position */
            iconst_0
            iastore
        14: .line 536
            iinc 1 /* position */ 1
        15: .line 527
      StackMap locals:
      StackMap stack:
            iload 1 /* position */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            if_icmple 5
        16: .line 539
            return
        end local 2 // int candidate
        end local 1 // int position
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lorg/apache/commons/fileupload/MultipartStream;
            1   17     1   position  I
            2   17     2  candidate  I

  public java.lang.String readHeaders();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 558
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: .line 561
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 3 /* baos */
        start local 3 // java.io.ByteArrayOutputStream baos
         2: .line 562
            iconst_0
            istore 4 /* size */
        start local 4 // int size
         3: .line 563
            goto 21
         4: .line 565
      StackMap locals: org.apache.commons.fileupload.MultipartStream int top java.io.ByteArrayOutputStream int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.readByte:()B
            istore 2 /* b */
        start local 2 // byte b
         5: .line 566
            goto 10
        end local 2 // byte b
      StackMap locals:
      StackMap stack: org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
         6: astore 5 /* e */
        start local 5 // org.apache.commons.fileupload.FileUploadBase$FileUploadIOException e
         7: .line 568
            aload 5 /* e */
            athrow
        end local 5 // org.apache.commons.fileupload.FileUploadBase$FileUploadIOException e
         8: .line 569
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         9: .line 570
            new org.apache.commons.fileupload.MultipartStream$MalformedStreamException
            dup
            ldc "Stream ended unexpectedly"
            invokespecial org.apache.commons.fileupload.MultipartStream$MalformedStreamException.<init>:(Ljava/lang/String;)V
            athrow
        start local 2 // byte b
        10: .line 572
      StackMap locals: org.apache.commons.fileupload.MultipartStream int int java.io.ByteArrayOutputStream int
      StackMap stack:
            iinc 4 /* size */ 1
            iload 4 /* size */
            sipush 10240
            if_icmple 16
        11: .line 573
            new org.apache.commons.fileupload.MultipartStream$MalformedStreamException
            dup
        12: .line 574
            ldc "Header section has more than %s bytes (maybe it is not properly terminated)"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        13: .line 575
            sipush 10240
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        14: .line 574
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        15: .line 573
            invokespecial org.apache.commons.fileupload.MultipartStream$MalformedStreamException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 577
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            getstatic org.apache.commons.fileupload.MultipartStream.HEADER_SEPARATOR:[B
            iload 1 /* i */
            baload
            if_icmpne 19
        17: .line 578
            iinc 1 /* i */ 1
        18: .line 579
            goto 20
        19: .line 580
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        20: .line 582
      StackMap locals:
      StackMap stack:
            aload 3 /* baos */
            iload 2 /* b */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        end local 2 // byte b
        21: .line 563
      StackMap locals: org.apache.commons.fileupload.MultipartStream int top java.io.ByteArrayOutputStream int
      StackMap stack:
            iload 1 /* i */
            getstatic org.apache.commons.fileupload.MultipartStream.HEADER_SEPARATOR:[B
            arraylength
            if_icmplt 4
        22: .line 585
            aconst_null
            astore 5 /* headers */
        start local 5 // java.lang.String headers
        23: .line 586
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.headerEncoding:Ljava/lang/String;
            ifnull 29
        24: .line 588
            aload 3 /* baos */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.headerEncoding:Ljava/lang/String;
            invokevirtual java.io.ByteArrayOutputStream.toString:(Ljava/lang/String;)Ljava/lang/String;
            astore 5 /* headers */
        25: .line 589
            goto 30
      StackMap locals: org.apache.commons.fileupload.MultipartStream int top java.io.ByteArrayOutputStream int java.lang.String
      StackMap stack: java.io.UnsupportedEncodingException
        26: pop
        27: .line 592
            aload 3 /* baos */
            invokevirtual java.io.ByteArrayOutputStream.toString:()Ljava/lang/String;
            astore 5 /* headers */
        28: .line 594
            goto 30
        29: .line 595
      StackMap locals:
      StackMap stack:
            aload 3 /* baos */
            invokevirtual java.io.ByteArrayOutputStream.toString:()Ljava/lang/String;
            astore 5 /* headers */
        30: .line 598
      StackMap locals:
      StackMap stack:
            aload 5 /* headers */
            areturn
        end local 5 // java.lang.String headers
        end local 4 // int size
        end local 3 // java.io.ByteArrayOutputStream baos
        end local 1 // int i
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   31     0     this  Lorg/apache/commons/fileupload/MultipartStream;
            1   31     1        i  I
            5    6     2        b  B
           10   21     2        b  B
            2   31     3     baos  Ljava/io/ByteArrayOutputStream;
            3   31     4     size  I
            7    8     5        e  Lorg/apache/commons/fileupload/FileUploadBase$FileUploadIOException;
           23   31     5  headers  Ljava/lang/String;
      Exception table:
        from    to  target  type
           4     5       6  Class org.apache.commons.fileupload.FileUploadBase$FileUploadIOException
           4     5       8  Class java.io.IOException
          24    25      26  Class java.io.UnsupportedEncodingException
    Exceptions:
      throws org.apache.commons.fileupload.FileUploadBase$FileUploadIOException, org.apache.commons.fileupload.MultipartStream$MalformedStreamException

  public int readBodyData(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // java.io.OutputStream output
         0: .line 622
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.newInputStream:()Lorg/apache/commons/fileupload/MultipartStream$ItemInputStream;
            aload 1 /* output */
            iconst_0
            invokestatic org.apache.commons.fileupload.util.Streams.copy:(Ljava/io/InputStream;Ljava/io/OutputStream;Z)J
            l2i
            ireturn
        end local 1 // java.io.OutputStream output
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/fileupload/MultipartStream;
            0    1     1  output  Ljava/io/OutputStream;
    Exceptions:
      throws org.apache.commons.fileupload.MultipartStream$MalformedStreamException, java.io.IOException
    MethodParameters:
        Name  Flags
      output  

  org.apache.commons.fileupload.MultipartStream$ItemInputStream newInputStream();
    descriptor: ()Lorg/apache/commons/fileupload/MultipartStream$ItemInputStream;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 630
            new org.apache.commons.fileupload.MultipartStream$ItemInputStream
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.fileupload.MultipartStream$ItemInputStream.<init>:(Lorg/apache/commons/fileupload/MultipartStream;)V
            areturn
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/fileupload/MultipartStream;

  public int discardBodyData();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 646
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.fileupload.MultipartStream.readBodyData:(Ljava/io/OutputStream;)I
            ireturn
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/fileupload/MultipartStream;
    Exceptions:
      throws org.apache.commons.fileupload.MultipartStream$MalformedStreamException, java.io.IOException

  public boolean skipPreamble();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 659
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_2
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            iconst_2
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 660
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            iconst_2
            isub
            putfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
         2: .line 661
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
         3: .line 664
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.discardBodyData:()I
            pop
         4: .line 668
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.readBoundary:()Z
            istore 2
         5: .line 673
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_2
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            iconst_2
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 674
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            putfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
         7: .line 675
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            bipush 13
            bastore
         8: .line 676
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_1
            bipush 10
            bastore
         9: .line 677
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
        10: .line 668
            iload 2
            ireturn
        11: .line 669
      StackMap locals:
      StackMap stack: org.apache.commons.fileupload.MultipartStream$MalformedStreamException
            pop
        12: .line 673
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_2
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            iconst_2
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 674
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            putfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
        14: .line 675
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            bipush 13
            bastore
        15: .line 676
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_1
            bipush 10
            bastore
        16: .line 677
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
        17: .line 670
            iconst_0
            ireturn
        18: .line 671
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
        19: .line 673
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_2
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            iconst_2
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 674
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            arraylength
            putfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
        21: .line 675
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_0
            bipush 13
            bastore
        22: .line 676
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iconst_1
            bipush 10
            bastore
        23: .line 677
            aload 0 /* this */
            invokevirtual org.apache.commons.fileupload.MultipartStream.computeBoundaryTable:()V
        24: .line 678
            aload 1
            athrow
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Lorg/apache/commons/fileupload/MultipartStream;
      Exception table:
        from    to  target  type
           3     5      11  Class org.apache.commons.fileupload.MultipartStream$MalformedStreamException
           3     5      18  any
          11    12      18  any
    Exceptions:
      throws java.io.IOException

  public static boolean arrayequals(byte[], byte[], int);
    descriptor: ([B[BI)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // byte[] a
        start local 1 // byte[] b
        start local 2 // int count
         0: .line 695
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 696
      StackMap locals: int
      StackMap stack:
            aload 0 /* a */
            iload 3 /* i */
            baload
            aload 1 /* b */
            iload 3 /* i */
            baload
            if_icmpeq 4
         3: .line 697
            iconst_0
            ireturn
         4: .line 695
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* count */
            if_icmplt 2
        end local 3 // int i
         6: .line 700
            iconst_1
            ireturn
        end local 2 // int count
        end local 1 // byte[] b
        end local 0 // byte[] a
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0      a  [B
            0    7     1      b  [B
            0    7     2  count  I
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      a      
      b      
      count  

  protected int findByte(byte, int);
    descriptor: (BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.commons.fileupload.MultipartStream this
        start local 1 // byte value
        start local 2 // int pos
         0: .line 715
            iload 2 /* pos */
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 716
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.buffer:[B
            iload 3 /* i */
            baload
            iload 1 /* value */
            if_icmpne 4
         3: .line 717
            iload 3 /* i */
            ireturn
         4: .line 715
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.tail:I
            if_icmplt 2
        end local 3 // int i
         6: .line 721
            iconst_m1
            ireturn
        end local 2 // int pos
        end local 1 // byte value
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/fileupload/MultipartStream;
            0    7     1  value  B
            0    7     2    pos  I
            1    6     3      i  I
    MethodParameters:
       Name  Flags
      value  
      pos    

  protected int findSeparator();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.fileupload.MultipartStream this
         0: .line 734
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.head:I
            istore 1 /* bufferPos */
        start local 1 // int bufferPos
         1: .line 735
            iconst_0
            istore 2 /* tablePos */
        start local 2 // int tablePos
         2: .line 737
            goto 9
         3: .line 739
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryTable:[I
            iload 2 /* tablePos */
            iaload
            istore 2 /* tablePos */
         4: .line 738
      StackMap locals:
      StackMap stack:
            iload 2 /* tablePos */
            iflt 5
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.buffer:[B
            iload 1 /* bufferPos */
            baload
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundary:[B
            iload 2 /* tablePos */
            baload
            if_icmpne 3
         5: .line 741
      StackMap locals:
      StackMap stack:
            iinc 1 /* bufferPos */ 1
         6: .line 742
            iinc 2 /* tablePos */ 1
         7: .line 743
            iload 2 /* tablePos */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            if_icmpne 9
         8: .line 744
            iload 1 /* bufferPos */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.boundaryLength:I
            isub
            ireturn
         9: .line 737
      StackMap locals:
      StackMap stack:
            iload 1 /* bufferPos */
            aload 0 /* this */
            getfield org.apache.commons.fileupload.MultipartStream.tail:I
            if_icmplt 4
        10: .line 747
            iconst_m1
            ireturn
        end local 2 // int tablePos
        end local 1 // int bufferPos
        end local 0 // org.apache.commons.fileupload.MultipartStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/apache/commons/fileupload/MultipartStream;
            1   11     1  bufferPos  I
            2   11     2   tablePos  I
}
SourceFile: "MultipartStream.java"
NestMembers:
  org.apache.commons.fileupload.MultipartStream$IllegalBoundaryException  org.apache.commons.fileupload.MultipartStream$ItemInputStream  org.apache.commons.fileupload.MultipartStream$MalformedStreamException  org.apache.commons.fileupload.MultipartStream$ProgressNotifier
InnerClasses:
  public FileUploadIOException = org.apache.commons.fileupload.FileUploadBase$FileUploadIOException of org.apache.commons.fileupload.FileUploadBase
  public IllegalBoundaryException = org.apache.commons.fileupload.MultipartStream$IllegalBoundaryException of org.apache.commons.fileupload.MultipartStream
  public ItemInputStream = org.apache.commons.fileupload.MultipartStream$ItemInputStream of org.apache.commons.fileupload.MultipartStream
  public MalformedStreamException = org.apache.commons.fileupload.MultipartStream$MalformedStreamException of org.apache.commons.fileupload.MultipartStream
  public ProgressNotifier = org.apache.commons.fileupload.MultipartStream$ProgressNotifier of org.apache.commons.fileupload.MultipartStream