1 !<arch> 2 __.PKGDEF 0 0 0 644 7004 ` 3 go object linux amd64 go1.5.1 X:none 4 build id "6f1be3ee5b05cf32be240362e10525dc9570b980" 5 6 $$ 7 package internal 8 import runtime "runtime" 9 import bufio "bufio" 10 import bytes "bytes" 11 import errors "errors" 12 import io "io" 13 import fmt "fmt" 14 var @"".ErrLineTooLong error 15 type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } 16 func @"".NewChunkedReader (@"".r2 @"io".Reader) (? @"io".Reader) { var @"".br3 *@"bufio".Reader; var @"".ok4 bool; @"".br3, @"".ok4 = @"".r2.(*@"bufio".Reader); if !@"".ok4 { @"".br3 = @"bufio".NewReader(@"".r2) }; return (&@"".chunkedReader{ @"".r:@"".br3 }) } 17 type @"io".WriteCloser interface { Close() (? error); Write(@"io".p []byte) (@"io".n int, @"io".err error) } 18 type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } 19 func @"".NewChunkedWriter (@"".w2 @"io".Writer) (? @"io".WriteCloser) { return (&@"".chunkedWriter{ Wire:@"".w2 }) } 20 type @"bufio".Writer struct { @"bufio".err error; @"bufio".buf []byte; @"bufio".n int; @"bufio".wr @"io".Writer } 21 func (@"bufio".b2 *@"bufio".Writer "esc:0x1") Available () (? int) { return len(@"bufio".b2.@"bufio".buf) - @"bufio".b2.@"bufio".n } 22 func (@"bufio".b2 *@"bufio".Writer "esc:0x1") Buffered () (? int) { return @"bufio".b2.@"bufio".n } 23 func (@"bufio".b2 *@"bufio".Writer "esc:0x2a") Flush () (? error) 24 func (@"bufio".b3 *@"bufio".Writer "esc:0x10a") ReadFrom (@"bufio".r4 @"io".Reader) (@"bufio".n1 int64, @"bufio".err2 error) 25 func (@"bufio".b1 *@"bufio".Writer "esc:0x1") Reset (@"bufio".w2 @"io".Writer) { @"bufio".b1.@"bufio".err = nil; @"bufio".b1.@"bufio".n = 0x0; @"bufio".b1.@"bufio".wr = @"bufio".w2 } 26 func (@"bufio".b3 *@"bufio".Writer "esc:0x10a") Write (@"bufio".p4 []byte) (@"bufio".nn1 int, @"bufio".err2 error) 27 func (@"bufio".b2 *@"bufio".Writer "esc:0x2a") WriteByte (@"bufio".c3 byte) (? error) 28 func (@"bufio".b3 *@"bufio".Writer "esc:0x10a") WriteRune (@"bufio".r4 rune) (@"bufio".size1 int, @"bufio".err2 error) 29 func (@"bufio".b3 *@"bufio".Writer "esc:0x10a") WriteString (@"bufio".s4 string "esc:0x9") (? int, ? error) 30 func (@"bufio".b2 *@"bufio".Writer "esc:0x2a") @"bufio".flush () (? error) 31 type @"".FlushAfterChunkWriter struct { ? *@"bufio".Writer } 32 func @"".init () 33 type @"bufio".Reader struct { @"bufio".buf []byte; @"bufio".rd @"io".Reader; @"bufio".r int; @"bufio".w int; @"bufio".err error; @"bufio".lastByte int; @"bufio".lastRuneSize int } 34 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") Buffered () (? int) { return @"bufio".b2.@"bufio".w - @"bufio".b2.@"bufio".r } 35 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Discard (@"bufio".n4 int) (@"bufio".discarded1 int, @"bufio".err2 error) 36 func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") Peek (@"bufio".n4 int) (? []byte, ? error) 37 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") Read (@"bufio".p4 []byte) (@"bufio".n1 int, @"bufio".err2 error) 38 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadByte () (@"bufio".c1 byte, @"bufio".err2 error) 39 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadBytes (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error) 40 func (@"bufio".b4 *@"bufio".Reader "esc:0x82a") ReadLine () (@"bufio".line1 []byte, @"bufio".isPrefix2 bool, @"bufio".err3 error) 41 func (@"bufio".b4 *@"bufio".Reader "esc:0x80a") ReadRune () (@"bufio".r1 rune, @"bufio".size2 int, @"bufio".err3 error) 42 func (@"bufio".b3 *@"bufio".Reader "esc:0x12a") ReadSlice (@"bufio".delim4 byte) (@"bufio".line1 []byte, @"bufio".err2 error) 43 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") ReadString (@"bufio".delim4 byte) (@"bufio".line1 string, @"bufio".err2 error) 44 func (@"bufio".b1 *@"bufio".Reader "esc:0x9") Reset (@"bufio".r2 @"io".Reader) { @"bufio".b1.@"bufio".reset(@"bufio".b1.@"bufio".buf, @"bufio".r2) } 45 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadByte () (? error) { if @"bufio".b2.@"bufio".lastByte < 0x0 || @"bufio".b2.@"bufio".r == 0x0 && @"bufio".b2.@"bufio".w > 0x0 { return @"bufio".ErrInvalidUnreadByte }; if @"bufio".b2.@"bufio".r > 0x0 { @"bufio".b2.@"bufio".r-- } else { @"bufio".b2.@"bufio".w = 0x1 }; @"bufio".b2.@"bufio".buf[@"bufio".b2.@"bufio".r] = byte(@"bufio".b2.@"bufio".lastByte); @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil } 46 func (@"bufio".b2 *@"bufio".Reader "esc:0x1") UnreadRune () (? error) { if @"bufio".b2.@"bufio".lastRuneSize < 0x0 || @"bufio".b2.@"bufio".r < @"bufio".b2.@"bufio".lastRuneSize { return @"bufio".ErrInvalidUnreadRune }; @"bufio".b2.@"bufio".r -= @"bufio".b2.@"bufio".lastRuneSize; @"bufio".b2.@"bufio".lastByte = -0x1; @"bufio".b2.@"bufio".lastRuneSize = -0x1; return nil } 47 func (@"bufio".b3 *@"bufio".Reader "esc:0x10a") WriteTo (@"bufio".w4 @"io".Writer) (@"bufio".n1 int64, @"bufio".err2 error) 48 func (@"bufio".b1 *@"bufio".Reader "esc:0x9") @"bufio".fill () 49 func (@"bufio".b2 *@"bufio".Reader "esc:0x22") @"bufio".readErr () (? error) { var @"bufio".err3 error; ; @"bufio".err3 = @"bufio".b2.@"bufio".err; @"bufio".b2.@"bufio".err = nil; return @"bufio".err3 } 50 func (@"bufio".b1 *@"bufio".Reader "esc:0x1") @"bufio".reset (@"bufio".buf2 []byte, @"bufio".r3 @"io".Reader) { *@"bufio".b1 = (@"bufio".Reader{ @"bufio".buf:@"bufio".buf2, @"bufio".rd:@"bufio".r3, @"bufio".lastByte:-0x1, @"bufio".lastRuneSize:-0x1 }) } 51 func (@"bufio".b3 *@"bufio".Reader "esc:0x9") @"bufio".writeBuf (@"bufio".w4 @"io".Writer) (? int64, ? error) 52 func @"bufio".NewReader (@"bufio".rd2 @"io".Reader) (? *@"bufio".Reader) { return @"bufio".NewReaderSize(@"bufio".rd2, 0x1000) } 53 type @"".chunkedReader struct { @"".r *@"bufio".Reader; @"".n uint64; @"".err error; @"".buf [2]byte } 54 func (@"".cr3 *@"".chunkedReader) Read (@"".b4 []uint8) (@"".n1 int, @"".err2 error) 55 func (@"".cr1 *@"".chunkedReader "esc:0x9") @"".beginChunk () 56 func (@"".cr2 *@"".chunkedReader "esc:0x9") @"".chunkHeaderAvailable () (? bool) 57 type @"".chunkedWriter struct { Wire @"io".Writer } 58 func (@"".cw2 *@"".chunkedWriter "esc:0x9") Close () (? error) 59 func (@"".cw3 *@"".chunkedWriter "esc:0x20a") Write (@"".data4 []byte) (@"".n1 int, @"".err2 error) 60 var @"bufio".ErrInvalidUnreadByte error 61 var @"bufio".ErrInvalidUnreadRune error 62 func @"bufio".NewReaderSize (@"bufio".rd2 @"io".Reader, @"bufio".size3 int) (? *@"bufio".Reader) { var @"bufio".b4 *@"bufio".Reader; ; var @"bufio".ok5 bool; ; @"bufio".b4, @"bufio".ok5 = @"bufio".rd2.(*@"bufio".Reader); if @"bufio".ok5 && len(@"bufio".b4.@"bufio".buf) >= @"bufio".size3 { return @"bufio".b4 }; if @"bufio".size3 < 0x10 { @"bufio".size3 = 0x10 }; var @"bufio".r6 *@"bufio".Reader; ; @"bufio".r6 = new(@"bufio".Reader); @"bufio".r6.@"bufio".reset(make([]byte, @"bufio".size3), @"bufio".rd2); return @"bufio".r6 } 63 64 $$ 65 _go_.o 0 0 0 644 82795 ` 66 go object linux amd64 go1.5.1 X:none 67 68 ! 69 go13ldbufio.abytes.aerrors.a 70 fmt.aio.a&"".NewChunkedReaderdH%HD$H;AHH$H$1H$H$H1H9tH[H-H9XHHHL$H<ufHt$hHT$pHH$HHHt$x1H9tH[H-H9HH<HYH9HHD$HHH$HD$1H(HhHhHh@h @h!HD$PHl$H=ubH(HD$PH1H9tH\$PH$H$HHH$HH\$HH\$HD$H$Hl$HD$PHT$0H} HD$0HH$HL$0HD$HD$8HD$@HH$HL$HL$LD$Ht$ Hl$(HT$xH$H$1HL$L$H$H$H$H$HT$XH$HL$`H$H$H$H\$@Ht,H$H\$Hl$H-H,$HD$8)11116( 74 $type.*bufio.Reader$type.*bufio.Reader*type."".chunkedReader 75 "runtime.newobject6runtime.writeBarrierEnabledFgo.itab.*"".chunkedReader.io.Reader,type.*"".chunkedReadertype.io.ReaderFgo.itab.*"".chunkedReader.io.Reader 76 runtime.typ2Itab 77 .runtime.writebarrierptr"type.bufio.Reader 78 "runtime.newobjecttype.[]uint8 79 "runtime.makeslice 80 runtime.duffzero 81 "type.bufio.Reader 82 83 (runtime.typedmemmove 85 0runtime.morestack_noctxt@"".autotmp_0007,type.*"".chunkedReader"".autotmp_0006$type.*bufio.Reader"".autotmp_0005,type.*"".chunkedReader"".autotmp_0004"type.bufio.Reader"".autotmp_0001$type.*bufio.Readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader 86 "".br$type.*bufio.Reader"".~r1 type.io.Reader"".rtype.io.Reader&<A-f 88 @.5Tgclocalsa68b09a48716afad7ca7a02fe6add474Tgclocals2340d62dffe482f87f753a0ed0876d38nprebuilts/go/linux-x86/src/net/http/internal/chunked.go<"".(*chunkedReader).beginChunkdH%H;amHX1H\$@H\$HH\$PH\$`H+H,$H\$H\$@H\$H\$HH\$H\$PHL$ HD$(H\$`H HL$0HKHD$8=HCH\$`HkHtHXH\$@H$H\$HH\$H\$PH\$HD$`Hl$HhHT$ HL$(HT$0HPHL$8=uUHHHhHtHXHXHuH-HhH-=u HhHXL@L$Hl$L@L$HL$HD$`LCL$HD$v 90 j 91 "".readLine6runtime.writeBarrierEnabled 92 "".parseHexUint6runtime.writeBarrierEnabledio.EOFio.EOF6runtime.writeBarrierEnabled 95 .runtime.writebarrierptr 96 .runtime.writebarrierptr 97 .runtime.writebarrierptr 98 0runtime.morestack_noctxt"".autotmp_0011type.error"".autotmp_0010Otype.error"".line/type.[]uint8 99 "".cr,type.*"".chunkedReader2c-[NZgU 100 101 4!Tgclocals51fa0e13d53d6bad7f86670d3edaeac6Tgclocalse8ee48bb5f3220f130a300717899008fnprebuilts/go/linux-x86/src/net/http/internal/chunked.goP"".(*chunkedReader).chunkHeaderAvailabledH%H;aHPHL$XHHX0Hh(H)H~ZH)H,$H\$HT$HL$HD$ HT$8H$HL$@HL$HD$HHD$D$ 104 H\$ HD$`HPD$`HPb 105 z 106 (bufio.(*Reader).Peek 107 bytes.IndexByte 108 0runtime.morestack_noctxt "".autotmp_0012type.int"".peek/type.[]uint8"".~r0type.bool 110 "".cr,type.*"".chunkedReader$r z : 112 115 <dTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecnprebuilts/go/linux-x86/src/net/http/internal/chunked.go0"".(*chunkedReader).ReaddH%HD$H;AHH$11H$H$H$HhHu3HXHufH$H~EH$H$\$u*Ht HhH$HhH$HH$H$H$HuH$H$H$HhH9HXH9HH(H,$H$Ht$H$HL$H$HT$H$HL$ HL$@Ht$(HT$0HPH$HpH$=HPH$HH$H$L$H9L$H)I)ItM H$L$L$L@I)L@HXHNHhH@HH HeH$H$H$H 1H9H(HL$pH$Hl$xHl$H$H\$H$H\$H$H\$ H$HT$0HL$8HH$HPH$=THHHhHlX u X! 123 VHH\$`HD$h1H\$PH\$XHH$H$HL$HL$HHl$hHiHl$`=H)HL$HH 1H9t^Hl$HH$H$Ht?HL$PHHHl$X=u HhL@L$Hl$H$HH$HH\$HH\$H$HL$hH$Hl$HL$HH$5L@L$HL$H$eHH$HH\$HH\$H$HL$L@L$HT$HL$@H$D4: 128 129 P"".(*chunkedReader).chunkHeaderAvailable 130 <"".(*chunkedReader).beginChunk 131 (bufio.(*Reader).Read6runtime.writeBarrierEnabled>go.itab.*bufio.Reader.io.Reader 132 133 io.ReadFull 134 6runtime.writeBarrierEnabledLgo.string."malformed chunked encoding".type.errors.errorString 138 "runtime.newobject 6runtime.writeBarrierEnabled Bgo.itab.*errors.errorString.error6runtime.writeBarrierEnabled 141 .runtime.writebarrierptr0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error 142 runtime.typ2Itab 143 .runtime.writebarrierptr 144 .runtime.writebarrierptr$type.*bufio.Readertype.io.Reader>go.itab.*bufio.Reader.io.Reader 145 runtime.typ2Itab 146 $runtime.panicslice 147 .runtime.writebarrierptr 148 $runtime.panicslice 149 0runtime.morestack_noctxtp$"".autotmp_0027type.*uint8"".autotmp_0026type.error"".autotmp_00250type.*errors.errorString"".autotmp_0024type.error"".autotmp_0022type.error"".autotmp_00210type.*errors.errorString"".autotmp_0020/type.[]uint8"".autotmp_0019type.uint64"".autotmp_0018type.int"".autotmp_0016type.int"".~r0type.errorerrors.text2type.string 151 "".n0type.int"".rbuf_type.[]uint8"".errPtype.error"".n@type.int"".btype.[]uint8 153 "".cr,type.*"".chunkedReader G 154 155 )<*1 ,% ~I5656^g %&m9D<LTgclocalsffe471b206c7569cb0cc60d42e32041cTgclocals85e68333a83ad454e79af9d0ea5e7046nprebuilts/go/linux-x86/src/net/http/internal/chunked.go"".readLinedH%H;aH8111H\$`H\$h1H\$HH\$PH\$XH\$@H$D$ 160 Ht$Ht$HHL$HL$PHl$ Hl$XHD$(HT$0HT$hHD$`HH-H9uhH$HT$H-Hl$H-Hl$HT$hHD$`\$ t.HH\$`HH\$h1H\$HH\$PH\$XH8H-H9uH$HT$H-Hl$H-Hl$\$ tHH\$`HH\$hH|.H H1H\$HH\$PH\$XHL$`HD$hH8H4$HL$Hl$HT$HL$ HD$(HT$HHL$PHD$X1H\$`H\$hH8,$ 162 163 2bufio.(*Reader).ReadSliceio.EOFio.EOFio.EOF 167 runtime.ifaceeq&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF&bufio.ErrBufferFull&bufio.ErrBufferFull&bufio.ErrBufferFull 168 runtime.ifaceeq""".ErrLineTooLong""".ErrLineTooLong""".ErrLineTooLong""".ErrLineTooLong 169 2"".trimTrailingWhitespace 170 0runtime.morestack_noctxt`p"".err@type.error"".ptype.[]uint8"".b$type.*bufio.Reader&popopAop48OF< .BFnJTgclocals385909f76d6de739e72f24698b953b71Tgclocals69c1753bd5f81501d95132d08af04464nprebuilts/go/linux-x86/src/net/http/internal/chunked.go2"".trimTrailingWhitespacedH%H;aHt$HT$HL$1H~CHHH9sXH+@ tB@ t<@ 173 t6@ <tHHH9wHHHt$ HL$(HT$0Hb 177 178 $runtime.panicslice 179 $runtime.panicindex 180 0runtime.morestack_noctxt`"".autotmp_0037type.int"".autotmp_0036type.int"".~r10type.[]uint8"".btype.[]uint8$$5 183 }#Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go"".isASCIISpace@@D$< t< t< 185 t< D$D$ "".~r1type.bool"".btype.uint8 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go&"".NewChunkedWriterdH%H;aH(1H\$@H\$HHH$HD$HD$ Hl$0H(Hl$8=uZHhHD$ H1H9tH\$ H\$HHD$@H(HH$HH\$HH\$HD$L@L$Hl$HD$ 0 190 L*type."".chunkedWriter^ 191 "runtime.newobject6runtime.writeBarrierEnabledPgo.itab.*"".chunkedWriter.io.WriteCloser,type.*"".chunkedWriter&type.io.WriteCloserPgo.itab.*"".chunkedWriter.io.WriteCloser 192 runtime.typ2Itab 193 .runtime.writebarrierptr 194 0runtime.morestack_noctxt@P"".autotmp_0041,type.*"".chunkedWriter"".autotmp_0040,type.*"".chunkedWriter"".~r1 &type.io.WriteCloser"".wtype.io.WriterPfOPR# 196 .s/Tgclocalsaefd16b155593f6f07980a05b297ad1fTgclocals0c8aa8e80191a30eac23f1a218103f16nprebuilts/go/linux-x86/src/net/http/internal/chunked.go2"".(*chunkedWriter).Write dH%HD$H;AHH$11H$H$Hu&H$1H$H$HHL$P1H\$xH$H\$xHH$H$H$HH$H\$PH\$HD$HL$HD$ H$HL$hHHD$p=HCH$HH$HNHL$HH\$HD$H$H\$ H$H\$(H$H\$0HD$@H\$HH$H$HtH$HH$HjHHkH$H\$H$H\$H$H\$Hl$`H,$HL$XHY HL$ H$HD$(H\$0H$H$HtHH$H9t&HH$HH$HH$HH$HNHL$HH\$HD$HD$(H\$0H$H$HtHH$H+E1L9tHmLL9u=HKH<t&H)H,$H\$H$H\$H$H11LCL$HD$_ 204 type.int 205 runtime.convT2E6runtime.writeBarrierEnabled$go.string."%x\r\n" 206 fmt.Fprintf io.ErrShortWrite io.ErrShortWrite go.string."\r\n" 207 io.WriteString 208 <type.*"".FlushAfterChunkWriter 210 *bufio.(*Writer).Flush 212 .runtime.writebarrierptr 214 0runtime.morestack_noctxtp"".autotmp_0052o"type.interface {}"".autotmp_0051O(type.[1]interface {}"".autotmp_0048/&type.[]interface {}"".autotmp_0046type.int"".autotmp_0045type.int"".errPtype.error"".n@type.int"".datatype.[]uint8 216 "".cw,type.*"".chunkedWriterXG2Y_@T;& R2& &Tgclocalsed1f502ba396b05c804e601800c39690Tgclocalsf67eef10a3bd36095d088336c85ed5dbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go2"".(*chunkedWriter).ClosedH%H;avXH81H\$HH\$PHt$@HH$HNHL$HH\$HD$HL$(HD$0HL$HHD$PH8 221 n"go.string."0\r\n" 222 io.WriteString 223 0runtime.morestack_noctxt0p"".~r0type.error 225 "".cw,type.*"".chunkedWriterpSop p9 226 I'Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go"".parseHexUintdH%H;aH`11H$H$1H$HL$hH|$pH\$xH\$X1H|$PHL$HH9};)HHH<0r/<9w+HH0HH HH$HHH9|H`<ar<fwHHaH 228 H<Ar<FwHHAH 229 HHH\$8HD$@1H\$(H\$0HH$HD$HD$ Hl$@HhHl$8=ukH(HD$ H1H9t&HL$ H$H$H$H`HH$HH\$HH\$HD$H$Hl$HD$ Z 230 Pgo.string."invalid byte in chunk length".type.errors.errorString 231 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error 232 runtime.typ2Itab 233 .runtime.writebarrierptr 234 0runtime.morestack_noctxt`"".autotmp_0065type.error"".autotmp_00620type.*errors.errorString"".autotmp_0057type.uint64"".autotmp_00560type.*errors.errorString"".autotmp_0054/type.[]uint8"".~r0otype.errorerrors.text2Otype.string"".err@type.error"".n0type.uint64"".vtype.[]uint8(XF5+ 237 5Tgclocalsadb3347b296419e60da36d67f8b7ce43Tgclocals1f320f5aea7d1abbf3e088ad94d7417dnprebuilts/go/linux-x86/src/net/http/internal/chunked.go"".initdH%H;aH tuH HH$HD$H\$HH\$=uHH H-H,$H\$C$ 242 4"".initdoneL"".initdonej 243 "runtime.throwinitz"".initdone 244 bufio.init 245 bytes.init 246 fmt.init 247 io.init@go.string."header line too long" 248 errors.New""".ErrLineTooLong6runtime.writeBarrierEnabled""".ErrLineTooLong"".initdone""".ErrLineTooLong 249 .runtime.writebarrierptr 250 0runtime.morestack_noctxt@@?@g?@$ V:4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go6type..hash."".chunkedReaderdH%H;aH H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$t^H$HD$0HD$HD$H\$(H$H<$t,H$ HD$0HD$HD$H\$H\$8H %%%`+ 254 255 ~ 256 runtime.memhash 257 "runtime.interhash 258 runtime.memhash 259 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p,type.*"".chunkedReader@?@3>Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go2type..eq."".chunkedReaderdH%H;aHHHT$PHD$XHH(H9t 263 D$`HHHZHhH9t 264 D$`HHHHHpHBHRH9HD$(H$HT$0HT$HL$8HL$Ht$@Ht$\$ tRHL$PHtCHD$XH Ht0H (@8uYh@8u 265 D$`HHD$`HHD$`HH 266 267 runtime.ifaceeq 268 0runtime.morestack_noctxt0 269 "".autotmp_0068?type.error"".autotmp_0067type.error"".~r2 type.bool"".q,type.*"".chunkedReader"".p,type.*"".chunkedReaderJ Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440nprebuilts/go/linux-x86/src/net/http/internal/chunked.goD"".FlushAfterChunkWriter.AvailablejdH%HY Ht H|$H9;uH#HD$HhHX(H)Hl$ 273 "".~r1type.int""..this:type."".FlushAfterChunkWriter@@@Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>B"".FlushAfterChunkWriter.Buffered`\dH%HY Ht H|$H9;uH#H\$Hk(Hl$ 277 "".~r1type.int""..this:type."".FlushAfterChunkWriter000Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated><"".FlushAfterChunkWriter.FlushdH%H;avMHHY Ht H|$ H9;uH#1H\$(H\$0H\$ H$HL$HD$HL$(HD$0H 281 ~ 282 *bufio.(*Writer).Flush 283 0runtime.morestack_noctxt00"".~r1type.error""..this:type."".FlushAfterChunkWriter0H/0pp 285 >2Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>B"".FlushAfterChunkWriter.ReadFromdH%H;avmH0HY Ht H|$8H9;uH#11H\$XH\$`H\$8H$H\$@H\$H\$HH\$HT$HL$ HD$(HT$PHL$XHD$`H0z 288 289 0bufio.(*Writer).ReadFrom 290 0runtime.morestack_noctxt``bufio.err2@type.errorbufio.n10type.int64bufio.r4type.io.Reader""..this:type."".FlushAfterChunkWriter`h_` 291 292 T<Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated><"".FlushAfterChunkWriter.ResetdH%H;avnH HY Ht H|$(H9;uH#HD$(HT$0HL$81H(HhH@(HT$HP0HL$=u HH8H L@8L$HL$y 295 6runtime.writeBarrierEnabled 296 .runtime.writebarrierptr 297 0runtime.morestack_noctxt0@bufio.w2type.io.Writerbufio.w2type.io.Writer""..this:type."".FlushAfterChunkWriter@U?@' 299 vTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals23e8278e2b69a3a75fa59b23c49ed6ad<autogenerated><"".FlushAfterChunkWriter.WritedH%H;avwH8HY Ht H|$@H9;uH#11H\$hH\$pH\$@H$H\$HH\$H\$PH\$H\$XH\$HT$ HL$(HD$0HT$`HL$hHD$pH8p 302 303 *bufio.(*Writer).Write 304 0runtime.morestack_noctxtppbufio.err2Ptype.errorbufio.nn1@type.intbufio.p4type.[]uint8""..this:type."".FlushAfterChunkWriterprop 305 306 ^2Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>D"".FlushAfterChunkWriter.WriteBytedH%H;avVH HY Ht H|$(H9;uH#1H\$8H\$@H\$(H$\$0\$HL$HD$HL$8HD$@H 309 310 2bufio.(*Writer).WriteByte 311 0runtime.morestack_noctxt@@"".~r2 type.errorbufio.c3type.uint8""..this:type."".FlushAfterChunkWriter@Q?@pp 314 G)Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>D"".FlushAfterChunkWriter.WriteRunedH%H;avaH(HY Ht H|$0H9;uH#11H\$HH\$PH\$0H$\$8\$HT$HL$HD$ HT$@HL$HHD$PH( 317 318 2bufio.(*Writer).WriteRune 319 0runtime.morestack_noctxtPPbufio.err20type.errorbufio.size1 type.intbufio.r4type.int32""..this:type."".FlushAfterChunkWriterP\OP 320 H8Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>H"".FlushAfterChunkWriter.WriteStringdH%H;avkH0HY Ht H|$8H9;uH#1H\$XH\$`H\$8H$H\$@H\$H\$HH\$HT$HL$ HD$(HT$PHL$XHD$`H0| 323 324 6bufio.(*Writer).WriteString 325 0runtime.morestack_noctxt``"".~r3@type.error"".~r20type.intbufio.s4type.string""..this:type."".FlushAfterChunkWriter`f_` 328 R>Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>H"".FlushAfterChunkWriter.bufio.flushdH%H;avMHHY Ht H|$ H9;uH#1H\$(H\$0H\$ H$HL$HD$HL$(HD$0H 331 ~ 332 *bufio.(*Writer).flush 333 0runtime.morestack_noctxt00"".~r1type.error""..this:type."".FlushAfterChunkWriter0H/0pp 335 >2Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>J"".(*FlushAfterChunkWriter).Available@6HD$H\$H+Hl$.2bufio.(*Writer).Available "".~r1type.int""..this<type.*"".FlushAfterChunkWriter Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>H"".(*FlushAfterChunkWriter).Buffered@6HD$H\$H+Hl$.0bufio.(*Writer).Buffered "".~r1type.int""..this<type.*"".FlushAfterChunkWriter Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>B"".(*FlushAfterChunkWriter).Flush@<1H\$H\$H\$H+Hl$4*bufio.(*Writer).Flush0"".~r1type.error""..this<type.*"".FlushAfterChunkWriter Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>H"".(*FlushAfterChunkWriter).ReadFrom`R11H\$(H\$0HD$ H\$H+Hl$J0bufio.(*Writer).ReadFrom`bufio.err2@type.errorbufio.n10type.int64bufio.r4type.io.Reader""..this<type.*"".FlushAfterChunkWriter000Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>B"".(*FlushAfterChunkWriter).Reset@$H\$H+Hl$*bufio.(*Writer).Reset0bufio.w2type.io.Writer""..this<type.*"".FlushAfterChunkWriter Tgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>B"".(*FlushAfterChunkWriter).Write`R11H\$0H\$8HD$(H\$H+Hl$J*bufio.(*Writer).Writepbufio.err2Ptype.errorbufio.nn1@type.intbufio.p4type.[]uint8""..this<type.*"".FlushAfterChunkWriter00"0Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>J"".(*FlushAfterChunkWriter).WriteByte@<1H\$H\$ H\$H+Hl$42bufio.(*Writer).WriteByte@"".~r2 type.errorbufio.c3type.uint8""..this<type.*"".FlushAfterChunkWriter $ Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>J"".(*FlushAfterChunkWriter).WriteRune`R11H\$ H\$(HD$H\$H+Hl$J2bufio.(*Writer).WriteRunePbufio.err20type.errorbufio.size1 type.intbufio.r4type.int32""..this<type.*"".FlushAfterChunkWriter00&0Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>N"".(*FlushAfterChunkWriter).WriteString`NHD$ 1H\$(H\$0H\$H+Hl$F6bufio.(*Writer).WriteString`"".~r3@type.error"".~r20type.intbufio.s4type.string""..this<type.*"".FlushAfterChunkWriter00(0Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>N"".(*FlushAfterChunkWriter).bufio.flush@<1H\$H\$H\$H+Hl$4*bufio.(*Writer).flush0"".~r1type.error""..this<type.*"".FlushAfterChunkWriter * Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4type..hash.[1]interface {}dH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 344 345 (runtime.nilinterhash 346 0runtime.morestack_noctxt0P 347 "".autotmp_0085type.int"".autotmp_0084type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP 349 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/linux-x86/src/net/http/internal/chunked.go0type..eq.[1]interface {}dH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc 352 353 runtime.efaceeq 354 0runtime.morestack_noctxt0"".autotmp_0089?"type.interface {}"".autotmp_0088"type.interface {}"".autotmp_0087_type.int"".autotmp_0086Otype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440nprebuilts/go/linux-x86/src/net/http/internal/chunked.go0Fgo.itab.*"".chunkedReader.io.ReaderTgclocals2340d62dffe482f87f753a0ed0876d38@@Tgclocalsa68b09a48716afad7ca7a02fe6add474@@Tgclocalse8ee48bb5f3220f130a300717899008f Tgclocals51fa0e13d53d6bad7f86670d3edaeac6 Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd340571620>go.itab.*bufio.Reader.io.Reader0Bgo.itab.*errors.errorString.errorTgo.string.hdr."malformed chunked encoding" Lgo.string."malformed chunked encoding"Lgo.string."malformed chunked encoding"@6malformed chunked encodingTgclocals85e68333a83ad454e79af9d0ea5e704600Tgclocalsffe471b206c7569cb0cc60d42e32041c00Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals385909f76d6de739e72f24698b953b71 1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6ad0Pgo.itab.*"".chunkedWriter.io.WriteCloserTgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocalsaefd16b155593f6f07980a05b297ad1f ,go.string.hdr."%x\r\n" $go.string."%x\r\n"$go.string."%x\r\n" 357 %x 358 (go.string.hdr."\r\n" go.string."\r\n" go.string."\r\n" 359 Tgclocalsf67eef10a3bd36095d088336c85ed5db(( p0Tgclocalsed1f502ba396b05c804e601800c39690((*go.string.hdr."0\r\n" "go.string."0\r\n""go.string."0\r\n"0 360 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Xgo.string.hdr."invalid byte in chunk length" Pgo.string."invalid byte in chunk length"Pgo.string."invalid byte in chunk length"@:invalid byte in chunk lengthTgclocals1f320f5aea7d1abbf3e088ad94d7417d((Tgclocalsadb3347b296419e60da36d67f8b7ce43((Hgo.string.hdr."header line too long" @go.string."header line too long"@go.string."header line too long"0*header line too longTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb.""".ErrLineTooLong type.error0"".initdonetype.uint8,"".NewChunkedReaderf&"".NewChunkedReaderB"".(*chunkedReader).beginChunkf<"".(*chunkedReader).beginChunkV"".(*chunkedReader).chunkHeaderAvailablefP"".(*chunkedReader).chunkHeaderAvailable6"".(*chunkedReader).Readf0"".(*chunkedReader).Read"".readLinef"".readLine8"".trimTrailingWhitespacef2"".trimTrailingWhitespace$"".isASCIISpacef"".isASCIISpace,"".NewChunkedWriterf&"".NewChunkedWriter8"".(*chunkedWriter).Writef2"".(*chunkedWriter).Write8"".(*chunkedWriter).Closef2"".(*chunkedWriter).Close$"".parseHexUintf"".parseHexUint"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8runtime.gcbits.0go.string.hdr."[2]uint8" (go.string."[2]uint8"(go.string."[2]uint8" [2]uint8type.[2]uint8F0` runtime.algarray@runtime.gcbits.P0go.string.hdr."[2]uint8"p,go.weak.type.*[2]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[2]uint8 [2]uint8type.[2]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a>type..hashfunc."".chunkedReader6type..hash."".chunkedReader:type..eqfunc."".chunkedReader2type..eq."".chunkedReader4type..alg."".chunkedReader >type..hashfunc."".chunkedReader:type..eqfunc."".chunkedReaderNgo.string.hdr."*internal.chunkedReader" Fgo.string."*internal.chunkedReader"Fgo.string."*internal.chunkedReader"00*internal.chunkedReadergo.string.hdr."func(*internal.chunkedReader, []uint8) (int, error)" 3~go.string."func(*internal.chunkedReader, []uint8) (int, error)"~go.string."func(*internal.chunkedReader, []uint8) (int, error)"phfunc(*internal.chunkedReader, []uint8) (int, error)dtype.func(*"".chunkedReader, []uint8) (int, error)&D30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.chunkedReader, []uint8) (int, error)"pvgo.weak.type.*func(*"".chunkedReader, []uint8) (int, error)"runtime.zerovaluedtype.func(*"".chunkedReader, []uint8) (int, error)dtype.func(*"".chunkedReader, []uint8) (int, error),type.*"".chunkedReadertype.[]uint8type.inttype.errorgo.typelink.func(*internal.chunkedReader, []uint8) (int, error) func(*"".chunkedReader, []uint8) (int, error)dtype.func(*"".chunkedReader, []uint8) (int, error)Zgo.string.hdr."func(*internal.chunkedReader)" Rgo.string."func(*internal.chunkedReader)"Rgo.string."func(*internal.chunkedReader)"@<func(*internal.chunkedReader)8type.func(*"".chunkedReader)b,30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*internal.chunkedReader)"pJgo.weak.type.*func(*"".chunkedReader)"runtime.zerovalue8type.func(*"".chunkedReader)8type.func(*"".chunkedReader),type.*"".chunkedReadergo.typelink.func(*internal.chunkedReader) func(*"".chunkedReader)8type.func(*"".chunkedReader)dgo.string.hdr."func(*internal.chunkedReader) bool" "\go.string."func(*internal.chunkedReader) bool"\go.string."func(*internal.chunkedReader) bool"PFfunc(*internal.chunkedReader) boolBtype.func(*"".chunkedReader) bool'Y30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*internal.chunkedReader) bool"pTgo.weak.type.*func(*"".chunkedReader) bool"runtime.zerovalueBtype.func(*"".chunkedReader) boolBtype.func(*"".chunkedReader) bool,type.*"".chunkedReadertype.boolgo.typelink.func(*internal.chunkedReader) bool func(*"".chunkedReader) boolBtype.func(*"".chunkedReader) bool(go.string.hdr."Read" go.string."Read" go.string."Read" 362 ReadTgo.string.hdr."func([]uint8) (int, error)" Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error) func([]uint8) (int, error)>type.func([]uint8) (int, error)4go.string.hdr."beginChunk" 363 ,go.string."beginChunk",go.string."beginChunk" beginChunkBgo.string.hdr."net/http/internal" :go.string."net/http/internal":go.string."net/http/internal"0$net/http/internal"go.importpath."". :go.string."net/http/internal",go.string.hdr."func()" $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func() func()type.func()Hgo.string.hdr."chunkHeaderAvailable" @go.string."chunkHeaderAvailable"@go.string."chunkHeaderAvailable"0*chunkHeaderAvailable6go.string.hdr."func() bool" .go.string."func() bool".go.string."func() bool" func() bool type.func() boolTx30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() bool"runtime.zerovalue type.func() bool type.func() booltype.boolFgo.typelink.func() bool func() bool type.func() bool,type.*"".chunkedReaderMO620 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."*internal.chunkedReader"p>go.weak.type.**"".chunkedReader"runtime.zerovalue*type."".chunkedReader`,type.*"".chunkedReader,type.*"".chunkedReader(go.string.hdr."Read">type.func([]uint8) (int, error)dtype.func(*"".chunkedReader, []uint8) (int, error)0"".(*chunkedReader).Read0"".(*chunkedReader).Read4go.string.hdr."beginChunk""go.importpath."".type.func()8type.func(*"".chunkedReader)<"".(*chunkedReader).beginChunk<"".(*chunkedReader).beginChunkHgo.string.hdr."chunkHeaderAvailable""go.importpath."". type.func() boolBtype.func(*"".chunkedReader) boolP"".(*chunkedReader).chunkHeaderAvailableP"".(*chunkedReader).chunkHeaderAvailable"runtime.gcbits.0d Lgo.string.hdr."internal.chunkedReader" Dgo.string."internal.chunkedReader"Dgo.string."internal.chunkedReader"0.internal.chunkedReader"go.string.hdr."r" go.string."r"go.string."r"r"go.string.hdr."n" go.string."n"go.string."n"n&go.string.hdr."err" go.string."err"go.string."err"err&go.string.hdr."buf" go.string."buf"go.string."buf"buf:go.string.hdr."chunkedReader" 2go.string."chunkedReader"2go.string."chunkedReader" chunkedReader*type."".chunkedReader( 6 ,04type..alg."".chunkedReader@"runtime.gcbits.0dPLgo.string.hdr."internal.chunkedReader"p,type.*"".chunkedReader"runtime.zerovalue*type."".chunkedReader"go.string.hdr."r""go.importpath."".$type.*bufio.Reader"go.string.hdr."n""go.importpath."".type.uint64&go.string.hdr."err""go.importpath."".type.error&go.string.hdr."buf""go.importpath."".type.[2]uint8`*type."".chunkedReader:go.string.hdr."chunkedReader""go.importpath."".*type."".chunkedReaderNgo.string.hdr."*internal.chunkedWriter" Fgo.string."*internal.chunkedWriter"Fgo.string."*internal.chunkedWriter"00*internal.chunkedWriterfgo.string.hdr."func(*internal.chunkedWriter) error" #^go.string."func(*internal.chunkedWriter) error"^go.string."func(*internal.chunkedWriter) error"PHfunc(*internal.chunkedWriter) errorDtype.func(*"".chunkedWriter) errorF30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*internal.chunkedWriter) error"pVgo.weak.type.*func(*"".chunkedWriter) error"runtime.zerovalueDtype.func(*"".chunkedWriter) errorDtype.func(*"".chunkedWriter) error,type.*"".chunkedWritertype.errorgo.typelink.func(*internal.chunkedWriter) error func(*"".chunkedWriter) errorDtype.func(*"".chunkedWriter) errorgo.string.hdr."func(*internal.chunkedWriter, []uint8) (int, error)" 3~go.string."func(*internal.chunkedWriter, []uint8) (int, error)"~go.string."func(*internal.chunkedWriter, []uint8) (int, error)"phfunc(*internal.chunkedWriter, []uint8) (int, error)dtype.func(*"".chunkedWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.chunkedWriter, []uint8) (int, error)"pvgo.weak.type.*func(*"".chunkedWriter, []uint8) (int, error)"runtime.zerovaluedtype.func(*"".chunkedWriter, []uint8) (int, error)dtype.func(*"".chunkedWriter, []uint8) (int, error),type.*"".chunkedWritertype.[]uint8type.inttype.errorgo.typelink.func(*internal.chunkedWriter, []uint8) (int, error) func(*"".chunkedWriter, []uint8) (int, error)dtype.func(*"".chunkedWriter, []uint8) (int, error)*go.string.hdr."Close" "go.string."Close""go.string."Close"Close8go.string.hdr."func() error" 0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error func() error"type.func() error*go.string.hdr."Write" "go.string."Write""go.string."Write"Write,type.*"".chunkedWriter9 Z6$0 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."*internal.chunkedWriter"p>go.weak.type.**"".chunkedWriter"runtime.zerovalue*type."".chunkedWriter`,type.*"".chunkedWriter,type.*"".chunkedWriter*go.string.hdr."Close""type.func() errorDtype.func(*"".chunkedWriter) error2"".(*chunkedWriter).Close2"".(*chunkedWriter).Close*go.string.hdr."Write">type.func([]uint8) (int, error)dtype.func(*"".chunkedWriter, []uint8) (int, error)2"".(*chunkedWriter).Write2"".(*chunkedWriter).Write"runtime.gcbits.03Lgo.string.hdr."internal.chunkedWriter" Dgo.string."internal.chunkedWriter"Dgo.string."internal.chunkedWriter"0.internal.chunkedWriter(go.string.hdr."Wire" go.string."Wire" go.string."Wire" 370 Wire:go.string.hdr."chunkedWriter" 2go.string."chunkedWriter"2go.string."chunkedWriter" chunkedWriter*type."".chunkedWriter;7C0 runtime.algarray@"runtime.gcbits.03PLgo.string.hdr."internal.chunkedWriter"p,type.*"".chunkedWriter"runtime.zerovalue*type."".chunkedWriter(go.string.hdr."Wire"type.io.Writer`*type."".chunkedWriter:go.string.hdr."chunkedWriter""go.importpath."".*type."".chunkedWriter\go.string.hdr."internal.FlushAfterChunkWriter" Tgo.string."internal.FlushAfterChunkWriter"Tgo.string."internal.FlushAfterChunkWriter"@>internal.FlushAfterChunkWriterTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13a990b4a341857296a1c12de153dcaaTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2pgo.string.hdr."func(internal.FlushAfterChunkWriter) int" (hgo.string."func(internal.FlushAfterChunkWriter) int"hgo.string."func(internal.FlushAfterChunkWriter) int"`Rfunc(internal.FlushAfterChunkWriter) intNtype.func("".FlushAfterChunkWriter) int-30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(internal.FlushAfterChunkWriter) int"p`go.weak.type.*func("".FlushAfterChunkWriter) int"runtime.zerovalueNtype.func("".FlushAfterChunkWriter) intNtype.func("".FlushAfterChunkWriter) int:type."".FlushAfterChunkWritertype.intgo.typelink.func(internal.FlushAfterChunkWriter) int func("".FlushAfterChunkWriter) intNtype.func("".FlushAfterChunkWriter) inttgo.string.hdr."func(internal.FlushAfterChunkWriter) error" *lgo.string."func(internal.FlushAfterChunkWriter) error"lgo.string."func(internal.FlushAfterChunkWriter) error"`Vfunc(internal.FlushAfterChunkWriter) errorRtype.func("".FlushAfterChunkWriter) errorE~530 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(internal.FlushAfterChunkWriter) error"pdgo.weak.type.*func("".FlushAfterChunkWriter) error"runtime.zerovalueRtype.func("".FlushAfterChunkWriter) errorRtype.func("".FlushAfterChunkWriter) error:type."".FlushAfterChunkWritertype.errorgo.typelink.func(internal.FlushAfterChunkWriter) error func("".FlushAfterChunkWriter) errorRtype.func("".FlushAfterChunkWriter) errorgo.string.hdr."func(internal.FlushAfterChunkWriter, io.Reader) (int64, error)" >go.string."func(internal.FlushAfterChunkWriter, io.Reader) (int64, error)"go.string."func(internal.FlushAfterChunkWriter, io.Reader) (int64, error)"~func(internal.FlushAfterChunkWriter, io.Reader) (int64, error)ztype.func("".FlushAfterChunkWriter, io.Reader) (int64, error)n930 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(internal.FlushAfterChunkWriter, io.Reader) (int64, error)"pgo.weak.type.*func("".FlushAfterChunkWriter, io.Reader) (int64, error)"runtime.zerovalueztype.func("".FlushAfterChunkWriter, io.Reader) (int64, error)ztype.func("".FlushAfterChunkWriter, io.Reader) (int64, error):type."".FlushAfterChunkWritertype.io.Readertype.int64type.errorgo.typelink.func(internal.FlushAfterChunkWriter, io.Reader) (int64, error) func("".FlushAfterChunkWriter, io.Reader) (int64, error)ztype.func("".FlushAfterChunkWriter, io.Reader) (int64, error)~go.string.hdr."func(internal.FlushAfterChunkWriter, io.Writer)" /vgo.string."func(internal.FlushAfterChunkWriter, io.Writer)"vgo.string."func(internal.FlushAfterChunkWriter, io.Writer)"``func(internal.FlushAfterChunkWriter, io.Writer)\type.func("".FlushAfterChunkWriter, io.Writer)530 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(internal.FlushAfterChunkWriter, io.Writer)"pngo.weak.type.*func("".FlushAfterChunkWriter, io.Writer)"runtime.zerovalue\type.func("".FlushAfterChunkWriter, io.Writer)\type.func("".FlushAfterChunkWriter, io.Writer):type."".FlushAfterChunkWritertype.io.Writergo.typelink.func(internal.FlushAfterChunkWriter, io.Writer) func("".FlushAfterChunkWriter, io.Writer)\type.func("".FlushAfterChunkWriter, io.Writer)go.string.hdr."func(internal.FlushAfterChunkWriter, []uint8) (int, error)" :go.string."func(internal.FlushAfterChunkWriter, []uint8) (int, error)"go.string."func(internal.FlushAfterChunkWriter, []uint8) (int, error)"vfunc(internal.FlushAfterChunkWriter, []uint8) (int, error)rtype.func("".FlushAfterChunkWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(internal.FlushAfterChunkWriter, []uint8) (int, error)"pgo.weak.type.*func("".FlushAfterChunkWriter, []uint8) (int, error)"runtime.zerovaluertype.func("".FlushAfterChunkWriter, []uint8) (int, error)rtype.func("".FlushAfterChunkWriter, []uint8) (int, error):type."".FlushAfterChunkWritertype.[]uint8type.inttype.errorgo.typelink.func(internal.FlushAfterChunkWriter, []uint8) (int, error) func("".FlushAfterChunkWriter, []uint8) (int, error)rtype.func("".FlushAfterChunkWriter, []uint8) (int, error)go.string.hdr."func(internal.FlushAfterChunkWriter, uint8) error" 1zgo.string."func(internal.FlushAfterChunkWriter, uint8) error"zgo.string."func(internal.FlushAfterChunkWriter, uint8) error"pdfunc(internal.FlushAfterChunkWriter, uint8) error`type.func("".FlushAfterChunkWriter, uint8) error%G530 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(internal.FlushAfterChunkWriter, uint8) error"prgo.weak.type.*func("".FlushAfterChunkWriter, uint8) error"runtime.zerovalue`type.func("".FlushAfterChunkWriter, uint8) error`type.func("".FlushAfterChunkWriter, uint8) error:type."".FlushAfterChunkWritertype.uint8type.errorgo.typelink.func(internal.FlushAfterChunkWriter, uint8) error func("".FlushAfterChunkWriter, uint8) error`type.func("".FlushAfterChunkWriter, uint8) errorgo.string.hdr."func(internal.FlushAfterChunkWriter, int32) (int, error)" 8go.string."func(internal.FlushAfterChunkWriter, int32) (int, error)"go.string."func(internal.FlushAfterChunkWriter, int32) (int, error)"rfunc(internal.FlushAfterChunkWriter, int32) (int, error)ntype.func("".FlushAfterChunkWriter, int32) (int, error)W30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(internal.FlushAfterChunkWriter, int32) (int, error)"pgo.weak.type.*func("".FlushAfterChunkWriter, int32) (int, error)"runtime.zerovaluentype.func("".FlushAfterChunkWriter, int32) (int, error)ntype.func("".FlushAfterChunkWriter, int32) (int, error):type."".FlushAfterChunkWritertype.int32type.inttype.errorgo.typelink.func(internal.FlushAfterChunkWriter, int32) (int, error) func("".FlushAfterChunkWriter, int32) (int, error)ntype.func("".FlushAfterChunkWriter, int32) (int, error)go.string.hdr."func(internal.FlushAfterChunkWriter, string) (int, error)" 9go.string."func(internal.FlushAfterChunkWriter, string) (int, error)"go.string."func(internal.FlushAfterChunkWriter, string) (int, error)"tfunc(internal.FlushAfterChunkWriter, string) (int, error)ptype.func("".FlushAfterChunkWriter, string) (int, error)P30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(internal.FlushAfterChunkWriter, string) (int, error)"pgo.weak.type.*func("".FlushAfterChunkWriter, string) (int, error)"runtime.zerovalueptype.func("".FlushAfterChunkWriter, string) (int, error)ptype.func("".FlushAfterChunkWriter, string) (int, error):type."".FlushAfterChunkWritertype.stringtype.inttype.errorgo.typelink.func(internal.FlushAfterChunkWriter, string) (int, error) func("".FlushAfterChunkWriter, string) (int, error)ptype.func("".FlushAfterChunkWriter, string) (int, error)Jgo.string.hdr."FlushAfterChunkWriter" Bgo.string."FlushAfterChunkWriter"Bgo.string."FlushAfterChunkWriter"0,FlushAfterChunkWriter2go.string.hdr."Available" *go.string."Available"*go.string."Available" Available4go.string.hdr."func() int" 372 ,go.string."func() int",go.string."func() int" func() inttype.func() int930 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."func() int"p0go.weak.type.*func() int"runtime.zerovaluetype.func() inttype.func() inttype.intBgo.typelink.func() int func() inttype.func() int0go.string.hdr."Buffered" (go.string."Buffered"(go.string."Buffered" Buffered*go.string.hdr."Flush" "go.string."Flush""go.string."Flush"Flush0go.string.hdr."ReadFrom" (go.string."ReadFrom"(go.string."ReadFrom" ReadFrom\go.string.hdr."func(io.Reader) (int64, error)" Tgo.string."func(io.Reader) (int64, error)"Tgo.string."func(io.Reader) (int64, error)"@>func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)Y30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Reader) (int64, error)"pXgo.weak.type.*func(io.Reader) (int64, error)"runtime.zerovalueFtype.func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)type.io.Readertype.int64type.errorgo.typelink.func(io.Reader) (int64, error) func(io.Reader) (int64, error)Ftype.func(io.Reader) (int64, error)*go.string.hdr."Reset" "go.string."Reset""go.string."Reset"Reset>go.string.hdr."func(io.Writer)" 6go.string."func(io.Writer)"6go.string."func(io.Writer)" func(io.Writer)(type.func(io.Writer)Z[30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(io.Writer)"p:go.weak.type.*func(io.Writer)"runtime.zerovalue(type.func(io.Writer)(type.func(io.Writer)type.io.WriterVgo.typelink.func(io.Writer) func(io.Writer)(type.func(io.Writer)2go.string.hdr."WriteByte" *go.string."WriteByte"*go.string."WriteByte" WriteByteBgo.string.hdr."func(uint8) error" :go.string."func(uint8) error":go.string."func(uint8) error"0$func(uint8) error,type.func(uint8) errorIX30 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."func(uint8) error"p>go.weak.type.*func(uint8) error"runtime.zerovalue,type.func(uint8) error,type.func(uint8) errortype.uint8type.error^go.typelink.func(uint8) error func(uint8) error,type.func(uint8) error2go.string.hdr."WriteRune" *go.string."WriteRune"*go.string."WriteRune" WriteRunePgo.string.hdr."func(int32) (int, error)" Hgo.string."func(int32) (int, error)"Hgo.string."func(int32) (int, error)"@2func(int32) (int, error):type.func(int32) (int, error)30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(int32) (int, error)"pLgo.weak.type.*func(int32) (int, error)"runtime.zerovalue:type.func(int32) (int, error):type.func(int32) (int, error)type.int32type.inttype.errorzgo.typelink.func(int32) (int, error) func(int32) (int, error):type.func(int32) (int, error)6go.string.hdr."WriteString" .go.string."WriteString".go.string."WriteString" WriteStringRgo.string.hdr."func(string) (int, error)" Jgo.string."func(string) (int, error)"Jgo.string."func(string) (int, error)"@4func(string) (int, error)<type.func(string) (int, error)G30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(string) (int, error)"pNgo.weak.type.*func(string) (int, error)"runtime.zerovalue<type.func(string) (int, error)<type.func(string) (int, error)type.stringtype.inttype.error~go.typelink.func(string) (int, error) func(string) (int, error)<type.func(string) (int, error)*go.string.hdr."flush" "go.string."flush""go.string."flush"flush*go.string.hdr."bufio" "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio. "go.string."bufio":type."".FlushAfterChunkWriter 378 379 )59 380 381 |0 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."internal.FlushAfterChunkWriter"p<type.*"".FlushAfterChunkWriter"runtime.zerovalue:type."".FlushAfterChunkWriter$type.*bufio.Writer`:type."".FlushAfterChunkWriterJgo.string.hdr."FlushAfterChunkWriter""go.importpath."".:type."".FlushAfterChunkWriter2go.string.hdr."Available"type.func() intNtype.func("".FlushAfterChunkWriter) intD"".FlushAfterChunkWriter.AvailableD"".FlushAfterChunkWriter.Available0go.string.hdr."Buffered"type.func() intNtype.func("".FlushAfterChunkWriter) intB"".FlushAfterChunkWriter.BufferedB"".FlushAfterChunkWriter.Buffered*go.string.hdr."Flush""type.func() errorRtype.func("".FlushAfterChunkWriter) error<"".FlushAfterChunkWriter.Flush<"".FlushAfterChunkWriter.Flush0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)ztype.func("".FlushAfterChunkWriter, io.Reader) (int64, error)B"".FlushAfterChunkWriter.ReadFromB"".FlushAfterChunkWriter.ReadFrom*go.string.hdr."Reset"(type.func(io.Writer)\type.func("".FlushAfterChunkWriter, io.Writer)<"".FlushAfterChunkWriter.Reset<"".FlushAfterChunkWriter.Reset*go.string.hdr."Write">type.func([]uint8) (int, error)rtype.func("".FlushAfterChunkWriter, []uint8) (int, error)<"".FlushAfterChunkWriter.Write<"".FlushAfterChunkWriter.Write2go.string.hdr."WriteByte",type.func(uint8) error`type.func("".FlushAfterChunkWriter, uint8) errorD"".FlushAfterChunkWriter.WriteByteD"".FlushAfterChunkWriter.WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)ntype.func("".FlushAfterChunkWriter, int32) (int, error)D"".FlushAfterChunkWriter.WriteRuneD"".FlushAfterChunkWriter.WriteRune6go.string.hdr."WriteString" <type.func(string) (int, error) ptype.func("".FlushAfterChunkWriter, string) (int, error) H"".FlushAfterChunkWriter.WriteString H"".FlushAfterChunkWriter.WriteString *go.string.hdr."flush" (go.importpath.bufio. "type.func() error Rtype.func("".FlushAfterChunkWriter) error 382 H"".FlushAfterChunkWriter.bufio.flush 383 H"".FlushAfterChunkWriter.bufio.flush^go.string.hdr."*internal.FlushAfterChunkWriter" Vgo.string."*internal.FlushAfterChunkWriter"Vgo.string."*internal.FlushAfterChunkWriter"@@*internal.FlushAfterChunkWriterTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2rgo.string.hdr."func(*internal.FlushAfterChunkWriter) int" )jgo.string."func(*internal.FlushAfterChunkWriter) int"jgo.string."func(*internal.FlushAfterChunkWriter) int"`Tfunc(*internal.FlushAfterChunkWriter) intPtype.func(*"".FlushAfterChunkWriter) intj30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*internal.FlushAfterChunkWriter) int"pbgo.weak.type.*func(*"".FlushAfterChunkWriter) int"runtime.zerovaluePtype.func(*"".FlushAfterChunkWriter) intPtype.func(*"".FlushAfterChunkWriter) int<type.*"".FlushAfterChunkWritertype.intgo.typelink.func(*internal.FlushAfterChunkWriter) int func(*"".FlushAfterChunkWriter) intPtype.func(*"".FlushAfterChunkWriter) intvgo.string.hdr."func(*internal.FlushAfterChunkWriter) error" +ngo.string."func(*internal.FlushAfterChunkWriter) error"ngo.string."func(*internal.FlushAfterChunkWriter) error"`Xfunc(*internal.FlushAfterChunkWriter) errorTtype.func(*"".FlushAfterChunkWriter) error$30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*internal.FlushAfterChunkWriter) error"pfgo.weak.type.*func(*"".FlushAfterChunkWriter) error"runtime.zerovalueTtype.func(*"".FlushAfterChunkWriter) errorTtype.func(*"".FlushAfterChunkWriter) error<type.*"".FlushAfterChunkWritertype.errorgo.typelink.func(*internal.FlushAfterChunkWriter) error func(*"".FlushAfterChunkWriter) errorTtype.func(*"".FlushAfterChunkWriter) errorgo.string.hdr."func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error)" ?go.string."func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error)"go.string."func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error)"func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error)|type.func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error)"pgo.weak.type.*func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)"runtime.zerovalue|type.func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)|type.func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)<type.*"".FlushAfterChunkWritertype.io.Readertype.int64type.errorgo.typelink.func(*internal.FlushAfterChunkWriter, io.Reader) (int64, error) func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)|type.func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)go.string.hdr."func(*internal.FlushAfterChunkWriter, io.Writer)" 0xgo.string."func(*internal.FlushAfterChunkWriter, io.Writer)"xgo.string."func(*internal.FlushAfterChunkWriter, io.Writer)"pbfunc(*internal.FlushAfterChunkWriter, io.Writer)^type.func(*"".FlushAfterChunkWriter, io.Writer)-30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, io.Writer)"ppgo.weak.type.*func(*"".FlushAfterChunkWriter, io.Writer)"runtime.zerovalue^type.func(*"".FlushAfterChunkWriter, io.Writer)^type.func(*"".FlushAfterChunkWriter, io.Writer)<type.*"".FlushAfterChunkWritertype.io.Writergo.typelink.func(*internal.FlushAfterChunkWriter, io.Writer) func(*"".FlushAfterChunkWriter, io.Writer)^type.func(*"".FlushAfterChunkWriter, io.Writer)go.string.hdr."func(*internal.FlushAfterChunkWriter, []uint8) (int, error)" ;go.string."func(*internal.FlushAfterChunkWriter, []uint8) (int, error)"go.string."func(*internal.FlushAfterChunkWriter, []uint8) (int, error)"xfunc(*internal.FlushAfterChunkWriter, []uint8) (int, error)ttype.func(*"".FlushAfterChunkWriter, []uint8) (int, error)Q30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, []uint8) (int, error)"pgo.weak.type.*func(*"".FlushAfterChunkWriter, []uint8) (int, error)"runtime.zerovaluettype.func(*"".FlushAfterChunkWriter, []uint8) (int, error)ttype.func(*"".FlushAfterChunkWriter, []uint8) (int, error)<type.*"".FlushAfterChunkWritertype.[]uint8type.inttype.errorgo.typelink.func(*internal.FlushAfterChunkWriter, []uint8) (int, error) func(*"".FlushAfterChunkWriter, []uint8) (int, error)ttype.func(*"".FlushAfterChunkWriter, []uint8) (int, error)go.string.hdr."func(*internal.FlushAfterChunkWriter, uint8) error" 2|go.string."func(*internal.FlushAfterChunkWriter, uint8) error"|go.string."func(*internal.FlushAfterChunkWriter, uint8) error"pffunc(*internal.FlushAfterChunkWriter, uint8) errorbtype.func(*"".FlushAfterChunkWriter, uint8) error"@f 30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, uint8) error"ptgo.weak.type.*func(*"".FlushAfterChunkWriter, uint8) error"runtime.zerovaluebtype.func(*"".FlushAfterChunkWriter, uint8) errorbtype.func(*"".FlushAfterChunkWriter, uint8) error<type.*"".FlushAfterChunkWritertype.uint8type.errorgo.typelink.func(*internal.FlushAfterChunkWriter, uint8) error func(*"".FlushAfterChunkWriter, uint8) errorbtype.func(*"".FlushAfterChunkWriter, uint8) errorgo.string.hdr."func(*internal.FlushAfterChunkWriter, int32) (int, error)" 9go.string."func(*internal.FlushAfterChunkWriter, int32) (int, error)"go.string."func(*internal.FlushAfterChunkWriter, int32) (int, error)"tfunc(*internal.FlushAfterChunkWriter, int32) (int, error)ptype.func(*"".FlushAfterChunkWriter, int32) (int, error)p:30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, int32) (int, error)"pgo.weak.type.*func(*"".FlushAfterChunkWriter, int32) (int, error)"runtime.zerovalueptype.func(*"".FlushAfterChunkWriter, int32) (int, error)ptype.func(*"".FlushAfterChunkWriter, int32) (int, error)<type.*"".FlushAfterChunkWritertype.int32type.inttype.errorgo.typelink.func(*internal.FlushAfterChunkWriter, int32) (int, error) func(*"".FlushAfterChunkWriter, int32) (int, error)ptype.func(*"".FlushAfterChunkWriter, int32) (int, error)go.string.hdr."func(*internal.FlushAfterChunkWriter, string) (int, error)" :go.string."func(*internal.FlushAfterChunkWriter, string) (int, error)"go.string."func(*internal.FlushAfterChunkWriter, string) (int, error)"vfunc(*internal.FlushAfterChunkWriter, string) (int, error)rtype.func(*"".FlushAfterChunkWriter, string) (int, error)\%30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*internal.FlushAfterChunkWriter, string) (int, error)"pgo.weak.type.*func(*"".FlushAfterChunkWriter, string) (int, error)"runtime.zerovaluertype.func(*"".FlushAfterChunkWriter, string) (int, error)rtype.func(*"".FlushAfterChunkWriter, string) (int, error)<type.*"".FlushAfterChunkWritertype.stringtype.inttype.errorgo.typelink.func(*internal.FlushAfterChunkWriter, string) (int, error) func(*"".FlushAfterChunkWriter, string) (int, error)rtype.func(*"".FlushAfterChunkWriter, string) (int, error)<type.*"".FlushAfterChunkWriter )6 384 385 v0 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."*internal.FlushAfterChunkWriter"pNgo.weak.type.**"".FlushAfterChunkWriter"runtime.zerovalue:type."".FlushAfterChunkWriter`<type.*"".FlushAfterChunkWriter<type.*"".FlushAfterChunkWriter2go.string.hdr."Available"type.func() intPtype.func(*"".FlushAfterChunkWriter) intJ"".(*FlushAfterChunkWriter).AvailableJ"".(*FlushAfterChunkWriter).Available0go.string.hdr."Buffered"type.func() intPtype.func(*"".FlushAfterChunkWriter) intH"".(*FlushAfterChunkWriter).BufferedH"".(*FlushAfterChunkWriter).Buffered*go.string.hdr."Flush""type.func() errorTtype.func(*"".FlushAfterChunkWriter) errorB"".(*FlushAfterChunkWriter).FlushB"".(*FlushAfterChunkWriter).Flush0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)|type.func(*"".FlushAfterChunkWriter, io.Reader) (int64, error)H"".(*FlushAfterChunkWriter).ReadFromH"".(*FlushAfterChunkWriter).ReadFrom*go.string.hdr."Reset"(type.func(io.Writer)^type.func(*"".FlushAfterChunkWriter, io.Writer)B"".(*FlushAfterChunkWriter).ResetB"".(*FlushAfterChunkWriter).Reset*go.string.hdr."Write">type.func([]uint8) (int, error)ttype.func(*"".FlushAfterChunkWriter, []uint8) (int, error)B"".(*FlushAfterChunkWriter).WriteB"".(*FlushAfterChunkWriter).Write2go.string.hdr."WriteByte",type.func(uint8) errorbtype.func(*"".FlushAfterChunkWriter, uint8) errorJ"".(*FlushAfterChunkWriter).WriteByteJ"".(*FlushAfterChunkWriter).WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)ptype.func(*"".FlushAfterChunkWriter, int32) (int, error)J"".(*FlushAfterChunkWriter).WriteRuneJ"".(*FlushAfterChunkWriter).WriteRune6go.string.hdr."WriteString"<type.func(string) (int, error)rtype.func(*"".FlushAfterChunkWriter, string) (int, error)N"".(*FlushAfterChunkWriter).WriteStringN"".(*FlushAfterChunkWriter).WriteString*go.string.hdr."flush"(go.importpath.bufio."type.func() error Ttype.func(*"".FlushAfterChunkWriter) error N"".(*FlushAfterChunkWriter).bufio.flush N"".(*FlushAfterChunkWriter).bufio.flush8go.string.hdr."interface {}" 0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}" 4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {} []interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[1]interface {}4type..hash.[1]interface {}8type..eqfunc.[1]interface {}0type..eq.[1]interface {}2type..alg.[1]interface {} <type..hashfunc.[1]interface {}8type..eqfunc.[1]interface {}>go.string.hdr."[1]interface {}" 6go.string."[1]interface {}"6go.string."[1]interface {}" [1]interface {}(type.[1]interface {}P[02type..alg.[1]interface {}@"runtime.gcbits.03P>go.string.hdr."[1]interface {}"p:go.weak.type.*[1]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[1]interface {} [1]interface {}(type.[1]interface {}@go.string.hdr."*[1]interface {}" 8go.string."*[1]interface {}"8go.string."*[1]interface {}"0"*[1]interface {}*type.*[1]interface {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {}2go.string.hdr."*[2]uint8" *go.string."*[2]uint8"*go.string."*[2]uint8" *[2]uint8type.*[2]uint860 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."*[2]uint8"p.go.weak.type.**[2]uint8"runtime.zerovaluetype.[2]uint8.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bytes" "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes. "go.string."bytes",go.string.hdr."errors" $go.string."errors"$go.string."errors"errors*go.importpath.errors. $go.string."errors"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt"<type..hash."".chunkedReaderf6type..hash."".chunkedReader8type..eq."".chunkedReaderf2type..eq."".chunkedReaderJ"".FlushAfterChunkWriter.AvailablefD"".FlushAfterChunkWriter.AvailableH"".FlushAfterChunkWriter.BufferedfB"".FlushAfterChunkWriter.BufferedB"".FlushAfterChunkWriter.Flushf<"".FlushAfterChunkWriter.FlushH"".FlushAfterChunkWriter.ReadFromfB"".FlushAfterChunkWriter.ReadFromB"".FlushAfterChunkWriter.Resetf<"".FlushAfterChunkWriter.ResetB"".FlushAfterChunkWriter.Writef<"".FlushAfterChunkWriter.WriteJ"".FlushAfterChunkWriter.WriteBytefD"".FlushAfterChunkWriter.WriteByteJ"".FlushAfterChunkWriter.WriteRunefD"".FlushAfterChunkWriter.WriteRuneN"".FlushAfterChunkWriter.WriteStringfH"".FlushAfterChunkWriter.WriteStringN"".FlushAfterChunkWriter.bufio.flushfH"".FlushAfterChunkWriter.bufio.flushP"".(*FlushAfterChunkWriter).AvailablefJ"".(*FlushAfterChunkWriter).AvailableN"".(*FlushAfterChunkWriter).BufferedfH"".(*FlushAfterChunkWriter).BufferedH"".(*FlushAfterChunkWriter).FlushfB"".(*FlushAfterChunkWriter).FlushN"".(*FlushAfterChunkWriter).ReadFromfH"".(*FlushAfterChunkWriter).ReadFromH"".(*FlushAfterChunkWriter).ResetfB"".(*FlushAfterChunkWriter).ResetH"".(*FlushAfterChunkWriter).WritefB"".(*FlushAfterChunkWriter).WriteP"".(*FlushAfterChunkWriter).WriteBytefJ"".(*FlushAfterChunkWriter).WriteByteP"".(*FlushAfterChunkWriter).WriteRunefJ"".(*FlushAfterChunkWriter).WriteRuneT"".(*FlushAfterChunkWriter).WriteStringfN"".(*FlushAfterChunkWriter).WriteStringT"".(*FlushAfterChunkWriter).bufio.flushfN"".(*FlushAfterChunkWriter).bufio.flush:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}"runtime.zerovaluego13ld