public class com.fasterxml.jackson.dataformat.smile.SmileGenerator extends com.fasterxml.jackson.core.base.GeneratorBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.fasterxml.jackson.dataformat.smile.SmileGenerator
  super_class: com.fasterxml.jackson.core.base.GeneratorBase
{
  private static final int MIN_BUFFER_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 770

  protected static final byte TOKEN_BYTE_LONG_STRING_ASCII;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: -32

  protected static final byte TOKEN_BYTE_INT_32;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 36

  protected static final byte TOKEN_BYTE_INT_64;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 37

  protected static final byte TOKEN_BYTE_BIG_INTEGER;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 38

  protected static final byte TOKEN_BYTE_FLOAT_32;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 40

  protected static final byte TOKEN_BYTE_FLOAT_64;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 41

  protected static final byte TOKEN_BYTE_BIG_DECIMAL;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 42

  protected static final long MIN_INT_AS_LONG;
    descriptor: J
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: -2147483648

  protected static final long MAX_INT_AS_LONG;
    descriptor: J
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483647

  protected final com.fasterxml.jackson.core.io.IOContext _ioContext;
    descriptor: Lcom/fasterxml/jackson/core/io/IOContext;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.io.OutputStream _out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected int _formatFeatures;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected final com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler<com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode> _smileBufferRecycler;
    descriptor: Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler<Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;>;

  protected com.fasterxml.jackson.dataformat.smile.SmileWriteContext _smileContext;
    descriptor: Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
    flags: (0x0004) ACC_PROTECTED

  protected byte[] _outputBuffer;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int _outputTail;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected final int _outputEnd;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected int _bytesWritten;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] _seenNames;
    descriptor: [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
    flags: (0x0004) ACC_PROTECTED

  protected int _seenNameCount;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] _seenStringValues;
    descriptor: [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
    flags: (0x0004) ACC_PROTECTED

  protected int _seenStringValueCount;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean _bufferRecyclable;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected static final java.lang.ThreadLocal<java.lang.ref.SoftReference<com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler<com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode>>> _smileRecyclerRef;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Ljava/lang/ref/SoftReference<Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler<Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;>;>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 271
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
         1: .line 270
            putstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileRecyclerRef:Ljava/lang/ThreadLocal;
         2: .line 271
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(com.fasterxml.jackson.core.io.IOContext, int, int, com.fasterxml.jackson.core.ObjectCodec, java.io.OutputStream);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=6
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int stdFeatures
        start local 3 // int smileFeatures
        start local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        start local 5 // java.io.OutputStream out
         0: .line 282
            aload 0 /* this */
            iload 2 /* stdFeatures */
            aload 4 /* codec */
            aconst_null
            invokespecial com.fasterxml.jackson.core.base.GeneratorBase.<init>:(ILcom/fasterxml/jackson/core/ObjectCodec;Lcom/fasterxml/jackson/core/json/JsonWriteContext;)V
         1: .line 207
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         2: .line 283
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.STRICT_DUPLICATE_DETECTION:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            iload 2 /* stdFeatures */
            invokevirtual com.fasterxml.jackson.core.JsonGenerator$Feature.enabledIn:(I)Z
            ifeq 4
         3: .line 284
            aload 0 /* this */
            invokestatic com.fasterxml.jackson.core.json.DupDetector.rootDetector:(Lcom/fasterxml/jackson/core/JsonGenerator;)Lcom/fasterxml/jackson/core/json/DupDetector;
            goto 5
         4: .line 285
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator com.fasterxml.jackson.core.io.IOContext int int com.fasterxml.jackson.core.ObjectCodec java.io.OutputStream
      StackMap stack:
            aconst_null
         5: .line 283
      StackMap locals:
      StackMap stack: com.fasterxml.jackson.core.json.DupDetector
            astore 6 /* dups */
        start local 6 // com.fasterxml.jackson.core.json.DupDetector dups
         6: .line 287
            aload 0 /* this */
            aload 6 /* dups */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createRootContext:(Lcom/fasterxml/jackson/core/json/DupDetector;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         7: .line 288
            aload 0 /* this */
            iload 3 /* smileFeatures */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
         8: .line 289
            aload 0 /* this */
            aload 1 /* ctxt */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
         9: .line 290
            aload 0 /* this */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:()Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
        10: .line 291
            aload 0 /* this */
            aload 5 /* out */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
        11: .line 292
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bufferRecyclable:Z
        12: .line 293
            aload 0 /* this */
            aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocWriteEncodingBuffer:()[B
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
        13: .line 294
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
        14: .line 296
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            sipush 770
            if_icmpge 19
        15: .line 297
            new java.lang.IllegalStateException
            dup
        16: .line 298
            ldc "Internal encoding buffer length (%d) too short, must be at least %d"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
        17: .line 299
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            sipush 770
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        18: .line 297
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 301
      StackMap locals: com.fasterxml.jackson.core.json.DupDetector
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_NAMES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            iload 3 /* smileFeatures */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifne 23
        20: .line 302
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        21: .line 303
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
        22: .line 304
            goto 27
        23: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.allocSeenNamesBuffer:()[Ljava/lang/Object;
            checkcast com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        24: .line 306
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            ifnonnull 26
        25: .line 307
            aload 0 /* this */
            bipush 64
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        26: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
        27: .line 312
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_STRING_VALUES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            iload 3 /* smileFeatures */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifne 31
        28: .line 313
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        29: .line 314
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
        30: .line 315
            goto 35
        31: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.allocSeenStringValuesBuffer:()[Ljava/lang/Object;
            checkcast com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        32: .line 317
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            ifnonnull 34
        33: .line 318
            aload 0 /* this */
            bipush 64
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        34: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
        35: .line 322
      StackMap locals:
      StackMap stack:
            return
        end local 6 // com.fasterxml.jackson.core.json.DupDetector dups
        end local 5 // java.io.OutputStream out
        end local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 3 // int smileFeatures
        end local 2 // int stdFeatures
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   36     0           this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   36     1           ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0   36     2    stdFeatures  I
            0   36     3  smileFeatures  I
            0   36     4          codec  Lcom/fasterxml/jackson/core/ObjectCodec;
            0   36     5            out  Ljava/io/OutputStream;
            6   36     6           dups  Lcom/fasterxml/jackson/core/json/DupDetector;
    MethodParameters:
               Name  Flags
      ctxt           
      stdFeatures    
      smileFeatures  
      codec          
      out            

  public void <init>(com.fasterxml.jackson.core.io.IOContext, int, int, com.fasterxml.jackson.core.ObjectCodec, java.io.OutputStream, byte[], int, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;Ljava/io/OutputStream;[BIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=9
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int stdFeatures
        start local 3 // int smileFeatures
        start local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        start local 5 // java.io.OutputStream out
        start local 6 // byte[] outputBuffer
        start local 7 // int offset
        start local 8 // boolean bufferRecyclable
         0: .line 328
            aload 0 /* this */
            iload 2 /* stdFeatures */
            aload 4 /* codec */
            aconst_null
            invokespecial com.fasterxml.jackson.core.base.GeneratorBase.<init>:(ILcom/fasterxml/jackson/core/ObjectCodec;Lcom/fasterxml/jackson/core/json/JsonWriteContext;)V
         1: .line 207
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         2: .line 329
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.STRICT_DUPLICATE_DETECTION:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            iload 2 /* stdFeatures */
            invokevirtual com.fasterxml.jackson.core.JsonGenerator$Feature.enabledIn:(I)Z
            ifeq 4
         3: .line 330
            aload 0 /* this */
            invokestatic com.fasterxml.jackson.core.json.DupDetector.rootDetector:(Lcom/fasterxml/jackson/core/JsonGenerator;)Lcom/fasterxml/jackson/core/json/DupDetector;
            goto 5
         4: .line 331
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator com.fasterxml.jackson.core.io.IOContext int int com.fasterxml.jackson.core.ObjectCodec java.io.OutputStream byte[] int int
      StackMap stack:
            aconst_null
         5: .line 329
      StackMap locals:
      StackMap stack: com.fasterxml.jackson.core.json.DupDetector
            astore 9 /* dups */
        start local 9 // com.fasterxml.jackson.core.json.DupDetector dups
         6: .line 333
            aload 0 /* this */
            aload 9 /* dups */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createRootContext:(Lcom/fasterxml/jackson/core/json/DupDetector;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         7: .line 334
            aload 0 /* this */
            iload 3 /* smileFeatures */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
         8: .line 335
            aload 0 /* this */
            aload 1 /* ctxt */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
         9: .line 336
            aload 0 /* this */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:()Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
        10: .line 337
            aload 0 /* this */
            aload 5 /* out */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
        11: .line 338
            aload 0 /* this */
            iload 8 /* bufferRecyclable */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bufferRecyclable:Z
        12: .line 339
            aload 0 /* this */
            iload 7 /* offset */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        13: .line 340
            aload 0 /* this */
            aload 6 /* outputBuffer */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
        14: .line 341
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
        15: .line 343
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            sipush 770
            if_icmpge 20
        16: .line 344
            new java.lang.IllegalStateException
            dup
        17: .line 345
            ldc "Internal encoding buffer length (%d) too short, must be at least %d"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
        18: .line 346
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            sipush 770
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        19: .line 344
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 348
      StackMap locals: com.fasterxml.jackson.core.json.DupDetector
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_NAMES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            iload 3 /* smileFeatures */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifne 24
        21: .line 349
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        22: .line 350
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
        23: .line 351
            goto 28
        24: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.allocSeenNamesBuffer:()[Ljava/lang/Object;
            checkcast com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        25: .line 353
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            ifnonnull 27
        26: .line 354
            aload 0 /* this */
            bipush 64
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        27: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
        28: .line 359
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_STRING_VALUES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            iload 3 /* smileFeatures */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifne 32
        29: .line 360
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        30: .line 361
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
        31: .line 362
            goto 36
        32: .line 363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.allocSeenStringValuesBuffer:()[Ljava/lang/Object;
            checkcast com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        33: .line 364
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            ifnonnull 35
        34: .line 365
            aload 0 /* this */
            bipush 64
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        35: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
        36: .line 369
      StackMap locals:
      StackMap stack:
            return
        end local 9 // com.fasterxml.jackson.core.json.DupDetector dups
        end local 8 // boolean bufferRecyclable
        end local 7 // int offset
        end local 6 // byte[] outputBuffer
        end local 5 // java.io.OutputStream out
        end local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 3 // int smileFeatures
        end local 2 // int stdFeatures
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   37     0              this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   37     1              ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0   37     2       stdFeatures  I
            0   37     3     smileFeatures  I
            0   37     4             codec  Lcom/fasterxml/jackson/core/ObjectCodec;
            0   37     5               out  Ljava/io/OutputStream;
            0   37     6      outputBuffer  [B
            0   37     7            offset  I
            0   37     8  bufferRecyclable  Z
            6   37     9              dups  Lcom/fasterxml/jackson/core/json/DupDetector;
    MethodParameters:
                  Name  Flags
      ctxt              
      stdFeatures       
      smileFeatures     
      codec             
      out               
      outputBuffer      
      offset            
      bufferRecyclable  

  public void writeHeader();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 380
            iconst_0
            istore 1 /* last */
        start local 1 // int last
         1: .line 381
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_NAMES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifeq 3
         2: .line 382
            iload 1 /* last */
            iconst_1
            ior
            istore 1 /* last */
         3: .line 384
      StackMap locals: int
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.CHECK_SHARED_STRING_VALUES:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifeq 5
         4: .line 385
            iload 1 /* last */
            iconst_2
            ior
            istore 1 /* last */
         5: .line 387
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.ENCODE_BINARY_AS_7BIT:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.enabledIn:(I)Z
            ifne 7
         6: .line 388
            iload 1 /* last */
            iconst_4
            ior
            istore 1 /* last */
         7: .line 390
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 58
            bipush 41
            bipush 10
            iload 1 /* last */
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBB)V
         8: .line 391
            return
        end local 1 // int last
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            1    9     1  last  I
    Exceptions:
      throws java.io.IOException

  protected static final com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler<com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode> _smileBufferRecycler();
    descriptor: ()Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=0
         0: .line 395
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileRecyclerRef:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast java.lang.ref.SoftReference
            astore 0 /* ref */
        start local 0 // java.lang.ref.SoftReference ref
         1: .line 396
            aload 0 /* ref */
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: java.lang.ref.SoftReference
      StackMap stack:
         2: aload 0 /* ref */
            invokevirtual java.lang.ref.SoftReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler
      StackMap locals:
      StackMap stack: com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler
         3: astore 1 /* br */
        start local 1 // com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler br
         4: .line 398
            aload 1 /* br */
            ifnonnull 7
         5: .line 399
            new com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler
            dup
            invokespecial com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.<init>:()V
            astore 1 /* br */
         6: .line 400
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileRecyclerRef:Ljava/lang/ThreadLocal;
            new java.lang.ref.SoftReference
            dup
            aload 1 /* br */
            invokespecial java.lang.ref.SoftReference.<init>:(Ljava/lang/Object;)V
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         7: .line 402
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler
      StackMap stack:
            aload 1 /* br */
            areturn
        end local 1 // com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler br
        end local 0 // java.lang.ref.SoftReference ref
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    8     0   ref  Ljava/lang/ref/SoftReference<Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler<Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;>;>;
            4    8     1    br  Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler<Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;>;
    Signature: ()Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler<Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;>;

  public com.fasterxml.jackson.core.Version version();
    descriptor: ()Lcom/fasterxml/jackson/core/Version;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 413
            getstatic com.fasterxml.jackson.dataformat.smile.PackageVersion.VERSION:Lcom/fasterxml/jackson/core/Version;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public boolean canWriteBinaryNatively();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 424
            iconst_1
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public com.fasterxml.jackson.core.JsonGenerator useDefaultPrettyPrinter();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 440
            aload 0 /* this */
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public com.fasterxml.jackson.core.JsonGenerator setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter);
    descriptor: (Lcom/fasterxml/jackson/core/PrettyPrinter;)Lcom/fasterxml/jackson/core/JsonGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.PrettyPrinter pp
         0: .line 449
            aload 0 /* this */
            areturn
        end local 1 // com.fasterxml.jackson.core.PrettyPrinter pp
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1    pp  Lcom/fasterxml/jackson/core/PrettyPrinter;
    MethodParameters:
      Name  Flags
      pp    

  public java.lang.Object getOutputTarget();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 454
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public int getOutputBuffered();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 459
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public int getFormatFeatures();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 466
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public com.fasterxml.jackson.core.JsonGenerator overrideFormatFeatures(int, int);
    descriptor: (II)Lcom/fasterxml/jackson/core/JsonGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int values
        start local 2 // int mask
         0: .line 471
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            iload 2 /* mask */
            iconst_m1
            ixor
            iand
            iload 1 /* values */
            iload 2 /* mask */
            iand
            ior
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
         1: .line 472
            aload 0 /* this */
            areturn
        end local 2 // int mask
        end local 1 // int values
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1  values  I
            0    2     2    mask  I
    MethodParameters:
        Name  Flags
      values  
      mask    

  public java.lang.Object getCurrentValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 483
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.getCurrentValue:()Ljava/lang/Object;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public void setCurrentValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.Object v
         0: .line 488
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aload 1 /* v */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.setCurrentValue:(Ljava/lang/Object;)V
         1: .line 489
            return
        end local 1 // java.lang.Object v
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1     v  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      v     

  public com.fasterxml.jackson.core.JsonStreamContext getOutputContext();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonStreamContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 493
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  public final void writeFieldName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String name
         0: .line 509
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.writeFieldName:(Ljava/lang/String;)Z
            ifne 2
         1: .line 510
            aload 0 /* this */
            ldc "Can not write a field name, expecting a value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName:(Ljava/lang/String;)V
         3: .line 513
            return
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    4     1  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public final void writeFieldName(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
         0: .line 520
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.writeFieldName:(Ljava/lang/String;)Z
            ifne 2
         1: .line 521
            aload 0 /* this */
            ldc "Can not write a field name, expecting a value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 523
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName:(Lcom/fasterxml/jackson/core/SerializableString;)V
         3: .line 524
            return
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    4     1  name  Lcom/fasterxml/jackson/core/SerializableString;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  public final void writeStringField(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String fieldName
        start local 2 // java.lang.String value
         0: .line 530
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aload 1 /* fieldName */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.writeFieldName:(Ljava/lang/String;)Z
            ifne 2
         1: .line 531
            aload 0 /* this */
            ldc "Can not write a field name, expecting a value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* fieldName */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName:(Ljava/lang/String;)V
         3: .line 534
            aload 0 /* this */
            aload 2 /* value */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString:(Ljava/lang/String;)V
         4: .line 535
            return
        end local 2 // java.lang.String value
        end local 1 // java.lang.String fieldName
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    5     1  fieldName  Ljava/lang/String;
            0    5     2      value  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      fieldName  
      value      

  public com.fasterxml.jackson.dataformat.smile.SmileGenerator enable(com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature);
    descriptor: (Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
         0: .line 544
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            aload 1 /* f */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.getMask:()I
            ior
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
         1: .line 545
            aload 0 /* this */
            areturn
        end local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1     f  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
    MethodParameters:
      Name  Flags
      f     

  public com.fasterxml.jackson.dataformat.smile.SmileGenerator disable(com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature);
    descriptor: (Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
         0: .line 549
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            aload 1 /* f */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.getMask:()I
            iconst_m1
            ixor
            iand
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
         1: .line 550
            aload 0 /* this */
            areturn
        end local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1     f  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
    MethodParameters:
      Name  Flags
      f     

  public final boolean isEnabled(com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature);
    descriptor: (Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
         0: .line 554
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._formatFeatures:I
            aload 1 /* f */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.getMask:()I
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1     f  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
    MethodParameters:
      Name  Flags
      f     

  public com.fasterxml.jackson.dataformat.smile.SmileGenerator configure(com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature, boolean);
    descriptor: (Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;Z)Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
        start local 2 // boolean state
         0: .line 558
            iload 2 /* state */
            ifeq 3
         1: .line 559
            aload 0 /* this */
            aload 1 /* f */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.enable:(Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            pop
         2: .line 560
            goto 4
         3: .line 561
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* f */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.disable:(Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            pop
         4: .line 563
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // boolean state
        end local 1 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature f
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    5     1      f  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            0    5     2  state  Z
    MethodParameters:
       Name  Flags
      f      
      state  

  public void writeRaw(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b
         0: .line 583
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         1: .line 584
            return
        end local 1 // byte b
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1     b  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void writeBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] data
        start local 2 // int offset
        start local 3 // int len
         0: .line 594
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:([BII)V
         1: .line 595
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] data
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1    data  [B
            0    2     2  offset  I
            0    2     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      data    
      offset  
      len     

  public final void writeStartArray();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 606
            aload 0 /* this */
            ldc "start an array"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 607
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aconst_null
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createChildArrayContext:(Ljava/lang/Object;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         2: .line 608
            aload 0 /* this */
            bipush -8
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 609
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public final void writeStartArray(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int size
         0: .line 614
            aload 0 /* this */
            ldc "start an array"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 615
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aconst_null
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createChildArrayContext:(Ljava/lang/Object;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         2: .line 616
            aload 0 /* this */
            bipush -8
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 617
            return
        end local 1 // int size
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    4     1  size  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public final void writeEndArray();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 622
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.inArray:()Z
            ifne 2
         1: .line 623
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current context not Array but "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.typeDesc:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -7
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 626
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.getParent:()Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         4: .line 627
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public final void writeStartObject();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 632
            aload 0 /* this */
            ldc "start an object"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 633
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aconst_null
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createChildObjectContext:(Ljava/lang/Object;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         2: .line 634
            aload 0 /* this */
            bipush -6
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 635
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public final void writeStartObject(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.Object forValue
         0: .line 640
            aload 0 /* this */
            ldc "start an object"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 641
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            aload 1 /* forValue */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.createChildObjectContext:(Ljava/lang/Object;)Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            astore 2 /* ctxt */
        start local 2 // com.fasterxml.jackson.dataformat.smile.SmileWriteContext ctxt
         2: .line 642
            aload 0 /* this */
            aload 2 /* ctxt */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         3: .line 643
            aload 0 /* this */
            bipush -6
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         4: .line 644
            return
        end local 2 // com.fasterxml.jackson.dataformat.smile.SmileWriteContext ctxt
        end local 1 // java.lang.Object forValue
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    5     1  forValue  Ljava/lang/Object;
            2    5     2      ctxt  Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      forValue  

  public final void writeEndObject();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 649
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.inObject:()Z
            ifne 2
         1: .line 650
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current context not Object but "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.typeDesc:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 652
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.getParent:()Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
         3: .line 653
            aload 0 /* this */
            bipush -5
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         4: .line 654
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public void writeArray(int[], int, int);
    descriptor: ([III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int[] array
        start local 2 // int offset
        start local 3 // int length
         0: .line 660
            aload 0 /* this */
            aload 1 /* array */
            arraylength
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyOffsets:(III)V
         1: .line 662
            aload 0 /* this */
            ldc "write int array"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         2: .line 664
            aload 0 /* this */
            bipush -8
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 665
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        start local 4 // int ptr
         4: .line 666
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            istore 5 /* outputEnd */
        start local 5 // int outputEnd
         5: .line 667
            iload 2 /* offset */
            istore 6 /* i */
        start local 6 // int i
         6: iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 7 /* end */
        start local 7 // int end
         7: goto 14
         8: .line 669
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator int[] int int int int int int
      StackMap stack:
            iload 4 /* ptr */
            bipush 6
            iadd
            iload 5 /* outputEnd */
            if_icmplt 12
         9: .line 670
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        10: .line 671
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        11: .line 672
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        12: .line 674
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* ptr */
            aload 1 /* array */
            iload 6 /* i */
            iaload
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNumberNoChecks:(II)I
            istore 4 /* ptr */
        13: .line 667
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            iload 7 /* end */
            if_icmplt 8
        end local 7 // int end
        end local 6 // int i
        15: .line 676
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 677
            aload 0 /* this */
            bipush -7
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        17: .line 678
            return
        end local 5 // int outputEnd
        end local 4 // int ptr
        end local 3 // int length
        end local 2 // int offset
        end local 1 // int[] array
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   18     1      array  [I
            0   18     2     offset  I
            0   18     3     length  I
            4   18     4        ptr  I
            5   18     5  outputEnd  I
            6   15     6          i  I
            7   15     7        end  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      array   
      offset  
      length  

  public void writeArray(long[], int, int);
    descriptor: ([JII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // long[] array
        start local 2 // int offset
        start local 3 // int length
         0: .line 684
            aload 0 /* this */
            aload 1 /* array */
            arraylength
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyOffsets:(III)V
         1: .line 686
            aload 0 /* this */
            ldc "write int array"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         2: .line 688
            aload 0 /* this */
            bipush -8
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 689
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        start local 4 // int ptr
         4: .line 690
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            istore 5 /* outputEnd */
        start local 5 // int outputEnd
         5: .line 691
            iload 2 /* offset */
            istore 6 /* i */
        start local 6 // int i
         6: iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 7 /* end */
        start local 7 // int end
         7: goto 14
         8: .line 692
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator long[] int int int int int int
      StackMap stack:
            iload 4 /* ptr */
            bipush 11
            iadd
            iload 5 /* outputEnd */
            if_icmplt 12
         9: .line 693
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        10: .line 694
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        11: .line 695
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        12: .line 697
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* ptr */
            aload 1 /* array */
            iload 6 /* i */
            laload
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNumberNoChecks:(IJ)I
            istore 4 /* ptr */
        13: .line 691
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            iload 7 /* end */
            if_icmplt 8
        end local 7 // int end
        end local 6 // int i
        15: .line 699
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 700
            aload 0 /* this */
            bipush -7
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        17: .line 701
            return
        end local 5 // int outputEnd
        end local 4 // int ptr
        end local 3 // int length
        end local 2 // int offset
        end local 1 // long[] array
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   18     1      array  [J
            0   18     2     offset  I
            0   18     3     length  I
            4   18     4        ptr  I
            5   18     5  outputEnd  I
            6   15     6          i  I
            7   15     7        end  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      array   
      offset  
      length  

  public void writeArray(double[], int, int);
    descriptor: ([DII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // double[] array
        start local 2 // int offset
        start local 3 // int length
         0: .line 707
            aload 0 /* this */
            aload 1 /* array */
            arraylength
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyOffsets:(III)V
         1: .line 709
            aload 0 /* this */
            ldc "write int array"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         2: .line 711
            aload 0 /* this */
            bipush -8
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 712
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        start local 4 // int ptr
         4: .line 713
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            istore 5 /* outputEnd */
        start local 5 // int outputEnd
         5: .line 714
            iload 2 /* offset */
            istore 6 /* i */
        start local 6 // int i
         6: iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 7 /* end */
        start local 7 // int end
         7: goto 14
         8: .line 715
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator double[] int int int int int int
      StackMap stack:
            iload 4 /* ptr */
            bipush 10
            iadd
            iload 5 /* outputEnd */
            if_icmplt 12
         9: .line 716
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        10: .line 717
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        11: .line 718
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        12: .line 720
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* ptr */
            aload 1 /* array */
            iload 6 /* i */
            daload
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNumberNoChecks:(ID)I
            istore 4 /* ptr */
        13: .line 714
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            iload 7 /* end */
            if_icmplt 8
        end local 7 // int end
        end local 6 // int i
        15: .line 722
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 723
            aload 0 /* this */
            bipush -7
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        17: .line 724
            return
        end local 5 // int outputEnd
        end local 4 // int ptr
        end local 3 // int length
        end local 2 // int offset
        end local 1 // double[] array
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   18     1      array  [D
            0   18     2     offset  I
            0   18     3     length  I
            4   18     4        ptr  I
            5   18     5  outputEnd  I
            6   15     6          i  I
            7   15     7        end  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      array   
      offset  
      length  

  private final void _writeFieldName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String name
         0: .line 728
            aload 1 /* name */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 729
            iload 2 /* len */
            ifne 4
         2: .line 730
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 731
            return
         4: .line 734
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 9
         5: .line 735
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenName:(Ljava/lang/String;)I
            istore 3 /* ix */
        start local 3 // int ix
         6: .line 736
            iload 3 /* ix */
            iflt 9
         7: .line 737
            aload 0 /* this */
            iload 3 /* ix */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeSharedNameReference:(I)V
         8: .line 738
            return
        end local 3 // int ix
         9: .line 741
      StackMap locals:
      StackMap stack:
            iload 2 /* len */
            bipush 64
            if_icmple 12
        10: .line 742
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNonShortFieldName:(Ljava/lang/String;I)V
        11: .line 743
            return
        12: .line 747
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 196
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 14
        13: .line 748
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        14: .line 751
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 3 /* origOffset */
        start local 3 // int origOffset
        15: .line 752
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 753
            aload 0 /* this */
            aload 1 /* name */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:(Ljava/lang/String;II)I
            istore 4 /* byteLen */
        start local 4 // int byteLen
        17: .line 757
            iload 4 /* byteLen */
            iload 2 /* len */
            if_icmpne 24
        18: .line 758
            iload 4 /* byteLen */
            bipush 64
            if_icmpgt 21
        19: .line 759
            bipush 127
            iload 4 /* byteLen */
            iadd
            i2b
            istore 5 /* typeToken */
        start local 5 // byte typeToken
        20: .line 760
            goto 29
        end local 5 // byte typeToken
        21: .line 761
      StackMap locals: int int
      StackMap stack:
            bipush 52
            istore 5 /* typeToken */
        start local 5 // byte typeToken
        22: .line 763
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        23: .line 765
            goto 29
        end local 5 // byte typeToken
        24: .line 766
      StackMap locals:
      StackMap stack:
            iload 4 /* byteLen */
            bipush 56
            if_icmpgt 27
        25: .line 768
            sipush 190
            iload 4 /* byteLen */
            iadd
            i2b
            istore 5 /* typeToken */
        start local 5 // byte typeToken
        26: .line 769
            goto 29
        end local 5 // byte typeToken
        27: .line 770
      StackMap locals:
      StackMap stack:
            bipush 52
            istore 5 /* typeToken */
        start local 5 // byte typeToken
        28: .line 772
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        29: .line 776
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 3 /* origOffset */
            iload 5 /* typeToken */
            bastore
        30: .line 778
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 32
        31: .line 779
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName:(Ljava/lang/String;)V
        32: .line 781
      StackMap locals:
      StackMap stack:
            return
        end local 5 // byte typeToken
        end local 4 // int byteLen
        end local 3 // int origOffset
        end local 2 // int len
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   33     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   33     1        name  Ljava/lang/String;
            1   33     2         len  I
            6    9     3          ix  I
           15   33     3  origOffset  I
           17   33     4     byteLen  I
           20   21     5   typeToken  B
           22   24     5   typeToken  B
           26   27     5   typeToken  B
           28   33     5   typeToken  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  private final void _writeNonShortFieldName(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String name
        start local 2 // int len
         0: .line 785
            aload 0 /* this */
            bipush 52
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         1: .line 788
            iload 2 /* len */
            iload 2 /* len */
            iadd
            iload 2 /* len */
            iadd
            istore 3 /* maxLen */
        start local 3 // int maxLen
         2: .line 789
            iload 3 /* maxLen */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            if_icmpgt 7
         3: .line 790
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* maxLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 5
         4: .line 791
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         5: .line 793
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:(Ljava/lang/String;II)I
            pop
         6: .line 794
            goto 8
         7: .line 795
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._mediumUTF8Encode:(Ljava/lang/String;II)V
         8: .line 797
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 10
         9: .line 798
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName:(Ljava/lang/String;)V
        10: .line 800
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 12
        11: .line 801
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        12: .line 803
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        13: .line 804
            return
        end local 3 // int maxLen
        end local 2 // int len
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   14     1    name  Ljava/lang/String;
            0   14     2     len  I
            2   14     3  maxLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  final
      len   final

  protected final void _writeFieldName(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
         0: .line 808
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.charLength:()I
            istore 2 /* charLen */
        start local 2 // int charLen
         1: .line 809
            iload 2 /* charLen */
            ifne 4
         2: .line 810
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 811
            return
         4: .line 814
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 9
         5: .line 815
            aload 0 /* this */
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenName:(Ljava/lang/String;)I
            istore 3 /* ix */
        start local 3 // int ix
         6: .line 816
            iload 3 /* ix */
            iflt 9
         7: .line 817
            aload 0 /* this */
            iload 3 /* ix */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeSharedNameReference:(I)V
         8: .line 818
            return
        end local 3 // int ix
         9: .line 821
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asUnquotedUTF8:()[B
            astore 3 /* bytes */
        start local 3 // byte[] bytes
        10: .line 822
            aload 3 /* bytes */
            arraylength
            istore 4 /* byteLen */
        start local 4 // int byteLen
        11: .line 823
            iload 4 /* byteLen */
            iload 2 /* charLen */
            if_icmpeq 14
        12: .line 824
            aload 0 /* this */
            aload 1 /* name */
            aload 3 /* bytes */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldNameUnicode:(Lcom/fasterxml/jackson/core/SerializableString;[B)V
        13: .line 825
            return
        14: .line 828
      StackMap locals: byte[] int
      StackMap stack:
            iload 4 /* byteLen */
            bipush 64
            if_icmpgt 21
        15: .line 830
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* byteLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 17
        16: .line 831
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        17: .line 833
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 127
            iload 4 /* byteLen */
            iadd
            i2b
            bastore
        18: .line 834
            aload 3 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 835
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        20: .line 836
            goto 22
        21: .line 837
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* bytes */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeLongAsciiFieldName:([B)V
        22: .line 840
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 24
        23: .line 841
            aload 0 /* this */
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName:(Ljava/lang/String;)V
        24: .line 843
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int byteLen
        end local 3 // byte[] bytes
        end local 2 // int charLen
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   25     0     this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   25     1     name  Lcom/fasterxml/jackson/core/SerializableString;
            1   25     2  charLen  I
            6    9     3       ix  I
           10   25     3    bytes  [B
           11   25     4  byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

  private final void _writeLongAsciiFieldName(byte[]);
    descriptor: ([B)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] bytes
         0: .line 848
            aload 1 /* bytes */
            arraylength
            istore 2 /* byteLen */
        start local 2 // int byteLen
         1: .line 849
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 3
         2: .line 850
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         3: .line 852
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 52
            bastore
         4: .line 854
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* byteLen */
            iadd
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmpge 8
         5: .line 855
            aload 1 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 856
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         7: .line 857
            goto 16
         8: .line 858
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         9: .line 861
            iload 2 /* byteLen */
            sipush 770
            if_icmpge 13
        10: .line 862
            aload 1 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 863
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        12: .line 864
            goto 16
        13: .line 866
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            ifle 15
        14: .line 867
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        15: .line 869
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            aload 1 /* bytes */
            iconst_0
            iload 2 /* byteLen */
            invokevirtual java.io.OutputStream.write:([BII)V
        16: .line 872
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        17: .line 873
            return
        end local 2 // int byteLen
        end local 1 // byte[] bytes
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   18     1    bytes  [B
            1   18     2  byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  

  protected final void _writeFieldNameUnicode(com.fasterxml.jackson.core.SerializableString, byte[]);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;[B)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString name
        start local 2 // byte[] bytes
         0: .line 878
            aload 2 /* bytes */
            arraylength
            istore 3 /* byteLen */
        start local 3 // int byteLen
         1: .line 881
            iload 3 /* byteLen */
            bipush 56
            if_icmpgt 10
         2: .line 882
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 4
         3: .line 883
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         4: .line 886
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 190
            iload 3 /* byteLen */
            iadd
            i2b
            bastore
         5: .line 888
            aload 2 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 889
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         7: .line 891
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 9
         8: .line 892
            aload 0 /* this */
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName:(Ljava/lang/String;)V
         9: .line 894
      StackMap locals:
      StackMap stack:
            return
        10: .line 896
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 12
        11: .line 897
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        12: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 52
            bastore
        13: .line 901
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            iadd
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmpge 17
        14: .line 902
            aload 2 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 903
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 904
            goto 25
        17: .line 905
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        18: .line 908
            iload 3 /* byteLen */
            sipush 770
            if_icmpge 22
        19: .line 909
            aload 2 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 910
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        21: .line 911
            goto 25
        22: .line 913
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            ifle 24
        23: .line 914
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        24: .line 916
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            aload 2 /* bytes */
            iconst_0
            iload 3 /* byteLen */
            invokevirtual java.io.OutputStream.write:([BII)V
        25: .line 919
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        26: .line 921
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            iflt 28
        27: .line 922
            aload 0 /* this */
            aload 1 /* name */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName:(Ljava/lang/String;)V
        28: .line 924
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int byteLen
        end local 2 // byte[] bytes
        end local 1 // com.fasterxml.jackson.core.SerializableString name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   29     0     this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   29     1     name  Lcom/fasterxml/jackson/core/SerializableString;
            0   29     2    bytes  [B
            1   29     3  byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      name   
      bytes  

  private final void _writeSharedNameReference(int);
    descriptor: (I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int ix
         0: .line 930
            iload 1 /* ix */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            if_icmplt 4
         1: .line 931
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Internal error: trying to write shared name with index "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* ix */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 932
            ldc "; but have only seen "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " so far!"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 931
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 934
      StackMap locals:
      StackMap stack:
            iload 1 /* ix */
            bipush 64
            if_icmpge 7
         5: .line 935
            aload 0 /* this */
            bipush 64
            iload 1 /* ix */
            iadd
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         6: .line 936
            goto 8
         7: .line 937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 48
            iload 1 /* ix */
            bipush 8
            ishr
            iadd
            i2b
            iload 1 /* ix */
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BB)V
         8: .line 939
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int ix
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    9     1    ix  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ix    

  public void writeString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
         0: .line 950
            aload 1 /* text */
            ifnonnull 3
         1: .line 951
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNull:()V
         2: .line 952
            return
         3: .line 954
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write String value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 955
            aload 1 /* text */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         5: .line 956
            iload 2 /* len */
            ifne 8
         6: .line 957
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         7: .line 958
            return
         8: .line 961
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            bipush 65
            if_icmple 11
         9: .line 962
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNonSharedString:(Ljava/lang/String;I)V
        10: .line 963
            return
        11: .line 966
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 16
        12: .line 967
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenStringValue:(Ljava/lang/String;)I
            istore 3 /* ix */
        start local 3 // int ix
        13: .line 968
            iload 3 /* ix */
            iflt 16
        14: .line 969
            aload 0 /* this */
            iload 3 /* ix */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeSharedStringValueReference:(I)V
        15: .line 970
            return
        end local 3 // int ix
        16: .line 976
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 196
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 18
        17: .line 977
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        18: .line 980
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 3 /* origOffset */
        start local 3 // int origOffset
        19: .line 981
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        20: .line 982
            aload 0 /* this */
            aload 1 /* text */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:(Ljava/lang/String;II)I
            istore 4 /* byteLen */
        start local 4 // int byteLen
        21: .line 983
            iload 4 /* byteLen */
            bipush 64
            if_icmpgt 29
        22: .line 985
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 24
        23: .line 986
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenStringValue:(Ljava/lang/String;)V
        24: .line 988
      StackMap locals: int int
      StackMap stack:
            iload 4 /* byteLen */
            iload 2 /* len */
            if_icmpne 27
        25: .line 989
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 3 /* origOffset */
            bipush 63
            iload 4 /* byteLen */
            iadd
            i2b
            bastore
        26: .line 990
            goto 33
        27: .line 992
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 3 /* origOffset */
            bipush 126
            iload 4 /* byteLen */
            iadd
            i2b
            bastore
        28: .line 994
            goto 33
        29: .line 995
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 3 /* origOffset */
            iload 4 /* byteLen */
            iload 2 /* len */
            if_icmpne 30
            bipush -32
            goto 31
        30: .line 996
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String int int int
      StackMap stack: byte[] int
            bipush -28
        31: .line 995
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String int int int
      StackMap stack: byte[] int int
            bastore
        32: .line 998
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        33: .line 1000
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int byteLen
        end local 3 // int origOffset
        end local 2 // int len
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   34     1        text  Ljava/lang/String;
            5   34     2         len  I
           13   16     3          ix  I
           19   34     3  origOffset  I
           21   34     4     byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  private final void _writeSharedStringValueReference(int);
    descriptor: (I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int ix
         0: .line 1005
            iload 1 /* ix */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            if_icmplt 4
         1: .line 1006
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Internal error: trying to write shared String value with index "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* ix */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         2: .line 1007
            ldc "; but have only seen "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " so far!"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 1006
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1009
      StackMap locals:
      StackMap stack:
            iload 1 /* ix */
            bipush 31
            if_icmpge 7
         5: .line 1010
            aload 0 /* this */
            iconst_1
            iload 1 /* ix */
            iadd
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         6: .line 1011
            goto 8
         7: .line 1012
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            sipush 236
            iload 1 /* ix */
            bipush 8
            ishr
            iadd
            i2b
            iload 1 /* ix */
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BB)V
         8: .line 1014
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int ix
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    9     1    ix  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ix    

  private final void _writeNonSharedString(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
        start local 2 // int len
         0: .line 1023
            iload 2 /* len */
            iload 2 /* len */
            iadd
            iload 2 /* len */
            iadd
            iconst_2
            iadd
            istore 3 /* maxLen */
        start local 3 // int maxLen
         1: .line 1025
            iload 3 /* maxLen */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            if_icmple 6
         2: .line 1027
            aload 0 /* this */
            bipush -28
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 1028
            aload 0 /* this */
            aload 1 /* text */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._mediumUTF8Encode:(Ljava/lang/String;II)V
         4: .line 1029
            aload 0 /* this */
            bipush -4
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1030
            return
         6: .line 1033
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* maxLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 8
         7: .line 1034
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         8: .line 1036
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* origOffset */
        start local 4 // int origOffset
         9: .line 1038
            aload 0 /* this */
            bipush -32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        10: .line 1039
            aload 0 /* this */
            aload 1 /* text */
            iconst_0
            iload 2 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:(Ljava/lang/String;II)I
            istore 5 /* byteLen */
        start local 5 // int byteLen
        11: .line 1041
            iload 5 /* byteLen */
            iload 2 /* len */
            if_icmple 13
        12: .line 1042
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 4 /* origOffset */
            bipush -28
            bastore
        13: .line 1044
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        14: .line 1045
            return
        end local 5 // int byteLen
        end local 4 // int origOffset
        end local 3 // int maxLen
        end local 2 // int len
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   15     1        text  Ljava/lang/String;
            0   15     2         len  I
            1   15     3      maxLen  I
            9   15     4  origOffset  I
           11   15     5     byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  final
      len   final

  public void writeString(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1051
            iload 3 /* len */
            bipush 65
            if_icmpgt 3
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 3
            iload 3 /* len */
            ifle 3
         1: .line 1052
            aload 0 /* this */
            new java.lang.String
            dup
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokespecial java.lang.String.<init>:([CII)V
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString:(Ljava/lang/String;)V
         2: .line 1053
            return
         3: .line 1055
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write String value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 1056
            iload 3 /* len */
            ifne 7
         5: .line 1057
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         6: .line 1058
            return
         7: .line 1060
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            bipush 64
            if_icmpgt 23
         8: .line 1062
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 196
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 10
         9: .line 1063
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        10: .line 1065
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* origOffset */
        start local 4 // int origOffset
        11: .line 1066
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        12: .line 1067
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:([CII)I
            istore 5 /* byteLen */
        start local 5 // int byteLen
        13: .line 1069
            iload 5 /* byteLen */
            bipush 64
            if_icmpgt 19
        14: .line 1070
            iload 5 /* byteLen */
            iload 3 /* len */
            if_icmpne 17
        15: .line 1071
            bipush 63
            iload 5 /* byteLen */
            iadd
            i2b
            istore 6 /* typeToken */
        start local 6 // byte typeToken
        16: .line 1072
            goto 21
        end local 6 // byte typeToken
        17: .line 1073
      StackMap locals: int int
      StackMap stack:
            bipush 126
            iload 5 /* byteLen */
            iadd
            i2b
            istore 6 /* typeToken */
        start local 6 // byte typeToken
        18: .line 1075
            goto 21
        end local 6 // byte typeToken
        19: .line 1076
      StackMap locals:
      StackMap stack:
            bipush -28
            istore 6 /* typeToken */
        start local 6 // byte typeToken
        20: .line 1078
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        21: .line 1081
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 4 /* origOffset */
            iload 6 /* typeToken */
            bastore
        end local 6 // byte typeToken
        end local 5 // int byteLen
        end local 4 // int origOffset
        22: .line 1082
            goto 37
        23: .line 1084
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 3 /* len */
            iadd
            iload 3 /* len */
            iadd
            iconst_2
            iadd
            istore 4 /* maxLen */
        start local 4 // int maxLen
        24: .line 1085
            iload 4 /* maxLen */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            if_icmpgt 34
        25: .line 1086
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* maxLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 27
        26: .line 1087
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        27: .line 1089
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 5 /* origOffset */
        start local 5 // int origOffset
        28: .line 1090
            aload 0 /* this */
            bipush -28
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        29: .line 1091
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode:([CII)I
            istore 6 /* byteLen */
        start local 6 // int byteLen
        30: .line 1093
            iload 6 /* byteLen */
            iload 3 /* len */
            if_icmpne 32
        31: .line 1094
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iload 5 /* origOffset */
            bipush -32
            bastore
        32: .line 1096
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        end local 6 // int byteLen
        end local 5 // int origOffset
        33: .line 1097
            goto 37
        34: .line 1098
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -28
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        35: .line 1099
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._mediumUTF8Encode:([CII)V
        36: .line 1100
            aload 0 /* this */
            bipush -4
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        end local 4 // int maxLen
        37: .line 1103
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   38     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   38     1        text  [C
            0   38     2      offset  I
            0   38     3         len  I
           11   22     4  origOffset  I
           13   22     5     byteLen  I
           16   17     6   typeToken  B
           18   19     6   typeToken  B
           20   22     6   typeToken  B
           24   37     4      maxLen  I
           28   33     5  origOffset  I
           30   33     6     byteLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public final void writeString(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.SerializableString sstr
         0: .line 1109
            aload 0 /* this */
            ldc "write String value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 1111
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            astore 2 /* str */
        start local 2 // java.lang.String str
         2: .line 1112
            aload 2 /* str */
            invokevirtual java.lang.String.length:()I
            istore 3 /* len */
        start local 3 // int len
         3: .line 1113
            iload 3 /* len */
            ifne 6
         4: .line 1114
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1115
            return
         6: .line 1118
      StackMap locals: java.lang.String int
      StackMap stack:
            iload 3 /* len */
            bipush 65
            if_icmpgt 11
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 11
         7: .line 1119
            aload 0 /* this */
            aload 2 /* str */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenStringValue:(Ljava/lang/String;)I
            istore 4 /* ix */
        start local 4 // int ix
         8: .line 1120
            iload 4 /* ix */
            iflt 11
         9: .line 1121
            aload 0 /* this */
            iload 4 /* ix */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeSharedStringValueReference:(I)V
        10: .line 1122
            return
        end local 4 // int ix
        11: .line 1126
      StackMap locals:
      StackMap stack:
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.asUnquotedUTF8:()[B
            astore 4 /* raw */
        start local 4 // byte[] raw
        12: .line 1127
            aload 4 /* raw */
            arraylength
            istore 5 /* byteLen */
        start local 5 // int byteLen
        13: .line 1129
            iload 5 /* byteLen */
            bipush 64
            if_icmpgt 26
        14: .line 1131
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* byteLen */
            iadd
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 16
        15: .line 1132
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        16: .line 1135
      StackMap locals: byte[] int
      StackMap stack:
            iload 5 /* byteLen */
            iload 3 /* len */
            if_icmpne 18
        17: .line 1136
            bipush 63
            iload 5 /* byteLen */
            iadd
            goto 19
        18: .line 1137
      StackMap locals:
      StackMap stack:
            bipush 126
            iload 5 /* byteLen */
            iadd
        19: .line 1135
      StackMap locals:
      StackMap stack: int
            istore 6 /* typeToken */
        start local 6 // int typeToken
        20: .line 1139
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 6 /* typeToken */
            i2b
            bastore
        21: .line 1140
            aload 4 /* raw */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* byteLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        22: .line 1141
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* byteLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        23: .line 1143
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 32
        24: .line 1144
            aload 0 /* this */
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenStringValue:(Ljava/lang/String;)V
        end local 6 // int typeToken
        25: .line 1146
            goto 32
        26: .line 1148
      StackMap locals:
      StackMap stack:
            iload 5 /* byteLen */
            iload 3 /* len */
            if_icmpne 27
            bipush -32
            goto 28
        27: .line 1149
      StackMap locals:
      StackMap stack:
            bipush -28
        28: .line 1148
      StackMap locals:
      StackMap stack: int
            istore 6 /* typeToken */
        start local 6 // byte typeToken
        29: .line 1150
            aload 0 /* this */
            iload 6 /* typeToken */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        30: .line 1151
            aload 0 /* this */
            aload 4 /* raw */
            iconst_0
            aload 4 /* raw */
            arraylength
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:([BII)V
        31: .line 1152
            aload 0 /* this */
            bipush -4
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        end local 6 // byte typeToken
        32: .line 1154
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int byteLen
        end local 4 // byte[] raw
        end local 3 // int len
        end local 2 // java.lang.String str
        end local 1 // com.fasterxml.jackson.core.SerializableString sstr
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   33     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   33     1       sstr  Lcom/fasterxml/jackson/core/SerializableString;
            2   33     2        str  Ljava/lang/String;
            3   33     3        len  I
            8   11     4         ix  I
           12   33     4        raw  [B
           13   33     5    byteLen  I
           20   25     6  typeToken  I
           29   32     6  typeToken  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sstr  

  public void writeRawUTF8String(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1160
            aload 0 /* this */
            ldc "write String value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 1162
            iload 3 /* len */
            ifne 4
         2: .line 1163
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 1164
            return
         4: .line 1167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            iflt 6
         5: .line 1168
            new java.lang.UnsupportedOperationException
            dup
            ldc "Can not use direct UTF-8 write methods when 'Feature.CHECK_SHARED_STRING_VALUES' enabled"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1174
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            bipush 65
            if_icmpgt 17
         7: .line 1176
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 9
         8: .line 1177
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         9: .line 1182
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iconst_1
            if_icmpne 13
        10: .line 1183
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 64
            bastore
        11: .line 1184
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 1 /* text */
            iload 2 /* offset */
            baload
            bastore
        12: .line 1185
            goto 29
        13: .line 1186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 126
            iload 3 /* len */
            iadd
            i2b
            bastore
        14: .line 1187
            aload 1 /* text */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 1188
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        16: .line 1190
            goto 29
        17: .line 1192
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 3 /* len */
            iadd
            iload 3 /* len */
            iadd
            iconst_2
            iadd
            istore 4 /* maxLen */
        start local 4 // int maxLen
        18: .line 1193
            iload 4 /* maxLen */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            arraylength
            if_icmpgt 26
        19: .line 1194
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* maxLen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 21
        20: .line 1195
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        21: .line 1197
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -28
            bastore
        22: .line 1198
            aload 1 /* text */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        23: .line 1199
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        24: .line 1200
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush -4
            bastore
        25: .line 1201
            goto 29
        26: .line 1202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -28
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        27: .line 1203
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:([BII)V
        28: .line 1204
            aload 0 /* this */
            bipush -4
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        end local 4 // int maxLen
        29: .line 1207
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   30     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   30     1    text  [B
            0   30     2  offset  I
            0   30     3     len  I
           18   29     4  maxLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public final void writeUTF8String(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1214
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeRawUTF8String:([BII)V
         1: .line 1215
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1    text  [B
            0    2     2  offset  I
            0    2     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeRaw(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
         0: .line 1225
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1  text  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeRaw(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1230
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1    text  Ljava/lang/String;
            0    1     2  offset  I
            0    1     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeRaw(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1235
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1    text  [C
            0    1     2  offset  I
            0    1     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeRaw(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char c
         0: .line 1240
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 1 // char c
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void writeRawValue(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
         0: .line 1245
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1  text  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      text  

  public void writeRawValue(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1250
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1    text  Ljava/lang/String;
            0    1     2  offset  I
            0    1     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeRawValue(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] text
        start local 2 // int offset
        start local 3 // int len
         0: .line 1255
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._notSupported:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1    text  [C
            0    1     2  offset  I
            0    1     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      text    
      offset  
      len     

  public void writeBinary(com.fasterxml.jackson.core.Base64Variant, byte[], int, int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // byte[] data
        start local 3 // int offset
        start local 4 // int len
         0: .line 1267
            aload 2 /* data */
            ifnonnull 3
         1: .line 1268
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNull:()V
         2: .line 1269
            return
         3: .line 1271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write Binary value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 1272
            aload 0 /* this */
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.ENCODE_BINARY_AS_7BIT:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Z
            ifeq 8
         5: .line 1273
            aload 0 /* this */
            bipush -24
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         6: .line 1274
            aload 0 /* this */
            aload 2 /* data */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._write7BitBinaryWithLength:([BII)V
         7: .line 1275
            goto 11
         8: .line 1276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -3
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         9: .line 1277
            aload 0 /* this */
            iload 4 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writePositiveVInt:(I)V
        10: .line 1279
            aload 0 /* this */
            aload 2 /* data */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:([BII)V
        11: .line 1281
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   12     1  b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0   12     2        data  [B
            0   12     3      offset  I
            0   12     4         len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      offset      
      len         

  public int writeBinary(java.io.InputStream, int);
    descriptor: (Ljava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.io.InputStream data
        start local 2 // int dataLength
         0: .line 1288
            iload 2 /* dataLength */
            ifge 2
         1: .line 1289
            new java.lang.UnsupportedOperationException
            dup
            ldc "Must pass actual length for Smile encoded data"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write Binary value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         3: .line 1293
            aload 0 /* this */
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.ENCODE_BINARY_AS_7BIT:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Z
            ifeq 13
         4: .line 1294
            aload 0 /* this */
            bipush -24
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1295
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocBase64Buffer:()[B
            astore 4 /* encodingBuffer */
        start local 4 // byte[] encodingBuffer
         6: .line 1297
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* dataLength */
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._write7BitBinaryWithLength:(Ljava/io/InputStream;I[B)I
            istore 3 /* missing */
        start local 3 // int missing
         7: .line 1298
            goto 11
        end local 3 // int missing
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.io.InputStream int top byte[]
      StackMap stack: java.lang.Throwable
         8: astore 5
         9: .line 1299
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseBase64Buffer:([B)V
        10: .line 1300
            aload 5
            athrow
        start local 3 // int missing
        11: .line 1299
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.io.InputStream int int byte[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 4 /* encodingBuffer */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseBase64Buffer:([B)V
        end local 4 // byte[] encodingBuffer
        12: .line 1301
            goto 16
        end local 3 // int missing
        13: .line 1302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -3
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        14: .line 1303
            aload 0 /* this */
            iload 2 /* dataLength */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writePositiveVInt:(I)V
        15: .line 1305
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* dataLength */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(Ljava/io/InputStream;I)I
            istore 3 /* missing */
        start local 3 // int missing
        16: .line 1307
      StackMap locals: int
      StackMap stack:
            iload 3 /* missing */
            ifle 18
        17: .line 1308
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Too few bytes available: missing "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* missing */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes (out of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* dataLength */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
        18: .line 1310
      StackMap locals:
      StackMap stack:
            iload 2 /* dataLength */
            ireturn
        end local 3 // int missing
        end local 2 // int dataLength
        end local 1 // java.io.InputStream data
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   19     0            this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   19     1            data  Ljava/io/InputStream;
            0   19     2      dataLength  I
            7    8     3         missing  I
           11   13     3         missing  I
           16   19     3         missing  I
            6   12     4  encodingBuffer  [B
      Exception table:
        from    to  target  type
           6     8       8  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      data        
      dataLength  

  public int writeBinary(com.fasterxml.jackson.core.Base64Variant, java.io.InputStream, int);
    descriptor: (Lcom/fasterxml/jackson/core/Base64Variant;Ljava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        start local 2 // java.io.InputStream data
        start local 3 // int dataLength
         0: .line 1317
            aload 0 /* this */
            aload 2 /* data */
            iload 3 /* dataLength */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeBinary:(Ljava/io/InputStream;I)I
            ireturn
        end local 3 // int dataLength
        end local 2 // java.io.InputStream data
        end local 1 // com.fasterxml.jackson.core.Base64Variant b64variant
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    1     1  b64variant  Lcom/fasterxml/jackson/core/Base64Variant;
            0    1     2        data  Ljava/io/InputStream;
            0    1     3  dataLength  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      b64variant  
      data        
      dataLength  

  public void writeBoolean(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // boolean state
         0: .line 1329
            aload 0 /* this */
            ldc "write boolean value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 1330
            iload 1 /* state */
            ifeq 4
         2: .line 1331
            aload 0 /* this */
            bipush 35
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         3: .line 1332
            goto 5
         4: .line 1333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 34
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1335
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean state
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    6     1  state  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      state  

  public void writeNull();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 1340
            aload 0 /* this */
            ldc "write null value"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 1341
            aload 0 /* this */
            bipush 33
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         2: .line 1342
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public void writeNumber(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int i
         0: .line 1347
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         1: .line 1349
            iload 1 /* i */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileUtil.zigzagEncode:(I)I
            istore 1 /* i */
         2: .line 1351
            iload 1 /* i */
            bipush 63
            if_icmpgt 8
            iload 1 /* i */
            iflt 8
         3: .line 1352
            iload 1 /* i */
            bipush 31
            if_icmpgt 6
         4: .line 1353
            aload 0 /* this */
            sipush 192
            iload 1 /* i */
            iadd
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1354
            return
         6: .line 1357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 36
            sipush 128
            iload 1 /* i */
            iadd
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BB)V
         7: .line 1358
            return
         8: .line 1361
      StackMap locals:
      StackMap stack:
            sipush 128
            iload 1 /* i */
            bipush 63
            iand
            iadd
            i2b
            istore 2 /* b0 */
        start local 2 // byte b0
         9: .line 1362
            iload 1 /* i */
            bipush 6
            iushr
            istore 1 /* i */
        10: .line 1363
            iload 1 /* i */
            bipush 127
            if_icmpgt 13
        11: .line 1364
            aload 0 /* this */
            bipush 36
            iload 1 /* i */
            i2b
            iload 2 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBB)V
        12: .line 1365
            return
        13: .line 1367
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 3 /* b1 */
        start local 3 // byte b1
        14: .line 1368
            iload 1 /* i */
            bipush 7
            ishr
            istore 1 /* i */
        15: .line 1369
            iload 1 /* i */
            bipush 127
            if_icmpgt 18
        16: .line 1370
            aload 0 /* this */
            bipush 36
            iload 1 /* i */
            i2b
            iload 3 /* b1 */
            iload 2 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBB)V
        17: .line 1371
            return
        18: .line 1373
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 4 /* b2 */
        start local 4 // byte b2
        19: .line 1374
            iload 1 /* i */
            bipush 7
            ishr
            istore 1 /* i */
        20: .line 1375
            iload 1 /* i */
            bipush 127
            if_icmpgt 23
        21: .line 1376
            aload 0 /* this */
            bipush 36
            iload 1 /* i */
            i2b
            iload 4 /* b2 */
            iload 3 /* b1 */
            iload 2 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBB)V
        22: .line 1377
            return
        23: .line 1380
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 5 /* b3 */
        start local 5 // byte b3
        24: .line 1381
            aload 0 /* this */
            bipush 36
            iload 1 /* i */
            bipush 7
            ishr
            i2b
            iload 5 /* b3 */
            iload 4 /* b2 */
            iload 3 /* b1 */
            iload 2 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        25: .line 1382
            return
        end local 5 // byte b3
        end local 4 // byte b2
        end local 3 // byte b1
        end local 2 // byte b0
        end local 1 // int i
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   26     1     i  I
            9   26     2    b0  B
           14   26     3    b1  B
           19   26     4    b2  B
           24   26     5    b3  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      i     

  private final int _writeNumberNoChecks(int, int);
    descriptor: (II)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int ptr
        start local 2 // int i
         0: .line 1388
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 3 /* output */
        start local 3 // byte[] output
         1: .line 1389
            iload 2 /* i */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileUtil.zigzagEncode:(I)I
            istore 2 /* i */
         2: .line 1391
            iload 2 /* i */
            bipush 63
            if_icmpgt 9
            iload 2 /* i */
            iflt 9
         3: .line 1392
            iload 2 /* i */
            bipush 31
            if_icmpgt 6
         4: .line 1393
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            sipush 192
            iload 2 /* i */
            iadd
            i2b
            bastore
         5: .line 1394
            iload 1 /* ptr */
            ireturn
         6: .line 1397
      StackMap locals: byte[]
      StackMap stack:
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            bipush 36
            bastore
         7: .line 1398
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            sipush 128
            iload 2 /* i */
            iadd
            i2b
            bastore
         8: .line 1399
            iload 1 /* ptr */
            ireturn
         9: .line 1401
      StackMap locals:
      StackMap stack:
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            bipush 36
            bastore
        10: .line 1403
            sipush 128
            iload 2 /* i */
            bipush 63
            iand
            iadd
            i2b
            istore 4 /* b0 */
        start local 4 // byte b0
        11: .line 1404
            iload 2 /* i */
            bipush 6
            iushr
            istore 2 /* i */
        12: .line 1405
            iload 2 /* i */
            bipush 127
            if_icmpgt 16
        13: .line 1406
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 2 /* i */
            i2b
            bastore
        14: .line 1407
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* b0 */
            bastore
        15: .line 1408
            iload 1 /* ptr */
            ireturn
        16: .line 1410
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            bipush 127
            iand
            i2b
            istore 5 /* b1 */
        start local 5 // byte b1
        17: .line 1411
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
        18: .line 1412
            iload 2 /* i */
            bipush 127
            if_icmpgt 23
        19: .line 1413
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 2 /* i */
            i2b
            bastore
        20: .line 1414
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b1 */
            bastore
        21: .line 1415
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* b0 */
            bastore
        22: .line 1416
            iload 1 /* ptr */
            ireturn
        23: .line 1418
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            bipush 127
            iand
            i2b
            istore 6 /* b2 */
        start local 6 // byte b2
        24: .line 1419
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
        25: .line 1420
            iload 2 /* i */
            bipush 127
            if_icmpgt 31
        26: .line 1421
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 2 /* i */
            i2b
            bastore
        27: .line 1422
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b2 */
            bastore
        28: .line 1423
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b1 */
            bastore
        29: .line 1424
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* b0 */
            bastore
        30: .line 1425
            iload 1 /* ptr */
            ireturn
        31: .line 1428
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            bipush 127
            iand
            i2b
            istore 7 /* b3 */
        start local 7 // byte b3
        32: .line 1429
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 2 /* i */
            bipush 7
            ishr
            i2b
            bastore
        33: .line 1430
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b3 */
            bastore
        34: .line 1431
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b2 */
            bastore
        35: .line 1432
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b1 */
            bastore
        36: .line 1433
            aload 3 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* b0 */
            bastore
        37: .line 1434
            iload 1 /* ptr */
            ireturn
        end local 7 // byte b3
        end local 6 // byte b2
        end local 5 // byte b1
        end local 4 // byte b0
        end local 3 // byte[] output
        end local 2 // int i
        end local 1 // int ptr
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   38     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   38     1     ptr  I
            0   38     2       i  I
            1   38     3  output  [B
           11   38     4      b0  B
           17   38     5      b1  B
           24   38     6      b2  B
           32   38     7      b3  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ptr   
      i     

  public void writeNumber(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=13, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // long l
         0: .line 1441
            lload 1 /* l */
            ldc 2147483647
            lcmp
            ifgt 3
            lload 1 /* l */
            ldc -2147483648
            lcmp
            iflt 3
         1: .line 1442
            aload 0 /* this */
            lload 1 /* l */
            l2i
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNumber:(I)V
         2: .line 1443
            return
         3: .line 1445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 1448
            lload 1 /* l */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileUtil.zigzagEncode:(J)J
            lstore 1 /* l */
         5: .line 1450
            lload 1 /* l */
            l2i
            istore 3 /* i */
        start local 3 // int i
         6: .line 1452
            sipush 128
            iload 3 /* i */
            bipush 63
            iand
            iadd
            i2b
            istore 4 /* b0 */
        start local 4 // byte b0
         7: .line 1453
            iload 3 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            istore 5 /* b1 */
        start local 5 // byte b1
         8: .line 1454
            iload 3 /* i */
            bipush 13
            ishr
            bipush 127
            iand
            i2b
            istore 6 /* b2 */
        start local 6 // byte b2
         9: .line 1455
            iload 3 /* i */
            bipush 20
            ishr
            bipush 127
            iand
            i2b
            istore 7 /* b3 */
        start local 7 // byte b3
        10: .line 1457
            lload 1 /* l */
            bipush 27
            lushr
            lstore 1 /* l */
        11: .line 1458
            lload 1 /* l */
            l2i
            bipush 127
            iand
            i2b
            istore 8 /* b4 */
        start local 8 // byte b4
        12: .line 1461
            lload 1 /* l */
            bipush 7
            lshr
            l2i
            istore 3 /* i */
        13: .line 1462
            iload 3 /* i */
            ifne 16
        14: .line 1463
            aload 0 /* this */
            bipush 37
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        15: .line 1464
            return
        16: .line 1467
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator long int int int int int int
      StackMap stack:
            iload 3 /* i */
            bipush 127
            if_icmpgt 20
        17: .line 1468
            aload 0 /* this */
            bipush 37
            iload 3 /* i */
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BB)V
        18: .line 1469
            aload 0 /* this */
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBB)V
        19: .line 1470
            return
        20: .line 1472
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            bipush 127
            iand
            i2b
            istore 9 /* b5 */
        start local 9 // byte b5
        21: .line 1473
            iload 3 /* i */
            bipush 7
            ishr
            istore 3 /* i */
        22: .line 1474
            iload 3 /* i */
            bipush 127
            if_icmpgt 26
        23: .line 1475
            aload 0 /* this */
            bipush 37
            iload 3 /* i */
            i2b
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BB)V
        24: .line 1476
            aload 0 /* this */
            iload 9 /* b5 */
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        25: .line 1477
            return
        26: .line 1479
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            bipush 127
            iand
            i2b
            istore 10 /* b6 */
        start local 10 // byte b6
        27: .line 1480
            iload 3 /* i */
            bipush 7
            ishr
            istore 3 /* i */
        28: .line 1481
            iload 3 /* i */
            bipush 127
            if_icmpgt 32
        29: .line 1482
            aload 0 /* this */
            bipush 37
            iload 3 /* i */
            i2b
            iload 10 /* b6 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBB)V
        30: .line 1483
            aload 0 /* this */
            iload 9 /* b5 */
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        31: .line 1484
            return
        32: .line 1486
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            bipush 127
            iand
            i2b
            istore 11 /* b7 */
        start local 11 // byte b7
        33: .line 1487
            iload 3 /* i */
            bipush 7
            ishr
            istore 3 /* i */
        34: .line 1488
            iload 3 /* i */
            bipush 127
            if_icmpgt 38
        35: .line 1489
            aload 0 /* this */
            bipush 37
            iload 3 /* i */
            i2b
            iload 11 /* b7 */
            iload 10 /* b6 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBB)V
        36: .line 1490
            aload 0 /* this */
            iload 9 /* b5 */
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        37: .line 1491
            return
        38: .line 1493
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            bipush 127
            iand
            i2b
            istore 12 /* b8 */
        start local 12 // byte b8
        39: .line 1494
            iload 3 /* i */
            bipush 7
            ishr
            istore 3 /* i */
        40: .line 1496
            aload 0 /* this */
            bipush 37
            iload 3 /* i */
            i2b
            iload 12 /* b8 */
            iload 11 /* b7 */
            iload 10 /* b6 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBB)V
        41: .line 1497
            aload 0 /* this */
            iload 9 /* b5 */
            iload 8 /* b4 */
            iload 7 /* b3 */
            iload 6 /* b2 */
            iload 5 /* b1 */
            iload 4 /* b0 */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytes:(BBBBBB)V
        42: .line 1498
            return
        end local 12 // byte b8
        end local 11 // byte b7
        end local 10 // byte b6
        end local 9 // byte b5
        end local 8 // byte b4
        end local 7 // byte b3
        end local 6 // byte b2
        end local 5 // byte b1
        end local 4 // byte b0
        end local 3 // int i
        end local 1 // long l
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   43     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   43     1     l  J
            6   43     3     i  I
            7   43     4    b0  B
            8   43     5    b1  B
            9   43     6    b2  B
           10   43     7    b3  B
           12   43     8    b4  B
           21   43     9    b5  B
           27   43    10    b6  B
           33   43    11    b7  B
           39   43    12    b8  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      l     

  private final int _writeNumberNoChecks(int, long);
    descriptor: (IJ)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=15, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int ptr
        start local 2 // long l
         0: .line 1505
            lload 2 /* l */
            ldc 2147483647
            lcmp
            ifgt 2
            lload 2 /* l */
            ldc -2147483648
            lcmp
            iflt 2
         1: .line 1506
            aload 0 /* this */
            iload 1 /* ptr */
            lload 2 /* l */
            l2i
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeNumberNoChecks:(II)I
            ireturn
         2: .line 1508
      StackMap locals:
      StackMap stack:
            lload 2 /* l */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileUtil.zigzagEncode:(J)J
            lstore 2 /* l */
         3: .line 1510
            lload 2 /* l */
            l2i
            istore 4 /* i */
        start local 4 // int i
         4: .line 1512
            sipush 128
            iload 4 /* i */
            bipush 63
            iand
            iadd
            i2b
            istore 5 /* b0 */
        start local 5 // byte b0
         5: .line 1513
            iload 4 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            istore 6 /* b1 */
        start local 6 // byte b1
         6: .line 1514
            iload 4 /* i */
            bipush 13
            ishr
            bipush 127
            iand
            i2b
            istore 7 /* b2 */
        start local 7 // byte b2
         7: .line 1515
            iload 4 /* i */
            bipush 20
            ishr
            bipush 127
            iand
            i2b
            istore 8 /* b3 */
        start local 8 // byte b3
         8: .line 1517
            lload 2 /* l */
            bipush 27
            lushr
            lstore 2 /* l */
         9: .line 1518
            lload 2 /* l */
            l2i
            bipush 127
            iand
            i2b
            istore 9 /* b4 */
        start local 9 // byte b4
        10: .line 1520
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 10 /* output */
        start local 10 // byte[] output
        11: .line 1521
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            bipush 37
            bastore
        12: .line 1524
            lload 2 /* l */
            bipush 7
            lshr
            l2i
            istore 4 /* i */
        13: .line 1525
            iload 4 /* i */
            ifne 20
        14: .line 1526
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        15: .line 1527
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        16: .line 1528
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        17: .line 1529
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        18: .line 1530
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        19: .line 1531
            iload 1 /* ptr */
            ireturn
        20: .line 1534
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator int long int int int int int int byte[]
      StackMap stack:
            iload 4 /* i */
            bipush 127
            if_icmpgt 28
        21: .line 1535
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* i */
            i2b
            bastore
        22: .line 1536
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        23: .line 1537
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        24: .line 1538
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        25: .line 1539
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        26: .line 1540
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        27: .line 1541
            iload 1 /* ptr */
            ireturn
        28: .line 1543
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            bipush 127
            iand
            i2b
            istore 11 /* b5 */
        start local 11 // byte b5
        29: .line 1544
            iload 4 /* i */
            bipush 7
            ishr
            istore 4 /* i */
        30: .line 1545
            iload 4 /* i */
            bipush 127
            if_icmpgt 39
        31: .line 1546
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* i */
            i2b
            bastore
        32: .line 1547
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 11 /* b5 */
            bastore
        33: .line 1548
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        34: .line 1549
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        35: .line 1550
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        36: .line 1551
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        37: .line 1552
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        38: .line 1553
            iload 1 /* ptr */
            ireturn
        39: .line 1555
      StackMap locals: int
      StackMap stack:
            iload 4 /* i */
            bipush 127
            iand
            i2b
            istore 12 /* b6 */
        start local 12 // byte b6
        40: .line 1556
            iload 4 /* i */
            bipush 7
            ishr
            istore 4 /* i */
        41: .line 1557
            iload 4 /* i */
            bipush 127
            if_icmpgt 51
        42: .line 1558
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* i */
            i2b
            bastore
        43: .line 1559
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 12 /* b6 */
            bastore
        44: .line 1560
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 11 /* b5 */
            bastore
        45: .line 1561
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        46: .line 1562
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        47: .line 1563
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        48: .line 1564
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        49: .line 1565
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        50: .line 1566
            iload 1 /* ptr */
            ireturn
        51: .line 1568
      StackMap locals: int
      StackMap stack:
            iload 4 /* i */
            bipush 127
            iand
            i2b
            istore 13 /* b7 */
        start local 13 // byte b7
        52: .line 1569
            iload 4 /* i */
            bipush 7
            ishr
            istore 4 /* i */
        53: .line 1570
            iload 4 /* i */
            bipush 127
            if_icmpgt 64
        54: .line 1571
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* i */
            i2b
            bastore
        55: .line 1572
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 13 /* b7 */
            bastore
        56: .line 1573
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 12 /* b6 */
            bastore
        57: .line 1574
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 11 /* b5 */
            bastore
        58: .line 1575
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        59: .line 1576
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        60: .line 1577
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        61: .line 1578
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        62: .line 1579
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        63: .line 1580
            iload 1 /* ptr */
            ireturn
        64: .line 1582
      StackMap locals: int
      StackMap stack:
            iload 4 /* i */
            bipush 127
            iand
            i2b
            istore 14 /* b8 */
        start local 14 // byte b8
        65: .line 1583
            iload 4 /* i */
            bipush 7
            ishr
            istore 4 /* i */
        66: .line 1585
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 4 /* i */
            i2b
            bastore
        67: .line 1586
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 14 /* b8 */
            bastore
        68: .line 1587
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 13 /* b7 */
            bastore
        69: .line 1588
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 12 /* b6 */
            bastore
        70: .line 1589
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 11 /* b5 */
            bastore
        71: .line 1590
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 9 /* b4 */
            bastore
        72: .line 1591
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* b3 */
            bastore
        73: .line 1592
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 7 /* b2 */
            bastore
        74: .line 1593
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 6 /* b1 */
            bastore
        75: .line 1594
            aload 10 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 5 /* b0 */
            bastore
        76: .line 1595
            iload 1 /* ptr */
            ireturn
        end local 14 // byte b8
        end local 13 // byte b7
        end local 12 // byte b6
        end local 11 // byte b5
        end local 10 // byte[] output
        end local 9 // byte b4
        end local 8 // byte b3
        end local 7 // byte b2
        end local 6 // byte b1
        end local 5 // byte b0
        end local 4 // int i
        end local 2 // long l
        end local 1 // int ptr
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   77     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   77     1     ptr  I
            0   77     2       l  J
            4   77     4       i  I
            5   77     5      b0  B
            6   77     6      b1  B
            7   77     7      b2  B
            8   77     8      b3  B
           10   77     9      b4  B
           11   77    10  output  [B
           29   77    11      b5  B
           40   77    12      b6  B
           52   77    13      b7  B
           65   77    14      b8  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ptr   
      l     

  public void writeNumber(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.math.BigInteger v
         0: .line 1601
            aload 1 /* v */
            ifnonnull 3
         1: .line 1602
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNull:()V
         2: .line 1603
            return
         3: .line 1605
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 1607
            aload 0 /* this */
            bipush 38
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1608
            aload 1 /* v */
            invokevirtual java.math.BigInteger.toByteArray:()[B
            astore 2 /* data */
        start local 2 // byte[] data
         6: .line 1609
            aload 0 /* this */
            aload 2 /* data */
            iconst_0
            aload 2 /* data */
            arraylength
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._write7BitBinaryWithLength:([BII)V
         7: .line 1610
            return
        end local 2 // byte[] data
        end local 1 // java.math.BigInteger v
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    8     1     v  Ljava/math/BigInteger;
            6    8     2  data  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeNumber(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // double d
         0: .line 1616
            aload 0 /* this */
            bipush 11
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._ensureRoomForOutput:(I)V
         1: .line 1617
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         2: .line 1623
            dload 1 /* d */
            invokestatic java.lang.Double.doubleToRawLongBits:(D)J
            lstore 3 /* l */
        start local 3 // long l
         3: .line 1624
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 41
            bastore
         4: .line 1626
            lload 3 /* l */
            bipush 35
            lushr
            l2i
            istore 5 /* hi5 */
        start local 5 // int hi5
         5: .line 1627
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_4
            iadd
            iload 5 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
         6: .line 1628
            iload 5 /* hi5 */
            bipush 7
            ishr
            istore 5 /* hi5 */
         7: .line 1629
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_3
            iadd
            iload 5 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
         8: .line 1630
            iload 5 /* hi5 */
            bipush 7
            ishr
            istore 5 /* hi5 */
         9: .line 1631
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_2
            iadd
            iload 5 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
        10: .line 1632
            iload 5 /* hi5 */
            bipush 7
            ishr
            istore 5 /* hi5 */
        11: .line 1633
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            iload 5 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
        12: .line 1634
            iload 5 /* hi5 */
            bipush 7
            ishr
            istore 5 /* hi5 */
        13: .line 1635
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* hi5 */
            i2b
            bastore
        14: .line 1636
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_5
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        15: .line 1639
            lload 3 /* l */
            bipush 28
            lshr
            l2i
            istore 6 /* mid */
        start local 6 // int mid
        16: .line 1640
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 6 /* mid */
            bipush 127
            iand
            i2b
            bastore
        end local 6 // int mid
        17: .line 1643
            lload 3 /* l */
            l2i
            istore 6 /* lo4 */
        start local 6 // int lo4
        18: .line 1644
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_3
            iadd
            iload 6 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        19: .line 1645
            iload 6 /* lo4 */
            bipush 7
            ishr
            istore 6 /* lo4 */
        20: .line 1646
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_2
            iadd
            iload 6 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        21: .line 1647
            iload 6 /* lo4 */
            bipush 7
            ishr
            istore 6 /* lo4 */
        22: .line 1648
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            iload 6 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        23: .line 1649
            iload 6 /* lo4 */
            bipush 7
            ishr
            istore 6 /* lo4 */
        24: .line 1650
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 6 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        25: .line 1651
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_4
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        26: .line 1652
            return
        end local 6 // int lo4
        end local 5 // int hi5
        end local 3 // long l
        end local 1 // double d
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   27     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   27     1     d  D
            3   27     3     l  J
            5   27     5   hi5  I
           16   17     6   mid  I
           18   27     6   lo4  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      d     

  private final int _writeNumberNoChecks(int, double);
    descriptor: (ID)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int ptr
        start local 2 // double d
         0: .line 1656
            dload 2 /* d */
            invokestatic java.lang.Double.doubleToRawLongBits:(D)J
            lstore 4 /* l */
        start local 4 // long l
         1: .line 1657
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 6 /* output */
        start local 6 // byte[] output
         2: .line 1658
            aload 6 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            bipush 41
            bastore
         3: .line 1660
            lload 4 /* l */
            bipush 35
            lushr
            l2i
            istore 7 /* hi5 */
        start local 7 // int hi5
         4: .line 1661
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_4
            iadd
            iload 7 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
         5: .line 1662
            iload 7 /* hi5 */
            bipush 7
            ishr
            istore 7 /* hi5 */
         6: .line 1663
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_3
            iadd
            iload 7 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
         7: .line 1664
            iload 7 /* hi5 */
            bipush 7
            ishr
            istore 7 /* hi5 */
         8: .line 1665
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_2
            iadd
            iload 7 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
         9: .line 1666
            iload 7 /* hi5 */
            bipush 7
            ishr
            istore 7 /* hi5 */
        10: .line 1667
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_1
            iadd
            iload 7 /* hi5 */
            bipush 127
            iand
            i2b
            bastore
        11: .line 1668
            iload 7 /* hi5 */
            bipush 7
            ishr
            istore 7 /* hi5 */
        12: .line 1669
            aload 6 /* output */
            iload 1 /* ptr */
            iload 7 /* hi5 */
            i2b
            bastore
        13: .line 1670
            iinc 1 /* ptr */ 5
        14: .line 1673
            lload 4 /* l */
            bipush 28
            lshr
            l2i
            istore 8 /* mid */
        start local 8 // int mid
        15: .line 1674
            aload 6 /* output */
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            iload 8 /* mid */
            bipush 127
            iand
            i2b
            bastore
        end local 8 // int mid
        16: .line 1677
            lload 4 /* l */
            l2i
            istore 8 /* lo4 */
        start local 8 // int lo4
        17: .line 1678
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_3
            iadd
            iload 8 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        18: .line 1679
            iload 8 /* lo4 */
            bipush 7
            ishr
            istore 8 /* lo4 */
        19: .line 1680
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_2
            iadd
            iload 8 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        20: .line 1681
            iload 8 /* lo4 */
            bipush 7
            ishr
            istore 8 /* lo4 */
        21: .line 1682
            aload 6 /* output */
            iload 1 /* ptr */
            iconst_1
            iadd
            iload 8 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        22: .line 1683
            iload 8 /* lo4 */
            bipush 7
            ishr
            istore 8 /* lo4 */
        23: .line 1684
            aload 6 /* output */
            iload 1 /* ptr */
            iload 8 /* lo4 */
            bipush 127
            iand
            i2b
            bastore
        24: .line 1685
            iload 1 /* ptr */
            iconst_4
            iadd
            ireturn
        end local 8 // int lo4
        end local 7 // int hi5
        end local 6 // byte[] output
        end local 4 // long l
        end local 2 // double d
        end local 1 // int ptr
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   25     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   25     1     ptr  I
            0   25     2       d  D
            1   25     4       l  J
            2   25     6  output  [B
            4   25     7     hi5  I
           15   16     8     mid  I
           17   25     8     lo4  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ptr   
      d     

  public void writeNumber(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // float f
         0: .line 1692
            aload 0 /* this */
            bipush 6
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._ensureRoomForOutput:(I)V
         1: .line 1693
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         2: .line 1700
            fload 1 /* f */
            invokestatic java.lang.Float.floatToRawIntBits:(F)I
            istore 2 /* i */
        start local 2 // int i
         3: .line 1701
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 40
            bastore
         4: .line 1702
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_4
            iadd
            iload 2 /* i */
            bipush 127
            iand
            i2b
            bastore
         5: .line 1703
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
         6: .line 1704
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_3
            iadd
            iload 2 /* i */
            bipush 127
            iand
            i2b
            bastore
         7: .line 1705
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
         8: .line 1706
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_2
            iadd
            iload 2 /* i */
            bipush 127
            iand
            i2b
            bastore
         9: .line 1707
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
        10: .line 1708
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            iload 2 /* i */
            bipush 127
            iand
            i2b
            bastore
        11: .line 1709
            iload 2 /* i */
            bipush 7
            ishr
            istore 2 /* i */
        12: .line 1710
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* i */
            bipush 127
            iand
            i2b
            bastore
        13: .line 1711
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_5
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        14: .line 1712
            return
        end local 2 // int i
        end local 1 // float f
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   15     1     f  F
            3   15     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      f     

  public void writeNumber(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.math.BigDecimal dec
         0: .line 1717
            aload 1 /* dec */
            ifnonnull 3
         1: .line 1718
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNull:()V
         2: .line 1719
            return
         3: .line 1721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "write number"
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._verifyValueWrite:(Ljava/lang/String;)V
         4: .line 1722
            aload 0 /* this */
            bipush 42
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
         5: .line 1723
            aload 1 /* dec */
            invokevirtual java.math.BigDecimal.scale:()I
            istore 2 /* scale */
        start local 2 // int scale
         6: .line 1725
            aload 0 /* this */
            iload 2 /* scale */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeSignedVInt:(I)V
         7: .line 1726
            aload 1 /* dec */
            invokevirtual java.math.BigDecimal.unscaledValue:()Ljava/math/BigInteger;
            astore 3 /* unscaled */
        start local 3 // java.math.BigInteger unscaled
         8: .line 1727
            aload 3 /* unscaled */
            invokevirtual java.math.BigInteger.toByteArray:()[B
            astore 4 /* data */
        start local 4 // byte[] data
         9: .line 1729
            aload 0 /* this */
            aload 4 /* data */
            iconst_0
            aload 4 /* data */
            arraylength
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._write7BitBinaryWithLength:([BII)V
        10: .line 1730
            return
        end local 4 // byte[] data
        end local 3 // java.math.BigInteger unscaled
        end local 2 // int scale
        end local 1 // java.math.BigDecimal dec
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   11     1       dec  Ljava/math/BigDecimal;
            6   11     2     scale  I
            8   11     3  unscaled  Ljava/math/BigInteger;
            9   11     4      data  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dec   

  public void writeNumber(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String encodedValue
         0: .line 1735
            aload 1 /* encodedValue */
            ifnonnull 3
         1: .line 1736
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNull:()V
         2: .line 1737
            return
         3: .line 1741
      StackMap locals:
      StackMap stack:
            aload 1 /* encodedValue */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         4: .line 1742
            aload 1 /* encodedValue */
            ldc "-"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            istore 3 /* neg */
        start local 3 // boolean neg
         5: .line 1745
            iload 3 /* neg */
            ifeq 6
            iconst_1
            goto 7
      StackMap locals: int int
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 4 /* i */
        start local 4 // int i
         8: .line 1747
      StackMap locals: int
      StackMap stack:
            aload 1 /* encodedValue */
            iload 4 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* c */
        start local 5 // char c
         9: .line 1748
            iload 5 /* c */
            bipush 57
            if_icmpgt 14
            iload 5 /* c */
            bipush 48
            if_icmpge 11
        10: .line 1749
            goto 14
        11: .line 1751
      StackMap locals: int
      StackMap stack:
            iinc 4 /* i */ 1
            iload 4 /* i */
            iload 2 /* len */
            if_icmpne 8
        12: .line 1752
            aload 0 /* this */
            aload 1 /* encodedValue */
            iload 3 /* neg */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeIntegralNumber:(Ljava/lang/String;Z)V
        13: .line 1753
            return
        end local 5 // char c
        14: .line 1756
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* encodedValue */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeDecimalNumber:(Ljava/lang/String;)V
        15: .line 1757
            return
        end local 4 // int i
        end local 3 // boolean neg
        end local 2 // int len
        end local 1 // java.lang.String encodedValue
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   16     1  encodedValue  Ljava/lang/String;
            4   16     2           len  I
            5   16     3           neg  Z
            8   16     4             i  I
            9   14     5             c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      encodedValue  

  protected void _writeIntegralNumber(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String enc
        start local 2 // boolean neg
         0: .line 1761
            aload 1 /* enc */
            invokevirtual java.lang.String.length:()I
            istore 3 /* len */
        start local 3 // int len
         1: .line 1762
            iload 2 /* neg */
            ifeq 3
         2: .line 1763
            iinc 3 /* len */ -1
         3: .line 1767
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            bipush 9
            if_icmpgt 6
         4: .line 1768
            aload 0 /* this */
            aload 1 /* enc */
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNumber:(I)V
         5: .line 1769
            goto 15
      StackMap locals:
      StackMap stack:
         6: iload 3 /* len */
            bipush 18
            if_icmpgt 9
         7: .line 1770
            aload 0 /* this */
            aload 1 /* enc */
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNumber:(J)V
         8: .line 1771
            goto 15
         9: .line 1772
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.math.BigInteger
            dup
            aload 1 /* enc */
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNumber:(Ljava/math/BigInteger;)V
        10: .line 1774
            goto 15
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
        11: pop
        12: .line 1775
            new com.fasterxml.jackson.core.JsonGenerationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid String representation for Number ('"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* enc */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        13: .line 1776
            ldc "'); can not write using Smile format"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 0 /* this */
        14: .line 1775
            invokespecial com.fasterxml.jackson.core.JsonGenerationException.<init>:(Ljava/lang/String;Lcom/fasterxml/jackson/core/JsonGenerator;)V
            athrow
        15: .line 1778
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // boolean neg
        end local 1 // java.lang.String enc
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   16     1   enc  Ljava/lang/String;
            0   16     2   neg  Z
            1   16     3   len  I
      Exception table:
        from    to  target  type
           3    10      11  Class java.lang.NumberFormatException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      enc   
      neg   

  protected void _writeDecimalNumber(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String enc
         0: .line 1783
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 1 /* enc */
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeNumber:(Ljava/math/BigDecimal;)V
         1: .line 1784
            goto 6
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
         2: pop
         3: .line 1785
            new com.fasterxml.jackson.core.JsonGenerationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid String representation for Number ('"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* enc */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 1786
            ldc "'); can not write using Smile format"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 0 /* this */
         5: .line 1785
            invokespecial com.fasterxml.jackson.core.JsonGenerationException.<init>:(Ljava/lang/String;Lcom/fasterxml/jackson/core/JsonGenerator;)V
            athrow
         6: .line 1788
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String enc
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    7     1   enc  Ljava/lang/String;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.NumberFormatException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      enc   

  protected final void _verifyValueWrite(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String typeMsg
         0: .line 1800
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileContext:Lcom/fasterxml/jackson/dataformat/smile/SmileWriteContext;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileWriteContext.writeValue:()Z
            ifne 2
         1: .line 1801
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Can not "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* typeMsg */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", expecting field name"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         2: .line 1803
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String typeMsg
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    3     1  typeMsg  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      typeMsg  

  public final void flush();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 1814
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         1: .line 1815
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.FLUSH_PASSED_TO_STREAM:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 3
         2: .line 1816
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         3: .line 1818
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 1824
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            ifnull 9
         1: .line 1825
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.AUTO_CLOSE_JSON_CONTENT:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 9
         2: .line 1827
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.getOutputContext:()Lcom/fasterxml/jackson/core/JsonStreamContext;
            astore 1 /* ctxt */
        start local 1 // com.fasterxml.jackson.core.JsonStreamContext ctxt
         3: .line 1828
            aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.JsonStreamContext.inArray:()Z
            ifeq 6
         4: .line 1829
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeEndArray:()V
         5: .line 1830
            goto 2
      StackMap locals: com.fasterxml.jackson.core.JsonStreamContext
      StackMap stack:
         6: aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.JsonStreamContext.inObject:()Z
            ifeq 9
         7: .line 1831
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeEndObject:()V
        end local 1 // com.fasterxml.jackson.core.JsonStreamContext ctxt
         8: .line 1826
            goto 2
         9: .line 1837
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._closed:Z
            istore 1 /* wasClosed */
        start local 1 // boolean wasClosed
        10: .line 1838
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.core.base.GeneratorBase.close:()V
        11: .line 1840
            iload 1 /* wasClosed */
            ifne 13
            aload 0 /* this */
            getstatic com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature.WRITE_END_MARKER:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$Feature;)Z
            ifeq 13
        12: .line 1841
            aload 0 /* this */
            iconst_m1
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeByte:(B)V
        13: .line 1843
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        14: .line 1845
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            invokevirtual com.fasterxml.jackson.core.io.IOContext.isResourceManaged:()Z
            ifne 15
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.AUTO_CLOSE_TARGET:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 17
        15: .line 1846
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
        16: .line 1847
            goto 19
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonGenerator$Feature.FLUSH_PASSED_TO_STREAM:Lcom/fasterxml/jackson/core/JsonGenerator$Feature;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator.isEnabled:(Lcom/fasterxml/jackson/core/JsonGenerator$Feature;)Z
            ifeq 19
        18: .line 1850
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
        19: .line 1853
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._releaseBuffers:()V
        20: .line 1854
            return
        end local 1 // boolean wasClosed
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            3    8     1       ctxt  Lcom/fasterxml/jackson/core/JsonStreamContext;
           10   21     1  wasClosed  Z
    Exceptions:
      throws java.io.IOException

  private final int _shortUTF8Encode(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] str
        start local 2 // int i
        start local 3 // int end
         0: .line 1870
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        start local 4 // int ptr
         1: .line 1871
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
         2: .line 1873
      StackMap locals: int byte[]
      StackMap stack:
            aload 1 /* str */
            iload 2 /* i */
            caload
            istore 6 /* c */
        start local 6 // int c
         3: .line 1874
            iload 6 /* c */
            bipush 127
            if_icmple 5
         4: .line 1875
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* i */
            iload 3 /* end */
            iload 4 /* ptr */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode2:([CIII)I
            ireturn
         5: .line 1877
      StackMap locals: int
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* ptr */
            iinc 4 /* ptr */ 1
            iload 6 /* c */
            i2b
            bastore
        end local 6 // int c
         6: .line 1878
            iinc 2 /* i */ 1
            iload 2 /* i */
            iload 3 /* end */
         7: .line 1872
            if_icmplt 2
         8: .line 1879
            iload 4 /* ptr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 6 /* codedLen */
        start local 6 // int codedLen
         9: .line 1880
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        10: .line 1881
            iload 6 /* codedLen */
            ireturn
        end local 6 // int codedLen
        end local 5 // byte[] outBuf
        end local 4 // int ptr
        end local 3 // int end
        end local 2 // int i
        end local 1 // char[] str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   11     1       str  [C
            0   11     2         i  I
            0   11     3       end  I
            1   11     4       ptr  I
            2   11     5    outBuf  [B
            3    6     6         c  I
            9   11     6  codedLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      i     
      end   

  private final int _shortUTF8Encode2(char[], int, int, int);
    descriptor: ([CIII)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] str
        start local 2 // int i
        start local 3 // int end
        start local 4 // int outputPtr
         0: .line 1892
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
         1: .line 1893
            goto 26
         2: .line 1894
      StackMap locals: byte[]
      StackMap stack:
            aload 1 /* str */
            iload 2 /* i */
            iinc 2 /* i */ 1
            caload
            istore 6 /* c */
        start local 6 // int c
         3: .line 1895
            iload 6 /* c */
            bipush 127
            if_icmpgt 6
         4: .line 1896
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            iload 6 /* c */
            i2b
            bastore
         5: .line 1897
            goto 26
         6: .line 1900
      StackMap locals: int
      StackMap stack:
            iload 6 /* c */
            sipush 2048
            if_icmpge 10
         7: .line 1901
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 192
            iload 6 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
         8: .line 1902
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
         9: .line 1903
            goto 26
        10: .line 1907
      StackMap locals:
      StackMap stack:
            iload 6 /* c */
            ldc 55296
            if_icmplt 11
            iload 6 /* c */
            ldc 57343
            if_icmple 15
        11: .line 1908
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 224
            iload 6 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        12: .line 1909
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        13: .line 1910
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        14: .line 1911
            goto 26
        15: .line 1914
      StackMap locals:
      StackMap stack:
            iload 6 /* c */
            ldc 56319
            if_icmple 17
        16: .line 1915
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        17: .line 1918
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* end */
            if_icmplt 19
        18: .line 1919
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        19: .line 1921
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            aload 1 /* str */
            iload 2 /* i */
            iinc 2 /* i */ 1
            caload
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._convertSurrogate:(II)I
            istore 6 /* c */
        20: .line 1922
            iload 6 /* c */
            ldc 1114111
            if_icmple 22
        21: .line 1923
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        22: .line 1925
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 240
            iload 6 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        23: .line 1926
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        24: .line 1927
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        25: .line 1928
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 6 // int c
        26: .line 1893
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* end */
            if_icmplt 2
        27: .line 1930
            iload 4 /* outputPtr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 6 /* codedLen */
        start local 6 // int codedLen
        28: .line 1931
            aload 0 /* this */
            iload 4 /* outputPtr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        29: .line 1932
            iload 6 /* codedLen */
            ireturn
        end local 6 // int codedLen
        end local 5 // byte[] outBuf
        end local 4 // int outputPtr
        end local 3 // int end
        end local 2 // int i
        end local 1 // char[] str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   30     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   30     1        str  [C
            0   30     2          i  I
            0   30     3        end  I
            0   30     4  outputPtr  I
            1   30     5     outBuf  [B
            3   26     6          c  I
           28   30     6   codedLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      str        
      i          
      end        
      outputPtr  

  private final int _shortUTF8Encode(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String str
        start local 2 // int i
        start local 3 // int end
         0: .line 1939
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            istore 4 /* ptr */
        start local 4 // int ptr
         1: .line 1940
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
         2: .line 1942
      StackMap locals: int byte[]
      StackMap stack:
            aload 1 /* str */
            iload 2 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* c */
        start local 6 // int c
         3: .line 1943
            iload 6 /* c */
            bipush 127
            if_icmple 5
         4: .line 1944
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* i */
            iload 3 /* end */
            iload 4 /* ptr */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode2:(Ljava/lang/String;III)I
            ireturn
         5: .line 1946
      StackMap locals: int
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* ptr */
            iinc 4 /* ptr */ 1
            iload 6 /* c */
            i2b
            bastore
        end local 6 // int c
         6: .line 1947
            iinc 2 /* i */ 1
            iload 2 /* i */
            iload 3 /* end */
         7: .line 1941
            if_icmplt 2
         8: .line 1948
            iload 4 /* ptr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 6 /* codedLen */
        start local 6 // int codedLen
         9: .line 1949
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        10: .line 1950
            iload 6 /* codedLen */
            ireturn
        end local 6 // int codedLen
        end local 5 // byte[] outBuf
        end local 4 // int ptr
        end local 3 // int end
        end local 2 // int i
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   11     1       str  Ljava/lang/String;
            0   11     2         i  I
            0   11     3       end  I
            1   11     4       ptr  I
            2   11     5    outBuf  [B
            3    6     6         c  I
            9   11     6  codedLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      i     
      end   

  private final int _shortUTF8Encode2(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String str
        start local 2 // int i
        start local 3 // int end
        start local 4 // int outputPtr
         0: .line 1956
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
         1: .line 1957
            goto 26
         2: .line 1958
      StackMap locals: byte[]
      StackMap stack:
            aload 1 /* str */
            iload 2 /* i */
            iinc 2 /* i */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* c */
        start local 6 // int c
         3: .line 1959
            iload 6 /* c */
            bipush 127
            if_icmpgt 6
         4: .line 1960
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            iload 6 /* c */
            i2b
            bastore
         5: .line 1961
            goto 26
         6: .line 1964
      StackMap locals: int
      StackMap stack:
            iload 6 /* c */
            sipush 2048
            if_icmpge 10
         7: .line 1965
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 192
            iload 6 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
         8: .line 1966
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
         9: .line 1967
            goto 26
        10: .line 1971
      StackMap locals:
      StackMap stack:
            iload 6 /* c */
            ldc 55296
            if_icmplt 11
            iload 6 /* c */
            ldc 57343
            if_icmple 15
        11: .line 1972
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 224
            iload 6 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        12: .line 1973
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        13: .line 1974
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        14: .line 1975
            goto 26
        15: .line 1978
      StackMap locals:
      StackMap stack:
            iload 6 /* c */
            ldc 56319
            if_icmple 17
        16: .line 1979
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        17: .line 1982
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* end */
            if_icmplt 19
        18: .line 1983
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        19: .line 1985
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            aload 1 /* str */
            iload 2 /* i */
            iinc 2 /* i */ 1
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._convertSurrogate:(II)I
            istore 6 /* c */
        20: .line 1986
            iload 6 /* c */
            ldc 1114111
            if_icmple 22
        21: .line 1987
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        22: .line 1989
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 240
            iload 6 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        23: .line 1990
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        24: .line 1991
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        25: .line 1992
            aload 5 /* outBuf */
            iload 4 /* outputPtr */
            iinc 4 /* outputPtr */ 1
            sipush 128
            iload 6 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 6 // int c
        26: .line 1957
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* end */
            if_icmplt 2
        27: .line 1994
            iload 4 /* outputPtr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 6 /* codedLen */
        start local 6 // int codedLen
        28: .line 1995
            aload 0 /* this */
            iload 4 /* outputPtr */
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        29: .line 1996
            iload 6 /* codedLen */
            ireturn
        end local 6 // int codedLen
        end local 5 // byte[] outBuf
        end local 4 // int outputPtr
        end local 3 // int end
        end local 2 // int i
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   30     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   30     1        str  Ljava/lang/String;
            0   30     2          i  I
            0   30     3        end  I
            0   30     4  outputPtr  I
            1   30     5     outBuf  [B
            3   26     6          c  I
           28   30     6   codedLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      str        
      i          
      end        
      outputPtr  

  private void _mediumUTF8Encode(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // char[] str
        start local 2 // int inputPtr
        start local 3 // int inputEnd
         0: .line 2001
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            iconst_4
            isub
            istore 4 /* bufferEnd */
        start local 4 // int bufferEnd
         1: .line 2004
            goto 39
         2: .line 2008
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* bufferEnd */
            if_icmplt 4
         3: .line 2009
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         4: .line 2011
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            caload
            istore 5 /* c */
        start local 5 // int c
         5: .line 2013
            iload 5 /* c */
            bipush 127
            if_icmpgt 19
         6: .line 2014
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* c */
            i2b
            bastore
         7: .line 2016
            iload 3 /* inputEnd */
            iload 2 /* inputPtr */
            isub
            istore 6 /* maxInCount */
        start local 6 // int maxInCount
         8: .line 2017
            iload 4 /* bufferEnd */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 7 /* maxOutCount */
        start local 7 // int maxOutCount
         9: .line 2019
            iload 6 /* maxInCount */
            iload 7 /* maxOutCount */
            if_icmple 11
        10: .line 2020
            iload 7 /* maxOutCount */
            istore 6 /* maxInCount */
        11: .line 2022
      StackMap locals: int int int
      StackMap stack:
            iload 6 /* maxInCount */
            iload 2 /* inputPtr */
            iadd
            istore 6 /* maxInCount */
        12: .line 2025
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 6 /* maxInCount */
            if_icmplt 14
        13: .line 2026
            goto 39
        14: .line 2028
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            caload
            istore 5 /* c */
        15: .line 2029
            iload 5 /* c */
            bipush 127
            if_icmple 17
        16: .line 2030
            goto 19
        17: .line 2032
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* c */
            i2b
            bastore
        18: .line 2024
            goto 12
        end local 7 // int maxOutCount
        end local 6 // int maxInCount
        19: .line 2037
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            sipush 2048
            if_icmpge 23
        20: .line 2038
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 192
            iload 5 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
        21: .line 2039
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        22: .line 2040
            goto 39
        23: .line 2042
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            ldc 55296
            if_icmplt 24
            iload 5 /* c */
            ldc 57343
            if_icmple 28
        24: .line 2043
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 224
            iload 5 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        25: .line 2044
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        26: .line 2045
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        27: .line 2046
            goto 39
        28: .line 2049
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            ldc 56319
            if_icmple 30
        29: .line 2050
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        30: .line 2053
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 3 /* inputEnd */
            if_icmplt 32
        31: .line 2054
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        32: .line 2056
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            caload
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._convertSurrogate:(II)I
            istore 5 /* c */
        33: .line 2057
            iload 5 /* c */
            ldc 1114111
            if_icmple 35
        34: .line 2058
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        35: .line 2060
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 240
            iload 5 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        36: .line 2061
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        37: .line 2062
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        38: .line 2063
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 5 // int c
        39: .line 2004
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 3 /* inputEnd */
            if_icmplt 2
        40: .line 2066
            return
        end local 4 // int bufferEnd
        end local 3 // int inputEnd
        end local 2 // int inputPtr
        end local 1 // char[] str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   41     0         this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   41     1          str  [C
            0   41     2     inputPtr  I
            0   41     3     inputEnd  I
            1   41     4    bufferEnd  I
            5   39     5            c  I
            8   19     6   maxInCount  I
            9   19     7  maxOutCount  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      str       
      inputPtr  
      inputEnd  

  private void _mediumUTF8Encode(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String str
        start local 2 // int inputPtr
        start local 3 // int inputEnd
         0: .line 2070
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            iconst_4
            isub
            istore 4 /* bufferEnd */
        start local 4 // int bufferEnd
         1: .line 2073
            goto 39
         2: .line 2077
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* bufferEnd */
            if_icmplt 4
         3: .line 2078
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         4: .line 2080
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* c */
        start local 5 // int c
         5: .line 2082
            iload 5 /* c */
            bipush 127
            if_icmpgt 19
         6: .line 2083
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* c */
            i2b
            bastore
         7: .line 2085
            iload 3 /* inputEnd */
            iload 2 /* inputPtr */
            isub
            istore 6 /* maxInCount */
        start local 6 // int maxInCount
         8: .line 2086
            iload 4 /* bufferEnd */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 7 /* maxOutCount */
        start local 7 // int maxOutCount
         9: .line 2088
            iload 6 /* maxInCount */
            iload 7 /* maxOutCount */
            if_icmple 11
        10: .line 2089
            iload 7 /* maxOutCount */
            istore 6 /* maxInCount */
        11: .line 2091
      StackMap locals: int int int
      StackMap stack:
            iload 6 /* maxInCount */
            iload 2 /* inputPtr */
            iadd
            istore 6 /* maxInCount */
        12: .line 2094
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 6 /* maxInCount */
            if_icmplt 14
        13: .line 2095
            goto 39
        14: .line 2097
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* c */
        15: .line 2098
            iload 5 /* c */
            bipush 127
            if_icmple 17
        16: .line 2099
            goto 19
        17: .line 2101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* c */
            i2b
            bastore
        18: .line 2093
            goto 12
        end local 7 // int maxOutCount
        end local 6 // int maxInCount
        19: .line 2106
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            sipush 2048
            if_icmpge 23
        20: .line 2107
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 192
            iload 5 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
        21: .line 2108
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        22: .line 2109
            goto 39
        23: .line 2111
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            ldc 55296
            if_icmplt 24
            iload 5 /* c */
            ldc 57343
            if_icmple 28
        24: .line 2112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 224
            iload 5 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        25: .line 2113
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        26: .line 2114
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        27: .line 2115
            goto 39
        28: .line 2118
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            ldc 56319
            if_icmple 30
        29: .line 2119
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        30: .line 2122
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 3 /* inputEnd */
            if_icmplt 32
        31: .line 2123
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        32: .line 2125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            aload 1 /* str */
            iload 2 /* inputPtr */
            iinc 2 /* inputPtr */ 1
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._convertSurrogate:(II)I
            istore 5 /* c */
        33: .line 2126
            iload 5 /* c */
            ldc 1114111
            if_icmple 35
        34: .line 2127
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._throwIllegalSurrogate:(I)V
        35: .line 2129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 240
            iload 5 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        36: .line 2130
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        37: .line 2131
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        38: .line 2132
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            sipush 128
            iload 5 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 5 // int c
        39: .line 2073
      StackMap locals:
      StackMap stack:
            iload 2 /* inputPtr */
            iload 3 /* inputEnd */
            if_icmplt 2
        40: .line 2135
            return
        end local 4 // int bufferEnd
        end local 3 // int inputEnd
        end local 2 // int inputPtr
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   41     0         this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   41     1          str  Ljava/lang/String;
            0   41     2     inputPtr  I
            0   41     3     inputEnd  I
            1   41     4    bufferEnd  I
            5   39     5            c  I
            8   19     6   maxInCount  I
            9   19     7  maxOutCount  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      str       
      inputPtr  
      inputEnd  

  private int _convertSurrogate(int, int);
    descriptor: (II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int firstPart
        start local 2 // int secondPart
         0: .line 2143
            iload 2 /* secondPart */
            ldc 56320
            if_icmplt 1
            iload 2 /* secondPart */
            ldc 57343
            if_icmple 5
         1: .line 2144
      StackMap locals:
      StackMap stack:
            ldc "Broken surrogate pair: first char 0x%04X, second 0x%04X; illegal combination"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
         2: .line 2145
            iload 1 /* firstPart */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 2 /* secondPart */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         3: .line 2144
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 3 /* msg */
        start local 3 // java.lang.String msg
         4: .line 2146
            aload 0 /* this */
            aload 3 /* msg */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
        end local 3 // java.lang.String msg
         5: .line 2148
      StackMap locals:
      StackMap stack:
            ldc 65536
            iload 1 /* firstPart */
            ldc 55296
            isub
            bipush 10
            ishl
            iadd
            iload 2 /* secondPart */
            ldc 56320
            isub
            iadd
            ireturn
        end local 2 // int secondPart
        end local 1 // int firstPart
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    6     1   firstPart  I
            0    6     2  secondPart  I
            4    5     3         msg  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      firstPart   
      secondPart  

  private void _throwIllegalSurrogate(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int code
         0: .line 2153
            iload 1 /* code */
            ldc 1114111
            if_icmple 4
         1: .line 2154
            aload 0 /* this */
         2: .line 2155
            ldc "Illegal character point (0x%X) to output; max is 0x10FFFF as per RFC 4627"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* code */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         3: .line 2154
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         4: .line 2157
      StackMap locals:
      StackMap stack:
            iload 1 /* code */
            ldc 55296
            if_icmplt 12
         5: .line 2158
            iload 1 /* code */
            ldc 56319
            if_icmpgt 9
         6: .line 2159
            aload 0 /* this */
         7: .line 2160
            ldc "Unmatched first part of surrogate pair (0x%04X)"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* code */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         8: .line 2159
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
         9: .line 2162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
        10: .line 2163
            ldc "Unmatched second part of surrogate pair (0x%04X)"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* code */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
        11: .line 2162
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
        12: .line 2166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "Illegal character point (0x%X) to output"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* code */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._reportError:(Ljava/lang/String;)V
        13: .line 2167
            return
        end local 1 // int code
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   14     1  code  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      code  

  private final void _ensureRoomForOutput(int);
    descriptor: (I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int needed
         0: .line 2177
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* needed */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2178
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2180
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int needed
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    3     1  needed  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      needed  

  private final void _writeByte(byte);
    descriptor: (B)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b
         0: .line 2184
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2185
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b */
            bastore
         3: .line 2188
            return
        end local 1 // byte b
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    4     1     b  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  private final void _writeBytes(byte, byte);
    descriptor: (BB)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b1
        start local 2 // byte b2
         0: .line 2192
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2193
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b1 */
            bastore
         3: .line 2196
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b2 */
            bastore
         4: .line 2197
            return
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    5     1    b1  B
            0    5     2    b2  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b1    
      b2    

  private final void _writeBytes(byte, byte, byte);
    descriptor: (BBB)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b1
        start local 2 // byte b2
        start local 3 // byte b3
         0: .line 2201
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2202
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b1 */
            bastore
         3: .line 2205
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b2 */
            bastore
         4: .line 2206
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b3 */
            bastore
         5: .line 2207
            return
        end local 3 // byte b3
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    6     1    b1  B
            0    6     2    b2  B
            0    6     3    b3  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b1    
      b2    
      b3    

  private final void _writeBytes(byte, byte, byte, byte);
    descriptor: (BBBB)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b1
        start local 2 // byte b2
        start local 3 // byte b3
        start local 4 // byte b4
         0: .line 2211
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_3
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2212
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b1 */
            bastore
         3: .line 2215
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b2 */
            bastore
         4: .line 2216
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b3 */
            bastore
         5: .line 2217
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* b4 */
            bastore
         6: .line 2218
            return
        end local 4 // byte b4
        end local 3 // byte b3
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    7     1    b1  B
            0    7     2    b2  B
            0    7     3    b3  B
            0    7     4    b4  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b1    
      b2    
      b3    
      b4    

  private final void _writeBytes(byte, byte, byte, byte, byte);
    descriptor: (BBBBB)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b1
        start local 2 // byte b2
        start local 3 // byte b3
        start local 4 // byte b4
        start local 5 // byte b5
         0: .line 2222
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_4
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2223
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b1 */
            bastore
         3: .line 2226
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b2 */
            bastore
         4: .line 2227
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b3 */
            bastore
         5: .line 2228
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* b4 */
            bastore
         6: .line 2229
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* b5 */
            bastore
         7: .line 2230
            return
        end local 5 // byte b5
        end local 4 // byte b4
        end local 3 // byte b3
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    8     1    b1  B
            0    8     2    b2  B
            0    8     3    b3  B
            0    8     4    b4  B
            0    8     5    b5  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b1    
      b2    
      b3    
      b4    
      b5    

  private final void _writeBytes(byte, byte, byte, byte, byte, byte);
    descriptor: (BBBBBB)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte b1
        start local 2 // byte b2
        start local 3 // byte b3
        start local 4 // byte b4
        start local 5 // byte b5
        start local 6 // byte b6
         0: .line 2234
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iconst_5
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2235
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* b1 */
            bastore
         3: .line 2238
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b2 */
            bastore
         4: .line 2239
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b3 */
            bastore
         5: .line 2240
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* b4 */
            bastore
         6: .line 2241
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* b5 */
            bastore
         7: .line 2242
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 6 /* b6 */
            bastore
         8: .line 2243
            return
        end local 6 // byte b6
        end local 5 // byte b5
        end local 4 // byte b4
        end local 3 // byte b3
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    9     1    b1  B
            0    9     2    b2  B
            0    9     3    b3  B
            0    9     4    b4  B
            0    9     5    b5  B
            0    9     6    b6  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b1    
      b2    
      b3    
      b4    
      b5    
      b6    

  private final void _writeBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] data
        start local 2 // int offset
        start local 3 // int len
         0: .line 2247
            iload 3 /* len */
            ifne 2
         1: .line 2248
            return
         2: .line 2250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 5
         3: .line 2251
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeBytesLong:([BII)V
         4: .line 2252
            return
         5: .line 2255
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 2256
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         7: .line 2257
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] data
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    8     1    data  [B
            0    8     2  offset  I
            0    8     3     len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      data    
      offset  
      len     

  private final int _writeBytes(java.io.InputStream, int);
    descriptor: (Ljava/io/InputStream;I)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.io.InputStream in
        start local 2 // int bytesLeft
         0: .line 2261
            goto 12
         1: .line 2262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 3 /* room */
        start local 3 // int room
         2: .line 2263
            iload 3 /* room */
            ifgt 5
         3: .line 2264
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         4: .line 2265
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            istore 3 /* room */
         5: .line 2267
      StackMap locals: int
      StackMap stack:
            iload 3 /* room */
            iload 2 /* bytesLeft */
            if_icmple 7
         6: .line 2268
            iload 2 /* bytesLeft */
            istore 3 /* room */
         7: .line 2270
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* room */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* count */
        start local 4 // int count
         8: .line 2271
            iload 4 /* count */
            ifge 10
         9: .line 2272
            goto 13
        10: .line 2274
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* count */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
        11: .line 2275
            iload 2 /* bytesLeft */
            iload 4 /* count */
            isub
            istore 2 /* bytesLeft */
        end local 4 // int count
        end local 3 // int room
        12: .line 2261
      StackMap locals:
      StackMap stack:
            iload 2 /* bytesLeft */
            ifgt 1
        13: .line 2277
      StackMap locals:
      StackMap stack:
            iload 2 /* bytesLeft */
            ireturn
        end local 2 // int bytesLeft
        end local 1 // java.io.InputStream in
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   14     1         in  Ljava/io/InputStream;
            0   14     2  bytesLeft  I
            2   12     3       room  I
            8   12     4      count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      in         
      bytesLeft  

  private final void _writeBytesLong(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] data
        start local 2 // int offset
        start local 3 // int len
         0: .line 2282
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 2
         1: .line 2283
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         2: .line 2286
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* currLen */
        start local 4 // int currLen
         3: .line 2287
            aload 1 /* data */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* currLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 2288
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* currLen */
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         5: .line 2289
            iload 3 /* len */
            iload 4 /* currLen */
            isub
            dup
            istore 3 /* len */
            ifne 7
         6: .line 2290
            goto 10
         7: .line 2292
      StackMap locals: int
      StackMap stack:
            iload 2 /* offset */
            iload 4 /* currLen */
            iadd
            istore 2 /* offset */
         8: .line 2293
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        end local 4 // int currLen
         9: .line 2285
            goto 2
        10: .line 2295
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] data
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   11     1     data  [B
            0   11     2   offset  I
            0   11     3      len  I
            3    9     4  currLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      data    
      offset  
      len     

  private void _writePositiveVInt(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int i
         0: .line 2304
            aload 0 /* this */
            iconst_5
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._ensureRoomForOutput:(I)V
         1: .line 2305
            sipush 128
            iload 1 /* i */
            bipush 63
            iand
            iadd
            i2b
            istore 2 /* b0 */
        start local 2 // byte b0
         2: .line 2306
            iload 1 /* i */
            bipush 6
            ishr
            istore 1 /* i */
         3: .line 2307
            iload 1 /* i */
            bipush 127
            if_icmpgt 8
         4: .line 2308
            iload 1 /* i */
            ifle 6
         5: .line 2309
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* i */
            i2b
            bastore
         6: .line 2311
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b0 */
            bastore
         7: .line 2312
            return
         8: .line 2314
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 3 /* b1 */
        start local 3 // byte b1
         9: .line 2315
            iload 1 /* i */
            bipush 7
            ishr
            istore 1 /* i */
        10: .line 2316
            iload 1 /* i */
            bipush 127
            if_icmpgt 15
        11: .line 2317
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* i */
            i2b
            bastore
        12: .line 2318
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b1 */
            bastore
        13: .line 2319
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b0 */
            bastore
        14: .line 2320
            goto 29
        15: .line 2321
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 4 /* b2 */
        start local 4 // byte b2
        16: .line 2322
            iload 1 /* i */
            bipush 7
            ishr
            istore 1 /* i */
        17: .line 2323
            iload 1 /* i */
            bipush 127
            if_icmpgt 23
        18: .line 2324
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* i */
            i2b
            bastore
        19: .line 2325
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* b2 */
            bastore
        20: .line 2326
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b1 */
            bastore
        21: .line 2327
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b0 */
            bastore
        22: .line 2328
            goto 29
        23: .line 2329
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            bipush 127
            iand
            i2b
            istore 5 /* b3 */
        start local 5 // byte b3
        24: .line 2330
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 1 /* i */
            bipush 7
            ishr
            i2b
            bastore
        25: .line 2331
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 5 /* b3 */
            bastore
        26: .line 2332
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* b2 */
            bastore
        27: .line 2333
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 3 /* b1 */
            bastore
        28: .line 2334
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 2 /* b0 */
            bastore
        end local 5 // byte b3
        end local 4 // byte b2
        29: .line 2337
      StackMap locals:
      StackMap stack:
            return
        end local 3 // byte b1
        end local 2 // byte b0
        end local 1 // int i
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   30     1     i  I
            2   30     2    b0  B
            9   30     3    b1  B
           16   29     4    b2  B
           24   29     5    b3  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      i     

  private void _writeSignedVInt(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // int input
         0: .line 2347
            aload 0 /* this */
            iload 1 /* input */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileUtil.zigzagEncode:(I)I
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writePositiveVInt:(I)V
         1: .line 2348
            return
        end local 1 // int input
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0    2     1  input  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      input  

  protected void _write7BitBinaryWithLength(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // byte[] data
        start local 2 // int offset
        start local 3 // int len
         0: .line 2352
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writePositiveVInt:(I)V
         1: .line 2354
            goto 20
         2: .line 2355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 8
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 4
         3: .line 2356
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
         4: .line 2358
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            istore 4 /* i */
        start local 4 // int i
         5: .line 2359
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_1
            ishr
            bipush 127
            iand
            i2b
            bastore
         6: .line 2360
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
         7: .line 2361
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_2
            ishr
            bipush 127
            iand
            i2b
            bastore
         8: .line 2362
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
         9: .line 2363
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_3
            ishr
            bipush 127
            iand
            i2b
            bastore
        10: .line 2364
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        11: .line 2365
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_4
            ishr
            bipush 127
            iand
            i2b
            bastore
        12: .line 2366
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        13: .line 2367
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_5
            ishr
            bipush 127
            iand
            i2b
            bastore
        14: .line 2368
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        15: .line 2369
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            bastore
        16: .line 2370
            iload 4 /* i */
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        17: .line 2371
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 7
            ishr
            bipush 127
            iand
            i2b
            bastore
        18: .line 2372
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 127
            iand
            i2b
            bastore
        19: .line 2373
            iinc 3 /* len */ -7
        end local 4 // int i
        20: .line 2354
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            bipush 7
            if_icmpge 2
        21: .line 2376
            iload 3 /* len */
            ifle 52
        22: .line 2378
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 7
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 24
        23: .line 2379
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        24: .line 2381
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            istore 4 /* i */
        start local 4 // int i
        25: .line 2382
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_1
            ishr
            bipush 127
            iand
            i2b
            bastore
        26: .line 2383
            iload 3 /* len */
            iconst_1
            if_icmple 51
        27: .line 2384
            iload 4 /* i */
            iconst_1
            iand
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        28: .line 2385
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_2
            ishr
            bipush 127
            iand
            i2b
            bastore
        29: .line 2386
            iload 3 /* len */
            iconst_2
            if_icmple 49
        30: .line 2387
            iload 4 /* i */
            iconst_3
            iand
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        31: .line 2388
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_3
            ishr
            bipush 127
            iand
            i2b
            bastore
        32: .line 2389
            iload 3 /* len */
            iconst_3
            if_icmple 47
        33: .line 2390
            iload 4 /* i */
            bipush 7
            iand
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        34: .line 2391
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_4
            ishr
            bipush 127
            iand
            i2b
            bastore
        35: .line 2392
            iload 3 /* len */
            iconst_4
            if_icmple 45
        36: .line 2393
            iload 4 /* i */
            bipush 15
            iand
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        37: .line 2394
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_5
            ishr
            bipush 127
            iand
            i2b
            bastore
        38: .line 2395
            iload 3 /* len */
            iconst_5
            if_icmple 43
        39: .line 2396
            iload 4 /* i */
            bipush 31
            iand
            bipush 8
            ishl
            aload 1 /* data */
            iload 2 /* offset */
            iinc 2 /* offset */ 1
            baload
            sipush 255
            iand
            ior
            istore 4 /* i */
        40: .line 2397
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            bastore
        41: .line 2398
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 63
            iand
            i2b
            bastore
        42: .line 2399
            goto 52
        43: .line 2400
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 31
            iand
            i2b
            bastore
        44: .line 2402
            goto 52
        45: .line 2403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 15
            iand
            i2b
            bastore
        46: .line 2405
            goto 52
        47: .line 2406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            bipush 7
            iand
            i2b
            bastore
        48: .line 2408
            goto 52
        49: .line 2409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_3
            iand
            i2b
            bastore
        50: .line 2411
            goto 52
        51: .line 2412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 4 /* i */
            iconst_1
            iand
            i2b
            bastore
        end local 4 // int i
        52: .line 2415
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] data
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   53     0    this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   53     1    data  [B
            0   53     2  offset  I
            0   53     3     len  I
            5   20     4       i  I
           25   52     4       i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      data    
      offset  
      len     

  protected int _write7BitBinaryWithLength(java.io.InputStream, int, byte[]);
    descriptor: (Ljava/io/InputStream;I[B)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.io.InputStream in
        start local 2 // int bytesLeft
        start local 3 // byte[] buffer
         0: .line 2420
            aload 0 /* this */
            iload 2 /* bytesLeft */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._writePositiveVInt:(I)V
         1: .line 2421
            iconst_0
            istore 4 /* inputPtr */
        start local 4 // int inputPtr
         2: .line 2422
            iconst_0
            istore 5 /* inputEnd */
        start local 5 // int inputEnd
         3: .line 2423
            bipush -7
            istore 6 /* lastFullOffset */
        start local 6 // int lastFullOffset
         4: .line 2426
            goto 30
         5: .line 2427
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* inputPtr */
            iload 6 /* lastFullOffset */
            if_icmple 12
         6: .line 2428
            aload 0 /* this */
            aload 1 /* in */
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iload 5 /* inputEnd */
            iload 2 /* bytesLeft */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._readMore:(Ljava/io/InputStream;[BIII)I
            istore 5 /* inputEnd */
         7: .line 2429
            iconst_0
            istore 4 /* inputPtr */
         8: .line 2430
            iload 5 /* inputEnd */
            bipush 7
            if_icmpge 11
         9: .line 2431
            iload 2 /* bytesLeft */
            iload 5 /* inputEnd */
            isub
            istore 2 /* bytesLeft */
        10: .line 2432
            goto 31
        11: .line 2434
      StackMap locals:
      StackMap stack:
            iload 5 /* inputEnd */
            bipush 7
            isub
            istore 6 /* lastFullOffset */
        12: .line 2436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 8
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 14
        13: .line 2437
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        14: .line 2439
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            istore 7 /* i */
        start local 7 // int i
        15: .line 2440
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_1
            ishr
            bipush 127
            iand
            i2b
            bastore
        16: .line 2441
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        17: .line 2442
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_2
            ishr
            bipush 127
            iand
            i2b
            bastore
        18: .line 2443
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        19: .line 2444
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_3
            ishr
            bipush 127
            iand
            i2b
            bastore
        20: .line 2445
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        21: .line 2446
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_4
            ishr
            bipush 127
            iand
            i2b
            bastore
        22: .line 2447
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        23: .line 2448
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_5
            ishr
            bipush 127
            iand
            i2b
            bastore
        24: .line 2449
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        25: .line 2450
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            bastore
        26: .line 2451
            iload 7 /* i */
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        27: .line 2452
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 7
            ishr
            bipush 127
            iand
            i2b
            bastore
        28: .line 2453
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 127
            iand
            i2b
            bastore
        29: .line 2454
            iinc 2 /* bytesLeft */ -7
        end local 7 // int i
        30: .line 2426
      StackMap locals:
      StackMap stack:
            iload 2 /* bytesLeft */
            bipush 7
            if_icmpge 5
        31: .line 2458
      StackMap locals:
      StackMap stack:
            iload 2 /* bytesLeft */
            ifle 66
        32: .line 2460
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            bipush 7
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputEnd:I
            if_icmplt 34
        33: .line 2461
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer:()V
        34: .line 2463
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iload 5 /* inputEnd */
            iload 2 /* bytesLeft */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileGenerator._readMore:(Ljava/io/InputStream;[BIII)I
            istore 5 /* inputEnd */
        35: .line 2464
            iconst_0
            istore 4 /* inputPtr */
        36: .line 2465
            iload 5 /* inputEnd */
            ifle 66
        37: .line 2466
            iload 2 /* bytesLeft */
            iload 5 /* inputEnd */
            isub
            istore 2 /* bytesLeft */
        38: .line 2467
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            istore 7 /* i */
        start local 7 // int i
        39: .line 2468
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_1
            ishr
            bipush 127
            iand
            i2b
            bastore
        40: .line 2469
            iload 5 /* inputEnd */
            iconst_1
            if_icmple 65
        41: .line 2470
            iload 7 /* i */
            iconst_1
            iand
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        42: .line 2471
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_2
            ishr
            bipush 127
            iand
            i2b
            bastore
        43: .line 2472
            iload 5 /* inputEnd */
            iconst_2
            if_icmple 63
        44: .line 2473
            iload 7 /* i */
            iconst_3
            iand
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        45: .line 2474
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_3
            ishr
            bipush 127
            iand
            i2b
            bastore
        46: .line 2475
            iload 5 /* inputEnd */
            iconst_3
            if_icmple 61
        47: .line 2476
            iload 7 /* i */
            bipush 7
            iand
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        48: .line 2477
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_4
            ishr
            bipush 127
            iand
            i2b
            bastore
        49: .line 2478
            iload 5 /* inputEnd */
            iconst_4
            if_icmple 59
        50: .line 2479
            iload 7 /* i */
            bipush 15
            iand
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        51: .line 2480
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_5
            ishr
            bipush 127
            iand
            i2b
            bastore
        52: .line 2481
            iload 5 /* inputEnd */
            iconst_5
            if_icmple 57
        53: .line 2482
            iload 7 /* i */
            bipush 31
            iand
            bipush 8
            ishl
            aload 3 /* buffer */
            iload 4 /* inputPtr */
            iinc 4 /* inputPtr */ 1
            baload
            sipush 255
            iand
            ior
            istore 7 /* i */
        54: .line 2483
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 6
            ishr
            bipush 127
            iand
            i2b
            bastore
        55: .line 2484
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 63
            iand
            i2b
            bastore
        56: .line 2485
            goto 66
        57: .line 2486
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 31
            iand
            i2b
            bastore
        58: .line 2488
            goto 66
        59: .line 2489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 15
            iand
            i2b
            bastore
        60: .line 2491
            goto 66
        61: .line 2492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            bipush 7
            iand
            i2b
            bastore
        62: .line 2494
            goto 66
        63: .line 2495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_3
            iand
            i2b
            bastore
        64: .line 2497
            goto 66
        65: .line 2498
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iload 7 /* i */
            iconst_1
            iand
            i2b
            bastore
        end local 7 // int i
        66: .line 2502
      StackMap locals:
      StackMap stack:
            iload 2 /* bytesLeft */
            ireturn
        end local 6 // int lastFullOffset
        end local 5 // int inputEnd
        end local 4 // int inputPtr
        end local 3 // byte[] buffer
        end local 2 // int bytesLeft
        end local 1 // java.io.InputStream in
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   67     0            this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   67     1              in  Ljava/io/InputStream;
            0   67     2       bytesLeft  I
            0   67     3          buffer  [B
            2   67     4        inputPtr  I
            3   67     5        inputEnd  I
            4   67     6  lastFullOffset  I
           15   30     7               i  I
           39   66     7               i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      in         
      bytesLeft  
      buffer     

  private int _readMore(java.io.InputStream, byte[], int, int, int);
    descriptor: (Ljava/io/InputStream;[BIII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=6
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.io.InputStream in
        start local 2 // byte[] readBuffer
        start local 3 // int inputPtr
        start local 4 // int inputEnd
        start local 5 // int maxRead
         0: .line 2510
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         1: .line 2511
            goto 3
         2: .line 2512
      StackMap locals: int
      StackMap stack:
            aload 2 /* readBuffer */
            iload 6 /* i */
            iinc 6 /* i */ 1
            aload 2 /* readBuffer */
            iload 3 /* inputPtr */
            iinc 3 /* inputPtr */ 1
            baload
            bastore
         3: .line 2511
      StackMap locals:
      StackMap stack:
            iload 3 /* inputPtr */
            iload 4 /* inputEnd */
            if_icmplt 2
         4: .line 2514
            iconst_0
            istore 3 /* inputPtr */
         5: .line 2515
            iload 6 /* i */
            istore 4 /* inputEnd */
         6: .line 2517
            iload 5 /* maxRead */
            aload 2 /* readBuffer */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* maxRead */
         7: .line 2523
      StackMap locals:
      StackMap stack:
            iload 5 /* maxRead */
            iload 4 /* inputEnd */
            isub
            istore 7 /* length */
        start local 7 // int length
         8: .line 2524
            iload 7 /* length */
            ifne 10
         9: .line 2525
            goto 16
        10: .line 2527
      StackMap locals: int
      StackMap stack:
            aload 1 /* in */
            aload 2 /* readBuffer */
            iload 4 /* inputEnd */
            iload 7 /* length */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 8 /* count */
        start local 8 // int count
        11: .line 2528
            iload 8 /* count */
            ifge 13
        12: .line 2529
            iload 4 /* inputEnd */
            ireturn
        13: .line 2531
      StackMap locals: int
      StackMap stack:
            iload 4 /* inputEnd */
            iload 8 /* count */
            iadd
            istore 4 /* inputEnd */
        end local 8 // int count
        end local 7 // int length
        14: .line 2532
            iload 4 /* inputEnd */
            bipush 7
        15: .line 2519
            if_icmplt 7
        16: .line 2533
      StackMap locals:
      StackMap stack:
            iload 4 /* inputEnd */
            ireturn
        end local 6 // int i
        end local 5 // int maxRead
        end local 4 // int inputEnd
        end local 3 // int inputPtr
        end local 2 // byte[] readBuffer
        end local 1 // java.io.InputStream in
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   17     1          in  Ljava/io/InputStream;
            0   17     2  readBuffer  [B
            0   17     3    inputPtr  I
            0   17     4    inputEnd  I
            0   17     5     maxRead  I
            1   17     6           i  I
            8   14     7      length  I
           11   14     8       count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      in          
      readBuffer  
      inputPtr    
      inputEnd    
      maxRead     

  protected void _releaseBuffers();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 2545
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            astore 1 /* buf */
        start local 1 // byte[] buf
         1: .line 2546
            aload 1 /* buf */
            ifnull 4
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bufferRecyclable:Z
            ifeq 4
         2: .line 2547
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
         3: .line 2548
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._ioContext:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseWriteEncodingBuffer:([B)V
         4: .line 2554
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 2 /* nameBuf */
        start local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] nameBuf
         5: .line 2555
            aload 2 /* nameBuf */
            ifnull 10
            aload 2 /* nameBuf */
            arraylength
            bipush 64
            if_icmpne 10
         6: .line 2556
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
         7: .line 2560
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            ifle 9
         8: .line 2561
            aload 2 /* nameBuf */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 2563
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            aload 2 /* nameBuf */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.releaseSeenNamesBuffer:([Ljava/lang/Object;)V
        end local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] nameBuf
        10: .line 2567
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 2 /* valueBuf */
        start local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] valueBuf
        11: .line 2568
            aload 2 /* valueBuf */
            ifnull 16
            aload 2 /* valueBuf */
            arraylength
            bipush 64
            if_icmpne 16
        12: .line 2569
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        13: .line 2573
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            ifle 15
        14: .line 2574
            aload 2 /* valueBuf */
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
        15: .line 2576
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._smileBufferRecycler:Lcom/fasterxml/jackson/dataformat/smile/SmileBufferRecycler;
            aload 2 /* valueBuf */
            invokevirtual com.fasterxml.jackson.dataformat.smile.SmileBufferRecycler.releaseSeenStringValuesBuffer:([Ljava/lang/Object;)V
        end local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] valueBuf
        16: .line 2579
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] buf
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            1   17     1       buf  [B
            5   10     2   nameBuf  [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           11   16     2  valueBuf  [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;

  protected final void _flushBuffer();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 2583
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            ifle 4
         1: .line 2584
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bytesWritten:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bytesWritten:I
         2: .line 2585
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            invokevirtual java.io.OutputStream.write:([BII)V
         3: .line 2586
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
         4: .line 2588
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
    Exceptions:
      throws java.io.IOException

  private final int _findSeenName(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String name
         0: .line 2598
            aload 1 /* name */
            invokevirtual java.lang.String.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 2599
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 2 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            iconst_1
            isub
            iand
            aaload
            astore 3 /* head */
        start local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode head
         2: .line 2600
            aload 3 /* head */
            ifnonnull 4
         3: .line 2601
            iconst_m1
            ireturn
         4: .line 2603
      StackMap locals: int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
      StackMap stack:
            aload 3 /* head */
            astore 4 /* node */
        start local 4 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
         5: .line 2606
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            aload 1 /* name */
            if_acmpne 9
         6: .line 2607
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.index:I
            ireturn
         7: .line 2610
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            aload 1 /* name */
            if_acmpne 9
         8: .line 2611
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.index:I
            ireturn
         9: .line 2609
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            dup
            astore 4 /* node */
            ifnonnull 7
        10: .line 2615
            aload 3 /* head */
            astore 4 /* node */
        11: .line 2617
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            astore 5 /* value */
        start local 5 // java.lang.String value
        12: .line 2618
            aload 5 /* value */
            invokevirtual java.lang.String.hashCode:()I
            iload 2 /* hash */
            if_icmpne 14
            aload 5 /* value */
            aload 1 /* name */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 14
        13: .line 2619
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.index:I
            ireturn
        14: .line 2621
      StackMap locals: java.lang.String
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 4 /* node */
        end local 5 // java.lang.String value
        15: .line 2622
            aload 4 /* node */
            ifnonnull 11
        16: .line 2623
            iconst_m1
            ireturn
        end local 4 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
        end local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode head
        end local 2 // int hash
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   17     1   name  Ljava/lang/String;
            1   17     2   hash  I
            2   17     3   head  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            5   17     4   node  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           12   15     5  value  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  private final void _addSeenName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=8, locals=9, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String name
         0: .line 2629
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            if_icmpne 18
         1: .line 2630
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            sipush 1024
            if_icmpne 5
         2: .line 2631
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 2632
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
         4: .line 2633
            goto 18
         5: .line 2634
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 2 /* old */
        start local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] old
         6: .line 2635
            aload 0 /* this */
            sipush 1024
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
         7: .line 2637
            aload 2 /* old */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 17
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] top int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
         8: aload 6
            iload 4
            aaload
            astore 3 /* node */
        start local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
         9: .line 2638
            goto 15
        10: .line 2639
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
            aload 3 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            sipush 1023
            iand
            istore 7 /* ix */
        start local 7 // int ix
        11: .line 2640
            aload 3 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 8 /* next */
        start local 8 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode next
        12: .line 2641
            aload 3 /* node */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 7 /* ix */
            aaload
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        13: .line 2642
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 7 /* ix */
            aload 3 /* node */
            aastore
        14: .line 2643
            aload 8 /* next */
            astore 3 /* node */
        end local 8 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode next
        end local 7 // int ix
        15: .line 2638
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            ifnonnull 10
        end local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
        16: .line 2637
            iinc 4 1
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] top int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
        17: iload 4
            iload 5
            if_icmplt 8
        end local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] old
        18: .line 2649
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
            istore 2 /* ref */
        start local 2 // int ref
        19: .line 2650
            iload 2 /* ref */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._validBackRef:(I)Z
            ifeq 22
        20: .line 2651
            aload 1 /* name */
            invokevirtual java.lang.String.hashCode:()I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            iconst_1
            isub
            iand
            istore 3 /* ix */
        start local 3 // int ix
        21: .line 2652
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 3 /* ix */
            new com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            dup
            aload 1 /* name */
            iload 2 /* ref */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNames:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 3 /* ix */
            aaload
            invokespecial com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.<init>:(Ljava/lang/String;ILcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;)V
            aastore
        end local 3 // int ix
        22: .line 2654
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* ref */
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenNameCount:I
        23: .line 2655
            return
        end local 2 // int ref
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   24     1  name  Ljava/lang/String;
            6   18     2   old  [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            9   16     3  node  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           11   15     7    ix  I
           12   15     8  next  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           19   24     2   ref  I
           21   22     3    ix  I
    MethodParameters:
      Name  Flags
      name  

  private final int _findSeenStringValue(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
         0: .line 2659
            aload 1 /* text */
            invokevirtual java.lang.String.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 2660
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 2 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            iconst_1
            isub
            iand
            aaload
            astore 3 /* head */
        start local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode head
         2: .line 2661
            aload 3 /* head */
            ifnull 14
         3: .line 2662
            aload 3 /* head */
            astore 4 /* node */
        start local 4 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
         4: .line 2665
      StackMap locals: int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            aload 1 /* text */
            if_acmpne 6
         5: .line 2666
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.index:I
            ireturn
         6: .line 2668
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 4 /* node */
         7: .line 2669
            aload 4 /* node */
            ifnonnull 4
         8: .line 2671
            aload 3 /* head */
            astore 4 /* node */
         9: .line 2673
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            astore 5 /* value */
        start local 5 // java.lang.String value
        10: .line 2674
            aload 5 /* value */
            invokevirtual java.lang.String.hashCode:()I
            iload 2 /* hash */
            if_icmpne 12
            aload 5 /* value */
            aload 1 /* text */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 2675
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.index:I
            ireturn
        12: .line 2677
      StackMap locals: java.lang.String
      StackMap stack:
            aload 4 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 4 /* node */
        end local 5 // java.lang.String value
        13: .line 2678
            aload 4 /* node */
            ifnonnull 9
        end local 4 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
        14: .line 2680
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode head
        end local 2 // int hash
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   15     1   text  Ljava/lang/String;
            1   15     2   hash  I
            2   15     3   head  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            4   14     4   node  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           10   13     5  value  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  private final void _addSeenStringValue(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=8, locals=9, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
        start local 1 // java.lang.String text
         0: .line 2686
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            if_icmpne 18
         1: .line 2687
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            sipush 1024
            if_icmpne 5
         2: .line 2688
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 2689
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
         4: .line 2690
            goto 18
         5: .line 2691
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 2 /* old */
        start local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] old
         6: .line 2692
            aload 0 /* this */
            sipush 1024
            anewarray com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
         7: .line 2694
            aload 2 /* old */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 17
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] top int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
         8: aload 6
            iload 4
            aaload
            astore 3 /* node */
        start local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
         9: .line 2695
            goto 15
        10: .line 2696
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
            aload 3 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.value:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            sipush 1023
            iand
            istore 7 /* ix */
        start local 7 // int ix
        11: .line 2697
            aload 3 /* node */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            astore 8 /* next */
        start local 8 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode next
        12: .line 2698
            aload 3 /* node */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 7 /* ix */
            aaload
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.next:Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
        13: .line 2699
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 7 /* ix */
            aload 3 /* node */
            aastore
        14: .line 2700
            aload 8 /* next */
            astore 3 /* node */
        end local 8 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode next
        end local 7 // int ix
        15: .line 2695
      StackMap locals:
      StackMap stack:
            aload 3 /* node */
            ifnonnull 10
        end local 3 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode node
        16: .line 2694
            iinc 4 1
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] top int int com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[]
      StackMap stack:
        17: iload 4
            iload 5
            if_icmplt 8
        end local 2 // com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode[] old
        18: .line 2712
      StackMap locals: com.fasterxml.jackson.dataformat.smile.SmileGenerator java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
            istore 2 /* ref */
        start local 2 // int ref
        19: .line 2713
            iload 2 /* ref */
            invokestatic com.fasterxml.jackson.dataformat.smile.SmileGenerator._validBackRef:(I)Z
            ifeq 22
        20: .line 2714
            aload 1 /* text */
            invokevirtual java.lang.String.hashCode:()I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            arraylength
            iconst_1
            isub
            iand
            istore 3 /* ix */
        start local 3 // int ix
        21: .line 2715
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 3 /* ix */
            new com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
            dup
            aload 1 /* text */
            iload 2 /* ref */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValues:[Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            iload 3 /* ix */
            aaload
            invokespecial com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode.<init>:(Ljava/lang/String;ILcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;)V
            aastore
        end local 3 // int ix
        22: .line 2717
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* ref */
            iconst_1
            iadd
            putfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._seenStringValueCount:I
        23: .line 2718
            return
        end local 2 // int ref
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
            0   24     1  text  Ljava/lang/String;
            6   18     2   old  [Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
            9   16     3  node  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           11   15     7    ix  I
           12   15     8  next  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator$SharedStringNode;
           19   24     2   ref  I
           21   22     3    ix  I
    MethodParameters:
      Name  Flags
      text  

  private static final boolean _validBackRef(int);
    descriptor: (I)Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int index
         0: .line 2727
            iload 0 /* index */
            sipush 255
            iand
            sipush 254
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long outputOffset();
    descriptor: ()J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 2741
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._bytesWritten:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.smile.SmileGenerator._outputTail:I
            iadd
            i2l
            lreturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;

  protected java.lang.UnsupportedOperationException _notSupported();
    descriptor: ()Ljava/lang/UnsupportedOperationException;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
         0: .line 2745
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.smile.SmileGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/smile/SmileGenerator;
}
SourceFile: "SmileGenerator.java"
NestMembers:
  com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature  com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode
InnerClasses:
  public final Feature = com.fasterxml.jackson.core.JsonGenerator$Feature of com.fasterxml.jackson.core.JsonGenerator
  public final Feature = com.fasterxml.jackson.dataformat.smile.SmileGenerator$Feature of com.fasterxml.jackson.dataformat.smile.SmileGenerator
  protected final SharedStringNode = com.fasterxml.jackson.dataformat.smile.SmileGenerator$SharedStringNode of com.fasterxml.jackson.dataformat.smile.SmileGenerator