Home | History | Annotate | Download | only in darwin_amd64
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     7751      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "9b1052dd6b4066446cc5238a38e8c0ab3b33e0b8"
      5 
      6 $$
      7 package bufio
      8 	import runtime "runtime"
      9 	import bytes "bytes"
     10 	import errors "errors"
     11 	import io "io"
     12 	import utf8 "unicode/utf8"
     13 	var @"".ErrInvalidUnreadByte error
     14 	var @"".ErrInvalidUnreadRune error
     15 	var @"".ErrBufferFull error
     16 	var @"".ErrNegativeCount error
     17 	type @"io".Reader interface { Read(@"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 	type @"".Reader struct { @"".buf []byte; @"".rd @"io".Reader; @"".r int; @"".w int; @"".err error; @"".lastByte int; @"".lastRuneSize int }
     20 	func (@"".b2 *@"".Reader "esc:0x1") Buffered () (? int) { return @"".b2.@"".w - @"".b2.@"".r }
     21 	func (@"".b3 *@"".Reader "esc:0x10a") Discard (@"".n4 int) (@"".discarded1 int, @"".err2 error)
     22 	func (@"".b3 *@"".Reader "esc:0x12a") Peek (@"".n4 int) (? []byte, ? error)
     23 	func (@"".b3 *@"".Reader "esc:0x10a") Read (@"".p4 []byte) (@"".n1 int, @"".err2 error)
     24 	func (@"".b3 *@"".Reader "esc:0x10a") ReadByte () (@"".c1 byte, @"".err2 error)
     25 	func (@"".b3 *@"".Reader "esc:0x10a") ReadBytes (@"".delim4 byte) (@"".line1 []byte, @"".err2 error)
     26 	func (@"".b4 *@"".Reader "esc:0x82a") ReadLine () (@"".line1 []byte, @"".isPrefix2 bool, @"".err3 error)
     27 	func (@"".b4 *@"".Reader "esc:0x80a") ReadRune () (@"".r1 rune, @"".size2 int, @"".err3 error)
     28 	func (@"".b3 *@"".Reader "esc:0x12a") ReadSlice (@"".delim4 byte) (@"".line1 []byte, @"".err2 error)
     29 	func (@"".b3 *@"".Reader "esc:0x10a") ReadString (@"".delim4 byte) (@"".line1 string, @"".err2 error)
     30 	func (@"".b1 *@"".Reader "esc:0x9") Reset (@"".r2 @"io".Reader) { @"".b1.@"".reset(@"".b1.@"".buf, @"".r2) }
     31 	func (@"".b2 *@"".Reader "esc:0x1") UnreadByte () (? error) { if @"".b2.@"".lastByte < 0x0 || @"".b2.@"".r == 0x0 && @"".b2.@"".w > 0x0 { return @"".ErrInvalidUnreadByte }; if @"".b2.@"".r > 0x0 { @"".b2.@"".r-- } else { @"".b2.@"".w = 0x1 }; @"".b2.@"".buf[@"".b2.@"".r] = byte(@"".b2.@"".lastByte); @"".b2.@"".lastByte = -0x1; @"".b2.@"".lastRuneSize = -0x1; return nil }
     32 	func (@"".b2 *@"".Reader "esc:0x1") UnreadRune () (? error) { if @"".b2.@"".lastRuneSize < 0x0 || @"".b2.@"".r < @"".b2.@"".lastRuneSize { return @"".ErrInvalidUnreadRune }; @"".b2.@"".r -= @"".b2.@"".lastRuneSize; @"".b2.@"".lastByte = -0x1; @"".b2.@"".lastRuneSize = -0x1; return nil }
     33 	func (@"".b3 *@"".Reader "esc:0x10a") WriteTo (@"".w4 @"io".Writer) (@"".n1 int64, @"".err2 error)
     34 	func (@"".b1 *@"".Reader "esc:0x9") @"".fill ()
     35 	func (@"".b2 *@"".Reader "esc:0x22") @"".readErr () (? error) {  var @"".err3 error; @"".err3 = @"".b2.@"".err; @"".b2.@"".err = nil; return @"".err3 }
     36 	func (@"".b1 *@"".Reader "esc:0x1") @"".reset (@"".buf2 []byte, @"".r3 @"io".Reader) { *@"".b1 = (@"".Reader{ @"".buf:@"".buf2, @"".rd:@"".r3, @"".lastByte:-0x1, @"".lastRuneSize:-0x1 }) }
     37 	func (@"".b3 *@"".Reader "esc:0x9") @"".writeBuf (@"".w4 @"io".Writer) (? int64, ? error)
     38 	func @"".NewReaderSize (@"".rd2 @"io".Reader, @"".size3 int) (? *@"".Reader) {  var @"".b4 *@"".Reader; var @"".ok5 bool; @"".b4, @"".ok5 = @"".rd2.(*@"".Reader); if @"".ok5 && len(@"".b4.@"".buf) >= @"".size3 { return @"".b4 }; if @"".size3 < 0x10 { @"".size3 = 0x10 };  var @"".r6 *@"".Reader; @"".r6 = new(@"".Reader); @"".r6.@"".reset(make([]byte, @"".size3), @"".rd2); return @"".r6 }
     39 	func @"".NewReader (@"".rd2 @"io".Reader) (? *@"".Reader) { return @"".NewReaderSize(@"".rd2, 0x1000) }
     40 	type @"".Writer struct { @"".err error; @"".buf []byte; @"".n int; @"".wr @"io".Writer }
     41 	func (@"".b2 *@"".Writer "esc:0x1") Available () (? int) { return len(@"".b2.@"".buf) - @"".b2.@"".n }
     42 	func (@"".b2 *@"".Writer "esc:0x1") Buffered () (? int) { return @"".b2.@"".n }
     43 	func (@"".b2 *@"".Writer "esc:0x2a") Flush () (? error)
     44 	func (@"".b3 *@"".Writer "esc:0x10a") ReadFrom (@"".r4 @"io".Reader) (@"".n1 int64, @"".err2 error)
     45 	func (@"".b1 *@"".Writer "esc:0x1") Reset (@"".w2 @"io".Writer) { @"".b1.@"".err = nil; @"".b1.@"".n = 0x0; @"".b1.@"".wr = @"".w2 }
     46 	func (@"".b3 *@"".Writer "esc:0x10a") Write (@"".p4 []byte) (@"".nn1 int, @"".err2 error)
     47 	func (@"".b2 *@"".Writer "esc:0x2a") WriteByte (@"".c3 byte) (? error)
     48 	func (@"".b3 *@"".Writer "esc:0x10a") WriteRune (@"".r4 rune) (@"".size1 int, @"".err2 error)
     49 	func (@"".b3 *@"".Writer "esc:0x10a") WriteString (@"".s4 string "esc:0x9") (? int, ? error)
     50 	func (@"".b2 *@"".Writer "esc:0x2a") @"".flush () (? error)
     51 	func @"".NewWriterSize (@"".w2 @"io".Writer, @"".size3 int) (? *@"".Writer) {  var @"".b4 *@"".Writer; var @"".ok5 bool; @"".b4, @"".ok5 = @"".w2.(*@"".Writer); if @"".ok5 && len(@"".b4.@"".buf) >= @"".size3 { return @"".b4 }; if @"".size3 <= 0x0 { @"".size3 = 0x1000 }; return (&@"".Writer{ @"".buf:make([]byte, @"".size3), @"".wr:@"".w2 }) }
     52 	func @"".NewWriter (@"".w2 @"io".Writer) (? *@"".Writer) { return @"".NewWriterSize(@"".w2, 0x1000) }
     53 	type @"".ReadWriter struct { ? *@"".Reader; ? *@"".Writer }
     54 	func @"".NewReadWriter (@"".r2 *@"".Reader, @"".w3 *@"".Writer) (? *@"".ReadWriter) { return (&@"".ReadWriter{ Reader:@"".r2, Writer:@"".w3 }) }
     55 	type @"".SplitFunc func(@"".data []byte, @"".atEOF bool) (@"".advance int, @"".token []byte, @"".err error)
     56 	type @"".Scanner struct { @"".r @"io".Reader; @"".split @"".SplitFunc; @"".maxTokenSize int; @"".token []byte; @"".buf []byte; @"".start int; @"".end int; @"".err error; @"".empties int }
     57 	func (@"".s2 *@"".Scanner "esc:0x22") Bytes () (? []byte) { return @"".s2.@"".token }
     58 	func (@"".s2 *@"".Scanner "esc:0x22") Err () (? error) { if @"".s2.@"".err == @"io".EOF { return nil }; return @"".s2.@"".err }
     59 	func (@"".s2 *@"".Scanner "esc:0x9") Scan () (? bool)
     60 	func (@"".s1 *@"".Scanner "esc:0x1") Split (@"".split2 @"".SplitFunc) { @"".s1.@"".split = @"".split2 }
     61 	func (@"".s2 *@"".Scanner "esc:0x1") Text () (? string) { return string(@"".s2.@"".token) }
     62 	func (@"".s2 *@"".Scanner "esc:0x1") @"".advance (@"".n3 int) (? bool) { if @"".n3 < 0x0 { @"".s2.@"".setErr(@"".ErrNegativeAdvance); return false }; if @"".n3 > @"".s2.@"".end - @"".s2.@"".start { @"".s2.@"".setErr(@"".ErrAdvanceTooFar); return false }; @"".s2.@"".start += @"".n3; return true }
     63 	func (@"".s1 *@"".Scanner "esc:0x1") @"".setErr (@"".err2 error) { if @"".s1.@"".err == nil || @"".s1.@"".err == @"io".EOF { @"".s1.@"".err = @"".err2 } }
     64 	var @"".ErrTooLong error
     65 	var @"".ErrNegativeAdvance error
     66 	var @"".ErrAdvanceTooFar error
     67 	const @"".MaxScanTokenSize = 0x10000
     68 	func @"".NewScanner (@"".r2 @"io".Reader) (? *@"".Scanner) { return (&@"".Scanner{ @"".r:@"".r2, @"".split:@"".ScanLines, @"".maxTokenSize:0x10000, @"".buf:make([]byte, 0x1000) }) }
     69 	func @"".ScanBytes (@"".data4 []byte "esc:0x82", @"".atEOF5 bool) (@"".advance1 int, @"".token2 []byte, @"".err3 error) { if @"".atEOF5 && len(@"".data4) == 0x0 { return 0x0, nil, nil }; return 0x1, @"".data4[0x0:0x1], nil }
     70 	func @"".ScanRunes (@"".data4 []byte "esc:0x82", @"".atEOF5 bool) (@"".advance1 int, @"".token2 []byte, @"".err3 error)
     71 	func @"".ScanLines (@"".data4 []byte "esc:0x82", @"".atEOF5 bool) (@"".advance1 int, @"".token2 []byte, @"".err3 error)
     72 	func @"".ScanWords (@"".data4 []byte "esc:0x82", @"".atEOF5 bool) (@"".advance1 int, @"".token2 []byte, @"".err3 error)
     73 	func @"".init ()
     74 	const @"".minReadBufferSize = 0x10
     75 	const @"".defaultBufSize = 0x1000
     76 	var @"io".EOF error
     77 
     78 $$
     79 _go_.o          0           0     0     644     213535    `
     80 go object darwin amd64 go1.5.1 X:none
     81 
     82 !
     83 go13ldbytes.aerrors.aio.aunicode/utf8.a "".NewReaderSizeeH%HD$H;A}HH$H$1H9tH[H-H9BH$HtHXH9|H$HH}H$HH$H$HD$HD$0HD$8HH$HL$HL$LD$Ht$ Hl$(H$H$H|$h1HLD$PLD$hHt$XHt$pHl$`Hl$xHT$@H$HL$HH$H$H$H\$8Ht4Hl$hH\$Hl$H-H,$H\$0H$H11a
     86 ztype.*"".Readertype."".Reader
     87 "runtime.newobjecttype.[]uint8
     88 "runtime.makeslice
     89  runtime.duffzerotype."".Reader
     90 (runtime.typedmemmove
     91 0runtime.morestack_noctxt@"".autotmp_0003type."".Reader"".rtype.io.Reader"".buftype.[]uint8"".btype.*"".Reader"".rtype.*"".Reader"".~r20type.*"".Reader"".size type.int
     94 "".rdtype.io.Reader&W<^'2*	12Tgclocals14c16763214c88f6ebc22b4b638329b7Tgclocalsde63343370a27ae1278a3558a8c673c0Tprebuilts/go/darwin-x86/src/bufio/bufio.go"".NewReadereH%HD$H;AHH$H$HD$PHH\$H1H9tH[H-H97HtHXH9|H$HHT$0H}	HD$0HH$HL$0HD$HD$8HD$@HH$HL$HL$LD$Ht$ Hl$(HT$HHL$PH$1HLD$hL$Ht$pH$Hl$xH$HT$XH$HL$`H$H$H$H\$@Ht,H$H\$Hl$H-H,$HD$811[
     98 type.*"".Readertype."".Reader
     99 "runtime.newobjecttype.[]uint8
    100 "runtime.makeslice
    101  runtime.duffzerotype."".Reader
    102 (runtime.typedmemmove
    103 0runtime.morestack_noctxt0"".autotmp_0007type."".Reader"".rtype.io.Reader"".buftype.[]uint8"".btype.*"".Reader"".rtype.*"".Reader"".sizetype.int
    105 "".rdtype.io.Reader"".~r1 type.*"".Reader
    107 "".rdtype.io.Reader`|D.1Tgclocals42e7756549fd1f1e78e70fcb9f08dd2bTgclocalsb5b1f48fc385a1e7578af006b7551e41Tprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Reader).ReseteH%HD$H;AHH$HL	LAHqH$H$H|$@1HLL$(LL$@LD$0LD$HHt$8Ht$PHl$Hl$XHT$ HT$`H$H$Hl$@HL$Hl$H-H,$H]"
    111 
    112 
    113  runtime.duffzerotype."".Reader
    114 (runtime.typedmemmove
    115 0runtime.morestack_noctxt0
    116 "".autotmp_0008type."".Reader"".rtype.io.Reader"".buftype.[]uint8"".rtype.io.Reader"".btype.*"".Reader' Tgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals607cdd8af25133e14ee3a0c0aab33c85Tprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Reader).reseteH%H;aHpH|$1HH$H\$H$H\$ H$H\$(H$H\$0H$H\$8HD$`HD$hH\$xHt$Hl$H\$Hl$H-H,$HpI
    121 
    122 F
    123  runtime.duffzerotype."".Reader
    124 (runtime.typedmemmove
    125 0runtime.morestack_noctxt`"".autotmp_0009type."".Reader"".r@type.io.Reader"".buftype.[]uint8"".btype.*"".Reader Q*!Tgclocals57cb53c6e1baf060ff3024e169f48a16Tgclocals55b93fc8500931e797aa082d87ba0d9eTprebuilts/go/darwin-x86/src/bufio/bufio.go""".(*Reader).filleH%HD$H;AHH$HX(HHP(L@0LHM9L9LI)I)ItMHHH0H@HkH$L$LL$L$L$H$LD$xI9}LH$H4$HT$pHT$HD$H$L@0Hh(I)L@0H@(HHHX0H9|THH\$`HD$h HH$H\$`H\$HD$H\$HH$HKHL$HdHL$8H7Hh0L@LHL9dLI)I)ItM*H@HHHh L$LT$L$LD$L$LL$Hl$XH,$HL$PHY H$HL$ Ht$(Ht$@H|$0H|$HH}8HH$HH\$H\$HH$HKHL$Hh0HHh0Ht-Hp8=uHx@HL@@L$H|$H~HHL$8HHL$8HH-Hh8H-=uHh@HL@@L$Hl$x(
    143 
    144 runtime.memmoveXgo.string."bufio: tried to fill full buffer"type.string
    145 runtime.convT2E
    146 runtime.gopanic$"".errNegativeRead$"".errNegativeRead
    147 runtime.convI2E	
    148 runtime.gopanic	6runtime.writeBarrierEnabled
    149 
    150 .runtime.writebarrierptr
    151  io.ErrNoProgress
    152  io.ErrNoProgress
    153 6runtime.writeBarrierEnabled
    155 .runtime.writebarrierptr
    157 $runtime.panicslice
    159 $runtime.panicslice
    161 0runtime.morestack_noctxt"".autotmp_0021type.[]uint8"".autotmp_0020_type.[]uint8"".autotmp_0019type.int"".autotmp_0018type.int"".autotmp_0017type.[]uint8"".autotmp_0016type.int"".autotmp_0015type.string"".autotmp_0014type.int"".autotmp_0013type.int"".autotmp_0012/type.[]uint8"".errtype.error"".itype.int"".btype.*"".Reader2!=>t'
T8dTgclocals51fa0e13d53d6bad7f86670d3edaeac6Tgclocalsf31330adfba2a741643485f4a6eda68aTprebuilts/go/darwin-x86/src/bufio/bufio.go("".(*Reader).readErr`\HT$1HtHJ8HB@1Hj8Hj@HL$HD$0"".~r0type.error"".btype.*"".Reader00
    166 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go""".(*Reader).PeekeH%H;aVHHt$HD$1H\$ H\$(H\$01H\$8H\$@H}.1H\$ H\$(H\$0HH\$8HH\$@HHhH9~.1H\$ H\$(H\$0HH\$8HH\$@HHX0Hh(H)H9}Hh8HuH$Ht$HD$1HHx0Hh(H)H9}+H1HH8HP@1Hh8Hh@HuH
HHx(L@(ILHM9w6L9w1LI)I)ItM:LT$ LD$(LL$0HL$8HT$@H
    171 &"".ErrNegativeCount&"".ErrNegativeCount "".ErrBufferFull "".ErrBufferFull
    172 """.(*Reader).fill "".ErrBufferFull "".ErrBufferFull
    173 $runtime.panicslice
    174 0runtime.morestack_noctxtp
    175 "".autotmp_0026type.int"".~r2Ptype.error"".~r1 type.[]uint8"".ntype.int"".btype.*"".Reader$Z6D>.	.Q)Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go("".(*Reader).DiscardeH%H;aHHL$11H\$0H\$8HD$(H\$ H}&H
HHD$(HL$0HD$8HH\$ HuHHT$ HT$HA0Hi(H)HuH$HT$HL$HA0Hi(H)H9~HHi(HHi(H)HT$HuH\$ H\$(1H\$0H\$8HHi8HtH1Hq8HI@1Hh8Hh@HHL$ H)HL$(Ht$0HD$8H
    181 
    182 &"".ErrNegativeCount&"".ErrNegativeCount
    183 """.(*Reader).fill
    184 0runtime.morestack_noctxtP "".autotmp_0035type.error"".autotmp_0034type.int"".autotmp_0033type.int"".autotmp_0030type.int"".autotmp_0029type.int"".remaintype.int"".err0type.error"".discarded type.int"".ntype.int"".btype.*"".Reader* L  t ? P3&
    188 
    193 6-Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go""".(*Reader).ReadeH%HD$H;AHH$H$11H$H$HuB1Ht6HP8HH@1Hh8Hh@H$H$H$HHX(Hh0H9Hh8Ht81HP8HH@1Hh8Hh@H$H$H$HHhH9lHHHh H$H\$Ht$H$H\$Hl$HH,$HL$@HY H$HL$ H$Ht$(HT$0HHt$PHp8HT$X=HP@H}8HH$HH\$H\$HH$HKHL$H~6HtmIIH$L$M9sKJlmHhHH@P1Ht*HP8HH@1Hh8Hh@H$H$HL@@L$HT$H$H$H$H$H$HX(Hh0H9u81HP8HH@1Hh8Hh@H$H$H$HHH(L@0LHM9L9LI)I)ItM
    199 H$H$H$L$LL$L$LL$pH$HLD$hI9}LHD$8H|$xH<$HT$`HT$HD$H$HT$8Hh(H$HHh(Hp(HHHPHhH9s-H1HXHH@P1H$H$H,
    202 6runtime.writeBarrierEnabled$"".errNegativeRead$"".errNegativeRead
    203 runtime.convI2E
    204 runtime.gopanic
    205 $runtime.panicindex
    206 .runtime.writebarrierptr	
    207 """.(*Reader).fill
    209 runtime.memmove
    210 $runtime.panicindex
    211 $runtime.panicslice
    212 0runtime.morestack_noctxtp "".autotmp_0049type.int"".autotmp_0048type.[]uint8"".autotmp_0047_type.[]uint8"".autotmp_0046type.error"".autotmp_0045type.error"".autotmp_0044type.error"".autotmp_0043type.error"".autotmp_0042type.error"".autotmp_0041type.int"".autotmp_0040/type.[]uint8"".autotmp_0039type.int"".autotmp_0038type.int"".errPtype.error"".n@type.int"".ptype.[]uint8"".btype.*"".ReaderNgV$|CB
    214 8
8.6	"
8
    218 "9Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals0ebab88fa809a64715f990f20954c3c3Tprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Reader).ReadByteeH%H;aHHD$11H\$ H\$(H@PHX(Hh0H9uMHh8Ht(1HP8HH@1Hh8Hh@D$HT$ HL$(HH$HD$HX(Hh0H9tHp(HHHHhH9s1H2+HHh(HHh(T$HhH1H\$ H\$(H
    221 
    222 """.(*Reader).fill
    223 $runtime.panicindex
    224 0runtime.morestack_noctxt@"".autotmp_0054type.int"".err type.error"".ctype.uint8"".btype.*"".ReaderY_8*
    227 (

    232 u{Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go."".(*Reader).UnreadByteeH%H;aHD$1HXHH|HX(Hu#HX0H~HH\$HH\$HX(H~NHh(HHh(Hp(HHHHhH9s(H2HhH@+H@HH@P1H\$H\$H@0C
    235 
    236 v."".ErrInvalidUnreadByte."".ErrInvalidUnreadByte
    237 $runtime.panicindex
    238 0runtime.morestack_noctxt0"".~r0type.error"".btype.*"".Reader8
    240 
    242 

Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Reader).ReadRuneeH%H;aH@HD$H11H\$`H\$hHX(HHh0H9HP(L@0LHM9L9LI)I)ItMLT$(L$LD$0LD$LL$8LL$HD$H\$u1Hh8Hu'HHHX0Hh(H)H9}H$HD$HXH@PHX(Hh0H9u41HP8HH@1Hh8Hh@D$PHD$XHT$`HL$hH@Hp(HHPHhH9H1+Hl$P|eHP(L@0LHM9L9LI)I)ItMLT$(L$LD$0LD$LL$8LL$HD$H\$\$PHL$ Hh(HHh(Hx(HHHpHhH9s%H:HXHHL$XHHP1H\$`H\$hH@
    251 
    252 *unicode/utf8.FullRune
    253 """.(*Reader).fill
    254 .unicode/utf8.DecodeRune
    255 $runtime.panicindex
    256 $runtime.panicslice
    257 $runtime.panicindex
    258 $runtime.panicslice
    259 0runtime.morestack_noctxtP"".autotmp_0069type.int"".autotmp_0068type.[]uint8"".autotmp_0067type.int"".autotmp_0066type.int"".autotmp_0063/type.[]uint8"".err0type.error"".size type.int"".rtype.int32"".btype.*"".Reader$'R*
4&e"	
Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/bufio/bufio.go."".(*Reader).UnreadRuneHD$1HXPH|9HX(HhPH9|,L@(HhPI)L@(H@HH@P1H\$H\$HH\$HH\$."".ErrInvalidUnreadRune."".ErrInvalidUnreadRune0"".~r0type.error"".btype.*"".Readerpp 
	&Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Reader).Buffered@,HD$HX0Hh(H)H\$ "".~r0type.int"".btype.*"".Reader   Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*Reader).ReadSlice	eH%H;aH@HT$H111H\$pH\$x1H\$XH\$`H\$hHJ(LB0LJM9L9LI)I)ItM
    270 LT$(L$LD$0LD$LL$8LL$\$P\$HD$HHL$ HHp(L@(IILHM9wyL9wtLI)I)ItM2LLL$hMLT$XHp(HHHHh(HT$`HHH|Ht%H9sI,	mHhHH@PH@Hh8HtuHP(L@0LHM9w]L9wXLI)I)ItMLLL$hMLT$XHt+Hh0Hh(1Hx8Hp@1Hh8Hh@H|$pHt$xEHH0Hh(H)HhH9|:Hh0Hh(LLL$XHPHhHl$hHH\$pHH\$xH$HT$H
    275 
    276 bytes.IndexByte
    277 $runtime.panicindex
    278 $runtime.panicslice
    279 $runtime.panicslice "".ErrBufferFull "".ErrBufferFull
    280 """.(*Reader).fill
    281 $runtime.panicslice
    282 0runtime.morestack_noctxtp"".autotmp_0087type.int"".autotmp_0086type.int"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.int"".autotmp_0082type.int"".autotmp_0081type.int"".autotmp_0080type.int"".autotmp_0079/type.[]uint8"".errPtype.error"".line type.[]uint8"".delimtype.uint8"".btype.*"".Readerh=p?03
    286 9 !+Tgclocals88a82235651174c058e0addadab4e659Tgclocalsf56b2291fa344104975cb6587be42b9bTprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Reader).ReadLine		eH%H;aDHH111H\$xH$D$p1H\$XH\$`H\$hH\$PH$D$
    289 Ht$Ht$XHD$HD$`LL$ LL$hH|$(HL$0H$H-H9H|$xH<$HL$H-Hl$H-Hl$LL$hH|$xHt$XHT$PHD$`\$ HHHH9H.
HZ(HuTHH\$8HD$@+HH$H\$8H\$HD$H\$HH$HKHL$Hj(HHj(HHL9wH\$`D$p1H\$xH$HHHu!H|$xHt1H\$XH\$`H\$hHH1H\$xH$HHH9s_H.
    296 uQHH~;HHH9s1H.
u#HHH)L9w
    298 H\$`HH 
    302 
    303 ,"".(*Reader).ReadSlice "".ErrBufferFull "".ErrBufferFull "".ErrBufferFull
    304 runtime.ifaceeqngo.string."bufio: tried to rewind past start of buffer"type.string
    305 runtime.convT2E
    306 runtime.gopanic
    307 $runtime.panicslice
    308 $runtime.panicindex
    309 $runtime.panicslice	
    310 $runtime.panicindex	
    311 $runtime.panicindex	
    312 0runtime.morestack_noctxtp"".autotmp_0099type.int"".autotmp_0098type.int"".autotmp_0097type.int"".autotmp_0096type.int"".autotmp_0095type.int"".autotmp_0094type.int"".autotmp_0092type.int"".autotmp_0090type.string"".errPtype.error"".isPrefix@type.bool"".linetype.[]uint8"".btype.*"".Reader26f2t@Cb)
    314 T	
    317 
1NkUTgclocals8eb852d251341d0179cb59584c49209fTgclocals21628ef15e17a47b249310bffa1e8bd0Tprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*Reader).ReadByteseH%H$hH;ABH111H$HH$P1H$0H$8H$@1H$H$H$1H\$pH\$xH$1H\$`H\$hH$ H$$(\$H\$H$LL$L$H\$ H$HD$(HL$0HL$hHD$`HH|$x11H9},H\$pLD$xHL9rHkHHkHHH9|HLHH$HD$HD$H\$H$H\$ H$H\$(H$H\$x11H\$@Hl$@H9HL$XHD$PH$L$H9L$H)I)ItMHL$LH$L$L$H\$pLD$xHL9tHkHHHKHkH$H$HH$H9}HHD$HH$H<$H$HT$HD$HD$HH\$PHHHL$XHHl$@H9H$L$H9L$H)I)ItML$LH$L$L$H$H$H$H$H$HH$H9}HH$H$H$Ht$HD$H$H$0H$H$8H$H$@HH-H9H$HL$H-Hl$H-Hl$L$HL$hHD$`\$ gHH$LL$LL$Ht$HD$ HL$(H$H$H$H$H$H$H$H$H$H$H9}HH$H4$H$HT$HD$HL$pH\$xH$HHH9wVH\$xHHHkHH$HkH$HkH$=uH+H$Hl$H-H,$HL$HD$HT$H\$ HL$(H\$0HT$8HHH\$xH$HL$p_H$HH$P,
    326 
    327 ,"".(*Reader).ReadSlicetype.[]uint8
    328 "runtime.makeslice	
    329 runtime.memmove
    331 runtime.memmove
    333 $runtime.panicslice
    335 $runtime.panicindex
    337 $runtime.panicslice
    338 $runtime.panicindex "".ErrBufferFull "".ErrBufferFull "".ErrBufferFull
    339 runtime.ifaceeqtype.[]uint8
    340 "runtime.makeslice
    341 runtime.memmove6runtime.writeBarrierEnabled
    342 .runtime.writebarrierptrtype.[][]uint8
    343 "runtime.growslice
    344 0runtime.morestack_noctxtpB"".autotmp_0124type.uintptr"".autotmp_0123type.int"".autotmp_0122type.[]uint8"".autotmp_0121type.[]uint8"".autotmp_0120type.uintptr"".autotmp_0119type.int"".autotmp_0118type.[]uint8"".autotmp_0117type.[]uint8"".autotmp_0116type.int"".autotmp_0115type.int"".autotmp_0114type.int"".autotmp_0113type.int"".autotmp_0111type.int"".autotmp_0110_type.[]uint8"".autotmp_0109/type.[]uint8"".autotmp_0108type.[]uint8"".autotmp_0107type.int"".autotmp_0106type.[]uint8"".autotmp_0105type.int"".autotmp_0104type.int"".autotmp_0103type.int"".autotmp_0102type.int"".autotmp_0101type.int"".autotmp_0100type.int"".buftype.[]uint8"".buftype.[]uint8"".etype.error"".fulltype.[][]uint8"".fragtype.[]uint8"".errPtype.error"".line type.[]uint8"".delimtype.uint8"".btype.*"".Reader"
    348 RS $A8V){[P
18=
M:n)YTgclocals233dc4ecce920b62f981fc792ec53848Tgclocals171b616403558434c53ff861c413f69eTprebuilts/go/darwin-x86/src/bufio/bufio.go."".(*Reader).ReadStringeH%H;aHP111H\$xH$1H\$hH\$pH\$XH$\$`\$HT$HL$HD$ H\$(H\$xH\$0H$H$HT$8HT$HL$@HL$HD$HHD$H\$ H\$hH\$(H\$pHP?
    354 
    355 ,"".(*Reader).ReadBytes
    356 2runtime.slicebytetostring
    357 0runtime.morestack_noctxt`
    358 "".bytes/type.[]uint8"".err@type.error"".line type.string"".delimtype.uint8"".btype.*"".Reader6=?HQ7Tgclocals385909f76d6de739e72f24698b953b71Tgclocalsf56b2291fa344104975cb6587be42b9bTprebuilts/go/darwin-x86/src/bufio/bufio.go("".(*Reader).WriteToeH%HD$H;AH11H$H$H$H$H$H\$H$H\$H\$H$HD$ H\$(H$H$HtH1H$H$HH$H$HH^H|$HHHKHOH$H\$H$H$\$ H$HT$@H$HL$HtNHt$Hl$H$HZ Ht$HT$ HL$(H$HH$H$H$H1H\$pH\$xHH$Ht$Hl$H\$pH\$H$\$ Hl$pHl$0HT$xHT$8teHt[HXH|$HHHKHOH$H] HT$HL$ HD$(H$HH$H$H$HHHHX0Hh(H)H9OH$H$HX(Hh0H9H$H$H\$H$H\$HD$HT$ Ht$(Ht$XH$HH$HT$PHtH$H$HH$H$H$HX(Hh0H9iHH8HP@H-H9uLHL$`H$HT$hHT$H-Hl$H-Hl$H$\$ t
    365 1Hh8Hh@1Ht*HP8HH@1Hh8Hh@H$H$H'[ 
    366 
    367 *"".(*Reader).writeBuf type.io.WriterTo
    368 $runtime.assertI2I2$type.io.ReaderFrom
    369 $runtime.assertI2I2	
    370 """.(*Reader).fill
    371 
    372 *"".(*Reader).writeBuf
    374 """.(*Reader).fillio.EOFio.EOFio.EOF
    382 runtime.ifaceeq
    383 0runtime.morestack_noctxt`"".autotmp_0135type.error"".autotmp_0134_type.error"".autotmp_0133type.int64"".autotmp_0131type.int64"".autotmp_0130?$type.io.ReaderFrom"".autotmp_0128 type.io.WriterTo"".errtype.error"".w$type.io.ReaderFrom"".r type.io.WriterTo"".err@type.error"".n0type.int64"".wtype.io.Writer"".btype.*"".ReaderPs%v3J#V6
    386 7
V
    389 6YKgPTgclocalsaeadbc73530d5f877ac2661d18e94fa0Tgclocals669c7d9f0df32c6735ae27d87c97b25cTprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Reader).writeBufeH%H;a	H`HT$h1H$H$HJ(LB0LJM9L9LI)I)ItM
    392 LT$HLT$LD$PLD$LL$XLL$H\$xH$H\$pH[ H|$hHD$ Ht$(Ht$8HT$0HT$@H}8HH$HH\$H\$HH$HKHL$Ho(HHo(H$H$H$H`
    397 &"".errNegativeWrite&"".errNegativeWrite
    398 runtime.convI2E
    399 runtime.gopanic
    400 $runtime.panicslice
    401 0runtime.morestack_noctxt`"".autotmp_0139type.int"".autotmp_0138/type.[]uint8"".errOtype.error"".~r2@type.error"".~r10type.int64"".wtype.io.Writer"".btype.*"".Reader&.8	Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tprebuilts/go/darwin-x86/src/bufio/bufio.go "".NewWriterSizeeH%H;aVHPHD$hH\$X1H9tH[H-H9$HL$`HtHYH9|
    407 HL$pHPHHHH$HD$HD$hHD$H\$H\$8H\$ H\$@H\$(H\$HHH$HD$1H(HhHhHhHh Hh(Hh0Hh8HD$0Hl$@HhHl$HHh Hl$8=uBHhHl$XHh0Hl$`=uHh8HD$pHPL@8L$Hl$HD$0L@L$Hl$HD$011
    408 ^type.*"".Writertype.[]uint8
    409 "runtime.makeslicetype."".Writer
    410 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled
    411 .runtime.writebarrierptr
    412 .runtime.writebarrierptr
    413 0runtime.morestack_noctxt@"".autotmp_0143type.*"".Writer"".autotmp_0142/type.[]uint8"".autotmp_0140?type.*"".Writer"".~r20type.*"".Writer"".size type.int"".wtype.io.Writer&HR@,
    416 =z
    417 .ETgclocals14c16763214c88f6ebc22b4b638329b7Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/bufio/bufio.go"".NewWritereH%H;a^H`H\$hHL$pHL$@HH\$81H9tH[H-H9HtHYH9|
HHD$xH`HHHH$HD$HD$H\$H\$HH\$ H\$PH\$(H\$XHH$HD$1H(HhHhHhHh Hh(Hh0Hh8HD$0Hl$PHhHl$XHh Hl$H=u@HhHl$8Hh0Hl$@=u	Hh82L@8L$Hl$HD$0L@L$Hl$HD$011
    420 type.*"".Writertype.[]uint8
    421 "runtime.makeslicetype."".Writer
    422 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled
    423 .runtime.writebarrierptr
    424 .runtime.writebarrierptr
    425 0runtime.morestack_noctxt0"".autotmp_0148type.*"".Writer"".autotmp_0147type.*"".Writer"".autotmp_0146/type.[]uint8"".autotmp_0144_type.*"".Writer"".wOtype.io.Writer"".~r1 type.*"".Writer"".wtype.io.WriterW.$Tgclocalsaa52d274abdec77c8c6f0039727529fbTgclocals30cbcc4cbf7928c6a8c16f3943e312adTprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Writer).ReseteH%H;avNHHD$1H(HhH@(Hl$ Hh0Hl$(=u	Hh8HL@8L$Hl$
    428 r6runtime.writeBarrierEnabled
    429 .runtime.writebarrierptr
    430 0runtime.morestack_noctxt0 "".wtype.io.Writer"".btype.*"".Writer 5 'p$	
    431 VTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Writer).FlusheH%H;av7H1H\$(H\$0H\$ H$HL$HD$HL$(HD$0H
    433 R
    434 $"".(*Writer).flush
    435 0runtime.morestack_noctxt00"".~r0type.error"".btype.*"".Writer02/0
    437 P
    438 
    439 ((Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Writer).flush
    441 eH%HD$H;AHH$1H$H$H(HtH(H$HhH$HHX(Hu1H$H$HHh(L@ L9LHHHH0Hh8L$LL$H$H|$L$LD$Hl$XH,$HL$PHY H$HL$ HT$(H\$0H\$HHX(H9~HuHHH\$HHT$@HSHHX(H9HP(H)L@ L9!HpIML@(HL$8LH M9L9LPI)I)ItM
    444 H$L$L$L$L$LL$L$LL$pL$LLD$hM9}LHt$xH4$HT$`HT$HD$HT$@HL$8H$Hh(H)Hh(HHl$H=u!HhH$H\$HH$HL@L$Hl$HT$@H@(1H$H$HM
    448  io.ErrShortWrite io.ErrShortWrite
    449 runtime.memmove6runtime.writeBarrierEnabled	
    450 .runtime.writebarrierptr	
    451 $runtime.panicslice	
    452 $runtime.panicslice
    453 
    454 $runtime.panicslice
    455 
    456 0runtime.morestack_noctxt0"".autotmp_0157type.[]uint8"".autotmp_0156type.[]uint8"".autotmp_0155type.int"".autotmp_0154_type.[]uint8"".autotmp_0152type.[]uint8"".autotmp_0151type.int"".autotmp_0150/type.[]uint8"".errtype.error"".ntype.int"".~r0type.error"".btype.*"".Writer>A#HZ9	
    459 w
mNTgclocals41a13ac73c712c01973b8fe23f62d694Tgclocals21545c880057c850155b44b51d3dfff9Tprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*Writer).Available@,HL$HiHY(H)Hl$ "".~r0type.int"".btype.*"".Writer  	 Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Writer).Buffered H\$Hk(Hl$ "".~r0type.int"".btype.*"".Writer	Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go$"".(*Writer).WriteeH%HD$H;AHL$L$H$H$11H$H$H$HhHX(H)H9H(HHh(HHH0Hh8L$Ld$H$H|$L$L\$Hl$XH,$HL$PHY H$H\$ H\$8HT$(HL$0HHT$`HHL$h=ucHHH$Hl$8HH$H\$8H$L$H9w&L$H)I)ItMHMML@L$HL$H$dHh(L@LH L9LPI)I)ItM*L$LL$L$L$L$LH$L$L$L$LH|$xL9}HHD$@H$H4$HT$pHT$HD$H$HT$@Hi(HT$8HHi(H$H$H(HtH(H$HhH$HHh(L@LH L9LPI)I)ItM*L$LL$L$L$L$LH$L$L$LD$xLH$L9}HHD$HHT$pH$H$Ht$HD$H$HD$HHj(HHj(H$HH$1H$H$H]
    471 6runtime.writeBarrierEnabled
    472 $runtime.panicslice
    473 .runtime.writebarrierptr
    474 runtime.memmove	
    475 $"".(*Writer).flush	
    476 $runtime.panicslice
    478 runtime.memmove
    479 $runtime.panicslice
    480 0runtime.morestack_noctxtp."".autotmp_0181type.uintptr"".autotmp_0180type.int"".autotmp_0179type.[]uint8"".autotmp_0178type.[]uint8"".autotmp_0176type.int"".autotmp_0175type.[]uint8"".autotmp_0174_type.[]uint8"".autotmp_0173type.error"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.[]uint8"".autotmp_0168type.int"".autotmp_0167type.int"".autotmp_0166type.int"".autotmp_0165/type.[]uint8"".autotmp_0164type.int"".autotmp_0163type.int"".ntype.int"".errPtype.error
    482 "".nn@type.int"".ptype.[]uint8"".btype.*"".Writer(j	_!;
	#Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals0ebab88fa809a64715f990f20954c3c3Tprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*Writer).WriteByteeH%H;aHHD$ 1H\$0H\$8H(HtH(Hl$0HhHl$8HHhHX(H)H>H$HD$ HL$H\$Ht HtH(Hl$0HhHl$8HHp(HPHHHh H9s(H2l$(@+Hh(HHh(1H\$0H\$8H
    490 
    491 $"".(*Writer).flush
    492 $runtime.panicindex
    493 0runtime.morestack_noctxt@0"".autotmp_0185type.int"".~r1 type.error"".ctype.uint8"".btype.*"".Writer"0//0J/0@/0,	(	/ !
\Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*Writer).WriteRuneeH%H;aHPt$`HD$X11H\$pH\$x}PH$@t$HD$H\$H\$xHD$pHtHD$hHPHD$h1H\$pH\$xHPH(HtHHhHD$hHL$pHl$xHPHhHX(H)HH$t$`HD$XH(HtHHhHD$hHL$pHl$xHPHhHX(H)H}_H\$4H$HcH\$H\$H|$HHHKHOH\$XH$HD$HT$ HL$(HD$hHT$pHL$xHPHh(L@LH L9weLPI)I)ItM*LT$8L$LD$@LD$LL$HLL$t$HL$XHT$ Hi(HT$hHHi(1H\$pH\$xHP
    502 
    503 ,"".(*Writer).WriteByte
    504 $"".(*Writer).flush
    505 "runtime.intstring
    506 0"".(*Writer).WriteString
    507 .unicode/utf8.EncodeRune
    508 $runtime.panicslice
    509 0runtime.morestack_noctxtP"".autotmp_02007type.[4]uint8"".autotmp_0199type.int"".autotmp_0198type.error"".autotmp_0195type.int"".autotmp_0194/type.[]uint8"".autotmp_0193type.int"".autotmp_0192type.error"".autotmp_0191type.int"".autotmp_0190type.int"".err0type.error"".size type.int"".rtype.int32"".btype.*"".WriterTT'NouT	.	
    513 _U+?Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/bufio/bufio.go0"".(*Writer).WriteString		eH%H;a1HhH$HD$p1H$H$HD$HhHX(H)H9H(HHh(L@LH L9LPI)I)ItM*LT$PLLD$XLL$`LL$HHT$xLD$@LH|$0L9}HHD$ Ht$8H4$HT$(HT$HD$HT$pHD$ Hj(HHj(H\$HH\$H$H9w:LD$xH)HtMH$LD$xH$H$HD$pH(Ht)H\$H$H(H$HhH$HhHh(L@LH L9LPI)I)ItM*LT$PLLD$XLL$`LL$HHT$xLD$@LH|$0L9}HHD$ Ht$8H4$HT$(HT$HD$HT$pHD$ Hj(HHj(H\$HH$1H$H$Hh
    520 
    521 runtime.memmove
    522 $"".(*Writer).flush
    523 $runtime.panicslice
    524 $runtime.panicslice
    525 runtime.memmove
    526 $runtime.panicslice	
    527 0runtime.morestack_noctxt`*"".autotmp_0219type.uintptr"".autotmp_0218type.int"".autotmp_0217type.string"".autotmp_0216type.[]uint8"".autotmp_0214type.int"".autotmp_0213type.string"".autotmp_0212_type.[]uint8"".autotmp_0211type.int"".autotmp_0210type.int"".autotmp_0209type.int"".autotmp_0208type.[]uint8"".autotmp_0207type.int"".autotmp_0206type.int"".autotmp_0205type.int"".autotmp_0204/type.[]uint8"".autotmp_0203type.int
    528 "".nntype.int"".~r2@type.error"".~r10type.int"".stype.string"".btype.*"".Writer(T
    531 6	!
,		)Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals895d0569a38a56443b84805daa09d838Tprebuilts/go/darwin-x86/src/bufio/bufio.go*"".(*Writer).ReadFrom

eH%HD$H;A,HH$11H$H$H$Hh(H1H\$hH\$pHH$HX0H|$HHHKHOH\$hH\$H$H$\$ Hl$hHl$HHT$pHT$PtSH$H\$H$H\$H$H] HT$HL$ HD$(H$H$H$H1HT$@HhHX(H)HuPH$H$HT$@H$HL$Hl$Hl$`HL$XHtH$H$H1HL$8HdHh(L@LH L9LPI)I)ItM*LT$xLT$L$LD$L$LL$H$H$H$H[ HL$8H$HT$ H|$(H\$0H$Hu H$HuHHL$8HdOHdu&HH$HH$HHh(HHh(H$HHT$@HH$H$HyH-H9utH<$H$Hl$H-Hl$H-Hl$H$\$ t4HjHZ(H)Hu+H$H\$H$H\$H$H1H$H$
    542 $type.io.ReaderFrom
    543 $runtime.assertI2I2
    544 $"".(*Writer).flush	 io.ErrNoProgress	 io.ErrNoProgress
    545 io.EOFio.EOFio.EOF
    552 runtime.ifaceeq
    554 $"".(*Writer).flush
    556 $runtime.panicslice
    558 0runtime.morestack_noctxt` "".autotmp_0231type.int"".autotmp_0229type.int"".autotmp_0228type.int64"".autotmp_0227type.int"".autotmp_0226type.int"".autotmp_0225/type.[]uint8"".autotmp_0224type.int"".autotmp_0220O$type.io.ReaderFrom
    559 "".nrtype.int"".err1otype.error"".mtype.int"".w$type.io.ReaderFrom"".err@type.error"".n0type.int64"".rtype.io.Reader"".btype.*"".WriterBg'r
    561 GkS8	&L#
    563 -$UM,NTgclocals3b058289e87a1930e774a55a7e38340fTgclocals9693f46e60a90ce4cc19ba9e42baf1e0Tprebuilts/go/darwin-x86/src/bufio/bufio.go "".NewReadWritereH%H;aHHH$HD$HD$HteHl$ =uBH(Ht5Hl$(=uHhHD$0HL@L$Hl$HD$H$Hl$HD$V
    566 4$type."".ReadWriterF
    567 "runtime.newobject|6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled
    568 .runtime.writebarrierptr
    569 .runtime.writebarrierptr
    570 0runtime.morestack_noctxt00"".autotmp_0232&type.*"".ReadWriter"".~r2 &type.*"".ReadWriter"".wtype.*"".Writer"".rtype.*"".Reader0R/0F"U9Tgclocals51af24152615272c3d9efc8538f95767Tgclocals0c8aa8e80191a30eac23f1a218103f16Tprebuilts/go/darwin-x86/src/bufio/bufio.go"".NewScannereH%H;a=HPHH$HD$HD$H\$H\$8H\$ H\$@H\$(H\$HHH$HL$HH1HHL$0Hl$XH)Hl$`=HiHt|H-=uSHiHAHl$@Hi@Hl$HHiHHl$8=uHi8HL$hHPLA8L$Hl$HL$0LAL$Hl$HL$0LAL$Hl$HL$0^)
    574 4type.[]uint8j
    575 "runtime.makeslicetype."".Scanner
    576 "runtime.newobject
    577  runtime.duffzero6runtime.writeBarrierEnabled"".ScanLinesf6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled
    578 .runtime.writebarrierptr
    579 .runtime.writebarrierptr
    580 .runtime.writebarrierptr
    581 0runtime.morestack_noctxt0"".autotmp_0234? type.*"".Scanner"".autotmp_0233/type.[]uint8"".~r1  type.*"".Scanner"".rtype.io.Readeri2
    583 F
    584 	4.CTgclocals42e7756549fd1f1e78e70fcb9f08dd2bTgclocals63cd04555cdf6098214cf65f28956084Rprebuilts/go/darwin-x86/src/bufio/scan.go""".(*Scanner).ErreH%H;aH81H\$HH\$PH\$@HHC`HKhH-H9uKHD$(H$HL$0HL$H-Hl$H-Hl$\$ t1H\$HH\$PH8H\$@HtHk`Hl$HHkhHl$PH8t8
    587 zio.EOFio.EOFio.EOF
    591 runtime.ifaceeq
    592 0runtime.morestack_noctxt0p"".autotmp_0235type.error"".~r0type.error"".s type.*"".Scannerpyop!op#]&
    594 q_Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/darwin-x86/src/bufio/scan.go&"".(*Scanner).Bytes`Z1H\$HtHk Hl$Hk(Hl$Hk0Hl$ @"".~r0type.[]uint8"".s type.*"".Scanner00.Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go$"".(*Scanner).TexteH%H;avdH01H\$@H\$HH$Ht$8Ht=H^ H|$HHHKHOHKHOH\$ H\$@H\$(H\$HH0
    599 
    600 2runtime.slicebytetostring
    601 0runtime.morestack_noctxt0`"".~r0type.string"".s type.*"".Scanner`[_`T
    604 Q/Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go$"".(*Scanner).Scan/.eH%H$H;AHH$HXXHhPH9Hh`HHh`Ht H@PH@X$HHXPH~2HH@HXXH9=
    607 L@@HXPLH?I)LHH9
    608 HH@HXXH9*HH@HXH9HH$HH$Hh`HtaHHD$hH@`HKhH-H9ufH$ H$H$(HL$H-Hl$H-Hl$HD$h\$ t!H$Hh`H$=uHhh$HL@hL$Hl$HH@HHXH9}HHHH$HL$HL$H$L\$H|$ Ht$(HJPLBXLJHM9L9LR8I)I)ItM
    609 LL$XMH$`H$hH$L$pLH$xL$L$H$HH$H9}HL$L$H$HT$HD$H$H$`Hh@H$hHhHH$X=Hh8L@XHhPI)L@XH@PHXXHhPH9=HPPL@XLHHM9L9LP8I)I)ItML$L$L$LD$L$LL$Hh`HD$HPHH$H\$ H\$XH\$(H$@H\$0H$HH\$8H$PHL$@HT$HH$H$HH$H$Hh`HtgHH$H@`HKhH-H9uiH$ H$H$(HL$H-Hl$H-Hl$H$\$ t!H$Hh`H$=uHhh$HL@hL$Hl$HT$XHHHH$HH$Hh`HtsHHL$`HHI`HShH$(H$ H-H9ubH$HT$H-Hl$H-Hl$HL$`H$\$ t%H$Hi`H$=&Hih1u$HH$HHh(H$PHh0H$@=Hh H$@HHh`HH\$XHHhpHHhpHXpHd~]HH$0H$80HH$H$0H\$HD$H\$HH$HKHL$$HH@pL@ L$Hl$H$&LAhL$Hl$H$2HXXHhPH)H9HHH$HH$Hh`HtsHHL$pHHI`HShH$(H$ H-H9u^H$HT$H-Hl$H-Hl$HL$pH$\$ t!H$Hi`H$=uHih1LAhL$Hl$H$THhPHHhPHL@8L$Hl$H$HD$PHPXL@@LHHM9L9LP8I)I)ItMHHHhL$pLT$L$xLD$L$LL$H$H,$H$HY H$HL$ Ht$(H|$0H$HhXHHhXH$HHH$H$Hh`Ht{HHL$xHHI`HShH$(H$ H-H9 H$HT$H-Hl$H-Hl$HL$xH$\$ H$Hi`H$=u	HihLAhL$Hl$H$KH~
H@pHL$PHHL$PHd2HHH$HH$Hh`HHH$HHI`HShH$(H$ H-H9H$HT$H-Hl$H-Hl$H$H$\$ H$Hi`H$=u	HihLAhL$Hl$H$tHkHPPL@XLHHM9L9LP8I)I)ItMHHHp8H@@HkHH$L$LL$L$L$H$L$xI9}LH$H4$H$pHT$HD$H$L@XHhPI)L@XH@PcH
    624 "".ErrTooLong"".ErrTooLongio.EOFio.EOFio.EOF
    628 runtime.ifaceeq6runtime.writeBarrierEnabled
    629 .runtime.writebarrierptrtype.[]uint8
    630 "runtime.makeslice
    631 
    632 runtime.memmove6runtime.writeBarrierEnabled
io.EOFio.EOFio.EOF
    638 runtime.ifaceeq6runtime.writeBarrierEnabled
    639 .runtime.writebarrierptr*"".ErrNegativeAdvance*"".ErrNegativeAdvanceio.EOFio.EOFio.EOF
    643 runtime.ifaceeq6runtime.writeBarrierEnabled6runtime.writeBarrierEnabledxgo.string."bufio.Scan: 100 empty tokens without progressing"type.string
    644 runtime.convT2E
    645 runtime.gopanic
    646 .runtime.writebarrierptr
    647 .runtime.writebarrierptr&"".ErrAdvanceTooFar&"".ErrAdvanceTooFario.EOFio.EOFio.EOF
    651 runtime.ifaceeq6runtime.writeBarrierEnabled
    652 .runtime.writebarrierptr
    653 $runtime.panicslice
    654 .runtime.writebarrierptr
    655 $runtime.panicslice!#io.EOF$io.EOF$io.EOF$
    659 runtime.ifaceeq%6runtime.writeBarrierEnabled%
    660 .runtime.writebarrierptr' io.ErrNoProgress' io.ErrNoProgress(io.EOF(io.EOF)io.EOF)
    664 runtime.ifaceeq*6runtime.writeBarrierEnabled*
    665 .runtime.writebarrierptr+
    666 $runtime.panicslice-
    667 runtime.memmove.
    668 $runtime.panicslice.
    669 0runtime.morestack_noctxt f"".autotmp_0273type.error"".autotmp_0272type.error"".autotmp_0271type.uintptr"".autotmp_0269type.[]uint8"".autotmp_0268type.[]uint8"".autotmp_0267type.error"".autotmp_0264type.[]uint8"".autotmp_0263_type.[]uint8"".autotmp_0262type.error"".autotmp_0261type.error"".autotmp_0260type.error"".autotmp_0259type.int"".autotmp_0258type.int"".autotmp_0257type.[]uint8"".autotmp_0256type.int"".autotmp_0255type.int"".autotmp_0254type.int"".autotmp_0253type.[]uint8"".autotmp_0252type.int"".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.[]uint8"".autotmp_0243type.int"".autotmp_0242type.int"".autotmp_0241type.string"".autotmp_0240type.int"".autotmp_0239type.int"".autotmp_0238/type.[]uint8"".errtype.error"".s type.*"".Scanner"".errtype.error"".s type.*"".Scanner"".errtype.error"".s type.*"".Scanner"".errtype.error"".s type.*"".Scanner"".errtype.error"".s type.*"".Scanner"".errtype.error"".s type.*"".Scanner"".errtype.error"".looptype.int"".newBuftype.[]uint8"".errtype.error"".tokentype.[]uint8"".advancetype.int"".~r0type.bool"".s type.*"".ScannerR"P
    679 *2
    681 
    682 <	11i1
    685 ]	d	}~}~1	QZR
UHQ-SVTgclocals0241939093ad48db63b213bcfccb79ffTgclocalsc902f3593191ae78e3a4f8da0146b76aRprebuilts/go/darwin-x86/src/bufio/scan.go*"".(*Scanner).advanceeH%H;aHhHT$xHD$pHHH\$HHH\$PHh`Ht[HHD$0H@`HKhH-H9uZHD$XH$HL$`HL$H-Hl$H-Hl$HD$0\$ tHl$HHh`Hl$P=uHhh$HhL@hL$Hl$HXXHhPH)H9HH\$8HH\$@Hh`Ht[HHD$(H@`HKhH-H9uZHD$XH$HL$`HL$H-Hl$H-Hl$HD$(\$ tHl$8Hh`Hl$@=uHhh$HhL@hL$Hl$HhPHHhP$Hh-$
    690 \*"".ErrNegativeAdvancet*"".ErrNegativeAdvanceio.EOFio.EOFio.EOF
    694 runtime.ifaceeq6runtime.writeBarrierEnabled
    695 .runtime.writebarrierptr&"".ErrAdvanceTooFar&"".ErrAdvanceTooFario.EOFio.EOFio.EOF
    699 runtime.ifaceeq6runtime.writeBarrierEnabled
    700 .runtime.writebarrierptr
    701 0runtime.morestack_noctxt0"".autotmp_0277type.error"".autotmp_0276type.error"".err_type.error"".s type.*"".Scanner"".err?type.error"".so type.*"".Scanner"".~r1 type.bool"".ntype.int"".s type.*"".Scanner4+@!
    705 


II6Tgclocalscb395d89503762333b1bfb09ba74eb12Tgclocals11248568c735471f107fcdfd00b1e355Rprebuilts/go/darwin-x86/src/bufio/scan.go("".(*Scanner).setErreH%H;aH8HD$@Hh`HtVHH@`HKhH-H9uZHD$(H$HL$0HL$H-Hl$H-Hl$HD$@\$ tHl$HHh`Hl$P=u	HhhH8L@hL$Hl$F
    711 hio.EOFio.EOFio.EOF
    715 runtime.ifaceeq6runtime.writeBarrierEnabled
    716 .runtime.writebarrierptr
    717 0runtime.morestack_noctxt0p"".autotmp_0278type.error"".errtype.error"".s type.*"".Scannerpop$ `
    719 hXTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/darwin-x86/src/bufio/scan.go&"".(*Scanner).SpliteH%H;av>HH\$Ht+Hl$ =u	HkHLCL$Hl$
    721 J6runtime.writeBarrierEnabled
    722 .runtime.writebarrierptr
    723 0runtime.morestack_noctxt  "".split"type."".SplitFunc"".s type.*"".Scanner ! +` 
    724 BTgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".ScanByteseH%H;a1111|$ t2H\$Hu'HD$(1H\$0H\$8H\$@1H\$HH\$PH\$Hr1Hl$HHD$(Hl$0HT$8H\$@1H\$HH\$P_
    727 
    728 $runtime.panicslice
    729 0runtime.morestack_noctxt
    730 "".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint8'C Tgclocals4d8870d794128007eafd160e912f2b3dTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".ScanRuneseH%H;aH(Hl$@HT$8HD$0111H\$pH\$x1H\$XH\$`H\$h|$Ht1Hu+HD$P1H\$XH\$`H\$h1H\$pH\$xH(H0s=Hr0HHD$PHD$XHT$`Hl$h1H\$pH\$xH(H$HT$Hl$HT$0HL$@HD$ H~1H9w%HD$PHT$XHD$`HL$h1H\$pH\$xH(|$HuMH$H\$8H\$HL$\$u+HD$P1H\$XH\$`H\$h1H\$pH\$xH(HHH
HD$PHD$XHT$`HL$h1H\$pH\$xH(6
    738 
    739 $runtime.panicslice
    740 .unicode/utf8.DecodeRune
    741 $runtime.panicslice
    742 *unicode/utf8.FullRune"".errorRune"".errorRune "".errorRune
    743 $runtime.panicindex
    744 0runtime.morestack_noctxtP"".autotmp_0285type.[]uint8"".autotmp_0283type.[]uint8"".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint82PgOPGOPXOPZOP=OP8G
+="1)+>-Tgclocals4d8870d794128007eafd160e912f2b3dTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".dropCReH%H;avgHt$HL$HD$1H~9HHH9s>H)
u"HHH9wHL$ H\$(Ht$0HL$ HD$(Ht$0
    754 
    755 $runtime.panicslice
    756 $runtime.panicindex
    757 0runtime.morestack_noctxt`"".autotmp_0289type.int"".~r10type.[]uint8"".datatype.[]uint8 "
    759 
    760 X(Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".ScanLineseH%H;aH(HL$8111H\$pH\$x1H\$XH\$`H\$h|$Ht1Hu+HD$P1H\$XH\$`H\$h1H\$pH\$xH(H\$0H$HL$H\$@H\$D$
    762 Hl$8HD$0Ht$@HT$ HH9w}HH1H~]HHH9s]H)
uFHHH9w4HHHHHHt$PHl$XHL$`HD$h1H\$pH\$xH(HHH|$HtzHHH1H~WHHH9sWH)
u@HHH9w.HHHH|$PHT$XHL$`HD$h1H\$pH\$xH(HHHHD$P1H\$XH\$`H\$h1H\$pH\$xH(
    771 
    772 bytes.IndexByte
    773 $runtime.panicslice
    774 $runtime.panicindex
    775 $runtime.panicslice
    776 $runtime.panicslice
    777 $runtime.panicindex
    778 0runtime.morestack_noctxtP"".autotmp_0306type.[]uint8"".autotmp_0305type.[]uint8"".autotmp_0304type.int"".autotmp_0303type.[]uint8"".autotmp_0301type.int"".autotmp_0300type.int"".autotmp_0299type.int"".autotmp_0298type.int"".autotmp_0297type.[]uint8"".autotmp_0293type.int"".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint8.P]OPOPOPCOP*=
+@z+Tgclocals4d8870d794128007eafd160e912f2b3dTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".isSpaceD$=S'
    782 	uD$
    783 tD$tt 
t t=uD$=t= |
=
    789  D$=) !=uD$=( t=) tD$=/ t=_ t=0t "".autotmp_0308type.int32"".~r1type.bool"".rtype.int32h
    791 
    792 	
    793 
    794 
    796 
    797 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.go"".ScanWords
    799 eH%H;aH`LL$xH|$hHD$p111H$H$1H$H$H$1H9HT$8HMH96H)I)IItMLL$HL$Hl$PHl$LD$XLD$D$H\$ H\$($LL$xH|$hHT$8HD$p\$HT$8HH9HL$@HMH9H)I)IItM	LL$HL$Hl$PHl$LD$XLD$D$H\$ H\$0$LL$xH|$hLT$0Ht$@HT$8HD$p\$tgHML9wUH9wPH)I)IItMHLH$L$H$L$1H$H$H`HLH9$tdH9~_HHMH9wJH)I)IItMH$L$H$L$1H$H$H`H$1H$H$H$1H$H$H`Hl$(HD
    811 
    812 .unicode/utf8.DecodeRune
    813 "".isSpace
    814 .unicode/utf8.DecodeRune
    815 "".isSpace
    816 $runtime.panicslice	
    817 $runtime.panicslice
    818 
    819 $runtime.panicslice
    820 
    821 $runtime.panicslice
    822 
    823 0runtime.morestack_noctxt&"".autotmp_0320type.[]uint8"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316type.[]uint8"".autotmp_0315type.bool"".autotmp_0314type.[]uint8"".autotmp_0313type.int"".autotmp_0310/type.[]uint8"".autotmp_0309type.int"".i?type.int"".width_type.int"".widthotype.int"".startOtype.int"".errtype.error"".tokenPtype.[]uint8"".advance@type.int"".atEOF0type.bool"".datatype.[]uint82|?)HV	W*
    825 W0g_9
	Tgclocals4d8870d794128007eafd160e912f2b3dTgclocals790e5cc5051fc0affc980ade09e929ecRprebuilts/go/darwin-x86/src/bufio/scan.go"".init

eH%H;aOH tuH HH$HD$ H\$HH\$=HHH$HD$ H\$HH\$=mHHH$HD$H\$HH\$=HHH$HD$H\$HH\$=HHH$HD$/H\$HH\$=eHHH$HD$0H\$HH\$=
HHH$HD$H\$HH\$=HHH$HD$7H\$HH\$=udHHH$HD$;H\$HH\$=uHH H-H,$H\$H-H,$H\$H-H,$H\$8H-H,$H\$H-H,$H\$H-H,$H\$0H-H,$H\$H-H,$H\$H-H,$H\$(
    832 4"".initdoneL"".initdonej
    833 "runtime.throwinitz"".initdone
    834 bytes.init
    835 io.initXgo.string."bufio: invalid use of UnreadByte"
    836 errors.New."".ErrInvalidUnreadByte6runtime.writeBarrierEnabled."".ErrInvalidUnreadByteXgo.string."bufio: invalid use of UnreadRune"
    837 errors.New."".ErrInvalidUnreadRune6runtime.writeBarrierEnabled."".ErrInvalidUnreadRune<go.string."bufio: buffer full"
    838 errors.New "".ErrBufferFull6runtime.writeBarrierEnabled "".ErrBufferFullBgo.string."bufio: negative count"
    839 errors.New&"".ErrNegativeCount6runtime.writeBarrierEnabled&"".ErrNegativeCountvgo.string."bufio: reader returned negative count from Read"
    840 errors.New$"".errNegativeRead6runtime.writeBarrierEnabled$"".errNegativeReadxgo.string."bufio: writer returned negative count from Write"
    841 errors.New&"".errNegativeWrite6runtime.writeBarrierEnabled&"".errNegativeWriteRgo.string."bufio.Scanner: token too long"
    842 errors.New"".ErrTooLong6runtime.writeBarrierEnabled"".ErrTooLonggo.string."bufio.Scanner: SplitFunc returns negative advance count"
    843 errors.New*"".ErrNegativeAdvance6runtime.writeBarrierEnabled*"".ErrNegativeAdvancego.string."bufio.Scanner: SplitFunc returns advance count beyond input"	
    844 errors.New	&"".ErrAdvanceTooFar	6runtime.writeBarrierEnabled	&"".ErrAdvanceTooFar	"".initdone
    845 &"".ErrAdvanceTooFar
    846 
    847 .runtime.writebarrierptr
    848 *"".ErrNegativeAdvance
    849 
    850 .runtime.writebarrierptr
    851 "".ErrTooLong
    852 
    853 .runtime.writebarrierptr&"".errNegativeWrite
    856 .runtime.writebarrierptr$"".errNegativeRead
    859 .runtime.writebarrierptr&"".ErrNegativeCount
    862 .runtime.writebarrierptr "".ErrBufferFull
    865 .runtime.writebarrierptr."".ErrInvalidUnreadRune
    868 .runtime.writebarrierptr
."".ErrInvalidUnreadByte
    871 .runtime.writebarrierptr
    873 0runtime.morestack_noctxt@@?@?@$LL>>>>n>>>::$no4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/bufio/scan.goTprebuilts/go/darwin-x86/src/bufio/bufio.go,"".(*ReadWriter).reset@$H\$H+Hl$$"".(*Reader).reset`"".r@type.io.Reader"".buftype.[]uint8""..this&type.*"".ReadWriter   Tgclocals57cb53c6e1baf060ff3024e169f48a16Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*ReadWriter).fill@$H\$H+Hl$""".(*Reader).fill""..this&type.*"".ReadWriter   Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".(*ReadWriter).readErr@<1H\$H\$H\$H+Hl$4("".(*Reader).readErr0"".~r0type.error""..this&type.*"".ReadWriter   Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*ReadWriter).Peek`^1H\$H\$ H\$(1H\$0H\$8H\$H+Hl$V""".(*Reader).Peekp"".~r2Ptype.error"".~r1 type.[]uint8"".ntype.int""..this&type.*"".ReadWriter00
    880 0Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".(*ReadWriter).Discard`R11H\$ H\$(HD$H\$H+Hl$J("".(*Reader).DiscardP"".err0type.error"".discarded type.int"".ntype.int""..this&type.*"".ReadWriter000Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*ReadWriter).Read`R11H\$0H\$8HD$(H\$H+Hl$J""".(*Reader).Readp"".errPtype.error"".n@type.int"".ptype.[]uint8""..this&type.*"".ReadWriter000Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*ReadWriter).ReadByte`J11H\$H\$ D$H\$H+Hl$B*"".(*Reader).ReadByte@"".err type.error"".ctype.uint8""..this&type.*"".ReadWriter000Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>6"".(*ReadWriter).UnreadByte@<1H\$H\$H\$H+Hl$4."".(*Reader).UnreadByte0"".~r0type.error""..this&type.*"".ReadWriter   Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*ReadWriter).ReadRuneb11H\$ H\$(HD$D$H\$H+Hl$Z*"".(*Reader).ReadRuneP"".err0type.error"".size type.int"".rtype.int32""..this&type.*"".ReadWriter@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>6"".(*ReadWriter).UnreadRune@<1H\$H\$H\$H+Hl$4."".(*Reader).UnreadRune0"".~r0type.error""..this&type.*"".ReadWriter   Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*ReadWriter).ReadSlicef111H\$0H\$81H\$H\$ H\$(H\$H+Hl$^,"".(*Reader).ReadSlicep"".errPtype.error"".line type.[]uint8"".delimtype.uint8""..this&type.*"".ReadWriter@@@Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*ReadWriter).ReadLinep111H\$0H\$8D$(1H\$H\$H\$ H\$H+Hl$h*"".(*Reader).ReadLinep"".errPtype.error"".isPrefix@type.bool"".linetype.[]uint8""..this&type.*"".ReadWriter@@@Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*ReadWriter).ReadBytesf111H\$0H\$81H\$H\$ H\$(H\$H+Hl$^,"".(*Reader).ReadBytesp"".errPtype.error"".line type.[]uint8"".delimtype.uint8""..this&type.*"".ReadWriter@@@Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>6"".(*ReadWriter).ReadString`\111H\$(H\$01H\$H\$ H\$H+Hl$T."".(*Reader).ReadString`"".err@type.error"".line type.string"".delimtype.uint8""..this&type.*"".ReadWriter000Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".(*ReadWriter).WriteTo`R11H\$(H\$0HD$ H\$H+Hl$J("".(*Reader).WriteTo`"".err@type.error"".n0type.int64"".wtype.io.Writer""..this&type.*"".ReadWriter00 0Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*ReadWriter).writeBuf`NHD$ 1H\$(H\$0H\$H+Hl$F*"".(*Reader).writeBuf`"".~r2@type.error"".~r10type.int64"".wtype.io.Writer""..this&type.*"".ReadWriter00"0Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".(*ReadWriter).Flush@>1H\$H\$H\$HkHl$6$"".(*Writer).Flush0"".~r0type.error""..this&type.*"".ReadWriter  $ Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".(*ReadWriter).flush@>1H\$H\$H\$HkHl$6$"".(*Writer).flush0"".~r0type.error""..this&type.*"".ReadWriter  & Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*ReadWriter).Available@8HD$H\$HkHl$0,"".(*Writer).Available "".~r0type.int""..this&type.*"".ReadWriter  ( Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".(*ReadWriter).Write`T11H\$0H\$8HD$(H\$HkHl$L$"".(*Writer).Writep"".errPtype.error
    899 "".nn@type.int"".ptype.[]uint8""..this&type.*"".ReadWriter00*0Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*ReadWriter).WriteByte@>1H\$H\$ H\$HkHl$6,"".(*Writer).WriteByte@"".~r1 type.error"".ctype.uint8""..this&type.*"".ReadWriter  , Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*ReadWriter).WriteRune`T11H\$ H\$(HD$H\$HkHl$L,"".(*Writer).WriteRuneP"".err0type.error"".size type.int"".rtype.int32""..this&type.*"".ReadWriter00.0Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>8"".(*ReadWriter).WriteString`PHD$ 1H\$(H\$0H\$HkHl$H0"".(*Writer).WriteString`"".~r2@type.error"".~r10type.int"".stype.string""..this&type.*"".ReadWriter0000Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*ReadWriter).ReadFrom`T11H\$(H\$0HD$ H\$HkHl$L*"".(*Writer).ReadFrom`"".err@type.error"".n0type.int64"".rtype.io.Reader""..this&type.*"".ReadWriter0020Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".ReadWriter.reseteH%HD$H;AHHY HtH$H9;uH#H$L$L$H$H$H$H|$@1HLL$(LL$@LD$0LD$HHt$8Ht$PHl$Hl$XHT$ HT$`H$H$Ht'Hl$@HL$Hl$H-H,$H
    906 
    907 
    908  runtime.duffzerotype."".Reader
    909 (runtime.typedmemmove
    910 0runtime.morestack_noctxtp"".autotmp_0322type."".Reader"".rtype.io.Reader"".buftype.[]uint8"".rPtype.io.Reader"".buf type.[]uint8""..this$type."".ReadWriter4Tgclocalsd988fd9f0c4cd978acb91b92bfe23525Tgclocals607cdd8af25133e14ee3a0c0aab33c85<autogenerated>$"".ReadWriter.filleH%H;av-HHY Ht
H|$H9;uH#H\$H$H
    917 f
    918 """.(*Reader).fillz
    919 0runtime.morestack_noctxt ""..this$type."".ReadWriter(P6P
    920 2Tgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".ReadWriter.readErreH%HY Ht
H|$H9;uH#1HD$1HtHP8HH@1Hh8Hh@HT$HL$ 
    923 @"".~r0 type.error""..this$type."".ReadWriterPP8PTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".ReadWriter.PeekeH%H;aH8HY Ht
H|$@H9;uH#1H\$XH\$`H\$h1H\$pH\$xH\$@H$H\$PH\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8]
    927 
    928 """.(*Reader).Peek
    929 0runtime.morestack_noctxtp"".~r2`type.error"".~r10type.[]uint8"".n type.int""..this$type."".ReadWriterpop:
    932 ]STgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".ReadWriter.DiscardeH%H;avcH(HY Ht
H|$0H9;uH#11H\$PH\$XH\$0H$H\$@H\$HT$HL$HD$ HT$HHL$PHD$XH(
    935 
    936 ("".(*Reader).Discard
    937 0runtime.morestack_noctxt`P"".err@type.error"".discarded0type.int"".n type.int""..this$type."".ReadWriterP^OP<
    939 J6Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".ReadWriter.ReadeH%H;avwH8HY Ht
H|$@H9;uH#11H\$pH\$xH\$@H$H\$PH\$H\$XH\$H\$`H\$HT$ HL$(HD$0HT$hHL$pHD$xH8p
    942 
    943 """.(*Reader).Read
    944 0runtime.morestack_noctxtp"".err`type.error"".nPtype.int"".p type.[]uint8""..this$type."".ReadWriterprop
    946 >
    947 ^2Tgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".ReadWriter.ReadByteeH%H;avXH HY Ht
H|$(H9;uH#11H\$@H\$HH\$(H$\$HL$HD$\$8HL$@HD$HH 
    950 
    951 *"".(*Reader).ReadByte
    952 0runtime.morestack_noctxtP@"".err0type.error"".c type.uint8""..this$type."".ReadWriter@S?@	p@p
    954 @0Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".ReadWriter.UnreadByteeH%H;aHY Ht
H|$H9;uH#1HD$1HXHH|HX(Hu#HX0H~H
HHL$HD$ HX(H~HHh(HHh(Hp(HHHHhH9s"H2HhH@+H@HH@P1HH@01
    959 
    960 ."".ErrInvalidUnreadByte."".ErrInvalidUnreadByte
    961 $runtime.panicindex
    962 0runtime.morestack_noctxt@"".~r0 type.error""..this$type."".ReadWriterBTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".ReadWriter.ReadRuneeH%H;avaH(HY Ht
H|$0H9;uH#11H\$PH\$XH\$0H$l$HT$HL$HD$ l$@HT$HHL$PHD$XH(
    967 
    968 *"".(*Reader).ReadRune
    969 0runtime.morestack_noctxt`P"".err@type.error"".size0type.int"".r type.int32""..this$type."".ReadWriterP\OPD
    971 @@Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".ReadWriter.UnreadRuneeH%HY Ht
H|$H9;uH#1HD$1HXPH|<HX(HhPH9|/L@(HhPI)L@(H@HH@P1HHL$HD$ H
H
    975 ."".ErrInvalidUnreadRune."".ErrInvalidUnreadRune@"".~r0 type.error""..this$type."".ReadWriterFTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".ReadWriter.ReadSliceeH%H;aH8HY Ht
H|$@H9;uH#111H\$pH\$x1H\$XH\$`H\$hH\$@H$\$P\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8Z
    979 
    980 ,"".(*Reader).ReadSlice
    981 0runtime.morestack_noctxtp"".err`type.error"".line0type.[]uint8"".delim type.uint8""..this$type."".ReadWriterpopH
    983 `PTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".ReadWriter.ReadLineeH%H;aH8HY Ht
H|$@H9;uH#111H\$pH\$x1H\$PH\$XH\$`H\$@H$H|$Ht$Hl$\$ HL$(HD$0H|$PHt$XHl$`\$hHL$pHD$xH8Z
    986 
    987 *"".(*Reader).ReadLine
    988 0runtime.morestack_noctxtp"".err`type.error"".isPrefixPtype.bool"".line type.[]uint8""..this$type."".ReadWriterpopJ
    990 WYTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".ReadWriter.ReadByteseH%H;aH8HY Ht
H|$@H9;uH#111H\$pH\$x1H\$XH\$`H\$hH\$@H$\$P\$Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8Z
    993 
    994 ,"".(*Reader).ReadBytes
    995 0runtime.morestack_noctxtp"".err`type.error"".line0type.[]uint8"".delim type.uint8""..this$type."".ReadWriterpopL
    997 `PTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".ReadWriter.ReadStringeH%H;avzH0HY Ht
H|$8H9;uH#111H\$`H\$h1H\$PH\$XH\$8H$\$H\$Hl$HT$HL$ HD$(Hl$PHT$XHL$`HD$hH0m
   1000 
   1001 ."".(*Reader).ReadString
   1002 0runtime.morestack_noctxtp`"".errPtype.error"".line0type.string"".delim type.uint8""..this$type."".ReadWriter`u_`N
   1004 WITgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".ReadWriter.WriteToeH%H;avmH0HY Ht
H|$8H9;uH#11H\$`H\$hH\$8H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0z
   1007 
   1008 ("".(*Reader).WriteTo
   1009 0runtime.morestack_noctxtp`"".errPtype.error"".n@type.int64"".w type.io.Writer""..this$type."".ReadWriter`h_`P
   1011 T<Tgclocalsa5947a078ff8f32dc378f6b0b238531dTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".ReadWriter.writeBufeH%H;avkH0HY Ht
H|$8H9;uH#1H\$`H\$hH\$8H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0|
   1014 
   1015 *"".(*Reader).writeBuf
   1016 0runtime.morestack_noctxtp`"".~r2Ptype.error"".~r1@type.int64"".w type.io.Writer""..this$type."".ReadWriter`f_`R
   1019 R>Tgclocalsa5947a078ff8f32dc378f6b0b238531dTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".ReadWriter.FlusheH%H;avMHHY Ht
H|$ H9;uH#1H\$0H\$8H\$(H$HL$HD$HL$0HD$8H
   1022 ~
   1023 $"".(*Writer).Flush
   1024 0runtime.morestack_noctxt@0"".~r0 type.error""..this$type."".ReadWriter0H/0pTp
   1026 >2Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".ReadWriter.flusheH%H;avMHHY Ht
H|$ H9;uH#1H\$0H\$8H\$(H$HL$HD$HL$0HD$8H
   1029 ~
   1030 $"".(*Writer).flush
   1031 0runtime.morestack_noctxt@0"".~r0 type.error""..this$type."".ReadWriter0H/0pVp
   1033 >2Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".ReadWriter.AvailablejeH%HY Ht
H|$H9;uH#HD$HhHX(H)Hl$
   1036 0"".~r0 type.int""..this$type."".ReadWriter@@X@Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".ReadWriter.WriteeH%H;avwH8HY Ht
H|$@H9;uH#11H\$pH\$xH\$HH$H\$PH\$H\$XH\$H\$`H\$HT$ HL$(HD$0HT$hHL$pHD$xH8p
   1040 
   1041 $"".(*Writer).Write
   1042 0runtime.morestack_noctxtp"".err`type.error
   1044 "".nnPtype.int"".p type.[]uint8""..this$type."".ReadWriterprop
   1045 Z
   1046 ^2Tgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".ReadWriter.WriteByteeH%H;avVH HY Ht
H|$(H9;uH#1H\$@H\$HH\$0H$\$8\$HL$HD$HL$@HD$HH 
   1049 
   1050 ,"".(*Writer).WriteByte
   1051 0runtime.morestack_noctxtP@"".~r10type.error"".c type.uint8""..this$type."".ReadWriter@Q?@p\p
   1054 G)Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".ReadWriter.WriteRuneeH%H;avaH(HY Ht
H|$0H9;uH#11H\$PH\$XH\$8H$\$@\$HT$HL$HD$ HT$HHL$PHD$XH(
   1057 
   1058 ,"".(*Writer).WriteRune
   1059 0runtime.morestack_noctxt`P"".err@type.error"".size0type.int"".r type.int32""..this$type."".ReadWriterP\OP^
   1061 H8Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".ReadWriter.WriteStringeH%H;avkH0HY Ht
H|$8H9;uH#1H\$`H\$hH\$@H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0|
   1064 
   1065 0"".(*Writer).WriteString
   1066 0runtime.morestack_noctxtp`"".~r2Ptype.error"".~r1@type.int"".s type.string""..this$type."".ReadWriter`f_``
   1069 R>Tgclocals33bd09daed8d27c6aa5688ccfd7468adTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".ReadWriter.ReadFromeH%H;avmH0HY Ht
H|$8H9;uH#11H\$`H\$hH\$@H$H\$HH\$H\$PH\$HT$HL$ HD$(HT$XHL$`HD$hH0z
   1072 
   1073 *"".(*Writer).ReadFrom
   1074 0runtime.morestack_noctxtp`"".errPtype.error"".n@type.int64"".r type.io.Reader""..this$type."".ReadWriter`h_`b
   1076 T<Tgclocalsa5947a078ff8f32dc378f6b0b238531dTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>Tgclocalsde63343370a27ae1278a3558a8c673c0((Tgclocals14c16763214c88f6ebc22b4b638329b7((Tgclocalsb5b1f48fc385a1e7578af006b7551e4100Tgclocals42e7756549fd1f1e78e70fcb9f08dd2b00Tgclocals607cdd8af25133e14ee3a0c0aab33c85Tgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals55b93fc8500931e797aa082d87ba0d9eTgclocals57cb53c6e1baf060ff3024e169f48a163`go.string.hdr."bufio: tried to fill full buffer"   Xgo.string."bufio: tried to fill full buffer"Xgo.string."bufio: tried to fill full buffer"PBbufio: tried to fill full bufferTgclocalsf31330adfba2a741643485f4a6eda68a  Tgclocals51fa0e13d53d6bad7f86670d3edaeac6  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals0ebab88fa809a64715f990f20954c3c3
Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocalsf56b2291fa344104975cb6587be42b9b  Tgclocals88a82235651174c058e0addadab4e659  avgo.string.hdr."bufio: tried to rewind past start of buffer"  +ngo.string."bufio: tried to rewind past start of buffer"ngo.string."bufio: tried to rewind past start of buffer"`Xbufio: tried to rewind past start of bufferTgclocals21628ef15e17a47b249310bffa1e8bd0((Tgclocals8eb852d251341d0179cb59584c49209f((cTgclocals171b616403558434c53ff861c413f69ePP'$$Tgclocals233dc4ecce920b62f981fc792ec53848PPaaaaaaaTgclocalsf56b2291fa344104975cb6587be42b9b  Tgclocals385909f76d6de739e72f24698b953b71  1Tgclocals669c7d9f0df32c6735ae27d87c97b25c((Tgclocalsaeadbc73530d5f877ac2661d18e94fa0((Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals13a990b4a341857296a1c12de153dcaaTgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals14c16763214c88f6ebc22b4b638329b7((Tgclocals30cbcc4cbf7928c6a8c16f3943e312ad88Tgclocalsaa52d274abdec77c8c6f0039727529fb88Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals21545c880057c850155b44b51d3dfff9  Tgclocals41a13ac73c712c01973b8fe23f62d694  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals0ebab88fa809a64715f990f20954c3c3
Tgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals895d0569a38a56443b84805daa09d838Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals9693f46e60a90ce4cc19ba9e42baf1e0((	0Tgclocals3b058289e87a1930e774a55a7e38340f((77Tgclocals0c8aa8e80191a30eac23f1a218103f16  Tgclocals51af24152615272c3d9efc8538f95767  Tgclocals63cd04555cdf6098214cf65f2895608400Tgclocals42e7756549fd1f1e78e70fcb9f08dd2b00Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2go.string.hdr."bufio.Scan: 100 empty tokens without progressing"  0xgo.string."bufio.Scan: 100 empty tokens without progressing"xgo.string."bufio.Scan: 100 empty tokens without progressing"pbbufio.Scan: 100 empty tokens without progressingTgclocalsc902f3593191ae78e3a4f8da0146b76a
   1083 +00 Tgclocals0241939093ad48db63b213bcfccb79ff``
   1086 Tgclocals11248568c735471f107fcdfd00b1e355((2
Tgclocalscb395d89503762333b1bfb09ba74eb12((Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals5c5a9f3dff47a8940bdc317b9324ac2aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals4d8870d794128007eafd160e912f2b3d
   1088 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals4d8870d794128007eafd160e912f2b3d
   1089 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals4d8870d794128007eafd160e912f2b3d
   1090 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals4d8870d794128007eafd160e912f2b3d
   1091 0""..gobytes.1`go.string.hdr."bufio: invalid use of UnreadByte"   Xgo.string."bufio: invalid use of UnreadByte"Xgo.string."bufio: invalid use of UnreadByte"PBbufio: invalid use of UnreadByte`go.string.hdr."bufio: invalid use of UnreadRune"   Xgo.string."bufio: invalid use of UnreadRune"Xgo.string."bufio: invalid use of UnreadRune"PBbufio: invalid use of UnreadRuneDgo.string.hdr."bufio: buffer full"  <go.string."bufio: buffer full"<go.string."bufio: buffer full"0&bufio: buffer fullJgo.string.hdr."bufio: negative count"  Bgo.string."bufio: negative count"Bgo.string."bufio: negative count"0,bufio: negative count~go.string.hdr."bufio: reader returned negative count from Read"  /vgo.string."bufio: reader returned negative count from Read"vgo.string."bufio: reader returned negative count from Read"``bufio: reader returned negative count from Readgo.string.hdr."bufio: writer returned negative count from Write"  0xgo.string."bufio: writer returned negative count from Write"xgo.string."bufio: writer returned negative count from Write"pbbufio: writer returned negative count from WriteZgo.string.hdr."bufio.Scanner: token too long"  Rgo.string."bufio.Scanner: token too long"Rgo.string."bufio.Scanner: token too long"@<bufio.Scanner: token too longgo.string.hdr."bufio.Scanner: SplitFunc returns negative advance count"  7go.string."bufio.Scanner: SplitFunc returns negative advance count"go.string."bufio.Scanner: SplitFunc returns negative advance count"ppbufio.Scanner: SplitFunc returns negative advance countgo.string.hdr."bufio.Scanner: SplitFunc returns advance count beyond input"  ;go.string."bufio.Scanner: SplitFunc returns advance count beyond input"go.string."bufio.Scanner: SplitFunc returns advance count beyond input"xbufio.Scanner: SplitFunc returns advance count beyond inputTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb.."".ErrInvalidUnreadByte type.error.."".ErrInvalidUnreadRune type.error. "".ErrBufferFull type.error.&"".ErrNegativeCount type.error.$"".errNegativeRead type.error.&"".errNegativeWrite type.error."".ErrTooLong type.error.*"".ErrNegativeAdvance type.error.&"".ErrAdvanceTooFar type.error,"".errorRune0type.[]uint80""..gobytes.10"".initdonetype.uint8&"".NewReaderSizef "".NewReaderSize"".NewReaderf"".NewReader*"".(*Reader).Resetf$"".(*Reader).Reset*"".(*Reader).resetf$"".(*Reader).reset("".(*Reader).fillf""".(*Reader).fill."".(*Reader).readErrf("".(*Reader).readErr("".(*Reader).Peekf""".(*Reader).Peek."".(*Reader).Discardf("".(*Reader).Discard("".(*Reader).Readf""".(*Reader).Read0"".(*Reader).ReadBytef*"".(*Reader).ReadByte4"".(*Reader).UnreadBytef."".(*Reader).UnreadByte0"".(*Reader).ReadRunef*"".(*Reader).ReadRune4"".(*Reader).UnreadRunef."".(*Reader).UnreadRune0"".(*Reader).Bufferedf*"".(*Reader).Buffered2"".(*Reader).ReadSlicef,"".(*Reader).ReadSlice0"".(*Reader).ReadLinef*"".(*Reader).ReadLine2"".(*Reader).ReadBytesf,"".(*Reader).ReadBytes4"".(*Reader).ReadStringf."".(*Reader).ReadString."".(*Reader).WriteTof("".(*Reader).WriteTo0"".(*Reader).writeBuff*"".(*Reader).writeBuf&"".NewWriterSizef "".NewWriterSize"".NewWriterf"".NewWriter*"".(*Writer).Resetf$"".(*Writer).Reset*"".(*Writer).Flushf$"".(*Writer).Flush*"".(*Writer).flushf$"".(*Writer).flush2"".(*Writer).Availablef,"".(*Writer).Available0"".(*Writer).Bufferedf*"".(*Writer).Buffered*"".(*Writer).Writef$"".(*Writer).Write2"".(*Writer).WriteBytef,"".(*Writer).WriteByte2"".(*Writer).WriteRunef,"".(*Writer).WriteRune6"".(*Writer).WriteStringf0"".(*Writer).WriteString0"".(*Writer).ReadFromf*"".(*Writer).ReadFrom&"".NewReadWriterf "".NewReadWriter "".NewScannerf"".NewScanner("".(*Scanner).Errf""".(*Scanner).Err,"".(*Scanner).Bytesf&"".(*Scanner).Bytes*"".(*Scanner).Textf$"".(*Scanner).Text*"".(*Scanner).Scanf$"".(*Scanner).Scan0"".(*Scanner).advancef*"".(*Scanner).advance."".(*Scanner).setErrf("".(*Scanner).setErr,"".(*Scanner).Splitf&"".(*Scanner).Split"".ScanBytesf"".ScanBytes"".ScanRunesf"".ScanRunes"".dropCRf"".dropCR"".ScanLinesf"".ScanLines"".isSpacef"".isSpace"".ScanWordsf"".ScanWords"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8:go.string.hdr."*bufio.Reader"  
2go.string."*bufio.Reader"2go.string."*bufio.Reader" *bufio.ReaderNgo.string.hdr."func(*bufio.Reader) int"  Fgo.string."func(*bufio.Reader) int"Fgo.string."func(*bufio.Reader) int"00func(*bufio.Reader) int2type.func(*"".Reader) int30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*bufio.Reader) int"pDgo.weak.type.*func(*"".Reader) int"runtime.zerovalue2type.func(*"".Reader) int2type.func(*"".Reader) inttype.*"".Readertype.intpgo.typelink.func(*bufio.Reader) int	func(*"".Reader) int2type.func(*"".Reader) intjgo.string.hdr."func(*bufio.Reader, int) (int, error)"  %bgo.string."func(*bufio.Reader, int) (int, error)"bgo.string."func(*bufio.Reader, int) (int, error)"PLfunc(*bufio.Reader, int) (int, error)Ntype.func(*"".Reader, int) (int, error)nBG30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*bufio.Reader, int) (int, error)"p`go.weak.type.*func(*"".Reader, int) (int, error)"runtime.zerovalueNtype.func(*"".Reader, int) (int, error)Ntype.func(*"".Reader, int) (int, error)type.*"".Readertype.inttype.inttype.errorgo.typelink.func(*bufio.Reader, int) (int, error)	func(*"".Reader, int) (int, error)Ntype.func(*"".Reader, int) (int, error)rgo.string.hdr."func(*bufio.Reader, int) ([]uint8, error)"  )jgo.string."func(*bufio.Reader, int) ([]uint8, error)"jgo.string."func(*bufio.Reader, int) ([]uint8, error)"`Tfunc(*bufio.Reader, int) ([]uint8, error)Vtype.func(*"".Reader, int) ([]uint8, error)}30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*bufio.Reader, int) ([]uint8, error)"phgo.weak.type.*func(*"".Reader, int) ([]uint8, error)"runtime.zerovalueVtype.func(*"".Reader, int) ([]uint8, error)Vtype.func(*"".Reader, int) ([]uint8, error)type.*"".Readertype.inttype.[]uint8type.errorgo.typelink.func(*bufio.Reader, int) ([]uint8, error)	func(*"".Reader, int) ([]uint8, error)Vtype.func(*"".Reader, int) ([]uint8, error)rgo.string.hdr."func(*bufio.Reader, []uint8) (int, error)"  )jgo.string."func(*bufio.Reader, []uint8) (int, error)"jgo.string."func(*bufio.Reader, []uint8) (int, error)"`Tfunc(*bufio.Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)/~30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*bufio.Reader, []uint8) (int, error)"phgo.weak.type.*func(*"".Reader, []uint8) (int, error)"runtime.zerovalueVtype.func(*"".Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)type.*"".Readertype.[]uint8type.inttype.errorgo.typelink.func(*bufio.Reader, []uint8) (int, error)	func(*"".Reader, []uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)dgo.string.hdr."func(*bufio.Reader) (uint8, error)"  "\go.string."func(*bufio.Reader) (uint8, error)"\go.string."func(*bufio.Reader) (uint8, error)"PFfunc(*bufio.Reader) (uint8, error)Htype.func(*"".Reader) (uint8, error)330 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*bufio.Reader) (uint8, error)"pZgo.weak.type.*func(*"".Reader) (uint8, error)"runtime.zerovalueHtype.func(*"".Reader) (uint8, error)Htype.func(*"".Reader) (uint8, error)type.*"".Readertype.uint8type.errorgo.typelink.func(*bufio.Reader) (uint8, error)	func(*"".Reader) (uint8, error)Htype.func(*"".Reader) (uint8, error)vgo.string.hdr."func(*bufio.Reader, uint8) ([]uint8, error)"  +ngo.string."func(*bufio.Reader, uint8) ([]uint8, error)"ngo.string."func(*bufio.Reader, uint8) ([]uint8, error)"`Xfunc(*bufio.Reader, uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error)30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.Reader, uint8) ([]uint8, error)"plgo.weak.type.*func(*"".Reader, uint8) ([]uint8, error)"runtime.zerovalueZtype.func(*"".Reader, uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error)type.*"".Readertype.uint8type.[]uint8type.errorgo.typelink.func(*bufio.Reader, uint8) ([]uint8, error)	func(*"".Reader, uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error)tgo.string.hdr."func(*bufio.Reader) ([]uint8, bool, error)"  *lgo.string."func(*bufio.Reader) ([]uint8, bool, error)"lgo.string."func(*bufio.Reader) ([]uint8, bool, error)"`Vfunc(*bufio.Reader) ([]uint8, bool, error)Xtype.func(*"".Reader) ([]uint8, bool, error)x30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*bufio.Reader) ([]uint8, bool, error)"pjgo.weak.type.*func(*"".Reader) ([]uint8, bool, error)"runtime.zerovalueXtype.func(*"".Reader) ([]uint8, bool, error)Xtype.func(*"".Reader) ([]uint8, bool, error)type.*"".Readertype.[]uint8type.booltype.errorgo.typelink.func(*bufio.Reader) ([]uint8, bool, error)	func(*"".Reader) ([]uint8, bool, error)Xtype.func(*"".Reader) ([]uint8, bool, error)ngo.string.hdr."func(*bufio.Reader) (int32, int, error)"  'fgo.string."func(*bufio.Reader) (int32, int, error)"fgo.string."func(*bufio.Reader) (int32, int, error)"PPfunc(*bufio.Reader) (int32, int, error)Rtype.func(*"".Reader) (int32, int, error)30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*bufio.Reader) (int32, int, error)"pdgo.weak.type.*func(*"".Reader) (int32, int, error)"runtime.zerovalueRtype.func(*"".Reader) (int32, int, error)Rtype.func(*"".Reader) (int32, int, error)type.*"".Readertype.int32type.inttype.errorgo.typelink.func(*bufio.Reader) (int32, int, error)	func(*"".Reader) (int32, int, error)Rtype.func(*"".Reader) (int32, int, error)tgo.string.hdr."func(*bufio.Reader, uint8) (string, error)"  *lgo.string."func(*bufio.Reader, uint8) (string, error)"lgo.string."func(*bufio.Reader, uint8) (string, error)"`Vfunc(*bufio.Reader, uint8) (string, error)Xtype.func(*"".Reader, uint8) (string, error)|30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*bufio.Reader, uint8) (string, error)"pjgo.weak.type.*func(*"".Reader, uint8) (string, error)"runtime.zerovalueXtype.func(*"".Reader, uint8) (string, error)Xtype.func(*"".Reader, uint8) (string, error)type.*"".Readertype.uint8type.stringtype.errorgo.typelink.func(*bufio.Reader, uint8) (string, error)	func(*"".Reader, uint8) (string, error)Xtype.func(*"".Reader, uint8) (string, error)\go.string.hdr."func(*bufio.Reader, io.Reader)"  Tgo.string."func(*bufio.Reader, io.Reader)"Tgo.string."func(*bufio.Reader, io.Reader)"@>func(*bufio.Reader, io.Reader)@type.func(*"".Reader, io.Reader):o30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Reader, io.Reader)"pRgo.weak.type.*func(*"".Reader, io.Reader)"runtime.zerovalue@type.func(*"".Reader, io.Reader)@type.func(*"".Reader, io.Reader)type.*"".Readertype.io.Readergo.typelink.func(*bufio.Reader, io.Reader)	func(*"".Reader, io.Reader)@type.func(*"".Reader, io.Reader)Rgo.string.hdr."func(*bufio.Reader) error"  Jgo.string."func(*bufio.Reader) error"Jgo.string."func(*bufio.Reader) error"@4func(*bufio.Reader) error6type.func(*"".Reader) errorx30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*bufio.Reader) error"pHgo.weak.type.*func(*"".Reader) error"runtime.zerovalue6type.func(*"".Reader) error6type.func(*"".Reader) errortype.*"".Readertype.errorxgo.typelink.func(*bufio.Reader) error	func(*"".Reader) error6type.func(*"".Reader) errorzgo.string.hdr."func(*bufio.Reader, io.Writer) (int64, error)"  -rgo.string."func(*bufio.Reader, io.Writer) (int64, error)"rgo.string."func(*bufio.Reader, io.Writer) (int64, error)"`\func(*bufio.Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)B030 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.Reader, io.Writer) (int64, error)"ppgo.weak.type.*func(*"".Reader, io.Writer) (int64, error)"runtime.zerovalue^type.func(*"".Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)type.*"".Readertype.io.Writertype.int64type.errorgo.typelink.func(*bufio.Reader, io.Writer) (int64, error)	func(*"".Reader, io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)Fgo.string.hdr."func(*bufio.Reader)"  >go.string."func(*bufio.Reader)">go.string."func(*bufio.Reader)"0(func(*bufio.Reader)*type.func(*"".Reader);30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(*bufio.Reader)"p<go.weak.type.*func(*"".Reader)"runtime.zerovalue*type.func(*"".Reader)*type.func(*"".Reader)type.*"".Reader`go.typelink.func(*bufio.Reader)	func(*"".Reader)*type.func(*"".Reader)ngo.string.hdr."func(*bufio.Reader, []uint8, io.Reader)"  'fgo.string."func(*bufio.Reader, []uint8, io.Reader)"fgo.string."func(*bufio.Reader, []uint8, io.Reader)"PPfunc(*bufio.Reader, []uint8, io.Reader)Rtype.func(*"".Reader, []uint8, io.Reader)(30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*bufio.Reader, []uint8, io.Reader)"pdgo.weak.type.*func(*"".Reader, []uint8, io.Reader)"runtime.zerovalueRtype.func(*"".Reader, []uint8, io.Reader)Rtype.func(*"".Reader, []uint8, io.Reader)type.*"".Readertype.[]uint8type.io.Readergo.typelink.func(*bufio.Reader, []uint8, io.Reader)	func(*"".Reader, []uint8, io.Reader)Rtype.func(*"".Reader, []uint8, io.Reader)0go.string.hdr."Buffered"  (go.string."Buffered"(go.string."Buffered" Buffered4go.string.hdr."func() int"  
   1094 ,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() int.go.string.hdr."Discard"  &go.string."Discard"&go.string."Discard"DiscardLgo.string.hdr."func(int) (int, error)"  Dgo.string."func(int) (int, error)"Dgo.string."func(int) (int, error)"0.func(int) (int, error)6type.func(int) (int, error)30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(int) (int, error)"pHgo.weak.type.*func(int) (int, error)"runtime.zerovalue6type.func(int) (int, error)6type.func(int) (int, error)type.inttype.inttype.errorrgo.typelink.func(int) (int, error)	func(int) (int, error)6type.func(int) (int, error)(go.string.hdr."Peek"   go.string."Peek" go.string."Peek"
   1095 PeekTgo.string.hdr."func(int) ([]uint8, error)"  Lgo.string."func(int) ([]uint8, error)"Lgo.string."func(int) ([]uint8, error)"@6func(int) ([]uint8, error)>type.func(int) ([]uint8, error)<bC30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int) ([]uint8, error)"pPgo.weak.type.*func(int) ([]uint8, error)"runtime.zerovalue>type.func(int) ([]uint8, error)>type.func(int) ([]uint8, error)type.inttype.[]uint8type.errorgo.typelink.func(int) ([]uint8, error)	func(int) ([]uint8, error)>type.func(int) ([]uint8, error)(go.string.hdr."Read"   go.string."Read" go.string."Read"
   1096 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)0go.string.hdr."ReadByte"  (go.string."ReadByte"(go.string."ReadByte" ReadByteJgo.string.hdr."func() (uint8, error)"  Bgo.string."func() (uint8, error)"Bgo.string."func() (uint8, error)"0,func() (uint8, error)4type.func() (uint8, error)T30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func() (uint8, error)"pFgo.weak.type.*func() (uint8, error)"runtime.zerovalue4type.func() (uint8, error)4type.func() (uint8, error)type.uint8type.errorngo.typelink.func() (uint8, error)	func() (uint8, error)4type.func() (uint8, error)2go.string.hdr."ReadBytes"  	*go.string."ReadBytes"*go.string."ReadBytes" ReadBytesXgo.string.hdr."func(uint8) ([]uint8, error)"  Pgo.string."func(uint8) ([]uint8, error)"Pgo.string."func(uint8) ([]uint8, error)"@:func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error){30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(uint8) ([]uint8, error)"pTgo.weak.type.*func(uint8) ([]uint8, error)"runtime.zerovalueBtype.func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error)type.uint8type.[]uint8type.errorgo.typelink.func(uint8) ([]uint8, error)	func(uint8) ([]uint8, error)Btype.func(uint8) ([]uint8, error)0go.string.hdr."ReadLine"  (go.string."ReadLine"(go.string."ReadLine" ReadLineZgo.string.hdr."func() ([]uint8, bool, error)"  Rgo.string."func() ([]uint8, bool, error)"Rgo.string."func() ([]uint8, bool, error)"@<func() ([]uint8, bool, error)Dtype.func() ([]uint8, bool, error)W30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func() ([]uint8, bool, error)"pVgo.weak.type.*func() ([]uint8, bool, error)"runtime.zerovalueDtype.func() ([]uint8, bool, error)Dtype.func() ([]uint8, bool, error)type.[]uint8type.booltype.errorgo.typelink.func() ([]uint8, bool, error)	func() ([]uint8, bool, error)Dtype.func() ([]uint8, bool, error)0go.string.hdr."ReadRune"  (go.string."ReadRune"(go.string."ReadRune" ReadRuneTgo.string.hdr."func() (int32, int, error)"  Lgo.string."func() (int32, int, error)"Lgo.string."func() (int32, int, error)"@6func() (int32, int, error)>type.func() (int32, int, error)q630 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func() (int32, int, error)"pPgo.weak.type.*func() (int32, int, error)"runtime.zerovalue>type.func() (int32, int, error)>type.func() (int32, int, error)type.int32type.inttype.errorgo.typelink.func() (int32, int, error)	func() (int32, int, error)>type.func() (int32, int, error)2go.string.hdr."ReadSlice"  	*go.string."ReadSlice"*go.string."ReadSlice" ReadSlice4go.string.hdr."ReadString"  
   1097 ,go.string."ReadString",go.string."ReadString" ReadStringVgo.string.hdr."func(uint8) (string, error)"  Ngo.string."func(uint8) (string, error)"Ngo.string."func(uint8) (string, error)"@8func(uint8) (string, error)@type.func(uint8) (string, error)|^30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(uint8) (string, error)"pRgo.weak.type.*func(uint8) (string, error)"runtime.zerovalue@type.func(uint8) (string, error)@type.func(uint8) (string, error)type.uint8type.stringtype.errorgo.typelink.func(uint8) (string, error)	func(uint8) (string, error)@type.func(uint8) (string, error)*go.string.hdr."Reset"  "go.string."Reset""go.string."Reset"Reset>go.string.hdr."func(io.Reader)"  6go.string."func(io.Reader)"6go.string."func(io.Reader)"  func(io.Reader)(type.func(io.Reader)30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(io.Reader)"p:go.weak.type.*func(io.Reader)"runtime.zerovalue(type.func(io.Reader)(type.func(io.Reader)type.io.ReaderVgo.typelink.func(io.Reader)	func(io.Reader)(type.func(io.Reader)4go.string.hdr."UnreadByte"  
   1099 ,go.string."UnreadByte",go.string."UnreadByte" UnreadByte8go.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() error4go.string.hdr."UnreadRune"  
   1101 ,go.string."UnreadRune",go.string."UnreadRune" UnreadRune.go.string.hdr."WriteTo"  &go.string."WriteTo"&go.string."WriteTo"WriteTo\go.string.hdr."func(io.Writer) (int64, error)"  Tgo.string."func(io.Writer) (int64, error)"Tgo.string."func(io.Writer) (int64, error)"@>func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)\30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(io.Writer) (int64, error)"pXgo.weak.type.*func(io.Writer) (int64, error)"runtime.zerovalueFtype.func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)type.io.Writertype.int64type.errorgo.typelink.func(io.Writer) (int64, error)	func(io.Writer) (int64, error)Ftype.func(io.Writer) (int64, error)(go.string.hdr."fill"   go.string."fill" go.string."fill"
   1102 fill*go.string.hdr."bufio"  "go.string."bufio""go.string."bufio"bufio"go.importpath."".  "go.string."bufio",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().go.string.hdr."readErr"  &go.string."readErr"&go.string."readErr"readErr*go.string.hdr."reset"  "go.string."reset""go.string."reset"resetPgo.string.hdr."func([]uint8, io.Reader)"  Hgo.string."func([]uint8, io.Reader)"Hgo.string."func([]uint8, io.Reader)"@2func([]uint8, io.Reader):type.func([]uint8, io.Reader);)30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func([]uint8, io.Reader)"pLgo.weak.type.*func([]uint8, io.Reader)"runtime.zerovalue:type.func([]uint8, io.Reader):type.func([]uint8, io.Reader)type.[]uint8type.io.Readerzgo.typelink.func([]uint8, io.Reader)	func([]uint8, io.Reader):type.func([]uint8, io.Reader)0go.string.hdr."writeBuf"  (go.string."writeBuf"(go.string."writeBuf" writeBuftype.*"".Reader60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*bufio.Reader"p0go.weak.type.**"".Reader"runtime.zerovaluetype."".Reader`type.*"".Readertype.*"".Reader0go.string.hdr."Buffered"type.func() int2type.func(*"".Reader) int*"".(*Reader).Buffered*"".(*Reader).Buffered.go.string.hdr."Discard"6type.func(int) (int, error)Ntype.func(*"".Reader, int) (int, error)("".(*Reader).Discard("".(*Reader).Discard(go.string.hdr."Peek">type.func(int) ([]uint8, error)Vtype.func(*"".Reader, int) ([]uint8, error)""".(*Reader).Peek""".(*Reader).Peek(go.string.hdr."Read">type.func([]uint8) (int, error)Vtype.func(*"".Reader, []uint8) (int, error)""".(*Reader).Read""".(*Reader).Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Htype.func(*"".Reader) (uint8, error)*"".(*Reader).ReadByte*"".(*Reader).ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error),"".(*Reader).ReadBytes,"".(*Reader).ReadBytes0go.string.hdr."ReadLine"Dtype.func() ([]uint8, bool, error)Xtype.func(*"".Reader) ([]uint8, bool, error)*"".(*Reader).ReadLine*"".(*Reader).ReadLine0go.string.hdr."ReadRune">type.func() (int32, int, error)Rtype.func(*"".Reader) (int32, int, error)*"".(*Reader).ReadRune*"".(*Reader).ReadRune2go.string.hdr."ReadSlice"Btype.func(uint8) ([]uint8, error)Ztype.func(*"".Reader, uint8) ([]uint8, error),"".(*Reader).ReadSlice,"".(*Reader).ReadSlice4go.string.hdr."ReadString"@type.func(uint8) (string, error)	Xtype.func(*"".Reader, uint8) (string, error)	."".(*Reader).ReadString	."".(*Reader).ReadString	*go.string.hdr."Reset"	(type.func(io.Reader)	@type.func(*"".Reader, io.Reader)	$"".(*Reader).Reset
   1105 $"".(*Reader).Reset
   1106 4go.string.hdr."UnreadByte"
   1107 "type.func() error
   1108 6type.func(*"".Reader) error
   1109 ."".(*Reader).UnreadByte
   1110 ."".(*Reader).UnreadByte
   1111 4go.string.hdr."UnreadRune""type.func() error6type.func(*"".Reader) error."".(*Reader).UnreadRune."".(*Reader).UnreadRune.go.string.hdr."WriteTo"Ftype.func(io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)("".(*Reader).WriteTo("".(*Reader).WriteTo(go.string.hdr."fill""go.importpath."".type.func()*type.func(*"".Reader)""".(*Reader).fill
""".(*Reader).fill
.go.string.hdr."readErr"
"go.importpath."".
"type.func() error
6type.func(*"".Reader) error
("".(*Reader).readErr
("".(*Reader).readErr
*go.string.hdr."reset""go.importpath."".:type.func([]uint8, io.Reader)Rtype.func(*"".Reader, []uint8, io.Reader)$"".(*Reader).reset$"".(*Reader).reset0go.string.hdr."writeBuf""go.importpath."".Ftype.func(io.Writer) (int64, error)^type.func(*"".Reader, io.Writer) (int64, error)*"".(*Reader).writeBuf*"".(*Reader).writeBuf&runtime.gcbits.99018go.string.hdr."bufio.Reader"  0go.string."bufio.Reader"0go.string."bufio.Reader" bufio.Reader&go.string.hdr."buf"  go.string."buf"go.string."buf"buf$go.string.hdr."rd"  go.string."rd"go.string."rd"rd"go.string.hdr."r"  go.string."r"go.string."r"r"go.string.hdr."w"  go.string."w"go.string."w"w&go.string.hdr."err"  go.string."err"go.string."err"err0go.string.hdr."lastByte"  (go.string."lastByte"(go.string."lastByte" lastByte8go.string.hdr."lastRuneSize"  0go.string."lastRuneSize"0go.string."lastRuneSize" lastRuneSize,go.string.hdr."Reader"  $go.string."Reader"$go.string."Reader"Readertype."".ReaderXH.(08HP>0 runtime.algarray@&runtime.gcbits.9901P8go.string.hdr."bufio.Reader"ptype.*"".Reader"runtime.zerovaluetype."".Reader&go.string.hdr."buf""go.importpath."".type.[]uint8$go.string.hdr."rd""go.importpath."".type.io.Reader"go.string.hdr."r""go.importpath."".type.int"go.string.hdr."w""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error0go.string.hdr."lastByte""go.importpath."".type.int8go.string.hdr."lastRuneSize""go.importpath."".type.int`type."".Reader,go.string.hdr."Reader""go.importpath."".type."".Reader2go.string.hdr."[][]uint8"  	*go.string."[][]uint8"*go.string."[][]uint8" [][]uint8type.[][]uint8}0 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."[][]uint8"p.go.weak.type.*[][]uint8"runtime.zerovaluetype.[]uint8>go.typelink.[][]uint8	[][]uint8type.[][]uint8:go.string.hdr."*bufio.Writer"  
2go.string."*bufio.Writer"2go.string."*bufio.Writer" *bufio.WriterNgo.string.hdr."func(*bufio.Writer) int"  Fgo.string."func(*bufio.Writer) int"Fgo.string."func(*bufio.Writer) int"00func(*bufio.Writer) int2type.func(*"".Writer) int0@c30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*bufio.Writer) int"pDgo.weak.type.*func(*"".Writer) int"runtime.zerovalue2type.func(*"".Writer) int2type.func(*"".Writer) inttype.*"".Writertype.intpgo.typelink.func(*bufio.Writer) int	func(*"".Writer) int2type.func(*"".Writer) intRgo.string.hdr."func(*bufio.Writer) error"  Jgo.string."func(*bufio.Writer) error"Jgo.string."func(*bufio.Writer) error"@4func(*bufio.Writer) error6type.func(*"".Writer) error30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*bufio.Writer) error"pHgo.weak.type.*func(*"".Writer) error"runtime.zerovalue6type.func(*"".Writer) error6type.func(*"".Writer) errortype.*"".Writertype.errorxgo.typelink.func(*bufio.Writer) error	func(*"".Writer) error6type.func(*"".Writer) errorzgo.string.hdr."func(*bufio.Writer, io.Reader) (int64, error)"  -rgo.string."func(*bufio.Writer, io.Reader) (int64, error)"rgo.string."func(*bufio.Writer, io.Reader) (int64, error)"`\func(*bufio.Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)B]30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.Writer, io.Reader) (int64, error)"ppgo.weak.type.*func(*"".Writer, io.Reader) (int64, error)"runtime.zerovalue^type.func(*"".Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)type.*"".Writertype.io.Readertype.int64type.errorgo.typelink.func(*bufio.Writer, io.Reader) (int64, error)	func(*"".Writer, io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)\go.string.hdr."func(*bufio.Writer, io.Writer)"  Tgo.string."func(*bufio.Writer, io.Writer)"Tgo.string."func(*bufio.Writer, io.Writer)"@>func(*bufio.Writer, io.Writer)@type.func(*"".Writer, io.Writer)v30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Writer, io.Writer)"pRgo.weak.type.*func(*"".Writer, io.Writer)"runtime.zerovalue@type.func(*"".Writer, io.Writer)@type.func(*"".Writer, io.Writer)type.*"".Writertype.io.Writergo.typelink.func(*bufio.Writer, io.Writer)	func(*"".Writer, io.Writer)@type.func(*"".Writer, io.Writer)rgo.string.hdr."func(*bufio.Writer, []uint8) (int, error)"  )jgo.string."func(*bufio.Writer, []uint8) (int, error)"jgo.string."func(*bufio.Writer, []uint8) (int, error)"`Tfunc(*bufio.Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)ee 30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*bufio.Writer, []uint8) (int, error)"phgo.weak.type.*func(*"".Writer, []uint8) (int, error)"runtime.zerovalueVtype.func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)type.*"".Writertype.[]uint8type.inttype.errorgo.typelink.func(*bufio.Writer, []uint8) (int, error)	func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)`go.string.hdr."func(*bufio.Writer, uint8) error"   Xgo.string."func(*bufio.Writer, uint8) error"Xgo.string."func(*bufio.Writer, uint8) error"PBfunc(*bufio.Writer, uint8) errorDtype.func(*"".Writer, uint8) errordj30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*bufio.Writer, uint8) error"pVgo.weak.type.*func(*"".Writer, uint8) error"runtime.zerovalueDtype.func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errortype.*"".Writertype.uint8type.errorgo.typelink.func(*bufio.Writer, uint8) error	func(*"".Writer, uint8) errorDtype.func(*"".Writer, uint8) errorngo.string.hdr."func(*bufio.Writer, int32) (int, error)"  'fgo.string."func(*bufio.Writer, int32) (int, error)"fgo.string."func(*bufio.Writer, int32) (int, error)"PPfunc(*bufio.Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*bufio.Writer, int32) (int, error)"pdgo.weak.type.*func(*"".Writer, int32) (int, error)"runtime.zerovalueRtype.func(*"".Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)type.*"".Writertype.int32type.inttype.errorgo.typelink.func(*bufio.Writer, int32) (int, error)	func(*"".Writer, int32) (int, error)Rtype.func(*"".Writer, int32) (int, error)pgo.string.hdr."func(*bufio.Writer, string) (int, error)"  (hgo.string."func(*bufio.Writer, string) (int, error)"hgo.string."func(*bufio.Writer, string) (int, error)"`Rfunc(*bufio.Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)B30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*bufio.Writer, string) (int, error)"pfgo.weak.type.*func(*"".Writer, string) (int, error)"runtime.zerovalueTtype.func(*"".Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)type.*"".Writertype.stringtype.inttype.errorgo.typelink.func(*bufio.Writer, string) (int, error)	func(*"".Writer, string) (int, error)Ttype.func(*"".Writer, string) (int, error)2go.string.hdr."Available"  	*go.string."Available"*go.string."Available" Available*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."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)*go.string.hdr."Write"  "go.string."Write""go.string."Write"Write2go.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"flushtype.*"".Writer		<6
   1142 
   1143 v0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*bufio.Writer"p0go.weak.type.**"".Writer"runtime.zerovaluetype."".Writer`type.*"".Writertype.*"".Writer2go.string.hdr."Available"type.func() int2type.func(*"".Writer) int,"".(*Writer).Available,"".(*Writer).Available0go.string.hdr."Buffered"type.func() int2type.func(*"".Writer) int*"".(*Writer).Buffered*"".(*Writer).Buffered*go.string.hdr."Flush""type.func() error6type.func(*"".Writer) error$"".(*Writer).Flush$"".(*Writer).Flush0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)^type.func(*"".Writer, io.Reader) (int64, error)*"".(*Writer).ReadFrom*"".(*Writer).ReadFrom*go.string.hdr."Reset"(type.func(io.Writer)@type.func(*"".Writer, io.Writer)$"".(*Writer).Reset$"".(*Writer).Reset*go.string.hdr."Write">type.func([]uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)$"".(*Writer).Write$"".(*Writer).Write2go.string.hdr."WriteByte",type.func(uint8) errorDtype.func(*"".Writer, uint8) error,"".(*Writer).WriteByte,"".(*Writer).WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)Rtype.func(*"".Writer, int32) (int, error),"".(*Writer).WriteRune,"".(*Writer).WriteRune6go.string.hdr."WriteString"<type.func(string) (int, error)Ttype.func(*"".Writer, string) (int, error)0"".(*Writer).WriteString0"".(*Writer).WriteString*go.string.hdr."flush""go.importpath.""."type.func() error	6type.func(*"".Writer) error	$"".(*Writer).flush	$"".(*Writer).flush"runtime.gcbits.c78go.string.hdr."bufio.Writer"  0go.string."bufio.Writer"0go.string."bufio.Writer" bufio.Writer"go.string.hdr."n"  go.string."n"go.string."n"n$go.string.hdr."wr"  go.string."wr"go.string."wr"wr,go.string.hdr."Writer"  $go.string."Writer"$go.string."Writer"Writertype."".Writer@@x(0,0 runtime.algarray@"runtime.gcbits.c7P8go.string.hdr."bufio.Writer"ptype.*"".Writer"runtime.zerovaluetype."".Writer&go.string.hdr."err""go.importpath."".type.error&go.string.hdr."buf""go.importpath."".type.[]uint8"go.string.hdr."n""go.importpath."".type.int$go.string.hdr."wr""go.importpath."".type.io.Writer`type."".Writer,go.string.hdr."Writer""go.importpath."".type."".Writerruntime.gcbits.0go.string.hdr."[4]uint8"  (go.string."[4]uint8"(go.string."[4]uint8" [4]uint8type.[4]uint8B0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]uint8"p,go.weak.type.*[4]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[4]uint8	[4]uint8type.[4]uint8Bgo.string.hdr."*bufio.ReadWriter"  :go.string."*bufio.ReadWriter":go.string."*bufio.ReadWriter"0$*bufio.ReadWriterTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals57cb53c6e1baf060ff3024e169f48a163Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13a990b4a341857296a1c12de153dcaaTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13a990b4a341857296a1c12de153dcaaVgo.string.hdr."func(*bufio.ReadWriter) int"  Ngo.string."func(*bufio.ReadWriter) int"Ngo.string."func(*bufio.ReadWriter) int"@8func(*bufio.ReadWriter) int:type.func(*"".ReadWriter) intl30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*bufio.ReadWriter) int"pLgo.weak.type.*func(*"".ReadWriter) int"runtime.zerovalue:type.func(*"".ReadWriter) int:type.func(*"".ReadWriter) int&type.*"".ReadWritertype.intgo.typelink.func(*bufio.ReadWriter) int	func(*"".ReadWriter) int:type.func(*"".ReadWriter) intrgo.string.hdr."func(*bufio.ReadWriter, int) (int, error)"  )jgo.string."func(*bufio.ReadWriter, int) (int, error)"jgo.string."func(*bufio.ReadWriter, int) (int, error)"`Tfunc(*bufio.ReadWriter, int) (int, error)Vtype.func(*"".ReadWriter, int) (int, error)P#30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*bufio.ReadWriter, int) (int, error)"phgo.weak.type.*func(*"".ReadWriter, int) (int, error)"runtime.zerovalueVtype.func(*"".ReadWriter, int) (int, error)Vtype.func(*"".ReadWriter, int) (int, error)&type.*"".ReadWritertype.inttype.inttype.errorgo.typelink.func(*bufio.ReadWriter, int) (int, error)	func(*"".ReadWriter, int) (int, error)Vtype.func(*"".ReadWriter, int) (int, error)Zgo.string.hdr."func(*bufio.ReadWriter) error"  Rgo.string."func(*bufio.ReadWriter) error"Rgo.string."func(*bufio.ReadWriter) error"@<func(*bufio.ReadWriter) error>type.func(*"".ReadWriter) errorA_30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*bufio.ReadWriter) error"pPgo.weak.type.*func(*"".ReadWriter) error"runtime.zerovalue>type.func(*"".ReadWriter) error>type.func(*"".ReadWriter) error&type.*"".ReadWritertype.errorgo.typelink.func(*bufio.ReadWriter) error	func(*"".ReadWriter) error>type.func(*"".ReadWriter) errorzgo.string.hdr."func(*bufio.ReadWriter, int) ([]uint8, error)"  -rgo.string."func(*bufio.ReadWriter, int) ([]uint8, error)"rgo.string."func(*bufio.ReadWriter, int) ([]uint8, error)"`\func(*bufio.ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)]
   1145 30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.ReadWriter, int) ([]uint8, error)"ppgo.weak.type.*func(*"".ReadWriter, int) ([]uint8, error)"runtime.zerovalue^type.func(*"".ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)&type.*"".ReadWritertype.inttype.[]uint8type.errorgo.typelink.func(*bufio.ReadWriter, int) ([]uint8, error)	func(*"".ReadWriter, int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)zgo.string.hdr."func(*bufio.ReadWriter, []uint8) (int, error)"  -rgo.string."func(*bufio.ReadWriter, []uint8) (int, error)"rgo.string."func(*bufio.ReadWriter, []uint8) (int, error)"`\func(*bufio.ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*bufio.ReadWriter, []uint8) (int, error)"ppgo.weak.type.*func(*"".ReadWriter, []uint8) (int, error)"runtime.zerovalue^type.func(*"".ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)&type.*"".ReadWritertype.[]uint8type.inttype.errorgo.typelink.func(*bufio.ReadWriter, []uint8) (int, error)	func(*"".ReadWriter, []uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)lgo.string.hdr."func(*bufio.ReadWriter) (uint8, error)"  &dgo.string."func(*bufio.ReadWriter) (uint8, error)"dgo.string."func(*bufio.ReadWriter) (uint8, error)"PNfunc(*bufio.ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)g>30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*bufio.ReadWriter) (uint8, error)"pbgo.weak.type.*func(*"".ReadWriter) (uint8, error)"runtime.zerovaluePtype.func(*"".ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)&type.*"".ReadWritertype.uint8type.errorgo.typelink.func(*bufio.ReadWriter) (uint8, error)	func(*"".ReadWriter) (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)~go.string.hdr."func(*bufio.ReadWriter, uint8) ([]uint8, error)"  /vgo.string."func(*bufio.ReadWriter, uint8) ([]uint8, error)"vgo.string."func(*bufio.ReadWriter, uint8) ([]uint8, error)"``func(*bufio.ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)V30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*bufio.ReadWriter, uint8) ([]uint8, error)"ptgo.weak.type.*func(*"".ReadWriter, uint8) ([]uint8, error)"runtime.zerovaluebtype.func(*"".ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)&type.*"".ReadWritertype.uint8type.[]uint8type.errorgo.typelink.func(*bufio.ReadWriter, uint8) ([]uint8, error)	func(*"".ReadWriter, uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)go.string.hdr."func(*bufio.ReadWriter, io.Reader) (int64, error)"  1zgo.string."func(*bufio.ReadWriter, io.Reader) (int64, error)"zgo.string."func(*bufio.ReadWriter, io.Reader) (int64, error)"pdfunc(*bufio.ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)	430 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*bufio.ReadWriter, io.Reader) (int64, error)"pxgo.weak.type.*func(*"".ReadWriter, io.Reader) (int64, error)"runtime.zerovalueftype.func(*"".ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)&type.*"".ReadWritertype.io.Readertype.int64type.errorgo.typelink.func(*bufio.ReadWriter, io.Reader) (int64, error)	func(*"".ReadWriter, io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)|go.string.hdr."func(*bufio.ReadWriter) ([]uint8, bool, error)"  .tgo.string."func(*bufio.ReadWriter) ([]uint8, bool, error)"tgo.string."func(*bufio.ReadWriter) ([]uint8, bool, error)"`^func(*bufio.ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)Jq30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*bufio.ReadWriter) ([]uint8, bool, error)"prgo.weak.type.*func(*"".ReadWriter) ([]uint8, bool, error)"runtime.zerovalue`type.func(*"".ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)&type.*"".ReadWritertype.[]uint8type.booltype.errorgo.typelink.func(*bufio.ReadWriter) ([]uint8, bool, error)	func(*"".ReadWriter) ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)vgo.string.hdr."func(*bufio.ReadWriter) (int32, int, error)"  +ngo.string."func(*bufio.ReadWriter) (int32, int, error)"ngo.string."func(*bufio.ReadWriter) (int32, int, error)"`Xfunc(*bufio.ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)1'30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter) (int32, int, error)"plgo.weak.type.*func(*"".ReadWriter) (int32, int, error)"runtime.zerovalueZtype.func(*"".ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)&type.*"".ReadWritertype.int32type.inttype.errorgo.typelink.func(*bufio.ReadWriter) (int32, int, error)	func(*"".ReadWriter) (int32, int, error)Ztype.func(*"".ReadWriter) (int32, int, error)|go.string.hdr."func(*bufio.ReadWriter, uint8) (string, error)"  .tgo.string."func(*bufio.ReadWriter, uint8) (string, error)"tgo.string."func(*bufio.ReadWriter, uint8) (string, error)"`^func(*bufio.ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)u30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*bufio.ReadWriter, uint8) (string, error)"prgo.weak.type.*func(*"".ReadWriter, uint8) (string, error)"runtime.zerovalue`type.func(*"".ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)&type.*"".ReadWritertype.uint8type.stringtype.errorgo.typelink.func(*bufio.ReadWriter, uint8) (string, error)	func(*"".ReadWriter, uint8) (string, error)`type.func(*"".ReadWriter, uint8) (string, error)hgo.string.hdr."func(*bufio.ReadWriter, uint8) error"  $`go.string."func(*bufio.ReadWriter, uint8) error"`go.string."func(*bufio.ReadWriter, uint8) error"PJfunc(*bufio.ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) error,:f30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*bufio.ReadWriter, uint8) error"p^go.weak.type.*func(*"".ReadWriter, uint8) error"runtime.zerovalueLtype.func(*"".ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) error&type.*"".ReadWritertype.uint8type.errorgo.typelink.func(*bufio.ReadWriter, uint8) error	func(*"".ReadWriter, uint8) errorLtype.func(*"".ReadWriter, uint8) errorvgo.string.hdr."func(*bufio.ReadWriter, int32) (int, error)"  +ngo.string."func(*bufio.ReadWriter, int32) (int, error)"ngo.string."func(*bufio.ReadWriter, int32) (int, error)"`Xfunc(*bufio.ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)|30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter, int32) (int, error)"plgo.weak.type.*func(*"".ReadWriter, int32) (int, error)"runtime.zerovalueZtype.func(*"".ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)&type.*"".ReadWritertype.int32type.inttype.errorgo.typelink.func(*bufio.ReadWriter, int32) (int, error)	func(*"".ReadWriter, int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)xgo.string.hdr."func(*bufio.ReadWriter, string) (int, error)"  ,pgo.string."func(*bufio.ReadWriter, string) (int, error)"pgo.string."func(*bufio.ReadWriter, string) (int, error)"`Zfunc(*bufio.ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)?30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*bufio.ReadWriter, string) (int, error)"pngo.weak.type.*func(*"".ReadWriter, string) (int, error)"runtime.zerovalue\type.func(*"".ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)&type.*"".ReadWritertype.stringtype.inttype.errorgo.typelink.func(*bufio.ReadWriter, string) (int, error)	func(*"".ReadWriter, string) (int, error)\type.func(*"".ReadWriter, string) (int, error)go.string.hdr."func(*bufio.ReadWriter, io.Writer) (int64, error)"  1zgo.string."func(*bufio.ReadWriter, io.Writer) (int64, error)"zgo.string."func(*bufio.ReadWriter, io.Writer) (int64, error)"pdfunc(*bufio.ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)X30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*bufio.ReadWriter, io.Writer) (int64, error)"pxgo.weak.type.*func(*"".ReadWriter, io.Writer) (int64, error)"runtime.zerovalueftype.func(*"".ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)&type.*"".ReadWritertype.io.Writertype.int64type.errorgo.typelink.func(*bufio.ReadWriter, io.Writer) (int64, error)	func(*"".ReadWriter, io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)Ngo.string.hdr."func(*bufio.ReadWriter)"  Fgo.string."func(*bufio.ReadWriter)"Fgo.string."func(*bufio.ReadWriter)"00func(*bufio.ReadWriter)2type.func(*"".ReadWriter)/30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*bufio.ReadWriter)"pDgo.weak.type.*func(*"".ReadWriter)"runtime.zerovalue2type.func(*"".ReadWriter)2type.func(*"".ReadWriter)&type.*"".ReadWriterpgo.typelink.func(*bufio.ReadWriter)	func(*"".ReadWriter)2type.func(*"".ReadWriter)vgo.string.hdr."func(*bufio.ReadWriter, []uint8, io.Reader)"  +ngo.string."func(*bufio.ReadWriter, []uint8, io.Reader)"ngo.string."func(*bufio.ReadWriter, []uint8, io.Reader)"`Xfunc(*bufio.ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*bufio.ReadWriter, []uint8, io.Reader)"plgo.weak.type.*func(*"".ReadWriter, []uint8, io.Reader)"runtime.zerovalueZtype.func(*"".ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)&type.*"".ReadWritertype.[]uint8type.io.Readergo.typelink.func(*bufio.ReadWriter, []uint8, io.Reader)	func(*"".ReadWriter, []uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader)&type.*"".ReadWriter#60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*bufio.ReadWriter"p8go.weak.type.**"".ReadWriter"runtime.zerovalue$type."".ReadWriter`&type.*"".ReadWriter&type.*"".ReadWriter2go.string.hdr."Available"type.func() int:type.func(*"".ReadWriter) int4"".(*ReadWriter).Available4"".(*ReadWriter).Available.go.string.hdr."Discard"6type.func(int) (int, error)Vtype.func(*"".ReadWriter, int) (int, error)0"".(*ReadWriter).Discard0"".(*ReadWriter).Discard*go.string.hdr."Flush""type.func() error>type.func(*"".ReadWriter) error,"".(*ReadWriter).Flush,"".(*ReadWriter).Flush(go.string.hdr."Peek">type.func(int) ([]uint8, error)^type.func(*"".ReadWriter, int) ([]uint8, error)*"".(*ReadWriter).Peek*"".(*ReadWriter).Peek(go.string.hdr."Read">type.func([]uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error)*"".(*ReadWriter).Read*"".(*ReadWriter).Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Ptype.func(*"".ReadWriter) (uint8, error)2"".(*ReadWriter).ReadByte2"".(*ReadWriter).ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)btype.func(*"".ReadWriter, uint8) ([]uint8, error)4"".(*ReadWriter).ReadBytes4"".(*ReadWriter).ReadBytes0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)ftype.func(*"".ReadWriter, io.Reader) (int64, error)2"".(*ReadWriter).ReadFrom2"".(*ReadWriter).ReadFrom0go.string.hdr."ReadLine"Dtype.func() ([]uint8, bool, error)`type.func(*"".ReadWriter) ([]uint8, bool, error)2"".(*ReadWriter).ReadLine2"".(*ReadWriter).ReadLine0go.string.hdr."ReadRune">type.func() (int32, int, error)	Ztype.func(*"".ReadWriter) (int32, int, error)	2"".(*ReadWriter).ReadRune	2"".(*ReadWriter).ReadRune	2go.string.hdr."ReadSlice"	Btype.func(uint8) ([]uint8, error)	btype.func(*"".ReadWriter, uint8) ([]uint8, error)	4"".(*ReadWriter).ReadSlice
   1146 4"".(*ReadWriter).ReadSlice
   1147 4go.string.hdr."ReadString"
   1148 @type.func(uint8) (string, error)
   1149 `type.func(*"".ReadWriter, uint8) (string, error)
   1150 6"".(*ReadWriter).ReadString
   1151 6"".(*ReadWriter).ReadString
   1152 4go.string.hdr."UnreadByte""type.func() error>type.func(*"".ReadWriter) error6"".(*ReadWriter).UnreadByte6"".(*ReadWriter).UnreadByte4go.string.hdr."UnreadRune""type.func() error>type.func(*"".ReadWriter) error6"".(*ReadWriter).UnreadRune6"".(*ReadWriter).UnreadRune*go.string.hdr."Write">type.func([]uint8) (int, error)^type.func(*"".ReadWriter, []uint8) (int, error),"".(*ReadWriter).Write
,"".(*ReadWriter).Write
2go.string.hdr."WriteByte"
,type.func(uint8) error
Ltype.func(*"".ReadWriter, uint8) error
4"".(*ReadWriter).WriteByte
4"".(*ReadWriter).WriteByte
2go.string.hdr."WriteRune":type.func(int32) (int, error)Ztype.func(*"".ReadWriter, int32) (int, error)4"".(*ReadWriter).WriteRune4"".(*ReadWriter).WriteRune6go.string.hdr."WriteString"<type.func(string) (int, error)\type.func(*"".ReadWriter, string) (int, error)8"".(*ReadWriter).WriteString8"".(*ReadWriter).WriteString.go.string.hdr."WriteTo"Ftype.func(io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)0"".(*ReadWriter).WriteTo0"".(*ReadWriter).WriteTo(go.string.hdr."fill""go.importpath."".type.func()2type.func(*"".ReadWriter)*"".(*ReadWriter).fill*"".(*ReadWriter).fill*go.string.hdr."flush""go.importpath.""."type.func() error>type.func(*"".ReadWriter) error,"".(*ReadWriter).flush,"".(*ReadWriter).flush.go.string.hdr."readErr""go.importpath.""."type.func() error>type.func(*"".ReadWriter) error0"".(*ReadWriter).readErr0"".(*ReadWriter).readErr*go.string.hdr."reset""go.importpath."".:type.func([]uint8, io.Reader)Ztype.func(*"".ReadWriter, []uint8, io.Reader),"".(*ReadWriter).reset,"".(*ReadWriter).reset0go.string.hdr."writeBuf""go.importpath."".Ftype.func(io.Writer) (int64, error)ftype.func(*"".ReadWriter, io.Writer) (int64, error)2"".(*ReadWriter).writeBuf2"".(*ReadWriter).writeBuf"runtime.gcbits.03@go.string.hdr."bufio.ReadWriter"  8go.string."bufio.ReadWriter"8go.string."bufio.ReadWriter"0"bufio.ReadWriterTgclocals607cdd8af25133e14ee3a0c0aab33c85Tgclocalsd988fd9f0c4cd978acb91b92bfe23525gTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa5947a078ff8f32dc378f6b0b238531dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa5947a078ff8f32dc378f6b0b238531dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33bd09daed8d27c6aa5688ccfd7468adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa5947a078ff8f32dc378f6b0b238531dTgo.string.hdr."func(bufio.ReadWriter) int"  Lgo.string."func(bufio.ReadWriter) int"Lgo.string."func(bufio.ReadWriter) int"@6func(bufio.ReadWriter) int8type.func("".ReadWriter) intV30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(bufio.ReadWriter) int"pJgo.weak.type.*func("".ReadWriter) int"runtime.zerovalue8type.func("".ReadWriter) int8type.func("".ReadWriter) int$type."".ReadWritertype.int|go.typelink.func(bufio.ReadWriter) int	func("".ReadWriter) int8type.func("".ReadWriter) intpgo.string.hdr."func(bufio.ReadWriter, int) (int, error)"  (hgo.string."func(bufio.ReadWriter, int) (int, error)"hgo.string."func(bufio.ReadWriter, int) (int, error)"`Rfunc(bufio.ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)Bz30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(bufio.ReadWriter, int) (int, error)"pfgo.weak.type.*func("".ReadWriter, int) (int, error)"runtime.zerovalueTtype.func("".ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)$type."".ReadWritertype.inttype.inttype.errorgo.typelink.func(bufio.ReadWriter, int) (int, error)	func("".ReadWriter, int) (int, error)Ttype.func("".ReadWriter, int) (int, error)Xgo.string.hdr."func(bufio.ReadWriter) error"  Pgo.string."func(bufio.ReadWriter) error"Pgo.string."func(bufio.ReadWriter) error"@:func(bufio.ReadWriter) error<type.func("".ReadWriter) error530 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(bufio.ReadWriter) error"pNgo.weak.type.*func("".ReadWriter) error"runtime.zerovalue<type.func("".ReadWriter) error<type.func("".ReadWriter) error$type."".ReadWritertype.errorgo.typelink.func(bufio.ReadWriter) error	func("".ReadWriter) error<type.func("".ReadWriter) errorxgo.string.hdr."func(bufio.ReadWriter, int) ([]uint8, error)"  ,pgo.string."func(bufio.ReadWriter, int) ([]uint8, error)"pgo.string."func(bufio.ReadWriter, int) ([]uint8, error)"`Zfunc(bufio.ReadWriter, int) ([]uint8, error)\type.func("".ReadWriter, int) ([]uint8, error)p30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(bufio.ReadWriter, int) ([]uint8, error)"pngo.weak.type.*func("".ReadWriter, int) ([]uint8, error)"runtime.zerovalue\type.func("".ReadWriter, int) ([]uint8, error)\type.func("".ReadWriter, int) ([]uint8, error)$type."".ReadWritertype.inttype.[]uint8type.errorgo.typelink.func(bufio.ReadWriter, int) ([]uint8, error)	func("".ReadWriter, int) ([]uint8, error)\type.func("".ReadWriter, int) ([]uint8, error)xgo.string.hdr."func(bufio.ReadWriter, []uint8) (int, error)"  ,pgo.string."func(bufio.ReadWriter, []uint8) (int, error)"pgo.string."func(bufio.ReadWriter, []uint8) (int, error)"`Zfunc(bufio.ReadWriter, []uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error)30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(bufio.ReadWriter, []uint8) (int, error)"pngo.weak.type.*func("".ReadWriter, []uint8) (int, error)"runtime.zerovalue\type.func("".ReadWriter, []uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error)$type."".ReadWritertype.[]uint8type.inttype.errorgo.typelink.func(bufio.ReadWriter, []uint8) (int, error)	func("".ReadWriter, []uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error)jgo.string.hdr."func(bufio.ReadWriter) (uint8, error)"  %bgo.string."func(bufio.ReadWriter) (uint8, error)"bgo.string."func(bufio.ReadWriter) (uint8, error)"PLfunc(bufio.ReadWriter) (uint8, error)Ntype.func("".ReadWriter) (uint8, error)30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(bufio.ReadWriter) (uint8, error)"p`go.weak.type.*func("".ReadWriter) (uint8, error)"runtime.zerovalueNtype.func("".ReadWriter) (uint8, error)Ntype.func("".ReadWriter) (uint8, error)$type."".ReadWritertype.uint8type.errorgo.typelink.func(bufio.ReadWriter) (uint8, error)	func("".ReadWriter) (uint8, error)Ntype.func("".ReadWriter) (uint8, error)|go.string.hdr."func(bufio.ReadWriter, uint8) ([]uint8, error)"  .tgo.string."func(bufio.ReadWriter, uint8) ([]uint8, error)"tgo.string."func(bufio.ReadWriter, uint8) ([]uint8, error)"`^func(bufio.ReadWriter, uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)3030 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(bufio.ReadWriter, uint8) ([]uint8, error)"prgo.weak.type.*func("".ReadWriter, uint8) ([]uint8, error)"runtime.zerovalue`type.func("".ReadWriter, uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)$type."".ReadWritertype.uint8type.[]uint8type.errorgo.typelink.func(bufio.ReadWriter, uint8) ([]uint8, error)	func("".ReadWriter, uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)go.string.hdr."func(bufio.ReadWriter, io.Reader) (int64, error)"  0xgo.string."func(bufio.ReadWriter, io.Reader) (int64, error)"xgo.string."func(bufio.ReadWriter, io.Reader) (int64, error)"pbfunc(bufio.ReadWriter, io.Reader) (int64, error)dtype.func("".ReadWriter, io.Reader) (int64, error)p30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(bufio.ReadWriter, io.Reader) (int64, error)"pvgo.weak.type.*func("".ReadWriter, io.Reader) (int64, error)"runtime.zerovaluedtype.func("".ReadWriter, io.Reader) (int64, error)dtype.func("".ReadWriter, io.Reader) (int64, error)$type."".ReadWritertype.io.Readertype.int64type.errorgo.typelink.func(bufio.ReadWriter, io.Reader) (int64, error)	func("".ReadWriter, io.Reader) (int64, error)dtype.func("".ReadWriter, io.Reader) (int64, error)zgo.string.hdr."func(bufio.ReadWriter) ([]uint8, bool, error)"  -rgo.string."func(bufio.ReadWriter) ([]uint8, bool, error)"rgo.string."func(bufio.ReadWriter) ([]uint8, bool, error)"`\func(bufio.ReadWriter) ([]uint8, bool, error)^type.func("".ReadWriter) ([]uint8, bool, error)rf30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(bufio.ReadWriter) ([]uint8, bool, error)"ppgo.weak.type.*func("".ReadWriter) ([]uint8, bool, error)"runtime.zerovalue^type.func("".ReadWriter) ([]uint8, bool, error)^type.func("".ReadWriter) ([]uint8, bool, error)$type."".ReadWritertype.[]uint8type.booltype.errorgo.typelink.func(bufio.ReadWriter) ([]uint8, bool, error)	func("".ReadWriter) ([]uint8, bool, error)^type.func("".ReadWriter) ([]uint8, bool, error)tgo.string.hdr."func(bufio.ReadWriter) (int32, int, error)"  *lgo.string."func(bufio.ReadWriter) (int32, int, error)"lgo.string."func(bufio.ReadWriter) (int32, int, error)"`Vfunc(bufio.ReadWriter) (int32, int, error)Xtype.func("".ReadWriter) (int32, int, error)230 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(bufio.ReadWriter) (int32, int, error)"pjgo.weak.type.*func("".ReadWriter) (int32, int, error)"runtime.zerovalueXtype.func("".ReadWriter) (int32, int, error)Xtype.func("".ReadWriter) (int32, int, error)$type."".ReadWritertype.int32type.inttype.errorgo.typelink.func(bufio.ReadWriter) (int32, int, error)	func("".ReadWriter) (int32, int, error)Xtype.func("".ReadWriter) (int32, int, error)zgo.string.hdr."func(bufio.ReadWriter, uint8) (string, error)"  -rgo.string."func(bufio.ReadWriter, uint8) (string, error)"rgo.string."func(bufio.ReadWriter, uint8) (string, error)"`\func(bufio.ReadWriter, uint8) (string, error)^type.func("".ReadWriter, uint8) (string, error)^c30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(bufio.ReadWriter, uint8) (string, error)"ppgo.weak.type.*func("".ReadWriter, uint8) (string, error)"runtime.zerovalue^type.func("".ReadWriter, uint8) (string, error)^type.func("".ReadWriter, uint8) (string, error)$type."".ReadWritertype.uint8type.stringtype.errorgo.typelink.func(bufio.ReadWriter, uint8) (string, error)	func("".ReadWriter, uint8) (string, error)^type.func("".ReadWriter, uint8) (string, error)fgo.string.hdr."func(bufio.ReadWriter, uint8) error"  #^go.string."func(bufio.ReadWriter, uint8) error"^go.string."func(bufio.ReadWriter, uint8) error"PHfunc(bufio.ReadWriter, uint8) errorJtype.func("".ReadWriter, uint8) error30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(bufio.ReadWriter, uint8) error"p\go.weak.type.*func("".ReadWriter, uint8) error"runtime.zerovalueJtype.func("".ReadWriter, uint8) errorJtype.func("".ReadWriter, uint8) error$type."".ReadWritertype.uint8type.errorgo.typelink.func(bufio.ReadWriter, uint8) error	func("".ReadWriter, uint8) errorJtype.func("".ReadWriter, uint8) errortgo.string.hdr."func(bufio.ReadWriter, int32) (int, error)"  *lgo.string."func(bufio.ReadWriter, int32) (int, error)"lgo.string."func(bufio.ReadWriter, int32) (int, error)"`Vfunc(bufio.ReadWriter, int32) (int, error)Xtype.func("".ReadWriter, int32) (int, error)F30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(bufio.ReadWriter, int32) (int, error)"pjgo.weak.type.*func("".ReadWriter, int32) (int, error)"runtime.zerovalueXtype.func("".ReadWriter, int32) (int, error)Xtype.func("".ReadWriter, int32) (int, error)$type."".ReadWritertype.int32type.inttype.errorgo.typelink.func(bufio.ReadWriter, int32) (int, error)	func("".ReadWriter, int32) (int, error)Xtype.func("".ReadWriter, int32) (int, error)vgo.string.hdr."func(bufio.ReadWriter, string) (int, error)"  +ngo.string."func(bufio.ReadWriter, string) (int, error)"ngo.string."func(bufio.ReadWriter, string) (int, error)"`Xfunc(bufio.ReadWriter, string) (int, error)Ztype.func("".ReadWriter, string) (int, error)S"v30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(bufio.ReadWriter, string) (int, error)"plgo.weak.type.*func("".ReadWriter, string) (int, error)"runtime.zerovalueZtype.func("".ReadWriter, string) (int, error)Ztype.func("".ReadWriter, string) (int, error)$type."".ReadWritertype.stringtype.inttype.errorgo.typelink.func(bufio.ReadWriter, string) (int, error)	func("".ReadWriter, string) (int, error)Ztype.func("".ReadWriter, string) (int, error)go.string.hdr."func(bufio.ReadWriter, io.Writer) (int64, error)"  0xgo.string."func(bufio.ReadWriter, io.Writer) (int64, error)"xgo.string."func(bufio.ReadWriter, io.Writer) (int64, error)"pbfunc(bufio.ReadWriter, io.Writer) (int64, error)dtype.func("".ReadWriter, io.Writer) (int64, error)827u30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(bufio.ReadWriter, io.Writer) (int64, error)"pvgo.weak.type.*func("".ReadWriter, io.Writer) (int64, error)"runtime.zerovaluedtype.func("".ReadWriter, io.Writer) (int64, error)dtype.func("".ReadWriter, io.Writer) (int64, error)$type."".ReadWritertype.io.Writertype.int64type.errorgo.typelink.func(bufio.ReadWriter, io.Writer) (int64, error)	func("".ReadWriter, io.Writer) (int64, error)dtype.func("".ReadWriter, io.Writer) (int64, error)Lgo.string.hdr."func(bufio.ReadWriter)"  Dgo.string."func(bufio.ReadWriter)"Dgo.string."func(bufio.ReadWriter)"0.func(bufio.ReadWriter)0type.func("".ReadWriter)30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(bufio.ReadWriter)"pBgo.weak.type.*func("".ReadWriter)"runtime.zerovalue0type.func("".ReadWriter)0type.func("".ReadWriter)$type."".ReadWriterlgo.typelink.func(bufio.ReadWriter)	func("".ReadWriter)0type.func("".ReadWriter)tgo.string.hdr."func(bufio.ReadWriter, []uint8, io.Reader)"  *lgo.string."func(bufio.ReadWriter, []uint8, io.Reader)"lgo.string."func(bufio.ReadWriter, []uint8, io.Reader)"`Vfunc(bufio.ReadWriter, []uint8, io.Reader)Xtype.func("".ReadWriter, []uint8, io.Reader)W30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(bufio.ReadWriter, []uint8, io.Reader)"pjgo.weak.type.*func("".ReadWriter, []uint8, io.Reader)"runtime.zerovalueXtype.func("".ReadWriter, []uint8, io.Reader)Xtype.func("".ReadWriter, []uint8, io.Reader)$type."".ReadWritertype.[]uint8type.io.Readergo.typelink.func(bufio.ReadWriter, []uint8, io.Reader)	func("".ReadWriter, []uint8, io.Reader)Xtype.func("".ReadWriter, []uint8, io.Reader)4go.string.hdr."ReadWriter"  
   1173 ,go.string."ReadWriter",go.string."ReadWriter" ReadWriter$type."".ReadWriterS0 runtime.algarray@"runtime.gcbits.03P@go.string.hdr."bufio.ReadWriter"p&type.*"".ReadWriter"runtime.zerovalue$type."".ReadWritertype.*"".Readertype.*"".Writer`$type."".ReadWriter4go.string.hdr."ReadWriter""go.importpath."".$type."".ReadWriter2go.string.hdr."Available"type.func() int8type.func("".ReadWriter) int4"".(*ReadWriter).Available."".ReadWriter.Available.go.string.hdr."Discard"6type.func(int) (int, error)Ttype.func("".ReadWriter, int) (int, error)0"".(*ReadWriter).Discard*"".ReadWriter.Discard*go.string.hdr."Flush""type.func() error<type.func("".ReadWriter) error,"".(*ReadWriter).Flush&"".ReadWriter.Flush(go.string.hdr."Peek">type.func(int) ([]uint8, error)\type.func("".ReadWriter, int) ([]uint8, error)*"".(*ReadWriter).Peek$"".ReadWriter.Peek(go.string.hdr."Read">type.func([]uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error)*"".(*ReadWriter).Read$"".ReadWriter.Read0go.string.hdr."ReadByte"4type.func() (uint8, error)Ntype.func("".ReadWriter) (uint8, error)2"".(*ReadWriter).ReadByte,"".ReadWriter.ReadByte2go.string.hdr."ReadBytes"Btype.func(uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)4"".(*ReadWriter).ReadBytes."".ReadWriter.ReadBytes0go.string.hdr."ReadFrom"Ftype.func(io.Reader) (int64, error)	dtype.func("".ReadWriter, io.Reader) (int64, error)	2"".(*ReadWriter).ReadFrom	,"".ReadWriter.ReadFrom	0go.string.hdr."ReadLine"	Dtype.func() ([]uint8, bool, error)	^type.func("".ReadWriter) ([]uint8, bool, error)	2"".(*ReadWriter).ReadLine
   1174 ,"".ReadWriter.ReadLine
   1175 0go.string.hdr."ReadRune"
   1176 >type.func() (int32, int, error)
   1177 Xtype.func("".ReadWriter) (int32, int, error)
   1178 2"".(*ReadWriter).ReadRune
   1179 ,"".ReadWriter.ReadRune
   1180 2go.string.hdr."ReadSlice"Btype.func(uint8) ([]uint8, error)`type.func("".ReadWriter, uint8) ([]uint8, error)4"".(*ReadWriter).ReadSlice."".ReadWriter.ReadSlice4go.string.hdr."ReadString"@type.func(uint8) (string, error)^type.func("".ReadWriter, uint8) (string, error)6"".(*ReadWriter).ReadString0"".ReadWriter.ReadString4go.string.hdr."UnreadByte""type.func() error<type.func("".ReadWriter) error6"".(*ReadWriter).UnreadByte
0"".ReadWriter.UnreadByte
4go.string.hdr."UnreadRune"
"type.func() error
<type.func("".ReadWriter) error
6"".(*ReadWriter).UnreadRune
0"".ReadWriter.UnreadRune
*go.string.hdr."Write">type.func([]uint8) (int, error)\type.func("".ReadWriter, []uint8) (int, error),"".(*ReadWriter).Write&"".ReadWriter.Write2go.string.hdr."WriteByte",type.func(uint8) errorJtype.func("".ReadWriter, uint8) error4"".(*ReadWriter).WriteByte."".ReadWriter.WriteByte2go.string.hdr."WriteRune":type.func(int32) (int, error)Xtype.func("".ReadWriter, int32) (int, error)4"".(*ReadWriter).WriteRune."".ReadWriter.WriteRune6go.string.hdr."WriteString"<type.func(string) (int, error)Ztype.func("".ReadWriter, string) (int, error)8"".(*ReadWriter).WriteString2"".ReadWriter.WriteString.go.string.hdr."WriteTo"Ftype.func(io.Writer) (int64, error)dtype.func("".ReadWriter, io.Writer) (int64, error)0"".(*ReadWriter).WriteTo*"".ReadWriter.WriteTo(go.string.hdr."fill""go.importpath."".type.func()0type.func("".ReadWriter)*"".(*ReadWriter).fill$"".ReadWriter.fill*go.string.hdr."flush""go.importpath.""."type.func() error<type.func("".ReadWriter) error,"".(*ReadWriter).flush&"".ReadWriter.flush.go.string.hdr."readErr""go.importpath.""."type.func() error<type.func("".ReadWriter) error0"".(*ReadWriter).readErr*"".ReadWriter.readErr*go.string.hdr."reset""go.importpath."".:type.func([]uint8, io.Reader)Xtype.func("".ReadWriter, []uint8, io.Reader),"".(*ReadWriter).reset&"".ReadWriter.reset0go.string.hdr."writeBuf""go.importpath."".Ftype.func(io.Writer) (int64, error)dtype.func("".ReadWriter, io.Writer) (int64, error)2"".(*ReadWriter).writeBuf,"".ReadWriter.writeBuf@go.string.hdr."*bufio.SplitFunc"  8go.string."*bufio.SplitFunc"8go.string."*bufio.SplitFunc"0"*bufio.SplitFunc$type.*"".SplitFuncG{?60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*bufio.SplitFunc"p6go.weak.type.**"".SplitFunc"runtime.zerovalue"type."".SplitFunc>go.string.hdr."bufio.SplitFunc"  6go.string."bufio.SplitFunc"6go.string."bufio.SplitFunc"  bufio.SplitFunc2go.string.hdr."SplitFunc"  	*go.string."SplitFunc"*go.string."SplitFunc" SplitFunc"type."".SplitFuncb3 0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."bufio.SplitFunc"p$type.*"".SplitFunc"runtime.zerovalue"type."".SplitFunc"type."".SplitFunctype.[]uint8type.booltype.inttype.[]uint8type.error`"type."".SplitFunc2go.string.hdr."SplitFunc""go.importpath.""."type."".SplitFunc<go.string.hdr."*bufio.Scanner"  4go.string."*bufio.Scanner"4go.string."*bufio.Scanner" *bufio.ScannerXgo.string.hdr."func(*bufio.Scanner) []uint8"  Pgo.string."func(*bufio.Scanner) []uint8"Pgo.string."func(*bufio.Scanner) []uint8"@:func(*bufio.Scanner) []uint8<type.func(*"".Scanner) []uint8Jr30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(*bufio.Scanner) []uint8"pNgo.weak.type.*func(*"".Scanner) []uint8"runtime.zerovalue<type.func(*"".Scanner) []uint8<type.func(*"".Scanner) []uint8 type.*"".Scannertype.[]uint8go.typelink.func(*bufio.Scanner) []uint8	func(*"".Scanner) []uint8<type.func(*"".Scanner) []uint8Tgo.string.hdr."func(*bufio.Scanner) error"  Lgo.string."func(*bufio.Scanner) error"Lgo.string."func(*bufio.Scanner) error"@6func(*bufio.Scanner) error8type.func(*"".Scanner) errorz30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*bufio.Scanner) error"pJgo.weak.type.*func(*"".Scanner) error"runtime.zerovalue8type.func(*"".Scanner) error8type.func(*"".Scanner) error type.*"".Scannertype.error|go.typelink.func(*bufio.Scanner) error	func(*"".Scanner) error8type.func(*"".Scanner) errorRgo.string.hdr."func(*bufio.Scanner) bool"  Jgo.string."func(*bufio.Scanner) bool"Jgo.string."func(*bufio.Scanner) bool"@4func(*bufio.Scanner) bool6type.func(*"".Scanner) bool09C30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*bufio.Scanner) bool"pHgo.weak.type.*func(*"".Scanner) bool"runtime.zerovalue6type.func(*"".Scanner) bool6type.func(*"".Scanner) bool type.*"".Scannertype.boolxgo.typelink.func(*bufio.Scanner) bool	func(*"".Scanner) bool6type.func(*"".Scanner) booljgo.string.hdr."func(*bufio.Scanner, bufio.SplitFunc)"  %bgo.string."func(*bufio.Scanner, bufio.SplitFunc)"bgo.string."func(*bufio.Scanner, bufio.SplitFunc)"PLfunc(*bufio.Scanner, bufio.SplitFunc)Htype.func(*"".Scanner, "".SplitFunc)=30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*bufio.Scanner, bufio.SplitFunc)"pZgo.weak.type.*func(*"".Scanner, "".SplitFunc)"runtime.zerovalueHtype.func(*"".Scanner, "".SplitFunc)Htype.func(*"".Scanner, "".SplitFunc) type.*"".Scanner"type."".SplitFuncgo.typelink.func(*bufio.Scanner, bufio.SplitFunc)	func(*"".Scanner, "".SplitFunc)Htype.func(*"".Scanner, "".SplitFunc)Vgo.string.hdr."func(*bufio.Scanner) string"  Ngo.string."func(*bufio.Scanner) string"Ngo.string."func(*bufio.Scanner) string"@8func(*bufio.Scanner) string:type.func(*"".Scanner) stringQ530 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*bufio.Scanner) string"pLgo.weak.type.*func(*"".Scanner) string"runtime.zerovalue:type.func(*"".Scanner) string:type.func(*"".Scanner) string type.*"".Scannertype.stringgo.typelink.func(*bufio.Scanner) string	func(*"".Scanner) string:type.func(*"".Scanner) string\go.string.hdr."func(*bufio.Scanner, int) bool"  Tgo.string."func(*bufio.Scanner, int) bool"Tgo.string."func(*bufio.Scanner, int) bool"@>func(*bufio.Scanner, int) bool@type.func(*"".Scanner, int) bool730 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*bufio.Scanner, int) bool"pRgo.weak.type.*func(*"".Scanner, int) bool"runtime.zerovalue@type.func(*"".Scanner, int) bool@type.func(*"".Scanner, int) bool type.*"".Scannertype.inttype.boolgo.typelink.func(*bufio.Scanner, int) bool	func(*"".Scanner, int) bool@type.func(*"".Scanner, int) boolVgo.string.hdr."func(*bufio.Scanner, error)"  Ngo.string."func(*bufio.Scanner, error)"Ngo.string."func(*bufio.Scanner, error)"@8func(*bufio.Scanner, error):type.func(*"".Scanner, error)S-30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*bufio.Scanner, error)"pLgo.weak.type.*func(*"".Scanner, error)"runtime.zerovalue:type.func(*"".Scanner, error):type.func(*"".Scanner, error) type.*"".Scannertype.errorgo.typelink.func(*bufio.Scanner, error)	func(*"".Scanner, error):type.func(*"".Scanner, error)*go.string.hdr."Bytes"  "go.string."Bytes""go.string."Bytes"Bytes<go.string.hdr."func() []uint8"  4go.string."func() []uint8"4go.string."func() []uint8" func() []uint8&type.func() []uint8io%30 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."func() []uint8"p8go.weak.type.*func() []uint8"runtime.zerovalue&type.func() []uint8&type.func() []uint8type.[]uint8Rgo.typelink.func() []uint8	func() []uint8&type.func() []uint8&go.string.hdr."Err"  go.string."Err"go.string."Err"Err(go.string.hdr."Scan"   go.string."Scan" go.string."Scan"
   1203 Scan6go.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*go.string.hdr."Split"  "go.string."Split""go.string."Split"SplitJgo.string.hdr."func(bufio.SplitFunc)"  Bgo.string."func(bufio.SplitFunc)"Bgo.string."func(bufio.SplitFunc)"0,func(bufio.SplitFunc).type.func("".SplitFunc)30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(bufio.SplitFunc)"p@go.weak.type.*func("".SplitFunc)"runtime.zerovalue.type.func("".SplitFunc).type.func("".SplitFunc)"type."".SplitFunchgo.typelink.func(bufio.SplitFunc)	func("".SplitFunc).type.func("".SplitFunc)(go.string.hdr."Text"   go.string."Text" go.string."Text"
   1206 Text:go.string.hdr."func() string"  
2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string	func() string$type.func() string.go.string.hdr."advance"  &go.string."advance"&go.string."advance"advance<go.string.hdr."func(int) bool"  4go.string."func(int) bool"4go.string."func(int) bool" func(int) bool&type.func(int) bool{r`30 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."func(int) bool"p8go.weak.type.*func(int) bool"runtime.zerovalue&type.func(int) bool&type.func(int) booltype.inttype.boolRgo.typelink.func(int) bool	func(int) bool&type.func(int) bool,go.string.hdr."setErr"  $go.string."setErr"$go.string."setErr"setErr6go.string.hdr."func(error)"  .go.string."func(error)".go.string."func(error)" func(error) type.func(error)['g30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func(error)"p2go.weak.type.*func(error)"runtime.zerovalue type.func(error) type.func(error)type.errorFgo.typelink.func(error)	func(error) type.func(error) type.*"".Scannerv96Z0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*bufio.Scanner"p2go.weak.type.**"".Scanner"runtime.zerovaluetype."".Scanner` type.*"".Scanner type.*"".Scanner*go.string.hdr."Bytes"&type.func() []uint8<type.func(*"".Scanner) []uint8&"".(*Scanner).Bytes&"".(*Scanner).Bytes&go.string.hdr."Err""type.func() error8type.func(*"".Scanner) error""".(*Scanner).Err""".(*Scanner).Err(go.string.hdr."Scan" type.func() bool6type.func(*"".Scanner) bool$"".(*Scanner).Scan$"".(*Scanner).Scan*go.string.hdr."Split".type.func("".SplitFunc)Htype.func(*"".Scanner, "".SplitFunc)&"".(*Scanner).Split&"".(*Scanner).Split(go.string.hdr."Text"$type.func() string:type.func(*"".Scanner) string$"".(*Scanner).Text$"".(*Scanner).Text.go.string.hdr."advance""go.importpath."".&type.func(int) bool@type.func(*"".Scanner, int) bool*"".(*Scanner).advance*"".(*Scanner).advance,go.string.hdr."setErr""go.importpath."". type.func(error):type.func(*"".Scanner, error)("".(*Scanner).setErr("".(*Scanner).setErr&runtime.gcbits.97300:go.string.hdr."bufio.Scanner"  
2go.string."bufio.Scanner"2go.string."bufio.Scanner" bufio.Scanner*go.string.hdr."split"  "go.string."split""go.string."split"split8go.string.hdr."maxTokenSize"  0go.string."maxTokenSize"0go.string."maxTokenSize" maxTokenSize*go.string.hdr."token"  "go.string."token""go.string."token"token*go.string.hdr."start"  "go.string."start""go.string."start"start&go.string.hdr."end"  go.string."end"go.string."end"end.go.string.hdr."empties"  &go.string."empties"&go.string."empties"empties.go.string.hdr."Scanner"  &go.string."Scanner"&go.string."Scanner"Scannertype."".Scannerxps		 8PX`pJ0 runtime.algarray@&runtime.gcbits.9730P:go.string.hdr."bufio.Scanner"p type.*"".Scanner"runtime.zerovaluetype."".Scanner"go.string.hdr."r""go.importpath."".type.io.Reader*go.string.hdr."split""go.importpath.""."type."".SplitFunc8go.string.hdr."maxTokenSize""go.importpath."".type.int*go.string.hdr."token""go.importpath."".type.[]uint8&go.string.hdr."buf""go.importpath."".type.[]uint8*go.string.hdr."start""go.importpath."".type.int&go.string.hdr."end""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error.go.string.hdr."empties""go.importpath."".type.int`type."".Scanner.go.string.hdr."Scanner""go.importpath."".type."".Scanner.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"8go.string.hdr."unicode/utf8"  0go.string."unicode/utf8"0go.string."unicode/utf8" unicode/utf86go.importpath.unicode/utf8.  0go.string."unicode/utf8"2"".(*ReadWriter).resetf,"".(*ReadWriter).reset0"".(*ReadWriter).fillf*"".(*ReadWriter).fill6"".(*ReadWriter).readErrf0"".(*ReadWriter).readErr0"".(*ReadWriter).Peekf*"".(*ReadWriter).Peek6"".(*ReadWriter).Discardf0"".(*ReadWriter).Discard0"".(*ReadWriter).Readf*"".(*ReadWriter).Read8"".(*ReadWriter).ReadBytef2"".(*ReadWriter).ReadByte<"".(*ReadWriter).UnreadBytef6"".(*ReadWriter).UnreadByte8"".(*ReadWriter).ReadRunef2"".(*ReadWriter).ReadRune<"".(*ReadWriter).UnreadRunef6"".(*ReadWriter).UnreadRune:"".(*ReadWriter).ReadSlicef4"".(*ReadWriter).ReadSlice8"".(*ReadWriter).ReadLinef2"".(*ReadWriter).ReadLine:"".(*ReadWriter).ReadBytesf4"".(*ReadWriter).ReadBytes<"".(*ReadWriter).ReadStringf6"".(*ReadWriter).ReadString6"".(*ReadWriter).WriteTof0"".(*ReadWriter).WriteTo8"".(*ReadWriter).writeBuff2"".(*ReadWriter).writeBuf2"".(*ReadWriter).Flushf,"".(*ReadWriter).Flush2"".(*ReadWriter).flushf,"".(*ReadWriter).flush:"".(*ReadWriter).Availablef4"".(*ReadWriter).Available2"".(*ReadWriter).Writef,"".(*ReadWriter).Write:"".(*ReadWriter).WriteBytef4"".(*ReadWriter).WriteByte:"".(*ReadWriter).WriteRunef4"".(*ReadWriter).WriteRune>"".(*ReadWriter).WriteStringf8"".(*ReadWriter).WriteString8"".(*ReadWriter).ReadFromf2"".(*ReadWriter).ReadFrom,"".ReadWriter.resetf&"".ReadWriter.reset*"".ReadWriter.fillf$"".ReadWriter.fill0"".ReadWriter.readErrf*"".ReadWriter.readErr*"".ReadWriter.Peekf$"".ReadWriter.Peek0"".ReadWriter.Discardf*"".ReadWriter.Discard*"".ReadWriter.Readf$"".ReadWriter.Read2"".ReadWriter.ReadBytef,"".ReadWriter.ReadByte6"".ReadWriter.UnreadBytef0"".ReadWriter.UnreadByte2"".ReadWriter.ReadRunef,"".ReadWriter.ReadRune6"".ReadWriter.UnreadRunef0"".ReadWriter.UnreadRune4"".ReadWriter.ReadSlicef."".ReadWriter.ReadSlice2"".ReadWriter.ReadLinef,"".ReadWriter.ReadLine4"".ReadWriter.ReadBytesf."".ReadWriter.ReadBytes6"".ReadWriter.ReadStringf0"".ReadWriter.ReadString0"".ReadWriter.WriteTof*"".ReadWriter.WriteTo2"".ReadWriter.writeBuff,"".ReadWriter.writeBuf,"".ReadWriter.Flushf&"".ReadWriter.Flush,"".ReadWriter.flushf&"".ReadWriter.flush4"".ReadWriter.Availablef."".ReadWriter.Available,"".ReadWriter.Writef&"".ReadWriter.Write4"".ReadWriter.WriteBytef."".ReadWriter.WriteByte4"".ReadWriter.WriteRunef."".ReadWriter.WriteRune8"".ReadWriter.WriteStringf2"".ReadWriter.WriteString2"".ReadWriter.ReadFromf,"".ReadWriter.ReadFrom"runtime.zerovaluego13ld