Home | History | Annotate | Download | only in text
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     6705      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "b2d9573200bf174e3598bf25ee63b2e84a8e7d3b"
      5 
      6 $$
      7 package tabwriter
      8 	import runtime "runtime"
      9 	import bytes "bytes"
     10 	import io "io"
     11 	import utf8 "unicode/utf8"
     12 	type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
     13 	type @"bytes".readOp int
     14 	type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
     15 	type @"bytes".Buffer struct { @"bytes".buf []byte; @"bytes".off int; @"bytes".runeBytes [4]byte; @"bytes".bootstrap [64]byte; @"bytes".lastRead @"bytes".readOp }
     16 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Bytes () (? []byte) { return @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:] }
     17 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Cap () (? int) { return cap(@"bytes".b2.@"bytes".buf) }
     18 	func (@"bytes".b1 *@"bytes".Buffer) Grow (@"bytes".n2 int)
     19 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") Len () (? int) { return len(@"bytes".b2.@"bytes".buf) - @"bytes".b2.@"bytes".off }
     20 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x22") Next (@"bytes".n3 int) (? []byte) { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); var @"bytes".m4 int; ; @"bytes".m4 = @"bytes".b2.Len(); if @"bytes".n3 > @"bytes".m4 { @"bytes".n3 = @"bytes".m4 }; var @"bytes".data5 []byte; ; @"bytes".data5 = @"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:@"bytes".b2.@"bytes".off + @"bytes".n3]; @"bytes".b2.@"bytes".off += @"bytes".n3; if @"bytes".n3 > 0x0 { @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x2) }; return @"bytes".data5 }
     21 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") Read (@"bytes".p4 []byte "esc:0x1") (@"bytes".n1 int, @"bytes".err2 error)
     22 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadByte () (@"bytes".c1 byte, @"bytes".err2 error)
     23 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadBytes (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error)
     24 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") ReadFrom (@"bytes".r4 @"io".Reader) (@"bytes".n1 int64, @"bytes".err2 error)
     25 	func (@"bytes".b4 *@"bytes".Buffer "esc:0x1") ReadRune () (@"bytes".r1 rune, @"bytes".size2 int, @"bytes".err3 error)
     26 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x1") ReadString (@"bytes".delim4 byte) (@"bytes".line1 string, @"bytes".err2 error)
     27 	func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Reset ()
     28 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") String () (? string) { if @"bytes".b2 == nil { return "<nil>" }; return string(@"bytes".b2.@"bytes".buf[@"bytes".b2.@"bytes".off:]) }
     29 	func (@"bytes".b1 *@"bytes".Buffer "esc:0x1") Truncate (@"bytes".n2 int)
     30 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadByte () (? error) { if @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x1) && @"bytes".b2.@"bytes".lastRead != @"bytes".readOp(0x2) { return @"errors".New("bytes.Buffer: UnreadByte: previous operation was not a read") }; @"bytes".b2.@"bytes".lastRead = @"bytes".readOp(0x0); if @"bytes".b2.@"bytes".off > 0x0 { @"bytes".b2.@"bytes".off-- }; return nil }
     31 	func (@"bytes".b2 *@"bytes".Buffer "esc:0x1") UnreadRune () (? error)
     32 	func (@"bytes".b3 *@"bytes".Buffer) Write (@"bytes".p4 []byte "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error)
     33 	func (@"bytes".b2 *@"bytes".Buffer) WriteByte (@"bytes".c3 byte) (? error)
     34 	func (@"bytes".b3 *@"bytes".Buffer) WriteRune (@"bytes".r4 rune) (@"bytes".n1 int, @"bytes".err2 error)
     35 	func (@"bytes".b3 *@"bytes".Buffer) WriteString (@"bytes".s4 string "esc:0x9") (@"bytes".n1 int, @"bytes".err2 error)
     36 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x9") WriteTo (@"bytes".w4 @"io".Writer) (@"bytes".n1 int64, @"bytes".err2 error)
     37 	func (@"bytes".b2 *@"bytes".Buffer) @"bytes".grow (@"bytes".n3 int) (? int)
     38 	func (@"bytes".b3 *@"bytes".Buffer "esc:0x22") @"bytes".readSlice (@"bytes".delim4 byte) (@"bytes".line1 []byte, @"bytes".err2 error)
     39 	type @"".cell struct { @"".size int; @"".width int; @"".htab bool }
     40 	type @"".Writer struct { @"".output @"io".Writer; @"".minwidth int; @"".tabwidth int; @"".padding int; @"".padbytes [8]byte; @"".flags uint; @"".buf @"bytes".Buffer; @"".pos int; @"".cell @"".cell; @"".endChar byte; @"".lines [][]@"".cell; @"".widths []int }
     41 	func (@"".b2 *@"".Writer) Flush () (@"".err1 error)
     42 	func (@"".b2 *@"".Writer "esc:0x1a") Init (@"".output3 @"io".Writer, @"".minwidth4 int, @"".tabwidth5 int, @"".padding6 int, @"".padchar7 byte, @"".flags8 uint) (? *@"".Writer)
     43 	func (@"".b3 *@"".Writer) Write (@"".buf4 []byte "esc:0x9") (@"".n1 int, @"".err2 error)
     44 	func (@"".b1 *@"".Writer "esc:0x9") @"".addLine () { @"".b1.@"".lines = append(@"".b1.@"".lines, ([]@"".cell{  })) }
     45 	func (@"".b1 *@"".Writer) @"".append (@"".text2 []byte "esc:0x9")
     46 	func (@"".b1 *@"".Writer "esc:0x1") @"".dump ()
     47 	func (@"".b1 *@"".Writer "esc:0x1") @"".endEscape ()
     48 	func (@"".b2 *@"".Writer) @"".format (@"".pos03 int, @"".line04 int, @"".line15 int) (@"".pos1 int)
     49 	func (@"".b1 *@"".Writer "esc:0x9") @"".reset ()
     50 	func (@"".b1 *@"".Writer "esc:0x1") @"".startEscape (@"".ch2 byte)
     51 	func (@"".b2 *@"".Writer "esc:0x9") @"".terminateCell (@"".htab3 bool) (? int) { @"".b2.@"".cell.@"".htab = @"".htab3;  var @"".line4 *[]@"".cell; @"".line4 = &@"".b2.@"".lines[len(@"".b2.@"".lines) - 0x1]; *@"".line4 = append(*@"".line4, @"".b2.@"".cell); @"".b2.@"".cell = (@"".cell{  }); return len(*@"".line4) }
     52 	func (@"".b1 *@"".Writer "esc:0x1") @"".updateWidth ()
     53 	func (@"".b1 *@"".Writer "esc:0x9") @"".write0 (@"".buf2 []byte)
     54 	func (@"".b2 *@"".Writer) @"".writeLines (@"".pos03 int, @"".line04 int, @"".line15 int) (@"".pos1 int)
     55 	func (@"".b1 *@"".Writer "esc:0x9") @"".writeN (@"".src2 []byte, @"".n3 int)
     56 	func (@"".b1 *@"".Writer) @"".writePadding (@"".textw2 int, @"".cellw3 int, @"".useTabs4 bool)
     57 	const @"".FilterHTML uint = 0x1
     58 	const @"".StripEscape uint = 0x2
     59 	const @"".AlignRight uint = 0x4
     60 	const @"".DiscardEmptyColumns uint = 0x8
     61 	const @"".TabIndent uint = 0x10
     62 	const @"".Debug uint = 0x20
     63 	const @"".Escape = '\u00ff'
     64 	func @"".NewWriter (@"".output2 @"io".Writer, @"".minwidth3 int, @"".tabwidth4 int, @"".padding5 int, @"".padchar6 byte, @"".flags7 uint) (? *@"".Writer)
     65 	func @"".init ()
     66 	import errors "errors" // indirect
     67 	func @"errors".New (@"errors".text2 string) (? error) { return (&@"errors".errorString{ @"errors".s:@"errors".text2 }) }
     68 	type @"errors".errorString struct { @"errors".s string }
     69 	func (@"errors".e2 *@"errors".errorString "esc:0x22") Error () (? string) { return @"errors".e2.@"errors".s }
     70 
     71 $$
     72 _go_.o          0           0     0     644     71379     `
     73 go object darwin amd64 go1.5.1 X:none
     74 
     75 !
     76 go13ldbytes.aio.aunicode/utf8.a("".(*Writer).addLineeH%H;aKHhHH$H\$H!HD$XHD$`H\$PH\$pHHHHHH9wLHHHHkHHl$XHkHl$`HkHl$P=uH+HhH$Hl$HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H\$pHtWHHD$@HHHHT$H=uHJLL$HT$HT$HHD$@&
     79 4type.[0]"".cellF
     80 "runtime.newobject6runtime.writeBarrierEnabled
     81 .runtime.writebarrierptr type.[][]"".cell
     82 "runtime.growslice6runtime.writeBarrierEnabled
     83 .runtime.writebarrierptr
     84 0runtime.morestack_noctxt"".autotmp_0000/type.[]"".cell"".btype.*"".Writer
     85 "b1Tgclocals37a2283f5c69c342946cad8073b58fcaTgclocals0b54e40361ced91ab254ee60980e804anprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go$"".(*Writer).reseteH%H;aHpH\$xH$H<$H$8HD$xH1HH@HHHHHD$HHH$H\$H!HD$`HD$hH\$XH\$HHHHHHH9wLHHHHkHHl$`HkHl$hHkHl$X=uH+HpH$Hl$HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H\$HHtWHHD$@HHHHT$P=uHJLL$HT$HT$PHD$@&%L
     88 b
     89 *bytes.(*Buffer).Resettype.[0]"".cell
     90 "runtime.newobject6runtime.writeBarrierEnabled
     91 .runtime.writebarrierptr type.[][]"".cell
     92 "runtime.growslice6runtime.writeBarrierEnabled
     93 .runtime.writebarrierptr
     94 0runtime.morestack_noctxt"".autotmp_0005/type.[]"".cell"".bOtype.*"".Writer"".btype.*"".Writer@#0g&b<Tgclocals5d2b5a2aeff4e4cf961f497a12cc05aeTgclocals7ce0fd9f78d9e1065380319bd4759d68nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go""".(*Writer).IniteH%H;aaH8|$pHT$@H\$XHH\$`HH\$hHHl$HH*Hl$P=HjHl$XHjHl$`HjHl$hHj 1HH9}!Ht`Hj(HsOHl@}HH9|@	uHD$xHH!H\$xHl$xHj0H$H\$@H$H8LBL$Hl$|$pHT$@LHH\$(HD$0'HH$H\$(H\$HD$H\$HH$HKHL$
    103 6runtime.writeBarrierEnabled
    104 $"".(*Writer).reset
    105 $runtime.panicindex
    106 .runtime.writebarrierptrfgo.string."negative minwidth, tabwidth, or padding"type.string
    107 runtime.convT2E
    108 runtime.gopanic
    109 0runtime.morestack_noctxtp"".autotmp_0010type.string"".~r6type.*"".Writer"".flagsptype.uint"".padchar`type.uint8"".paddingPtype.int"".tabwidth@type.int"".minwidth0type.int"".outputtype.io.Writer"".btype.*"".WriterpopP!-						Tv-Tgclocalsb2a2bdb912e49b44a944ec16bd6e2d67Tgclocalsd8fdd2a55187867c76648dc792366181nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go""".(*Writer).dumpeH%H$8H;AHHHD$0H$PHHHHH$@1H$8HL$PH$0HHl$PH9H$H5H1HQHiHD$XHD$8H$H$H$H$H$H$HH$HD$H\$8H$HH$HD$Ht$0H$H$H$H$1H$HD$@H$HHl$@H9H$H@H8HPhHL$HH|$xH$HT$h@$@l$pH$PHH81H$H$H$HhL@LHL9LI)I)ItM*L$L$L$IH|$`IH$LKM9lL9cLI)I)ItM2H$H$L$LT$L$ LD$L$(LL$H\$ H$H\$(H$HH$HD$H$H$H$H\$HH$HD$HD$0Ht$`HHt$0H$HL$HHHHl$@H93HH$HD$H$HD$XHHHl$PH9HH$HD$HHf6
    116 
    117 "runtime.printlockgo.string."("
    118 &runtime.printstring
    119  runtime.printintgo.string.") "
    120 &runtime.printstring
    121 &runtime.printunlock
    122 
    123 2runtime.slicebytetostring
    124 
    125 "runtime.printlock
    126 go.string."["
    128 &runtime.printstring
    130 &runtime.printstringgo.string."]"
    133 &runtime.printstring
    135 &runtime.printunlock
    137 "runtime.printlock
go.string."\n"
    140 &runtime.printstring
    142 &runtime.printunlock
    143 "runtime.printlockgo.string."\n"
    144 &runtime.printstring
    145 &runtime.printunlock
    146 $runtime.panicslice
    147 $runtime.panicslice
    148 0runtime.morestack_noctxt,"".autotmp_0030type.string"".autotmp_0029type.[32]uint8"".autotmp_0028type."".cell"".autotmp_0027type.*"".cell"".autotmp_0026type.int"".autotmp_0025type.int"".autotmp_0024type.[]"".cell"".autotmp_0023type.*[]"".cell"".autotmp_0022type.int"".autotmp_0021type.int"".autotmp_0020type.int"".autotmp_0019type.[]uint8"".autotmp_0018type.int"".autotmp_0017_type.[]uint8"".autotmp_0015type.[]"".cell"".autotmp_0014/ type.[][]"".cell"".~r0type.[]uint8"".ctype."".cell"".linetype.[]"".cell"".itype.int"".postype.int"".btype.*"".Writer"CJ"	O"#"#"7WEnTgclocalsea5138d814d46269fcb486a04203da7dTgclocals08228173a9937ca0d167807d71bc880enprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go&"".(*Writer).write0eH%H;aHhH\$pHHHkH\$xH\$H$H\$H$H\$Hl$PH,$HL$HHY H\$ HD$(HT$0H$H9t~HuxHHHt_1H\$XH\$`HD$8HD$XHT$@HT$`HH$H\$XH\$HD$H\$HH$HKHL$Hh
    158  io.ErrShortWrite io.ErrShortWritetype."".osError
    159 runtime.convT2E
    160 runtime.gopanic
    161 0runtime.morestack_noctxt@"".autotmp_0032type."".osError"".err_type.error"".buftype.[]uint8"".btype.*"".Writer!,]_cvGTgclocalsaefd16b155593f6f07980a05b297ad1fTgclocals8c067d5052c60a71dd2787c367bb278bnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go&"".(*Writer).writeNeH%H;aH8HL$`HT$PHL$`H9~>H\$@H$H\$HH\$HT$H\$XH\$HT$PHL$`H)HL$`H9Hl$XH9w6LD$HH\$@H$LD$ LD$HL$(HL$Hl$0Hl$H8F
    166 
    167 
    168 &"".(*Writer).write0
    169 &"".(*Writer).write0
    170 $runtime.panicslice
    171 0runtime.morestack_noctxtPp"".autotmp_0037/type.[]uint8"".n@type.int"".srctype.[]uint8"".btype.*"".Writerpop(!
    173 ,
    174 ;	
    175 MsTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals790e5cc5051fc0affc980ade09e929ecnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go2"".(*Writer).writePaddingeH%H;a}HPH|$hHt$`HL$XY(	t]|$puVHH(HtEHHH$HD$8HD$Hl$@Hl$HT$HHT$HH)H\$ HPHYHuHPHAHHHiHHHHHiHH\$hH)HH}THH\$(HD$0HH$H\$(H\$HD$H\$HH$HKHL$H$HH\$HH\$HH\$HYHHHiHHtHHHD$ HPHHD$ HH+f
    182 
    183 &"".(*Writer).writeN4go.string."internal error"type.string
    184 runtime.convT2E
    185 runtime.gopanic"".tabs"".tabs "".tabs
    186 &"".(*Writer).writeN
    187 0runtime.morestack_noctxt@"".autotmp_0039/type.[]uint8"".autotmp_0038Otype.string"".useTabs0type.bool"".cellw type.int"".textwtype.int"".btype.*"".Writer2p%D& M
    189 (TN
    191 	
~j/Tgclocalsf47057354ec566066f8688a4970cff5aTgclocalsfad3647538fe088c3f63d28bb4a0e2d7nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go."".(*Writer).writeLineseH%H$@H;AH@H$HL$PL$hH$XH\$0H\$0H$`H9=HHHHH$H$Hl$0H$H9HkHHHKHsHX0HHD$'H$H$H$H$8HD$@H$0HL$8H$(HT$xH\$@Hl$8H9VH\$xHH;HskHL$@H|$`H|$HHt$hHt$P@l$p@l$XHL$(H~ZHX0H HtLH$HH\$HH\$HH\$L$hH|$HHt$PHL$(H$HH4HH9H$Ht$HHHHH$H$H$H9HH+Hl$\$'\$L$hH$HH\$xHH\$xH\$@HH\$@H\$@Hl$8H9HH\$0HH9'HH81H$H$H$HiLALIL9LI)I)ItM*L$L$L$LMH$LKM9M9LM)M)ItOH$L$LT$L$LD$L$ LL$H$HH$hLIL$hH\$0HH\$0H\$0H$`H9H@H$HH\$HH\$HH\$L$hH$HHD$'HX0HHHH81H$H$H$HiLALIL9DLI)I)ItM*L$L$L$IMH$LKM9M9LM)M)ItOH$L$LT$L$LD$L$ LL$HT$(H$HH$hL\$HIL$hHH9}uH$H\$PH\$HHHHH$H$H$H9s+HH+Hl$D$L$hH$HHH9xH$Ht$HHHHH$H$H$H9/HH+Hl$D$L$hH|$HH$HHHH81H$H$H$HiLALIL9LI)I)ItM*L$L$L$IMH$LKM9wmM9whLM)M)ItOH$L$LT$L$LD$L$ LL$H$HH$hL\$HIL$hD	24
    205 "".vbar"".vbar "".vbar
    206 &"".(*Writer).write0
    207 2"".(*Writer).writePadding
    209 &"".(*Writer).write0
    210 $runtime.panicslice
    211 $runtime.panicslice"".newline"".newline "".newline
    212 &"".(*Writer).write0
    213 $runtime.panicindex
    214 &"".(*Writer).write0
    215 2"".(*Writer).writePadding
    216 $runtime.panicindex
    217 $runtime.panicslice
    218 $runtime.panicslice
    219 2"".(*Writer).writePadding
    220 &"".(*Writer).write0
    221 $runtime.panicslice
    222 $runtime.panicslice
    223 $runtime.panicindex
    224 $runtime.panicindex
    225 0runtime.morestack_noctxtPJ"".autotmp_0064type."".cell"".autotmp_0063type.*"".cell"".autotmp_0062type.int"".autotmp_0061type.int"".autotmp_0060type.int"".autotmp_0059type.int"".autotmp_0058type.[]uint8"".autotmp_0057type.int"".autotmp_0056type.[]uint8"".autotmp_0055type.int"".autotmp_0054type.int"".autotmp_0053type.int"".autotmp_0052type.[]uint8"".autotmp_0051type.int"".autotmp_0050type.[]uint8"".autotmp_0049type.int"".autotmp_0048type.int"".autotmp_0047type.int"".autotmp_0046type.int"".autotmp_0045type.[]uint8"".autotmp_0044type.int"".autotmp_0043_type.[]uint8"".autotmp_0042type.int"".autotmp_0040/type.[]"".cell"".~r0type.[]uint8"".~r0type.[]uint8"".~r0type.[]uint8"".ctype."".cell"".jtype.int"".useTabstype.bool"".linetype.[]"".cell"".itype.int"".pos@type.int"".line10type.int"".line0 type.int"".pos0type.int"".btype.*"".Writer"*#WL
    230 l.<O#\
=Ui#$#m10/	(}ATgclocals3260b5c802f633fd6252c227878dd72aTgclocalse2096a3f82f7d1bdf42b2b2851eb6d0enprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go&"".(*Writer).formateH%HD$H;AHH$H$H$HHl$PIH$H9HHHHH$H$HH$H9wHkHH+H$HsHkH$H$HHHl$PH94H$HT$L$LL$HD$HHD$L$LL$PHT$HH$H\$ H$H$LXL\$@HHT$HL9HHHHH$H$HH$H9qHkHLL$H{HkH$H$HHL93LLI9HkHLLT$`H{DSDT$pHHh HL9~IHL$@H|$hHAHHT$HL9@tHX0HHtE1L\$@HHHHHH9HHLH$H$H\$H$H\$HT$H$HD$HHT$ HHLL9w[HIHH$H9hH$HT$L$LL$H$H\$H\$ H$HHH$H|$HL$Ht$Hl$ L\$@HT$HH$H|$(Hl$0Ht$8HtiHHl$XHHHH|$x=uHLL$H|$L\$@H|$xHL$XHT$HH$105HB
    243 
    244 ."".(*Writer).writeLines
    245 
    246 &"".(*Writer).format
    248 ."".(*Writer).writeLines
    250 $runtime.panicslicetype.[]int
    253 "runtime.growslice6runtime.writeBarrierEnabled
    254 .runtime.writebarrierptr
    255 $runtime.panicindex
    256 $runtime.panicindex
    257 $runtime.panicindex
    258 0runtime.morestack_noctxtP"".autotmp_0075type.int"".autotmp_0072type.int"".autotmp_0070type.int"".autotmp_0069type.int"".ctype."".cell"".widthtype.int"".line_type.[]"".cell"".thistype.int"".columntype.int"".pos@type.int"".line10type.int"".line0 type.int"".pos0type.int"".btype.*"".Writer/eL	e,(
    261 2:]h= %%1>Tgclocals3260b5c802f633fd6252c227878dd72aTgclocals1e95b73271997518524fc42f69ee4ca2nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go&"".(*Writer).appendeH%H;aveH8H\$@H$H<$tHH$8H\$HH\$H\$PH\$H\$XH\$HT$@HHD$PHHH8%
    264 
    265 *bytes.(*Buffer).Write
    266 0runtime.morestack_noctxt@p"".texttype.[]uint8"".btype.*"".WriterpWop=	
    268 F:Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go0"".(*Writer).updateWidtheH%H;a
    270 HXHD$`HHl$ HH81H\$(H\$0H\$8HhL@LHL9LI)I)ItM*LT$(LD$0LL$8HHH8L@HXI)H\$(LKM9wqL9wlLI)I)ItMLT$@L$LD$HLD$LL$PLL$HT$`HD$Hl$ HHHH8HhHXH)HHX
    273 
    274 
    275 ,unicode/utf8.RuneCount
    276 $runtime.panicslice
    277 $runtime.panicslice
    278 0runtime.morestack_noctxt"".autotmp_0093type.int"".autotmp_0091type.int"".autotmp_0090type.int"".autotmp_0089type.[]uint8"".autotmp_0088type.int"".autotmp_0086type.int"".autotmp_0085/type.[]uint8"".autotmp_0083otype.int"".~r0_type.[]uint8"".btype.*"".Writer!]Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals709a14768fab2805a378215c02f0d27fnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go0"".(*Writer).startEscapefHL$\$&u;<u	>u 
    281 "".chtype.uint8"".btype.*"".Writer@@0
    282 	
Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go,"".(*Writer).endEscapeeH%H;aHHD$@;u@HHHHHt"H8HiHYH)HH@>t@uH$HD$HX0HHuHHHQ
    286 
    287 0"".(*Writer).updateWidth
    288 0runtime.morestack_noctxt"".autotmp_0097type.int"".autotmp_0096type.int"".btype.*"".WriterMK@	
    291 y7Tgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go4"".(*Writer).terminateCelleH%HD$H;AHH$$@HHHHHH$H\$pHHL$xH9<HkHHHHl$HHHl$P@l$XH\$`HHCHKHHH9wVHkHHHkHHl$HH+Hl$PHkl$X@k1HH@HoH$HHH$HT$HD$HL$Hl$ H|$`H$HT$(HD$0HL$8HtSHHD$@HHoHOHT$h=uH?H<$HT$H|$`H$HT$hHD$@@
    294 type.[]"".cell
    295 "runtime.growslice6runtime.writeBarrierEnabled
    296 .runtime.writebarrierptr
    297 $runtime.panicindex
    298 0runtime.morestack_noctxt0"".autotmp_0102type."".cell"".autotmp_0101type.int"".lineOtype.*[]"".cell"".~r1 type.int"".htabtype.bool"".btype.*"".Writer*'Gj
    301 Y%Tgclocalscb395d89503762333b1bfb09ba74eb12Tgclocalscdf9fc2850a33547180758bbe4765e35nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go"".handlePaniceH%H;aNHxH$H$HD$HL$H 1H\$hH\$pHH$HD$HHD$HL$PHL$H\$hH\$\$ HH\$hH\$8H\$pH\$@<t7H\$8H$HtHl$H\$HH$HxEH$HH\$HD$H$H\$H$H\$ H\$(H\$XH\$0H\$`HH$H\$XH\$HD$H\$HH$HKHL$Hx
    306 H
    307 "runtime.gorecovertype."".osError
    308 $runtime.assertE2T2type.error
    309 (runtime.typedmemmoveHgo.string."tabwriter: panic during "
    310 *runtime.concatstring2type.string
    311 runtime.convT2E
    312 runtime.gopanic
    313 0runtime.morestack_noctxt0"".autotmp_0109?type.string"".autotmp_0108type."".osError"".nerrtype."".osError"".e_"type.interface {}
    315 "".optype.string"".errtype.*error(*%Z-#NM}5Tgclocals9c91d8a91ac42440a3d1507bc8d2e808Tgclocals10b07eafac8449ee35c08ccc2f224f09nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go$"".(*Writer).FlusheH%HD$H;AH1H$H$1H$H$H$H\$$HHD$JH$H\$HH\$HD$ $HHD$H$HHtH<$H$H1HHHHHH$H\$xHH$H9qHkHIH|$hHHl$HHHl$P@l$XH\$`HHCHKHHH9w{HkHHHkHHl$HH+Hl$PHkl$X@k1HH@IiHH<$HD$HD$Hl$HHH$HT$HD$HL$Hl$ LL$`H$Ht$hHT$(HD$0HL$8ItXHHD$@HIiIIHT$p=uIL$HT$LL$`H$Ht$hHT$pHD$@AHH-"
    322 *"".(*Writer).resetf
    323 "runtime.deferproc"go.string."Flush"""".handlePanicf
    324 "runtime.deferproc
    325 ,"".(*Writer).endEscape
    326 &"".(*Writer).format
    327 &runtime.deferreturntype.[]"".cell
    328 "runtime.growslice	6runtime.writeBarrierEnabled	
    329 .runtime.writebarrierptr
    330 
    331 $runtime.panicindex
    332 
    333 &runtime.deferreturn
    334 
    335 &runtime.deferreturn
    337 0runtime.morestack_noctxt0"".autotmp_0113type."".cell"".autotmp_0112type.int"".autotmp_0111type.int"".line_type.*[]"".cell"".bOtype.*"".Writer"".errtype.error"".btype.*"".Writer4
<C.K'c^+:Tgclocalsee10a820851092bf95788560bf5ba474Tgclocalsd839f252019eeeef48bd96bbb706bc92nprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go$"".(*Writer).Write&&eH%H$pH;A	HH$81H$@H$H1H$@H$HH$8H$@H\$HH\$HD$ $HHD$L$H$8H$ H$(H$0H$HD$hH$HD$`H$H$H\$hHl$`H9$H$+HT$hA@l$G@@	H$8HHT$PL$0L9`H9WL$ H)I)ItML$L$LL$H$Hl$L$LD$H$H$H$H\$PHH$8I\$G	HHHHHH$H$HH$H9HkHHH$HHl$pHHl$x@$H$HHkHKHHH9tHkHHHkHHl$pH+Hl$xHk$@k1HH@HoHl$H\$G
    345 \$GH$HH$H\$hHH\$hH\$hHl$`H9H$8H$(L$0H9wfL$ H)I)ItML$L$LL$H$Hl$L$LD$H$(H$8HL$HH$L$H\$HH$H$H$H$HHHHHH9HHHHkHH$HkH$HkH$=H+\$GtH\$HHkL$L$H\$H$@H\$H$HH$@HtH\$GIZ0H HL$HH\$HH\$HH\$L$H$Hl$L$+HH$HT$HD$HL$Hl$ L$HT$(Hl$0HL$8H$HteHHl$XHHHH$=uHoLL$HT$L$H$HD$X@HH$HT$HD$HL$Hl$ L$H$H$HT$(Hl$0HL$8HtdHHl$XHHoHOH$=uHH<$HT$L$H$H$H$HD$X@
    354 n@d@&@K@&IZ0HHH$8HHT$PL$0L9H9L$ H)I)ItML$L$LL$H$Hl$L$LD$H$H$H\$PH$8H$H$\$G\$L$/@<&@H$8HHT$PL$0L9H9L$ H)I)ItML$L$LL$H$Hl$L$LD$H$H$H$H\$PH$8HY0HHtH$8HH$8H$D$L$@A@8(HHT$PH@uIZ0HHtHH$8L$0HL9w{H9wvL$ H)I)ItML$L$LL$H$Hl$L$LD$H\$PHH$8H$H$L$sHUT
    364 "go.string."Write"""".handlePanicf
    365 "runtime.deferproc
    366 &"".(*Writer).append
    367 0"".(*Writer).updateWidth
    368 &"".(*Writer).append
    369 &runtime.deferreturn
    370 $runtime.panicslicetype.[0]"".cell
    371 "runtime.newobject6runtime.writeBarrierEnabled
    372 $"".(*Writer).Flush
    373 &runtime.deferreturn"".hbar"".hbar "".hbar
    374 &"".(*Writer).write0
    375 .runtime.writebarrierptr type.[][]"".cell
    376 "runtime.growslice6runtime.writeBarrierEnabled
    377 .runtime.writebarrierptrtype.[]"".cell
    378 "runtime.growslice6runtime.writeBarrierEnabled
    379 .runtime.writebarrierptr
    380 $runtime.panicindex
    381 $runtime.panicslice
    382 &"".(*Writer).append
    383 0"".(*Writer).updateWidth
    384 0"".(*Writer).startEscape
    385 $runtime.panicslice!
    386 &"".(*Writer).append!
    387 0"".(*Writer).updateWidth"
    388 0"".(*Writer).startEscape#
    389 $runtime.panicslice%
    390 &"".(*Writer).append%
    391 ,"".(*Writer).endEscape&
    392 $runtime.panicslice&
    393 &runtime.deferreturn&
    394 0runtime.morestack_noctxtp0"".autotmp_0135type.[]"".cell"".autotmp_0134type."".cell"".autotmp_0132type.uint8"".autotmp_0130type.*uint8"".autotmp_0129type.int"".autotmp_0128type.int"".autotmp_0127type.[]uint8"".autotmp_0126type.[]uint8"".autotmp_0125type.[]uint8"".autotmp_0124type.int"".autotmp_0123type.[]uint8"".autotmp_0122type.int"".autotmp_0120_type.[]uint8"".autotmp_0119/type.[]uint8"".btype.*"".Writer"".linetype.*[]"".cell"".btype.*"".Writer"".ncellstype.int
    395 "".chtype.uint8"".itype.int"".errPtype.error"".n@type.int"".buftype.[]uint8"".btype.*"".Writer6"	^Ki
    399 r3ek9 5/
    401 
    402 F
    403 r
"[V
    405 
    406 r
I>*ewt{\=5VLpIg3Jg3$Tgclocals65f87a26d7437594906aa6685bbe8e8eTgclocals91a69fed5ac493261c3aae937713460bnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go"".NewWritereH%H;av|HHHH$H\$H$H\$PH\$H\$XH\$H\$`H\$H\$hH\$ H\$pH\$(\$x\$0H$H\$8H\$@H$HHk
    410 
    411 ,type."".Writer>
    412 "runtime.newobject
    413 """.(*Writer).Init
    414 0runtime.morestack_noctxt"".autotmp_0146type.*"".Writer"".~r6ptype.*"".Writer"".flags`type.uint"".padcharPtype.uint8"".padding@type.int"".tabwidth0type.int"".minwidth type.int"".outputtype.io.WriterwxTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go"".initeH%H;av9tu
    419 $"".initdone<"".initdoneR
    420 "runtime.throwinitb"".initdonen
    421 bytes.initx
    422 io.init"".initdone
    423 0runtime.morestack_noctxtPPP
    424 ((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go$type..hash."".celleH%H;avDH H\$(H$H<$t'H\$0H\$HD$H\$H\$8H %
    426 n
    427 runtime.memhash
    428 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".cell@6?@``
    430 6*Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go type..eq."".celleH%H;avdH H\$(H$H<$tGH\$0H\$H|$t,HD$\$u
    432 D$8H D$8H %%
    433 ~
    434  runtime.memequal
    435 0runtime.morestack_noctxt0@"".~r2 type.bool"".qtype.*"".cell"".ptype.*"".cell@C?@	?@
    437 >BTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go*type..hash.[0]"".celleH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HkHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([
    439 
    440 $type..hash."".cell
    441 0runtime.morestack_noctxt0P
    442 "".autotmp_0151type.int"".autotmp_0150type.int"".~r2 type.uintptr"".htype.uintptr"".p type.*[0]"".cellPOP
    444 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.go&type..eq.[0]"".cellLL$H|$11H9}SLItZHHkHHHtCHHkHHH)H9u(HZHiH9uZi@8uHH9|D$D$A0"".~r2 type.bool"".q type.*[0]"".cell"".p type.*[0]"".cellTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cbnprebuilts/go/darwin-x86/src/text/tabwriter/tabwriter.goTgclocals0b54e40361ced91ab254ee60980e804a((Tgclocals37a2283f5c69c342946cad8073b58fca((Tgclocals7ce0fd9f78d9e1065380319bd4759d6800Tgclocals5d2b5a2aeff4e4cf961f497a12cc05ae00ngo.string.hdr."negative minwidth, tabwidth, or padding"  'fgo.string."negative minwidth, tabwidth, or padding"fgo.string."negative minwidth, tabwidth, or padding"PPnegative minwidth, tabwidth, or paddingTgclocalsd8fdd2a55187867c76648dc792366181  Tgclocalsb2a2bdb912e49b44a944ec16bd6e2d67  	"go.string.hdr."("  go.string."("go.string."("($go.string.hdr.") "  go.string.") "go.string.") ") "go.string.hdr."["  go.string."["go.string."["["go.string.hdr."]"  go.string."]"go.string."]"]$go.string.hdr."\n"  go.string."\n"go.string."\n"
    446 Tgclocals08228173a9937ca0d167807d71bc880e88Tgclocalsea5138d814d46269fcb486a04203da7d88Tgclocals8c067d5052c60a71dd2787c367bb278b  0Tgclocalsaefd16b155593f6f07980a05b297ad1f  Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals1347047f6245a35b91e9a4f213167d52<go.string.hdr."internal error"  4go.string."internal error"4go.string."internal error" internal errorTgclocalsfad3647538fe088c3f63d28bb4a0e2d7  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocalse2096a3f82f7d1bdf42b2b2851eb6d0e  Tgclocals3260b5c802f633fd6252c227878dd72a  Tgclocals1e95b73271997518524fc42f69ee4ca2  Tgclocals3260b5c802f633fd6252c227878dd72a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals709a14768fab2805a378215c02f0d27fTgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfTgclocalscdf9fc2850a33547180758bbe4765e35((Tgclocalscb395d89503762333b1bfb09ba74eb12((Pgo.string.hdr."tabwriter: panic during "  Hgo.string."tabwriter: panic during "Hgo.string."tabwriter: panic during "@2tabwriter: panic during Tgclocals10b07eafac8449ee35c08ccc2f224f09((Tgclocals9c91d8a91ac42440a3d1507bc8d2e808((*go.string.hdr."Flush"  "go.string."Flush""go.string."Flush"FlushTgclocalsd839f252019eeeef48bd96bbb706bc9200Tgclocalsee10a820851092bf95788560bf5ba47400*go.string.hdr."Write"  "go.string."Write""go.string."Write"WriteTgclocals91a69fed5ac493261c3aae937713460bPPTgclocals65f87a26d7437594906aa6685bbe8e8ePPcccccccTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3b0""..gobytes.1								0""..gobytes.2---
    449 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".newline0type.[]uint80""".statictmp_0147,"".tabs0type.[]uint80""..gobytes.1."".vbar0type.[]uint80""".statictmp_0148,"".hbar0type.[]uint80""..gobytes.20""".statictmp_0147type.[1]uint8
    450 0""".statictmp_0148type.[1]uint8|0"".initdonetype.uint8."".(*Writer).addLinef("".(*Writer).addLine*"".(*Writer).resetf$"".(*Writer).reset("".(*Writer).Initf""".(*Writer).Init("".(*Writer).dumpf""".(*Writer).dump,"".(*Writer).write0f&"".(*Writer).write0,"".(*Writer).writeNf&"".(*Writer).writeN8"".(*Writer).writePaddingf2"".(*Writer).writePadding4"".(*Writer).writeLinesf."".(*Writer).writeLines,"".(*Writer).formatf&"".(*Writer).format,"".(*Writer).appendf&"".(*Writer).append6"".(*Writer).updateWidthf0"".(*Writer).updateWidth6"".(*Writer).startEscapef0"".(*Writer).startEscape2"".(*Writer).endEscapef,"".(*Writer).endEscape:"".(*Writer).terminateCellf4"".(*Writer).terminateCell""".handlePanicf"".handlePanic*"".(*Writer).Flushf$"".(*Writer).Flush*"".(*Writer).Writef$"".(*Writer).Write"".NewWriterf"".NewWriter"".initf"".initTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a,type..hashfunc."".cell$type..hash."".cell(type..eqfunc."".cell type..eq."".cell"type..alg."".cell  ,type..hashfunc."".cell(type..eqfunc."".cell"runtime.gcbits.01>go.string.hdr."*tabwriter.cell"  6go.string."*tabwriter.cell"6go.string."*tabwriter.cell"  *tabwriter.celltype.*"".cell|i60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*tabwriter.cell"p,go.weak.type.**"".cell"runtime.zerovaluetype."".cellruntime.gcbits.<go.string.hdr."tabwriter.cell"  4go.string."tabwriter.cell"4go.string."tabwriter.cell" tabwriter.cell(go.string.hdr."size"   go.string."size" go.string."size"
    452 size<go.string.hdr."text/tabwriter"  4go.string."text/tabwriter"4go.string."text/tabwriter" text/tabwriter"go.importpath."".  4go.string."text/tabwriter"*go.string.hdr."width"  "go.string."width""go.string."width"width(go.string.hdr."htab"   go.string."htab" go.string."htab"
    454 htab(go.string.hdr."cell"   go.string."cell" go.string."cell"
    455 celltype."".cellM&0"type..alg."".cell@runtime.gcbits.P<go.string.hdr."tabwriter.cell"ptype.*"".cell"runtime.zerovaluetype."".cell(go.string.hdr."size""go.importpath."".type.int*go.string.hdr."width""go.importpath."".type.int(go.string.hdr."htab""go.importpath."".type.bool`type."".cell(go.string.hdr."cell""go.importpath."".type."".cell@go.string.hdr."[]tabwriter.cell"  8go.string."[]tabwriter.cell"8go.string."[]tabwriter.cell"0"[]tabwriter.celltype.[]"".cellj0 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."[]tabwriter.cell"p.go.weak.type.*[]"".cell"runtime.zerovaluetype."".cellLgo.typelink.[]tabwriter.cell	[]"".celltype.[]"".cellTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a2type..hashfunc.[0]"".cell*type..hash.[0]"".cell.type..eqfunc.[0]"".cell&type..eq.[0]"".cell(type..alg.[0]"".cell  2type..hashfunc.[0]"".cell.type..eqfunc.[0]"".cellBgo.string.hdr."[0]tabwriter.cell"  :go.string."[0]tabwriter.cell":go.string."[0]tabwriter.cell"0$[0]tabwriter.celltype.[0]"".celliB0(type..alg.[0]"".cell@runtime.gcbits.PBgo.string.hdr."[0]tabwriter.cell"p0go.weak.type.*[0]"".cell"runtime.zerovaluetype."".celltype.[]"".cellPgo.typelink.[0]tabwriter.cell	[0]"".celltype.[0]"".cell.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.[]uint80go.string.hdr."[8]uint8"  (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8	[8]uint8type.[8]uint8Dgo.string.hdr."[][]tabwriter.cell"  <go.string."[][]tabwriter.cell"<go.string."[][]tabwriter.cell"0&[][]tabwriter.cell type.[][]"".cell#0 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."[][]tabwriter.cell"p2go.weak.type.*[][]"".cell"runtime.zerovaluetype.[]"".cellTgo.typelink.[][]tabwriter.cell	[][]"".cell type.[][]"".cell*go.string.hdr."[]int"  "go.string."[]int""go.string."[]int"[]inttype.[]intf0 runtime.algarray@"runtime.gcbits.01P*go.string.hdr."[]int"p&go.weak.type.*[]int"runtime.zerovaluetype.int.go.typelink.[]int	[]inttype.[]int.runtime.gcbits.83000024$@go.string.hdr."tabwriter.Writer"  8go.string."tabwriter.Writer"8go.string."tabwriter.Writer"0"tabwriter.Writer,go.string.hdr."output"  $go.string."output"$go.string."output"output0go.string.hdr."minwidth"  (go.string."minwidth"(go.string."minwidth" minwidth0go.string.hdr."tabwidth"  (go.string."tabwidth"(go.string."tabwidth" tabwidth.go.string.hdr."padding"  &go.string."padding"&go.string."padding"padding0go.string.hdr."padbytes"  (go.string."padbytes"(go.string."padbytes" padbytes*go.string.hdr."flags"  "go.string."flags""go.string."flags"flags&go.string.hdr."buf"  go.string."buf"go.string."buf"buf&go.string.hdr."pos"  go.string."pos"go.string."pos"pos.go.string.hdr."endChar"  &go.string."endChar"&go.string."endChar"endChar*go.string.hdr."lines"  "go.string."lines""go.string."lines"lines,go.string.hdr."widths"  $go.string."widths"$go.string."widths"widths,go.string.hdr."Writer"  $go.string."Writer"$go.string."Writer"Writertype."".Writer		( (08\0 runtime.algarray@.runtime.gcbits.83000024P@go.string.hdr."tabwriter.Writer"ptype.*"".Writer"runtime.zerovaluetype."".Writer,go.string.hdr."output""go.importpath."".type.io.Writer0go.string.hdr."minwidth""go.importpath."".type.int0go.string.hdr."tabwidth""go.importpath."".type.int.go.string.hdr."padding""go.importpath."".type.int0go.string.hdr."padbytes""go.importpath."".type.[8]uint8*go.string.hdr."flags""go.importpath."".type.uint&go.string.hdr."buf""go.importpath.""."type.bytes.Buffer&go.string.hdr."pos""go.importpath."".type.int(go.string.hdr."cell""go.importpath."".type."".cell.go.string.hdr."endChar""go.importpath."".type.uint8*go.string.hdr."lines""go.importpath."". type.[][]"".cell,go.string.hdr."widths""go.importpath."".type.[]int`	type."".Writer	,go.string.hdr."Writer"	"go.importpath."".		type."".WriterBgo.string.hdr."*tabwriter.Writer"  :go.string."*tabwriter.Writer":go.string."*tabwriter.Writer"0$*tabwriter.WriterZgo.string.hdr."func(*tabwriter.Writer) error"  Rgo.string."func(*tabwriter.Writer) error"Rgo.string."func(*tabwriter.Writer) error"@<func(*tabwriter.Writer) error6type.func(*"".Writer) error30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*tabwriter.Writer) error"pHgo.weak.type.*func(*"".Writer) error"runtime.zerovalue6type.func(*"".Writer) error6type.func(*"".Writer) errortype.*"".Writertype.errorgo.typelink.func(*tabwriter.Writer) error	func(*"".Writer) error6type.func(*"".Writer) errorgo.string.hdr."func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"  Pgo.string."func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"go.string."func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writertype.func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".WriterFU30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"pgo.weak.type.*func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writer"runtime.zerovaluetype.func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writertype.func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writertype.*"".Writertype.io.Writertype.inttype.inttype.inttype.uint8type.uinttype.*"".Writergo.typelink.func(*tabwriter.Writer, io.Writer, int, int, int, uint8, uint) *tabwriter.Writer	func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writertype.func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writerzgo.string.hdr."func(*tabwriter.Writer, []uint8) (int, error)"  -rgo.string."func(*tabwriter.Writer, []uint8) (int, error)"rgo.string."func(*tabwriter.Writer, []uint8) (int, error)"`\func(*tabwriter.Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)S130 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*tabwriter.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(*tabwriter.Writer, []uint8) (int, error)	func(*"".Writer, []uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)Ngo.string.hdr."func(*tabwriter.Writer)"  Fgo.string."func(*tabwriter.Writer)"Fgo.string."func(*tabwriter.Writer)"00func(*tabwriter.Writer)*type.func(*"".Writer)-]30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*tabwriter.Writer)"p<go.weak.type.*func(*"".Writer)"runtime.zerovalue*type.func(*"".Writer)*type.func(*"".Writer)type.*"".Writerhgo.typelink.func(*tabwriter.Writer)	func(*"".Writer)*type.func(*"".Writer)`go.string.hdr."func(*tabwriter.Writer, []uint8)"   Xgo.string."func(*tabwriter.Writer, []uint8)"Xgo.string."func(*tabwriter.Writer, []uint8)"PBfunc(*tabwriter.Writer, []uint8)<type.func(*"".Writer, []uint8)GyI30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*tabwriter.Writer, []uint8)"pNgo.weak.type.*func(*"".Writer, []uint8)"runtime.zerovalue<type.func(*"".Writer, []uint8)<type.func(*"".Writer, []uint8)type.*"".Writertype.[]uint8go.typelink.func(*tabwriter.Writer, []uint8)	func(*"".Writer, []uint8)<type.func(*"".Writer, []uint8)tgo.string.hdr."func(*tabwriter.Writer, int, int, int) int"  *lgo.string."func(*tabwriter.Writer, int, int, int) int"lgo.string."func(*tabwriter.Writer, int, int, int) int"`Vfunc(*tabwriter.Writer, int, int, int) intPtype.func(*"".Writer, int, int, int) int,30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*tabwriter.Writer, int, int, int) int"pbgo.weak.type.*func(*"".Writer, int, int, int) int"runtime.zerovaluePtype.func(*"".Writer, int, int, int) intPtype.func(*"".Writer, int, int, int) inttype.*"".Writertype.inttype.inttype.inttype.intgo.typelink.func(*tabwriter.Writer, int, int, int) int	func(*"".Writer, int, int, int) intPtype.func(*"".Writer, int, int, int) int\go.string.hdr."func(*tabwriter.Writer, uint8)"  Tgo.string."func(*tabwriter.Writer, uint8)"Tgo.string."func(*tabwriter.Writer, uint8)"@>func(*tabwriter.Writer, uint8)8type.func(*"".Writer, uint8)-U30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*tabwriter.Writer, uint8)"pJgo.weak.type.*func(*"".Writer, uint8)"runtime.zerovalue8type.func(*"".Writer, uint8)8type.func(*"".Writer, uint8)type.*"".Writertype.uint8go.typelink.func(*tabwriter.Writer, uint8)	func(*"".Writer, uint8)8type.func(*"".Writer, uint8)bgo.string.hdr."func(*tabwriter.Writer, bool) int"  !Zgo.string."func(*tabwriter.Writer, bool) int"Zgo.string."func(*tabwriter.Writer, bool) int"PDfunc(*tabwriter.Writer, bool) int>type.func(*"".Writer, bool) intX30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*tabwriter.Writer, bool) int"pPgo.weak.type.*func(*"".Writer, bool) int"runtime.zerovalue>type.func(*"".Writer, bool) int>type.func(*"".Writer, bool) inttype.*"".Writertype.booltype.intgo.typelink.func(*tabwriter.Writer, bool) int	func(*"".Writer, bool) int>type.func(*"".Writer, bool) intjgo.string.hdr."func(*tabwriter.Writer, []uint8, int)"  %bgo.string."func(*tabwriter.Writer, []uint8, int)"bgo.string."func(*tabwriter.Writer, []uint8, int)"PLfunc(*tabwriter.Writer, []uint8, int)Ftype.func(*"".Writer, []uint8, int)T730 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*tabwriter.Writer, []uint8, int)"pXgo.weak.type.*func(*"".Writer, []uint8, int)"runtime.zerovalueFtype.func(*"".Writer, []uint8, int)Ftype.func(*"".Writer, []uint8, int)type.*"".Writertype.[]uint8type.intgo.typelink.func(*tabwriter.Writer, []uint8, int)	func(*"".Writer, []uint8, int)Ftype.func(*"".Writer, []uint8, int)ngo.string.hdr."func(*tabwriter.Writer, int, int, bool)"  'fgo.string."func(*tabwriter.Writer, int, int, bool)"fgo.string."func(*tabwriter.Writer, int, int, bool)"PPfunc(*tabwriter.Writer, int, int, bool)Jtype.func(*"".Writer, int, int, bool)<930 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*tabwriter.Writer, int, int, bool)"p\go.weak.type.*func(*"".Writer, int, int, bool)"runtime.zerovalueJtype.func(*"".Writer, int, int, bool)Jtype.func(*"".Writer, int, int, bool)type.*"".Writertype.inttype.inttype.boolgo.typelink.func(*tabwriter.Writer, int, int, bool)	func(*"".Writer, int, int, bool)Jtype.func(*"".Writer, int, int, bool)8go.string.hdr."func() error"  0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error	func() error"type.func() error(go.string.hdr."Init"   go.string."Init" go.string."Init"
    466 Initgo.string.hdr."func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"  =go.string."func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"go.string."func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"|func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writervtype.func(io.Writer, int, int, int, uint8, uint) *"".Writer}30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writer"pgo.weak.type.*func(io.Writer, int, int, int, uint8, uint) *"".Writer"runtime.zerovaluevtype.func(io.Writer, int, int, int, uint8, uint) *"".Writervtype.func(io.Writer, int, int, int, uint8, uint) *"".Writertype.io.Writertype.inttype.inttype.inttype.uint8type.uinttype.*"".Writergo.typelink.func(io.Writer, int, int, int, uint8, uint) *tabwriter.Writer	func(io.Writer, int, int, int, uint8, uint) *"".Writervtype.func(io.Writer, int, int, int, uint8, uint) *"".WriterTgo.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).go.string.hdr."addLine"  &go.string."addLine"&go.string."addLine"addLine,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."append"  $go.string."append"$go.string."append"append:go.string.hdr."func([]uint8)"  
2go.string."func([]uint8)"2go.string."func([]uint8)" func([]uint8)$type.func([]uint8){30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func([]uint8)"p6go.weak.type.*func([]uint8)"runtime.zerovalue$type.func([]uint8)$type.func([]uint8)type.[]uint8Ngo.typelink.func([]uint8)	func([]uint8)$type.func([]uint8)(go.string.hdr."dump"   go.string."dump" go.string."dump"
    468 dump2go.string.hdr."endEscape"  	*go.string."endEscape"*go.string."endEscape" endEscape,go.string.hdr."format"  $go.string."format"$go.string."format"formatNgo.string.hdr."func(int, int, int) int"  Fgo.string."func(int, int, int) int"Fgo.string."func(int, int, int) int"00func(int, int, int) int8type.func(int, int, int) int'q/30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(int, int, int) int"pJgo.weak.type.*func(int, int, int) int"runtime.zerovalue8type.func(int, int, int) int8type.func(int, int, int) inttype.inttype.inttype.inttype.intvgo.typelink.func(int, int, int) int	func(int, int, int) int8type.func(int, int, int) int*go.string.hdr."reset"  "go.string."reset""go.string."reset"reset6go.string.hdr."startEscape"  .go.string."startEscape".go.string."startEscape" startEscape6go.string.hdr."func(uint8)"  .go.string."func(uint8)".go.string."func(uint8)" func(uint8) type.func(uint8)$q30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func(uint8)"p2go.weak.type.*func(uint8)"runtime.zerovalue type.func(uint8) type.func(uint8)type.uint8Fgo.typelink.func(uint8)	func(uint8) type.func(uint8):go.string.hdr."terminateCell"  
2go.string."terminateCell"2go.string."terminateCell" terminateCell<go.string.hdr."func(bool) int"  4go.string."func(bool) int"4go.string."func(bool) int" func(bool) int&type.func(bool) int/30 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."func(bool) int"p8go.weak.type.*func(bool) int"runtime.zerovalue&type.func(bool) int&type.func(bool) inttype.booltype.intRgo.typelink.func(bool) int	func(bool) int&type.func(bool) int6go.string.hdr."updateWidth"  .go.string."updateWidth".go.string."updateWidth" updateWidth,go.string.hdr."write0"  $go.string."write0"$go.string."write0"write04go.string.hdr."writeLines"  
    474 ,go.string."writeLines",go.string."writeLines" writeLines,go.string.hdr."writeN"  $go.string."writeN"$go.string."writeN"writeNDgo.string.hdr."func([]uint8, int)"  <go.string."func([]uint8, int)"<go.string."func([]uint8, int)"0&func([]uint8, int).type.func([]uint8, int)fmz30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func([]uint8, int)"p@go.weak.type.*func([]uint8, int)"runtime.zerovalue.type.func([]uint8, int).type.func([]uint8, int)type.[]uint8type.intbgo.typelink.func([]uint8, int)	func([]uint8, int).type.func([]uint8, int)8go.string.hdr."writePadding"  0go.string."writePadding"0go.string."writePadding" writePaddingHgo.string.hdr."func(int, int, bool)"  @go.string."func(int, int, bool)"@go.string."func(int, int, bool)"0*func(int, int, bool)2type.func(int, int, bool)eb30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(int, int, bool)"pDgo.weak.type.*func(int, int, bool)"runtime.zerovalue2type.func(int, int, bool)2type.func(int, int, bool)type.inttype.inttype.booljgo.typelink.func(int, int, bool)	func(int, int, bool)2type.func(int, int, bool)type.*"".Writer

P60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*tabwriter.Writer"p0go.weak.type.**"".Writer"runtime.zerovaluetype."".Writer`type.*"".Writertype.*"".Writer*go.string.hdr."Flush""type.func() error6type.func(*"".Writer) error$"".(*Writer).Flush$"".(*Writer).Flush(go.string.hdr."Init"vtype.func(io.Writer, int, int, int, uint8, uint) *"".Writertype.func(*"".Writer, io.Writer, int, int, int, uint8, uint) *"".Writer""".(*Writer).Init""".(*Writer).Init*go.string.hdr."Write">type.func([]uint8) (int, error)Vtype.func(*"".Writer, []uint8) (int, error)$"".(*Writer).Write$"".(*Writer).Write.go.string.hdr."addLine""go.importpath."".type.func()*type.func(*"".Writer)("".(*Writer).addLine("".(*Writer).addLine,go.string.hdr."append""go.importpath."".$type.func([]uint8)<type.func(*"".Writer, []uint8)&"".(*Writer).append&"".(*Writer).append(go.string.hdr."dump""go.importpath."".type.func()*type.func(*"".Writer)""".(*Writer).dump""".(*Writer).dump2go.string.hdr."endEscape""go.importpath."".type.func()*type.func(*"".Writer),"".(*Writer).endEscape,"".(*Writer).endEscape,go.string.hdr."format""go.importpath."".8type.func(int, int, int) intPtype.func(*"".Writer, int, int, int) int&"".(*Writer).format&"".(*Writer).format*go.string.hdr."reset""go.importpath."".type.func()*type.func(*"".Writer)$"".(*Writer).reset$"".(*Writer).reset6go.string.hdr."startEscape""go.importpath."". type.func(uint8)	8type.func(*"".Writer, uint8)	0"".(*Writer).startEscape	0"".(*Writer).startEscape	:go.string.hdr."terminateCell"	"go.importpath."".	&type.func(bool) int	>type.func(*"".Writer, bool) int	4"".(*Writer).terminateCell
    478 4"".(*Writer).terminateCell
    479 6go.string.hdr."updateWidth"
    480 "go.importpath."".
    481 type.func()
    482 *type.func(*"".Writer)
    483 0"".(*Writer).updateWidth
    484 0"".(*Writer).updateWidth
    485 ,go.string.hdr."write0""go.importpath."".$type.func([]uint8)<type.func(*"".Writer, []uint8)&"".(*Writer).write0&"".(*Writer).write04go.string.hdr."writeLines""go.importpath."".8type.func(int, int, int) intPtype.func(*"".Writer, int, int, int) int."".(*Writer).writeLines."".(*Writer).writeLines,go.string.hdr."writeN""go.importpath.""..type.func([]uint8, int)Ftype.func(*"".Writer, []uint8, int)&"".(*Writer).writeN
&"".(*Writer).writeN
8go.string.hdr."writePadding"
"go.importpath."".
2type.func(int, int, bool)
Jtype.func(*"".Writer, int, int, bool)
2"".(*Writer).writePadding
2"".(*Writer).writePaddingDgo.string.hdr."*[0]tabwriter.cell"  <go.string."*[0]tabwriter.cell"<go.string."*[0]tabwriter.cell"0&*[0]tabwriter.cell type.*[0]"".cell+{!60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*[0]tabwriter.cell"p2go.weak.type.**[0]"".cell"runtime.zerovaluetype.[0]"".cellBgo.string.hdr."*[]tabwriter.cell"  :go.string."*[]tabwriter.cell":go.string."*[]tabwriter.cell"0$*[]tabwriter.celltype.*[]"".cell60 runtime.algarray@"runtime.gcbits.01PBgo.string.hdr."*[]tabwriter.cell"p0go.weak.type.**[]"".cell"runtime.zerovaluetype.[]"".cell type..hashfunc32   ,runtime.memhash_varlentype..eqfunc32   .runtime.memequal_varlentype..alg32   type..hashfunc32type..eqfunc322go.string.hdr."[32]uint8"  	*go.string."[32]uint8"*go.string."[32]uint8" [32]uint8type.[32]uint8 Y 0type..alg32@runtime.gcbits.P2go.string.hdr."[32]uint8"p.go.weak.type.*[32]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[32]uint8	[32]uint8type.[32]uint8Dgo.string.hdr."*tabwriter.osError"  <go.string."*tabwriter.osError"<go.string."*tabwriter.osError"0&*tabwriter.osError type.*"".osError 60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*tabwriter.osError"p2go.weak.type.**"".osError"runtime.zerovaluetype."".osError"runtime.gcbits.03Bgo.string.hdr."tabwriter.osError"  :go.string."tabwriter.osError":go.string."tabwriter.osError"0$tabwriter.osError&go.string.hdr."err"  go.string."err"go.string."err"err.go.string.hdr."osError"  &go.string."osError"&go.string."osError"osErrortype."".osErroryRNa0 runtime.algarray@"runtime.gcbits.03PBgo.string.hdr."tabwriter.osError"p type.*"".osError"runtime.zerovaluetype."".osError&go.string.hdr."err""go.importpath."".type.error`type."".osError.go.string.hdr."osError""go.importpath."".type."".osError8go.string.hdr."interface {}"  0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}0go.string.hdr."[1]uint8"  (go.string."[1]uint8"(go.string."[1]uint8" [1]uint8type.[1]uint8160@ runtime.algarray@runtime.gcbits.P0go.string.hdr."[1]uint8"p,go.weak.type.*[1]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[1]uint8	[1]uint8type.[1]uint8.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"*go.string.hdr."bytes"  "go.string."bytes""go.string."bytes"bytes(go.importpath.bytes.  "go.string."bytes"$go.string.hdr."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"*type..hash."".cellf$type..hash."".cell&type..eq."".cellf type..eq."".cell0type..hash.[0]"".cellf*type..hash.[0]"".cell,type..eq.[0]"".cellf&type..eq.[0]"".cell"runtime.zerovaluego13ld