! __.PKGDEF 0 0 0 644 11717 ` go object linux amd64 go1.5.1 X:none build id "5354d2c46d08982e80149eaad7d1fb150cdd0fd0" $$ package log import runtime "runtime" import fmt "fmt" import io "io" import sync "sync" import os "os" import time "time" const @"".Ldate = 0x1 const @"".Ltime = 0x2 const @"".Lmicroseconds = 0x4 const @"".Llongfile = 0x8 const @"".Lshortfile = 0x10 const @"".LUTC = 0x20 const @"".LstdFlags = 0x3 type @"sync".Mutex struct { @"sync".state int32; @"sync".sema uint32 } func (@"sync".m·1 *@"sync".Mutex) Lock () func (@"sync".m·1 *@"sync".Mutex) Unlock () type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool } type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool } type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone } func (@"time".l·2 *@"time".Location "esc:0x22") String () (? string) func (@"time".l·2 *@"time".Location "esc:0x1") @"time".firstZoneUsed () (? bool) func (@"time".l·2 *@"time".Location "esc:0x12") @"time".get () (? *@"time".Location) func (@"time".l·6 *@"time".Location "esc:0x32") @"time".lookup (@"time".sec·7 int64) (@"time".name·1 string, @"time".offset·2 int, @"time".isDST·3 bool, @"time".start·4 int64, @"time".end·5 int64) func (@"time".l·2 *@"time".Location "esc:0x1") @"time".lookupFirstZone () (? int) func (@"time".l·4 *@"time".Location "esc:0x1") @"time".lookupName (@"time".name·5 string "esc:0x1", @"time".unix·6 int64) (@"time".offset·1 int, @"time".isDST·2 bool, @"time".ok·3 bool) type @"time".Duration int64 func (@"time".d·2 @"time".Duration) Hours () (? float64) { var @"time".hour·3 @"time".Duration; ; @"time".hour·3 = @"time".d·2 / @"time".Duration(0x34630b8a000); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x34630b8a000); return float64(@"time".hour·3) + float64(@"time".nsec·4) * 8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553 } func (@"time".d·2 @"time".Duration) Minutes () (? float64) { var @"time".min·3 @"time".Duration; ; @"time".min·3 = @"time".d·2 / @"time".Duration(0xdf8475800); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0xdf8475800); return float64(@"time".min·3) + float64(@"time".nsec·4) * 7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547 } func (@"time".d·2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d·2) } func (@"time".d·2 @"time".Duration) Seconds () (? float64) { var @"time".sec·3 @"time".Duration; ; @"time".sec·3 = @"time".d·2 / @"time".Duration(0x3b9aca00); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x3b9aca00); return float64(@"time".sec·3) + float64(@"time".nsec·4) * 7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541 } func (@"time".d·2 @"time".Duration) String () (? string) type @"time".Month int func (@"time".m·2 @"time".Month) String () (? string) { return @"time".months[@"time".m·2 - @"time".Month(0x1)] } type @"time".Weekday int func (@"time".d·2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d·2] } type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location } func (@"time".t·2 @"time".Time "esc:0x12") Add (@"time".d·3 @"time".Duration) (? @"time".Time) { @"time".t·2.@"time".sec += int64(@"time".d·3 / @"time".Duration(0x3b9aca00)); var @"time".nsec·4 int32; ; @"time".nsec·4 = int32(@"time".t·2.@"time".nsec) + int32(@"time".d·3 % @"time".Duration(0x3b9aca00)); if @"time".nsec·4 >= 0x3b9aca00 { @"time".t·2.@"time".sec++; @"time".nsec·4 -= 0x3b9aca00 } else { if @"time".nsec·4 < 0x0 { @"time".t·2.@"time".sec--; @"time".nsec·4 += 0x3b9aca00 } }; @"time".t·2.@"time".nsec = @"time".nsec·4; return @"time".t·2 } func (@"time".t·2 @"time".Time "esc:0x12") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time) func (@"time".t·2 @"time".Time "esc:0x1") After (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec > @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec > @"time".u·3.@"time".nsec } func (@"time".t·2 @"time".Time "esc:0x9") AppendFormat (@"time".b·3 []byte "esc:0x1a", @"time".layout·4 string "esc:0x9") (? []byte) func (@"time".t·2 @"time".Time "esc:0x1") Before (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec < @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec < @"time".u·3.@"time".nsec } func (@"time".t·4 @"time".Time "esc:0x1") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int) func (@"time".t·4 @"time".Time "esc:0x1") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int) func (@"time".t·2 @"time".Time "esc:0x1") Day () (? int) func (@"time".t·2 @"time".Time "esc:0x1") Equal (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec == @"time".u·3.@"time".nsec } func (@"time".t·2 @"time".Time "esc:0x9") Format (@"time".layout·3 string "esc:0x9") (? string) func (@"time".t·2 *@"time".Time "esc:0x1") GobDecode (@"time".data·3 []byte "esc:0x1") (? error) func (@"time".t·3 @"time".Time "esc:0x1") GobEncode () (? []byte, ? error) func (@"time".t·2 @"time".Time "esc:0x1") Hour () (? int) func (@"time".t·3 @"time".Time "esc:0x1") ISOWeek () (@"time".year·1 int, @"time".week·2 int) func (@"time".t·2 @"time".Time "esc:0x12") In (@"time".loc·3 *@"time".Location "esc:0x12") (? @"time".Time) func (@"time".t·2 @"time".Time "esc:0x1") IsZero () (? bool) { return @"time".t·2.@"time".sec == 0x0 && @"time".t·2.@"time".nsec == 0x0 } func (@"time".t·2 @"time".Time "esc:0x12") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 } func (@"time".t·2 @"time".Time "esc:0x12") Location () (? *@"time".Location) { var @"time".l·3 *@"time".Location; ; @"time".l·3 = @"time".t·2.@"time".loc; if @"time".l·3 == nil { @"time".l·3 = @"time".UTC }; return @"time".l·3 } func (@"time".t·3 @"time".Time "esc:0x1") MarshalBinary () (? []byte, ? error) func (@"time".t·3 @"time".Time "esc:0x9") MarshalJSON () (? []byte, ? error) func (@"time".t·3 @"time".Time "esc:0x9") MarshalText () (? []byte, ? error) func (@"time".t·2 @"time".Time "esc:0x1") Minute () (? int) func (@"time".t·2 @"time".Time "esc:0x1") Month () (? @"time".Month) func (@"time".t·2 @"time".Time "esc:0x1") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) } func (@"time".t·2 @"time".Time "esc:0x12") Round (@"time".d·3 @"time".Duration) (? @"time".Time) func (@"time".t·2 @"time".Time "esc:0x1") Second () (? int) func (@"time".t·2 @"time".Time "esc:0x9") String () (? string) func (@"time".t·2 @"time".Time "esc:0x1") Sub (@"time".u·3 @"time".Time "esc:0x1") (? @"time".Duration) func (@"time".t·2 @"time".Time "esc:0x12") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time) func (@"time".t·2 @"time".Time "esc:0x12") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 } func (@"time".t·2 @"time".Time "esc:0x1") Unix () (? int64) { return @"time".t·2.@"time".sec + -0xe7791f700 } func (@"time".t·2 @"time".Time "esc:0x1") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + -0xe7791f700) * 0x3b9aca00 + int64(@"time".t·2.@"time".nsec) } func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalBinary (@"time".data·3 []byte "esc:0x1") (? error) func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalJSON (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error) func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalText (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error) func (@"time".t·2 @"time".Time "esc:0x1") Weekday () (? @"time".Weekday) func (@"time".t·2 @"time".Time "esc:0x1") Year () (? int) func (@"time".t·2 @"time".Time "esc:0x1") YearDay () (? int) func (@"time".t·3 @"time".Time "esc:0x32") Zone () (@"time".name·1 string, @"time".offset·2 int) func (@"time".t·2 @"time".Time "esc:0x1") @"time".abs () (? uint64) func (@"time".t·5 @"time".Time "esc:0x1") @"time".date (@"time".full·6 bool) (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int, @"time".yday·4 int) func (@"time".t·4 @"time".Time "esc:0x32") @"time".locabs () (@"time".name·1 string, @"time".offset·2 int, @"time".abs·3 uint64) type @"".Logger struct { @"".mu @"sync".Mutex; @"".prefix string; @"".flag int; @"".out @"io".Writer; @"".buf []byte } func (@"".l·1 *@"".Logger) Fatal (@"".v·2 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Fatalf (@"".format·2 string "esc:0x9", @"".v·3 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Fatalln (@"".v·2 ...interface {} "esc:0x9") func (@"".l·2 *@"".Logger) Flags () (? int) func (@"".l·2 *@"".Logger) Output (@"".calldepth·3 int, @"".s·4 string "esc:0x9") (? error) func (@"".l·1 *@"".Logger) Panic (@"".v·2 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Panicf (@"".format·2 string "esc:0x9", @"".v·3 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Panicln (@"".v·2 ...interface {} "esc:0x9") func (@"".l·2 *@"".Logger) Prefix () (? string) func (@"".l·1 *@"".Logger) Print (@"".v·2 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Printf (@"".format·2 string "esc:0x9", @"".v·3 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) Println (@"".v·2 ...interface {} "esc:0x9") func (@"".l·1 *@"".Logger) SetFlags (@"".flag·2 int) func (@"".l·1 *@"".Logger) SetOutput (@"".w·2 @"io".Writer) func (@"".l·1 *@"".Logger) SetPrefix (@"".prefix·2 string) func (@"".l·1 *@"".Logger "esc:0x9") @"".formatHeader (@"".buf·2 *[]byte "esc:0x9", @"".t·3 @"time".Time "esc:0x1", @"".file·4 string "esc:0x9", @"".line·5 int) func @"".New (@"".out·2 @"io".Writer, @"".prefix·3 string, @"".flag·4 int) (? *@"".Logger) { return (&@"".Logger{ @"".out:@"".out·2, @"".prefix:@"".prefix·3, @"".flag:@"".flag·4 }) } func @"".SetOutput (@"".w·1 @"io".Writer) func @"".Flags () (? int) func @"".SetFlags (@"".flag·1 int) func @"".Prefix () (? string) func @"".SetPrefix (@"".prefix·1 string) func @"".Print (@"".v·1 ...interface {} "esc:0x9") func @"".Printf (@"".format·1 string "esc:0x9", @"".v·2 ...interface {} "esc:0x9") func @"".Println (@"".v·1 ...interface {} "esc:0x9") func @"".Fatal (@"".v·1 ...interface {} "esc:0x9") func @"".Fatalf (@"".format·1 string "esc:0x9", @"".v·2 ...interface {} "esc:0x9") func @"".Fatalln (@"".v·1 ...interface {} "esc:0x9") func @"".Panic (@"".v·1 ...interface {} "esc:0x9") func @"".Panicf (@"".format·1 string "esc:0x9", @"".v·2 ...interface {} "esc:0x9") func @"".Panicln (@"".v·1 ...interface {} "esc:0x9") func @"".Output (@"".calldepth·2 int, @"".s·3 string "esc:0x9") (? error) func @"".init () var @"time".months [12]string var @"time".days [7]string var @"time".Local *@"time".Location var @"time".UTC *@"time".Location $$ _go_.o 0 0 0 644 61422 ` go object linux amd64 go1.5.1 X:none ! go13ld fmt.aio.aos.aruntime.a sync.a time.a "".NewdH %H;aHHH$HL$HH1HHL$Hl$ Hi Hl$(=uKHi(Hl$8HiHl$0=uHiHl$@HiHL$HHLAL$Hl$HL$LA(L$Hl$HL$렉n+ 4type."".LoggerF "runtime.newobject  runtime.duffzero6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt`0 "".autotmp_0000type.*"".Logger "".~r3Ptype.*"".Logger"".flag@type.int"".prefix type.string "".outtype.io.Writer0z/0Nz"}ATgclocals·777edf0931a692fa9dcefa364b28a750Tgclocals·0c8aa8e80191a30eac23f1a218103f16Jprebuilts/go/linux-x86/src/log/log.go,"".(*Logger).SetOutputdH %H;aHH\$ H$H<$H\$ H\$H|$tg$HHD$u?H\$ Hl$(Hk Hl$0=uHk(HLC(L$Hl$HÉ%됉%m8 X $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc6runtime.writeBarrierEnabled &runtime.deferreturn .runtime.writebarrierptr &runtime.deferreturn 0runtime.morestack_noctxt00"".wtype.io.Writer"".ltype.*"".Logger0r/0/0',/    +Tgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".itoa dH %HD$H;APHH$H$H\$DHHCCHH |XHHIgfffffffHIHHH?H)HH0HHk H)Hl$DHHl5]HHH }H$H~H\$DHH3HH$H0@+HeHH)LD$DIDHtM0IH$L$H$HH3H{HKHt$pH|$xH$HH|$`H$HHL$hH)H~OHH$Ht$XHt$H|$HL$HD$ L$H|$xHt$(H\$0H\$`H\$8H\$hHt$XH,>H,$H$H\$LL$HL$hH\$xH$HH9wH,$H$@H\$HD$H$H$H$HHH9UHH$ HCHKH$=H+H$ HHCHKHHH9jHkH:H$ H$H$PH\$HD$H$ HH3HCHKH$H$H$HH$HH$H)H~SHH$H$Ht$H|$HL$HD$ H$Ht$(H\$0H$H\$8H$H$H,>H,$HH\$HD$H$H$HH9w?HH$ HCHKH$=u H+HH$Hl$ HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uH0H$HT$HT$pHD$hH$Hl$  H HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$`HHkHKHT$p=uHGH$HT$HT$pHD$`*HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uH!H$HT$HT$pHD$hHH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uH+H$HT$HT$pHD$hHH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uHOH$HT$HT$pHD$h2HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uHH$HT$HT$pHD$hHH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uH@H$HT$HT$pHD$h#HH$HT$HD$HL$Hl$ HT$(HD$0HL$8H$ HtFHHD$hHHkHKHT$p=uHdH$HT$HT$pHD$hGH$Hl$ j type.[]uint8 &runtime.growslice_n runtime.memmove6runtime.writeBarrierEnabledtime.UTC  time.Time.Date  "".itoa  "".itoa  "".itoa time.Time.Clock "".itoa "".itoa "".itoa "".itoatype.[]uint8 &runtime.growslice_n runtime.memmove6runtime.writeBarrierEnabled "".itoatype.[]uint8  &runtime.growslice_n!$go.string.hdr.": "! runtime.memmove"6runtime.writeBarrierEnabled# .runtime.writebarrierptr# $runtime.panicslice#type.[]uint8# "runtime.growslice$6runtime.writeBarrierEnabled% .runtime.writebarrierptr% .runtime.writebarrierptr% $runtime.panicslice& $runtime.panicslice& $runtime.panicindex&type.[]uint8& "runtime.growslice'6runtime.writeBarrierEnabled( .runtime.writebarrierptr(type.[]uint8) "runtime.growslice)6runtime.writeBarrierEnabled* .runtime.writebarrierptr*type.[]uint8+ "runtime.growslice,6runtime.writeBarrierEnabled, .runtime.writebarrierptr,type.[]uint8- "runtime.growslice.6runtime.writeBarrierEnabled. .runtime.writebarrierptr/type.[]uint8/ "runtime.growslice06runtime.writeBarrierEnabled0 .runtime.writebarrierptr1type.[]uint81 "runtime.growslice26runtime.writeBarrierEnabled3 .runtime.writebarrierptr3type.[]uint83 "runtime.growslice46runtime.writeBarrierEnabled5 .runtime.writebarrierptr5 .runtime.writebarrierptr5 $runtime.panicslice6 0runtime.morestack_noctxt8"".autotmp_0024type.int"".autotmp_0023type.[]uint8"".autotmp_0022type.[]uint8"".autotmp_0021type.uintptr"".autotmp_0020type.int"".autotmp_0019type.[]uint8"".autotmp_0018type.[]uint8"".autotmp_0017type.int"".autotmp_0016type.int"".autotmp_0013_type.[]uint8"".autotmp_0012type.string"".autotmp_0011/type.[]uint8"".autotmp_0010type.int"".autotmp_0009type.int"".autotmp_0008type.inttime.t·2type.time.Time "".~r0type.time.Timetime.t·2type.time.Time"".shorttype.string "".sectype.int "".mintype.int "".daytype.int"".monthtype.time.Month"".lineptype.int"".filePtype.string"".t type.time.Time "".buftype.*[]uint8"".ltype.*"".Logger" "eB-$-$-B-$-$-n-)2-'   xVV QV !7T7T7T7T7T7T!3Tgclocals·c5ff6eee8c7b7d86056050fed4ecf084Tgclocals·825ce403519f50caeddc88c3f4f6fe97Jprebuilts/go/linux-x86/src/log/log.go&"".(*Logger).OutputdH %HD$H;AH1H$H$H$H$\$$H\$H$1H\$XH\$`HD$@H$H$H<$`H$H\$H|$6$HHD$H$HYHHH $H<$H$H$H\$H\$XH\$H\$`H\$ H\$@\$(uHH\$XHD$`HD$@H$H$H<$SH$Hi@HA8H $HL$H|$HD$0H$H\$$\$H$H\$ H\$XH\$(H\$`H\$0H\$@H\$8H$HHs0H{8HK@H$H$H$HH$H$HH$H)H~SHH$H$Ht$H|$HL$HD$ H$Ht$(H\$0H$H\$8H$H$H$H,>H,$H$H\$HD$H$H$H$H$HH9H_8HW@H$=nHo0HHHH$H9BH+ uzHtpHW Ho(H_0H|$H HHKHOHKHOH$H,$HT$xHZ HT$(HL$0HT$hH$HL$pH$HÉHW0Ho8HO@HHH9wHo8H _HH$HT$HD$HL$Hl$ H$HT$(Hl$0HL$8HtPHHl$HHHo8HO@HT$P=uHW0LG0L$HT$H$HT$PHD$Hc LG0L$Hl$H$H$o G%%%"HÉ%%2 d time.Now $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc (sync.(*Mutex).Unlock runtime.Callergo.string."???" $sync.(*Mutex).Lock 2"".(*Logger).formatHeadertype.[]uint8  &runtime.growslice_n  runtime.memmove 6runtime.writeBarrierEnabled  &runtime.deferreturntype.[]uint8 "runtime.growslice6runtime.writeBarrierEnabled .runtime.writebarrierptr $runtime.panicindex .runtime.writebarrierptr $runtime.panicslice &runtime.deferreturn 0runtime.morestack_noctxt`"".autotmp_0052_type.[]uint8"".autotmp_0051/type.[]uint8"".autotmp_0049type.int "".errtype.error"".linetype.int"".filetype.string "".nowtype.time.Time "".~r2@type.error"".s type.string"".calldepthtype.int"".ltype.*"".Logger(& 1)  B4 $ c-N(""   >1Uhsw V &XV `4Tgclocals·f4ba6659920bbf2698312555075faf8eTgclocals·268c43430d48478c699b7d717aa3543cJprebuilts/go/linux-x86/src/log/log.go&"".(*Logger).PrintfdH %H;avtHHH\$XH$H\$`H\$H\$hH\$H\$pH\$H\$xH\$ HL$(HD$0H\$PH$HD$HL$8HL$HD$@HD$HHs  fmt.Sprintf &"".(*Logger).Output 0runtime.morestack_noctxt`"".autotmp_0059type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".Loggero k  DLTgclocals·c6134a2ac139b68c0737f8b03170e2acTgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go$"".(*Logger).PrintdH %H;av`H@H\$PH$H\$XH\$H\$`H\$HL$HD$ H\$HH$HD$HL$0HL$HD$8HD$H@ b fmt.Sprint &"".(*Logger).Output 0runtime.morestack_noctxt@"".autotmp_0060type.string"".v&type.[]interface {}"".ltype.*"".Logger[  0PTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go("".(*Logger).PrintlndH %H;av`H@H\$PH$H\$XH\$H\$`H\$HL$HD$ H\$HH$HD$HL$0HL$HD$8HD$H@ b fmt.Sprintln &"".(*Logger).Output 0runtime.morestack_noctxt@"".autotmp_0061type.string"".v&type.[]interface {}"".ltype.*"".Logger[  0PTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go$"".(*Logger).FataldH %H;avmH@H\$PH$H\$XH\$H\$`H\$HL$HD$ H\$HH$HD$HL$0HL$HD$8HD$H$H@z b fmt.Sprint &"".(*Logger).Output os.Exit 0runtime.morestack_noctxt@"".autotmp_0062type.string"".v&type.[]interface {}"".ltype.*"".LoggerhW  0`Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go&"".(*Logger).FatalfdH %H;aHHH\$XH$H\$`H\$H\$hH\$H\$pH\$H\$xH\$ HL$(HD$0H\$PH$HD$HL$8HL$HD$@HD$H$HHb  fmt.Sprintf &"".(*Logger).Output os.Exit 0runtime.morestack_noctxt`"".autotmp_0063type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".Logger| k   HXTgclocals·c6134a2ac139b68c0737f8b03170e2acTgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go("".(*Logger).FatallndH %H;avmH@H\$PH$H\$XH\$H\$`H\$HL$HD$ H\$HH$HD$HL$0HL$HD$8HD$H$H@z b fmt.Sprintln &"".(*Logger).Output os.Exit 0runtime.morestack_noctxt@"".autotmp_0064type.string"".v&type.[]interface {}"".ltype.*"".LoggerhW  0`Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go$"".(*Logger).PanicdH %H;aHPH\$`H$H\$hH\$H\$pH\$HL$HD$ H\$XH$HD$HL$0HL$HD$8HD$H\$0H\$@H\$8H\$HHH$H\$@H\$HD$H\$H H $HKHL$ 5 j fmt.Sprint &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxt@"".autotmp_0065type.string"".s?type.string"".v&type.[]interface {}"".ltype.*"".Logger,+S4570Tgclocals·14c16763214c88f6ebc22b4b638329b7Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go&"".(*Logger).PanicfdH %H;aHXH\$hH$H\$pH\$H\$xH\$H$H\$H$H\$ HL$(HD$0H\$`H$HD$HL$8HL$HD$@HD$H\$8H\$HH\$@H\$PHH$H\$HH\$HD$H\$H H $HKHL$   fmt.Sprintf &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxt` "".autotmp_0066type.string"".s?type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".LoggerF+SN576Tgclocals·c850c5a2fb77dc8d291a85b90724aa4cTgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go("".(*Logger).PaniclndH %H;aHPH\$`H$H\$hH\$H\$pH\$HL$HD$ H\$XH$HD$HL$0HL$HD$8HD$H\$0H\$@H\$8H\$HHH$H\$@H\$HD$H\$H H $HKHL$ 5 j fmt.Sprintln &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxt@"".autotmp_0067type.string"".s?type.string"".v&type.[]interface {}"".ltype.*"".Logger,+S4570Tgclocals·14c16763214c88f6ebc22b4b638329b7Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go$"".(*Logger).FlagsdH %H;aHHD$(H\$ H$H<$taH\$ H\$H|$tA$HHD$uH\$ HkHl$(HÐHÉ%붉%\ b $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc &runtime.deferreturn &runtime.deferreturn 0runtime.morestack_noctxt 0 "".~r0type.int"".ltype.*"".Logger0e/0 /0(  /  0Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go*"".(*Logger).SetFlagsdH %H;av~HH\$ H$H<$taH\$ H\$H|$tA$HHD$uH\$ Hl$(HkHÐHÉ%붉%i H $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc &runtime.deferreturn &runtime.deferreturn 0runtime.morestack_noctxt 0"".flagtype.int"".ltype.*"".Logger0\/0 /0%$/   #}Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go&"".(*Logger).PrefixdH %H;aH1H\$(H\$0H\$ H$H<$ttH\$ H\$H|$tT$HHD$u,H\$ HtHkHl$(HkHl$0HÉߐHÉ%룉%F h $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc &runtime.deferreturn &runtime.deferreturn 0runtime.morestack_noctxt00 "".~r0type.string"".ltype.*"".Logger0w/0/0" #/,  3Tgclocals·69076ee43f1cead0792b9f36906b1b56Tgclocals·69c1753bd5f81501d95132d08af04464Jprebuilts/go/linux-x86/src/log/log.go,"".(*Logger).SetPrefixdH %H;aHH\$ H$H<$H\$ H\$H|$tg$HHD$u?H\$ Hl$0HkHl$(=uHkHLCL$Hl$HÉ%됉%m8 X $sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f "runtime.deferproc6runtime.writeBarrierEnabled &runtime.deferreturn .runtime.writebarrierptr &runtime.deferreturn 0runtime.morestack_noctxt00"".prefixtype.string"".ltype.*"".Logger0r/0/0',/    +Tgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".SetOutputdH %H;aHHH$H<$HH\$H|$ti$HHD$uAHHl$ Hk Hl$(=uHk(HLC(L$Hl$HÉ%뎉%i2 4 "".std\ $sync.(*Mutex).Lockj "".std.sync.(*Mutex).Unlock·f "runtime.deferproc "".std6runtime.writeBarrierEnabled &runtime.deferreturn .runtime.writebarrierptr &runtime.deferreturn 0runtime.morestack_noctxt 0"".wtype.io.Writer0x/0/0!,1"    -Tgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".FlagsrdH %H;av#HHH$H\$H\$H , "".std> $"".(*Logger).Flagsf 0runtime.morestack_noctxt  "".~r0type.int  @ "Tgclocals·5184031d3a32a42d85027f073f873668Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".SetFlagsrdH %H;av#HHH$H\$H\$H , "".stdR *"".(*Logger).SetFlagsf 0runtime.morestack_noctxt "".flagtype.int  @ (Tgclocals·5184031d3a32a42d85027f073f873668Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".PrefixdH %H;av9H1H\$ H\$(HH$HL$HD$HL$ HD$(H D "".stdV &"".(*Logger).Prefix 0runtime.morestack_noctxt 0 "".~r0type.string04/0P) *&Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".SetPrefixdH %H;av-HHH$H\$ H\$H\$(H\$H , "".stdf ,"".(*Logger).SetPrefixz 0runtime.morestack_noctxt 0"".prefixtype.string0(/0P$ 2Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".PrintdH %H;avbH@H\$HH$H\$PH\$H\$XH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H@ b fmt.Sprint "".std &"".(*Logger).Output 0runtime.morestack_noctxt0"".autotmp_0070type.string"".v&type.[]interface {}]Y 0PTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".PrintfdH %H;avvHHH\$PH$H\$XH\$H\$`H\$H\$hH\$H\$pH\$ HL$(HD$0HH$HD$HL$8HL$HD$@HD$HHq  fmt.Sprintf "".std &"".(*Logger).Output 0runtime.morestack_noctxtP"".autotmp_0071type.string"".v &type.[]interface {}"".formattype.stringq m  DLTgclocals·1c5a071f4ad97fe89533b360c694a573Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".PrintlndH %H;avbH@H\$HH$H\$PH\$H\$XH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H@ b fmt.Sprintln "".std &"".(*Logger).Output 0runtime.morestack_noctxt0"".autotmp_0072type.string"".v&type.[]interface {}]Y 0PTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".FataldH %H;avoH@H\$HH$H\$PH\$H\$XH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H$H@x b fmt.Sprint "".std &"".(*Logger).Output os.Exit 0runtime.morestack_noctxt0"".autotmp_0073type.string"".v&type.[]interface {}jY  0`Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".FatalfdH %H;aHHH\$PH$H\$XH\$H\$`H\$H\$hH\$H\$pH\$ HL$(HD$0HH$HD$HL$8HL$HD$@HD$H$HH`  fmt.Sprintf "".std &"".(*Logger).Output os.Exit 0runtime.morestack_noctxtP"".autotmp_0074type.string"".v &type.[]interface {}"".formattype.string~ m   HXTgclocals·1c5a071f4ad97fe89533b360c694a573Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".FatallndH %H;avoH@H\$HH$H\$PH\$H\$XH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H$H@x b fmt.Sprintln "".std &"".(*Logger).Output os.Exit 0runtime.morestack_noctxt0"".autotmp_0075type.string"".v&type.[]interface {}jY  0`Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.go"".PanicdH %H;aHPH\$XH$H\$`H\$H\$hH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H\$0H\$@H\$8H\$HHH$H\$@H\$HD$H\$H H $HKHL$ 3 j fmt.Sprint "".std &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxt0"".autotmp_0076type.string"".s?type.string"".v&type.[]interface {},-S 477.Tgclocals·cb395d89503762333b1bfb09ba74eb12Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go"".PanicfdH %H;aHXH\$`H$H\$hH\$H\$pH\$H\$xH\$H$H\$ HL$(HD$0HH$HD$HL$8HL$HD$@HD$H\$8H\$HH\$@H\$PHH$H\$HH\$HD$H\$H H $HKHL$   fmt.Sprintf "".std &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxtP"".autotmp_0077type.string"".s?type.string"".v &type.[]interface {}"".formattype.stringC-SK777Tgclocals·d9148cc1f06c39477c85da624ecef2adTgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go"".PaniclndH %H;aHPH\$XH$H\$`H\$H\$hH\$HL$HD$ HH$HD$HL$0HL$HD$8HD$H\$0H\$@H\$8H\$HHH$H\$@H\$HD$H\$H H $HKHL$ 3 j fmt.Sprintln "".std &"".(*Logger).Outputtype.string runtime.convT2E runtime.gopanic 0runtime.morestack_noctxt0"".autotmp_0078type.string"".s?type.string"".v&type.[]interface {},-S 477.Tgclocals·cb395d89503762333b1bfb09ba74eb12Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2dJprebuilts/go/linux-x86/src/log/log.go"".OutputdH %H;avZH01H\$PH\$XHH$H\$8HH\$H\$@H\$H\$HH\$HL$ HD$(HL$PHD$XH0 D "".std &"".(*Logger).Output 0runtime.morestack_noctxtP` "".~r20type.error"".stype.string"".calldepthtype.int`U_`pJ K%Tgclocals·c569e2e932d4b70e0d347be1814d1538Tgclocals·33cdeccccebe80329f1fdbee7f5874cbJprebuilts/go/linux-x86/src/log/log.go"".initdH %H;aH@tuH@ H1H9tlH HD$0H$HL$8HL$1H\$H\$HD$ H\$(=uHH@H-H,$H\$HH$HH\$HH\$HD$b0 4"".initdone·L"".initdone·j "runtime.throwinitz"".initdone· fmt.init io.init os.init runtime.init sync.init time.init4go.itab.*os.File.io.Writeros.Stderr "".New6runtime.writeBarrierEnabled "".std"".initdone· "".std .runtime.writebarrierptrtype.*os.Filetype.io.Writer4go.itab.*os.File.io.Writer runtime.typ2Itab 0runtime.morestack_noctxt"],`W 2 4Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·23e8278e2b69a3a75fa59b23c49ed6adJprebuilts/go/linux-x86/src/log/log.goTgclocals·0c8aa8e80191a30eac23f1a218103f16 Tgclocals·777edf0931a692fa9dcefa364b28a750 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5c5a9f3dff47a8940bdc317b9324ac2aTgclocals·c30b708e11223513fa60a73102691824(( HITgclocals·cb395d89503762333b1bfb09ba74eb12(($go.string.hdr.": " go.string.": "go.string.": ": Tgclocals·825ce403519f50caeddc88c3f4f6fe97@@@@@Tgclocals·c5ff6eee8c7b7d86056050fed4ecf084@@333333&go.string.hdr."???" go.string."???"go.string."???"???Tgclocals·268c43430d48478c699b7d717aa3543cPP $Tgclocals·f4ba6659920bbf2698312555075faf8ePP55Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·c6134a2ac139b68c0737f8b03170e2ac Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·c6134a2ac139b68c0737f8b03170e2ac Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·14c16763214c88f6ebc22b4b638329b7((Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·c850c5a2fb77dc8d291a85b90724aa4c(( Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·14c16763214c88f6ebc22b4b638329b7((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·69c1753bd5f81501d95132d08af04464Tgclocals·69076ee43f1cead0792b9f36906b1b56 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2a1dd1e1e59d0a384c26951e316cd7e6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5184031d3a32a42d85027f073f873668Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5184031d3a32a42d85027f073f873668Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·1c5a071f4ad97fe89533b360c694a573Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·1c5a071f4ad97fe89533b360c694a573Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·cb395d89503762333b1bfb09ba74eb12((Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·d9148cc1f06c39477c85da624ecef2ad((Tgclocals·0f976e590c2193ea3cbcc4d997cd3f2d((Tgclocals·cb395d89503762333b1bfb09ba74eb12((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·c569e2e932d4b70e0d347be1814d153804go.itab.*os.File.io.WriterTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·33cdeccccebe80329f1fdbee7f5874cb. "".stdtype.*"".Logger0"".initdone·type.uint8"".New·f "".New2"".(*Logger).SetOutput·f,"".(*Logger).SetOutput"".itoa·f"".itoa8"".(*Logger).formatHeader·f2"".(*Logger).formatHeader,"".(*Logger).Output·f&"".(*Logger).Output,"".(*Logger).Printf·f&"".(*Logger).Printf*"".(*Logger).Print·f$"".(*Logger).Print."".(*Logger).Println·f("".(*Logger).Println*"".(*Logger).Fatal·f$"".(*Logger).Fatal,"".(*Logger).Fatalf·f&"".(*Logger).Fatalf."".(*Logger).Fatalln·f("".(*Logger).Fatalln*"".(*Logger).Panic·f$"".(*Logger).Panic,"".(*Logger).Panicf·f&"".(*Logger).Panicf."".(*Logger).Panicln·f("".(*Logger).Panicln*"".(*Logger).Flags·f$"".(*Logger).Flags0"".(*Logger).SetFlags·f*"".(*Logger).SetFlags,"".(*Logger).Prefix·f&"".(*Logger).Prefix2"".(*Logger).SetPrefix·f,"".(*Logger).SetPrefix"".SetOutput·f"".SetOutput"".Flags·f"".Flags"".SetFlags·f"".SetFlags"".Prefix·f"".Prefix"".SetPrefix·f"".SetPrefix"".Print·f"".Print"".Printf·f"".Printf"".Println·f"".Println"".Fatal·f"".Fatal"".Fatalf·f"".Fatalf"".Fatalln·f"".Fatalln"".Panic·f"".Panic"".Panicf·f"".Panicf"".Panicln·f"".Panicln"".Output·f"".Output"".init·f"".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.[]uint86go.string.hdr."*log.Logger" .go.string."*log.Logger".go.string."*log.Logger" *log.Logger"runtime.gcbits.038go.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 {}go.typelink.func(int) func(int)type.func(int)2go.string.hdr."SetOutput" *go.string."SetOutput"*go.string."SetOutput" SetOutput>go.string.hdr."func(io.Writer)" 6go.string."func(io.Writer)"6go.string."func(io.Writer)" func(io.Writer)(type.func(io.Writer)Z[30 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."func(io.Writer)"p:go.weak.type.*func(io.Writer)"runtime.zerovalue(type.func(io.Writer)(type.func(io.Writer)type.io.WriterVgo.typelink.func(io.Writer) func(io.Writer)(type.func(io.Writer)2go.string.hdr."SetPrefix" *go.string."SetPrefix"*go.string."SetPrefix" SetPrefix8go.string.hdr."func(string)" 0go.string."func(string)"0go.string."func(string)" func(string)"type.func(string)ǹ30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func(string)"p4go.weak.type.*func(string)"runtime.zerovalue"type.func(string)"type.func(string)type.stringJgo.typelink.func(string) func(string)"type.func(string)8go.string.hdr."formatHeader" 0go.string."formatHeader"0go.string."formatHeader" formatHeader&go.string.hdr."log" go.string."log"go.string."log"log"go.importpath."". go.string."log"lgo.string.hdr."func(*[]uint8, time.Time, string, int)" &dgo.string."func(*[]uint8, time.Time, string, int)"dgo.string."func(*[]uint8, time.Time, string, int)"PNfunc(*[]uint8, time.Time, string, int)Vtype.func(*[]uint8, time.Time, string, int)30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*[]uint8, time.Time, string, int)"phgo.weak.type.*func(*[]uint8, time.Time, string, int)"runtime.zerovalueVtype.func(*[]uint8, time.Time, string, int)Vtype.func(*[]uint8, time.Time, string, int)type.*[]uint8type.time.Timetype.stringtype.intgo.typelink.func(*[]uint8, time.Time, string, int) func(*[]uint8, time.Time, string, int)Vtype.func(*[]uint8, time.Time, string, int)type.*"".Logger {$60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*log.Logger"p0go.weak.type.**"".Logger"runtime.zerovaluetype."".Logger`type.*"".Loggertype.*"".Logger*go.string.hdr."Fatal"4type.func(...interface {})Ltype.func(*"".Logger, ...interface {})$"".(*Logger).Fatal$"".(*Logger).Fatal,go.string.hdr."Fatalf"Dtype.func(string, ...interface {})\type.func(*"".Logger, string, ...interface {})&"".(*Logger).Fatalf&"".(*Logger).Fatalf.go.string.hdr."Fatalln"4type.func(...interface {})Ltype.func(*"".Logger, ...interface {})("".(*Logger).Fatalln("".(*Logger).Fatalln*go.string.hdr."Flags"type.func() int2type.func(*"".Logger) int$"".(*Logger).Flags$"".(*Logger).Flags,go.string.hdr."Output"8type.func(int, string) errorPtype.func(*"".Logger, int, string) error&"".(*Logger).Output&"".(*Logger).Output*go.string.hdr."Panic"4type.func(...interface {})Ltype.func(*"".Logger, ...interface {})$"".(*Logger).Panic$"".(*Logger).Panic,go.string.hdr."Panicf"Dtype.func(string, ...interface {})\type.func(*"".Logger, string, ...interface {})&"".(*Logger).Panicf&"".(*Logger).Panicf.go.string.hdr."Panicln"4type.func(...interface {})Ltype.func(*"".Logger, ...interface {})("".(*Logger).Panicln("".(*Logger).Panicln,go.string.hdr."Prefix"$type.func() string8type.func(*"".Logger) string&"".(*Logger).Prefix&"".(*Logger).Prefix*go.string.hdr."Print"4type.func(...interface {}) Ltype.func(*"".Logger, ...interface {}) $"".(*Logger).Print $"".(*Logger).Print ,go.string.hdr."Printf" Dtype.func(string, ...interface {}) \type.func(*"".Logger, string, ...interface {}) &"".(*Logger).Printf &"".(*Logger).Printf .go.string.hdr."Println" 4type.func(...interface {}) Ltype.func(*"".Logger, ...interface {}) ("".(*Logger).Println ("".(*Logger).Println 0go.string.hdr."SetFlags" type.func(int) 4type.func(*"".Logger, int) *"".(*Logger).SetFlags *"".(*Logger).SetFlags 2go.string.hdr."SetOutput" (type.func(io.Writer) @type.func(*"".Logger, io.Writer) ,"".(*Logger).SetOutput ,"".(*Logger).SetOutput 2go.string.hdr."SetPrefix" "type.func(string) :type.func(*"".Logger, string) ,"".(*Logger).SetPrefix ,"".(*Logger).SetPrefix 8go.string.hdr."formatHeader" "go.importpath."". Vtype.func(*[]uint8, time.Time, string, int) ntype.func(*"".Logger, *[]uint8, time.Time, string, int) 2"".(*Logger).formatHeader 2"".(*Logger).formatHeader"runtime.gcbits.72r4go.string.hdr."log.Logger" ,go.string."log.Logger",go.string."log.Logger" log.Logger$go.string.hdr."mu" go.string."mu"go.string."mu"mu,go.string.hdr."prefix" $go.string."prefix"$go.string."prefix"prefix(go.string.hdr."flag"  go.string."flag" go.string."flag" flag&go.string.hdr."out" go.string."out"go.string."out"out&go.string.hdr."buf" go.string."buf"go.string."buf"buf,go.string.hdr."Logger" $go.string."Logger"$go.string."Logger"Loggertype."".LoggerH81G7 020 runtime.algarray@"runtime.gcbits.72P4go.string.hdr."log.Logger"ptype.*"".Logger"runtime.zerovaluetype."".Logger$go.string.hdr."mu""go.importpath."".type.sync.Mutex,go.string.hdr."prefix""go.importpath."".type.string(go.string.hdr."flag""go.importpath."".type.int&go.string.hdr."out""go.importpath."".type.io.Writer&go.string.hdr."buf""go.importpath."".type.[]uint8`type."".Logger,go.string.hdr."Logger""go.importpath."".type."".Logger type..hashfunc20 ,runtime.memhash_varlentype..eqfunc20 .runtime.memequal_varlentype..alg20  type..hashfunc20type..eqfunc20runtime.gcbits.2go.string.hdr."[20]uint8" *go.string."[20]uint8"*go.string."[20]uint8" [20]uint8type.[20]uint8~0type..alg20@runtime.gcbits.P2go.string.hdr."[20]uint8"p.go.weak.type.*[20]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[20]uint8 [20]uint8type.[20]uint8.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"(go.string.hdr."sync"  go.string."sync" go.string."sync" sync&go.importpath.sync.  go.string."sync"$go.string.hdr."os" go.string."os"go.string."os"os"go.importpath.os. go.string."os"(go.string.hdr."time"  go.string."time" go.string."time" time&go.importpath.time.  go.string."time""runtime.zerovaluego13ld