| !<arch> |
| __.PKGDEF 0 0 0 644 10457 ` |
| go object windows amd64 go1.4.2 X:precisestack |
| |
| $$ |
| package log |
| import sync "sync" |
| import runtime "runtime" |
| import time "time" |
| import io "io" |
| import os "os" |
| import fmt "fmt" |
| const @"".Ldate = 0x1 |
| const @"".Ltime = 0x2 |
| const @"".Lmicroseconds = 0x4 |
| const @"".Llongfile = 0x8 |
| const @"".Lshortfile = 0x10 |
| 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:0x0") String () (? string) |
| func (@"time".l·2 *@"time".Location "esc:0x0") @"time".firstZoneUsed () (? bool) |
| func (@"time".l·2 *@"time".Location "esc:0x2") @"time".get () (? *@"time".Location) |
| func (@"time".l·6 *@"time".Location "esc:0x1") @"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:0x0") @"time".lookupFirstZone () (? int) |
| func (@"time".l·4 *@"time".Location "esc:0x0") @"time".lookupName (@"time".name·5 string "esc:0x0", @"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) * 0x9C5FFF26ED75Fp-93 } |
| 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) * 0x9299FF347E9E9p-87 } |
| 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) * 0x112E0BE826D695p-82 } |
| 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:0x2") Add (@"time".d·3 @"time".Duration) (? @"time".Time) |
| func (@"time".t·2 @"time".Time "esc:0x2") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time) |
| func (@"time".t·2 @"time".Time "esc:0x0") After (@"time".u·3 @"time".Time "esc:0x0") (? 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:0x0") Before (@"time".u·3 @"time".Time "esc:0x0") (? 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:0x0") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int) |
| func (@"time".t·4 @"time".Time "esc:0x0") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int) |
| func (@"time".t·2 @"time".Time "esc:0x0") Day () (? int) |
| func (@"time".t·2 @"time".Time "esc:0x0") Equal (@"time".u·3 @"time".Time "esc:0x0") (? 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:0x0") Format (@"time".layout·3 string "esc:0x0") (? string) |
| func (@"time".t·2 *@"time".Time "esc:0x0") GobDecode (@"time".data·3 []byte "esc:0x0") (? error) |
| func (@"time".t·3 @"time".Time "esc:0x0") GobEncode () (? []byte, ? error) |
| func (@"time".t·2 @"time".Time "esc:0x0") Hour () (? int) |
| func (@"time".t·3 @"time".Time "esc:0x0") ISOWeek () (@"time".year·1 int, @"time".week·2 int) |
| func (@"time".t·2 @"time".Time "esc:0x2") In (@"time".loc·3 *@"time".Location "esc:0x2") (? @"time".Time) |
| func (@"time".t·2 @"time".Time "esc:0x0") IsZero () (? bool) { return @"time".t·2.@"time".sec == 0x0 && @"time".t·2.@"time".nsec == 0x0 } |
| func (@"time".t·2 @"time".Time "esc:0x2") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 } |
| func (@"time".t·2 @"time".Time "esc:0x2") 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:0x0") MarshalBinary () (? []byte, ? error) |
| func (@"time".t·3 @"time".Time "esc:0x0") MarshalJSON () (? []byte, ? error) |
| func (@"time".t·3 @"time".Time "esc:0x0") MarshalText () (? []byte, ? error) |
| func (@"time".t·2 @"time".Time "esc:0x0") Minute () (? int) |
| func (@"time".t·2 @"time".Time "esc:0x0") Month () (? @"time".Month) |
| func (@"time".t·2 @"time".Time "esc:0x0") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) } |
| func (@"time".t·2 @"time".Time "esc:0x2") Round (@"time".d·3 @"time".Duration) (? @"time".Time) |
| func (@"time".t·2 @"time".Time "esc:0x0") Second () (? int) |
| func (@"time".t·2 @"time".Time "esc:0x0") String () (? string) |
| func (@"time".t·2 @"time".Time "esc:0x0") Sub (@"time".u·3 @"time".Time "esc:0x0") (? @"time".Duration) |
| func (@"time".t·2 @"time".Time "esc:0x2") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time) |
| func (@"time".t·2 @"time".Time "esc:0x2") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 } |
| func (@"time".t·2 @"time".Time "esc:0x0") Unix () (? int64) { return @"time".t·2.@"time".sec + -0xE7791F700 } |
| func (@"time".t·2 @"time".Time "esc:0x0") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + -0xE7791F700) * 0x3B9ACA00 + int64(@"time".t·2.@"time".nsec) } |
| func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalBinary (@"time".data·3 []byte "esc:0x0") (? error) |
| func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalJSON (@"time".data·3 []byte "esc:0x0") (@"time".err·1 error) |
| func (@"time".t·2 *@"time".Time "esc:0x0") UnmarshalText (@"time".data·3 []byte "esc:0x0") (@"time".err·1 error) |
| func (@"time".t·2 @"time".Time "esc:0x0") Weekday () (? @"time".Weekday) |
| func (@"time".t·2 @"time".Time "esc:0x0") Year () (? int) |
| func (@"time".t·2 @"time".Time "esc:0x0") YearDay () (? int) |
| func (@"time".t·3 @"time".Time "esc:0x0") Zone () (@"time".name·1 string, @"time".offset·2 int) |
| func (@"time".t·2 @"time".Time "esc:0x0") @"time".abs () (? uint64) |
| func (@"time".t·5 @"time".Time "esc:0x0") @"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:0x1") @"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:0x0") |
| func (@"".l·1 *@"".Logger) Fatalf (@"".format·2 string "esc:0x0", @"".v·3 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) Fatalln (@"".v·2 ...interface {} "esc:0x0") |
| func (@"".l·2 *@"".Logger) Flags () (? int) |
| func (@"".l·2 *@"".Logger) Output (@"".calldepth·3 int, @"".s·4 string "esc:0x0") (? error) |
| func (@"".l·1 *@"".Logger) Panic (@"".v·2 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) Panicf (@"".format·2 string "esc:0x0", @"".v·3 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) Panicln (@"".v·2 ...interface {} "esc:0x0") |
| func (@"".l·2 *@"".Logger) Prefix () (? string) |
| func (@"".l·1 *@"".Logger) Print (@"".v·2 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) Printf (@"".format·2 string "esc:0x0", @"".v·3 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) Println (@"".v·2 ...interface {} "esc:0x0") |
| func (@"".l·1 *@"".Logger) SetFlags (@"".flag·2 int) |
| func (@"".l·1 *@"".Logger) SetPrefix (@"".prefix·2 string) |
| func (@"".l·1 *@"".Logger "esc:0x0") @"".formatHeader (@"".buf·2 *[]byte, @"".t·3 @"time".Time "esc:0x0", @"".file·4 string "esc:0x0", @"".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:0x0") |
| func @"".Printf (@"".format·1 string "esc:0x0", @"".v·2 ...interface {} "esc:0x0") |
| func @"".Println (@"".v·1 ...interface {} "esc:0x0") |
| func @"".Fatal (@"".v·1 ...interface {} "esc:0x0") |
| func @"".Fatalf (@"".format·1 string "esc:0x0", @"".v·2 ...interface {} "esc:0x0") |
| func @"".Fatalln (@"".v·1 ...interface {} "esc:0x0") |
| func @"".Panic (@"".v·1 ...interface {} "esc:0x0") |
| func @"".Panicf (@"".format·1 string "esc:0x0", @"".v·2 ...interface {} "esc:0x0") |
| func @"".Panicln (@"".v·1 ...interface {} "esc:0x0") |
| func @"".init () |
| var @"time".months [12]string |
| var @"time".days [7]string |
| var @"time".Local *@"time".Location |
| var @"time".UTC *@"time".Location |
| |
| $$ |
| _go_.6 0 0 0 644 59313 ` |
| go object windows amd64 go1.4.2 X:precisestack |
| |
| ! |
| go13ld |
| fmt.aio.aos.aruntime.async.atime.aþ"".NewÀ®eH%(HH;awèëãHì HH$èHL$HÏHù1ÀèHL$H$H<$tmH$ H\$(H\$H\$0H\$èH\$H$H<$t6H$H\$8H\$H\$@H\$èHD$Hl$HHhHD$PHÄ Ã%ëÁ%ëélÿÿÿ.0runtime.morestack_noctxtHtype."".LoggerZ"runtime.newobjectÜ runtime.duffzeroè2runtime.writebarrierifaceÄ4runtime.writebarrierstring`@ |
| "".autotmp_0000type.*"".Logger"".~r3Ptype.*"".Logger"".flag@type.int"".prefix type.string"".outtype.io.Writer!@?@"àn!¿,GmTgclocals·84a54c4f287e70ed0d2b919f26be35d2Tgclocals·e1ae6533a9e39048ba0735a2264ce16a(c:/go/src/log/log.goþ"".itoa eH%(HHD$ØH;AwèëÞHì¨L$°L$ÀH$¸Hù
IúÿIûíIIKI[H$H$H$ HØH)ËHû}THH$HT$xHT$H$HL$H$HD$HÇD$ èL$°HT$(HL$0HD$8HÎHÿÆH |
| Æ0HT$xH´$H$L$H<$t4H$HT$H´$Ht$H$ HD$èHĨÃ%ëÃAéÿÿÿH|$@1ÀèHÇÆ HùvaHÿÎIÿÊH\$@Hþ H3I¹ÍÌÌÌÌÌÌÌHÈI÷áHÕHÁíHkí |
| IÈI)èLÅHÅ0@+I¹ÍÌÌÌÌÌÌÌHÈI÷áHÑHÁéHùwL$ÀIú~ëH\$@HØHñHþ Hû~HÇà H)óHÞHÇ H)ÊHút HËHÃHØH$IðH$ Iû3I3ICIKHt$xH$H$HÇHD$hL$LÀHL$pH)ÈHø~RHH$Ht$`Ht$H|$HL$HD$ èL$H¼$Ht$(H\$0H\$hH\$8H\$pHt$`H,>H,$H$H\$LD$èH$H¬$HD$pHéHl$`Hl$`HL$hHD$pH$°H$H<$t4H¬$Hl$H$HL$H$ HD$èHĨÃ%ëÃAéÅþÿÿé{þÿÿèè80runtime.morestack_noctxt¢type.[]uint8"runtime.growsliceî2runtime.writebarrierslice¸ð runtime.duffzero |
| type.[]uint8Ì |
| "runtime.growsliceæruntime.memmove¼
2runtime.writebarrierslice$runtime.panicslice$runtime.panicindex0Ð&"".autotmp_0021type.uint64"".autotmp_0020type.uint64"".autotmp_0019type.int"".autotmp_0018type.uintptr"".autotmp_0017type.int"".autotmp_0016type.[]uint8"".autotmp_0015type.[]uint8"".autotmp_0014type.uint64"".autotmp_0012type.[]uint8"".autotmp_0007_type.[]uint8"".autotmp_0006/type.[]uint8"".autotmp_0005type.[]uint8"".autotmp_0003type.int"".autotmp_0002type.int"".autotmp_0001type.[]uint8"".bÏtype.[32]uint8"".wid type.int"".itype.int"".buftype.*[]uint8()ÐÏЦÏÐ&N~9æ |
| >+ÆßMk3Tgclocals·8a25ff9445c966862c64be41b3868e34Tgclocals·ed4776267ec81c62341a010deb18f9ad(c:/go/src/log/log.goþ2"".(*Logger).formatHeader @@eH%(HHD$¸H;AwèëÞHìÈH$ØHûÁH;HCHKH$ÐHûHkHl$pLCH¼$°H$¸H$ÀIÁH$ LD$xLÀH$¨H)ÈHø~XHH$H¼$H|$LL$HL$HD$ èL$¸LD$xH|$(H\$0H$ H\$8H$¨H¼$J,H,$H\$pH\$LD$èH´$¸Hl$xH$¨HîH¬$H¬$H´$ H$¨H$ØH$H<$}H¬$°Hl$H´$¸Ht$H$ÀHD$èH$ÐH´$øH$HXHãHûöHXHãHû©H$àH$$è\$H$ðH\$èHD$H\$ H\$HH\$(H\$XH$ØH$HD$HÇD$èH$ØHû
H3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÏHÿÇHÆ/H´$H¼$ H$¨H$ØH$H<$ÕH´$°Ht$H¼$¸H|$H$ÀHD$èH$ØH$H\$HH\$HÇD$èH$ØHûlH3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÍHÿÅHÆ/H´$H¬$ H$¨H$ØH$H<$¦H´$°Ht$H¬$¸Hl$H$ÀHD$èH$ØH$H\$XH\$HÇD$èH$ØHû=H3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÏHÿÇHÆ H´$H¼$ H$¨H$ØH$H<$w |
| H´$°Ht$H¼$¸H|$H$ÀHD$èH$ÐH´$øH$HXHãHû)H$àH$$è\$H$ðH\$èHD$H\$ H\$PH\$(H\$@H$ØH$HD$HÇD$èH$ØHû§ H3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÏHÿÇHÆ:H´$H¼$ H$¨H$ØH$H<$áH´$°Ht$H¼$¸H|$H$ÀHD$èH$ØH$H\$PH\$HÇD$èH$ØHûxH3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÏHÿÇHÆ:H´$H¼$ H$¨H$ØH$H<$²H´$°Ht$H¼$¸H|$H$ÀHD$èH$ØH$H\$@H\$HÇD$èH¬$ÐH]HãHûfH$ØHû/H3HKHCH´$°H$¸H$ÀHÃH)ËHû}OHH$H´$Ht$H$ HL$H$¨HD$HÇD$ èHt$(HL$0HD$8HÏHÿÇHÆ.H´$H¼$ H$¨H$ØH$H<$iH´$°Ht$H¼$¸H|$H$ÀHD$èH$àH$$èH¬$ðH¬$Hcè$H$ØH$I¹Ï÷Sã¥Ä HèI÷éIÐIÁøHÁý?I)èLD$HÇD$èH$ØHû¶HHKHCH$H$ H$¨HÃH)ËHû}OHH$H$°HT$H$¸HL$H$ÀHD$HÇD$ èHT$(HL$0HD$8HÏHÿÇH |
| Æ H$°H¼$¸H$ÀH$ØH$H<$ðH$HT$H¼$ H|$H$¨HD$èH$ÐH´$øH$HXHãHû8HXHãHûtjH÷HÊHÈHÿÈHø~@H9ÈjH¶û/
DHÿÀHÊH9Á.HñH)ÂHút HÃHËHÙHÏH|$`HþH¼$øHT$hHÑH$ØHûåLHCHSL$H$ H$¨IÁH$¸H$HÈH$ÀH)ÐHø~cHH$L$°LD$LL$HT$HD$ èL$ H´$øH$LD$(H\$0H$¸H\$8H$ÀL$°K,H,$Ht$HL$èH$ H¬$H$ÀH$°HèH$°H$¸H$ÀH$ØH$H<$»H$HT$H$ HD$H$¨HL$èH$ØHûvHHKHCH$H$ H$¨HÃH)ËHû}OHH$H$°HT$H$¸HL$H$ÀHD$HÇD$ èHT$(HL$0HD$8HÎHÿÆH |
| Æ:H$°H´$¸H$ÀH$ØH$H<$°H$HT$H´$ Ht$H$¨HD$èH$ØH$H$H\$HÇD$ÿÿÿÿèH$ØHûDH3HCHKH´$H$ H$¨HÇH$¸HÀH$ÀH)ÈHø~SHH$H´$°Ht$H|$HL$HD$ èH¼$ Ht$(H\$0H$¸H\$8H$ÀH´$°H,>H,$HH\$HÇD$èH¬$ H$ÀH$°HÅH$°H¬$¸H$ÀH$ØH$H<$t4H$HT$H¬$ Hl$H$¨HD$èHÄÈÃ%ëÃéµþÿÿ%éDþÿÿéýÿÿ%é9ýÿÿéüÿÿèHÿÈHøÖûÿÿH9Èûÿÿè%éûÿÿéCúÿÿ%éùÿÿéÊøÿÿ%éBøÿÿé÷ÿÿ%é÷ÿÿéRöÿÿ%é}õÿÿé¼ôÿÿ%éNôÿÿéóÿÿ%éóÿÿé^òÿÿ%éwñÿÿé\ðÿÿé8ðÿÿf80runtime.morestack_noctxtÈtype.[]uint8"runtime.growslice²runtime.memmove¨2runtime.writebarriersliceòtime.Time.Dateâ"".itoaò type.[]uint8ä |
| "runtime.growsliceÒ2runtime.writebarrierslice
"".itoaªtype.[]uint8"runtime.growslice2runtime.writebarriersliceÒ"".itoaâtype.[]uint8Ô"runtime.growsliceÂ2runtime.writebarriersliceètime.Time.ClockØ"".itoaètype.[]uint8Ú"runtime.growsliceÈ2runtime.writebarrierslice"".itoa type.[]uint8"runtime.growslice 2runtime.writebarriersliceÈ "".itoa"type.[]uint8þ""runtime.growsliceì$2runtime.writebarriersliceÈ&"".itoaØ'type.[]uint8Ê("runtime.growslice¸*2runtime.writebarriersliceÂ.type.[]uint8/"runtime.growslice¸0runtime.memmove´22runtime.writebarriersliceÄ3type.[]uint8¶4"runtime.growslice¤62runtime.writebarriersliceò6"".itoaª8type.[]uint8ô8"runtime.growsliceð9go.string.": ":runtime.memmoveü;2runtime.writebarrierslice=$runtime.panicslice¼=$runtime.panicindex¾"".autotmp_0118type.uint64"".autotmp_0117type.uint64"".autotmp_0116type.int"".autotmp_0115type.int"".autotmp_0114type.[]uint8"".autotmp_0113type.[]uint8"".autotmp_0112type.uint64"".autotmp_0111type.uint64"".autotmp_0110type.int"".autotmp_0109type.int"".autotmp_0108type.[]uint8"".autotmp_0107type.[]uint8"".autotmp_0106type.uint64"".autotmp_0105type.uint64"".autotmp_0104type.int"".autotmp_0103type.uintptr"".autotmp_0102type.int"".autotmp_0101type.[]uint8"".autotmp_0100type.[]uint8"".autotmp_0099type.uint64"".autotmp_0098type.uint64"".autotmp_0097type.uint64"".autotmp_0096type.int"".autotmp_0095type.uint64"".autotmp_0094type.uint64"".autotmp_0093type.int"".autotmp_0092type.int"".autotmp_0091type.[]uint8"".autotmp_0090type.[]uint8"".autotmp_0089type.int"".autotmp_0088type.int"".autotmp_0087type.uint64"".autotmp_0086type.uint64"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.[]uint8"".autotmp_0082type.[]uint8"".autotmp_0081type.uint64"".autotmp_0080type.uint64"".autotmp_0079type.int"".autotmp_0078type.int"".autotmp_0077type.[]uint8"".autotmp_0076type.[]uint8"".autotmp_0075type.uint64"".autotmp_0074type.uint64"".autotmp_0073type.int"".autotmp_0072type.int"".autotmp_0071type.[]uint8"".autotmp_0070type.[]uint8"".autotmp_0069type.uint64"".autotmp_0068type.uint64"".autotmp_0067type.int"".autotmp_0066type.int"".autotmp_0065type.[]uint8"".autotmp_0064type.[]uint8"".autotmp_0063type.uint64"".autotmp_0062type.uint64"".autotmp_0061type.int"".autotmp_0060type.int"".autotmp_0059type.[]uint8"".autotmp_0058type.[]uint8"".autotmp_0057type.uint64"".autotmp_0056type.uint64"".autotmp_0055type.int"".autotmp_0054type.int"".autotmp_0053type.[]uint8"".autotmp_0052type.[]uint8"".autotmp_0049type.int"".autotmp_0046_type.[]uint8"".autotmp_0045¯type.string"".autotmp_0044/type.[]uint8"".autotmp_0043type.[]uint8"".autotmp_0042type.[]uint8"".autotmp_0041type.[]uint8"".autotmp_0040type.int"".autotmp_0039type.int"".autotmp_0038type.[]uint8"".autotmp_0037type.[]uint8"".autotmp_0036type.[]uint8"".autotmp_0035type.[]uint8"".autotmp_0034type.[]uint8"".autotmp_0033type.[]uint8"".autotmp_0032type.[]uint8"".autotmp_0031type.[]uint8time.t·2type.time.Time"".shortÏtype.string"".sectype.int"".minïtype.int"".dayßtype.int"".monthÿtype.time.Month"".lineptype.int"".filePtype.string"".t type.time.Time"".buftype.*[]uint8"".ltype.*"".Logger)à Ú¢)Bø$ø$Bø$ø$øn'Üø'Å
'2ÈP{²V~ QsTgclocals·5c3a6b88f198a7ce909626f0b9d1a062Tgclocals·120457a7116778ee7cb692a3ab16c773(c:/go/src/log/log.goþ&"".(*Logger).OutputàÚeH%(HHD$ÀH;AwèëÞHìÀHÇ$èHÇ$ðèH,$T$HL$Hl$x$H$HÇD$HHÇD$PHÇD$@H$ÈH$H<$èH$ÈH$H<$àH
QjèH$ØYYH
À
°HZHãHûH$H<$èH$ÐH$èH\$H\$HH\$H\$PH\$ H\$@¶\$(ûu!HH+Hl$HHkHl$PHÇD$@H$ÈH$H<$èH$ÈHB@HøßHr01ÉH´$Hr0H$HJ8H$ HB@H$HT$H|$HD$0H\$xH\$$\$H$H\$ H\$HH\$(H\$PH\$0H\$@H\$8èH$ÈHû0Hs0HC8HK@H´$H$H$ HÇH$°H¬$àHèH$¸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êH¬$¨H¬$¨H$°H$¸H$ÈH$H<$H$0H¬$Hl$H$HT$H$ HD$èH¼$ÈH$àHø®HÅHÿÍH$ØH9ÅH+¶û |
| HÿvHW0HO8HG@H$H$H$ HÃH)ËHû}WHH$H$¨HT$H$°HL$H$¸HD$HÇD$ èH¼$ÈHT$(HL$0HD$8HÎHÿÆHÓHòHÞHÆ |
| H´$¨H$°H$¸H<$H<$¦H$0H´$Ht$H$HT$H$ HD$èH¼$ÈHÿtcHW HO(Ho0H\$HßHîH¥H¥H¥HL$pH$HT$hHZ ÿÓHT$(HL$0HT$XH$èHL$`H$ðèHÄÀÃë%éNÿÿÿéþÿÿé{ÿÿÿè%éïýÿÿéÉüÿÿ%é`üÿÿè%éóûÿÿ%éqûÿÿèHÄÀÃ%éûÿÿ%éìúÿÿ.80runtime.morestack_noctxttime.Now´$sync.(*Mutex).Lockð.sync.(*Mutex).Unlock·f"runtime.deferprocò(sync.(*Mutex).Unlockruntime.Callerògo.string."???"Þ$sync.(*Mutex).Lock2"".(*Logger).formatHeaderæ type.[]uint8° |
| "runtime.growsliceÜruntime.memmoveâ
2runtime.writebarriersliceætype.[]uint8Ø"runtime.growsliceâ2runtime.writebarriersliceä |
| ´&runtime.deferreturn$runtime.panicindexÒ$runtime.panicslice&runtime.deferreturn`,"".autotmp_0172type.uint64"".autotmp_0171type.uint64"".autotmp_0168type.[]uint8"".autotmp_0167type.[]uint8"".autotmp_0165type.uint64"".autotmp_0164type.int"".autotmp_0163type.uintptr"".autotmp_0162type.int"".autotmp_0161/type.[]uint8"".autotmp_0160type.[]uint8"".autotmp_0158type.[]uint8"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.[]uint8"".errÏtype.error"".lineÿtype.int"".fileïtype.string"".nowtype.time.Time"".~r2@type.error"".s type.string"".calldepthtype.int"".ltype.*"".Logger8)×ÿnÿ°A& 94 $8`ò1A(
:AX_v |
| V¨*E)Tgclocals·72ef428e1472f439cb95f20e056bd68fTgclocals·11f654d730707295676fcf39027c0882(c:/go/src/log/log.goþ&"".(*Logger).PrintfÀ¢eH%(HH;awèëãHìHH\$XH$H\$`H\$H\$hH\$H\$pH\$H\$xH\$ èHL$(HD$0H\$PH$HÇD$HL$8HL$HD$@HD$èHÄHÃ.0runtime.morestack_noctxt¦fmt.Sprintf&"".(*Logger).Output`"".autotmp_0184type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".Logger!o À!k |
| RNTgclocals·0a3395567ab7eee3bb936aced49af517Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ$"".(*Logger).PrintúeH%(HH;awèëãHì@H\$PH$H\$XH\$H\$`H\$èHL$HD$ H\$HH$HÇD$HL$0HL$HD$8HD$èHÄ@Ã.0runtime.morestack_noctxt~fmt.Sprintè&"".(*Logger).Output@"".autotmp_0185type.string"".v&type.[]interface {}"".ltype.*"".Logger![ |
| Ì |
| >BTgclocals·e0dd5664695c71438932a711825a98a4Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ("".(*Logger).PrintlnúeH%(HH;awèëãHì@H\$PH$H\$XH\$H\$`H\$èHL$HD$ H\$HH$HÇD$HL$0HL$HD$8HD$èHÄ@Ã.0runtime.morestack_noctxt~fmt.Sprintlnè&"".(*Logger).Output@"".autotmp_0186type.string"".v&type.[]interface {}"".ltype.*"".Logger![ |
| Ô |
| >BTgclocals·e0dd5664695c71438932a711825a98a4Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ$"".(*Logger).Fatal eH%(HH;awèëãHì@H\$PH$H\$XH\$H\$`H\$èHL$HD$ H\$HH$HÇD$HL$0HL$HD$8HD$èHÇ$èHÄ@à |
| .0runtime.morestack_noctxt~fmt.Sprintè&"".(*Logger).Outputos.Exit@"".autotmp_0187type.string"".v&type.[]interface {}"".ltype.*"".Logger!hÚ!W
|
| >RTgclocals·e0dd5664695c71438932a711825a98a4Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ&"".(*Logger).FatalfÀ¼eH%(HH;awèëãHìHH\$XH$H\$`H\$H\$hH\$H\$pH\$H\$xH\$ èHL$(HD$0H\$PH$HÇD$HL$8HL$HD$@HD$èHÇ$èHÄHà |
| .0runtime.morestack_noctxt¦fmt.Sprintf&"".(*Logger).Outputªos.Exit`"".autotmp_0188type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".Logger!| æ!k
|
| RNTgclocals·0a3395567ab7eee3bb936aced49af517Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ("".(*Logger).Fatalln eH%(HH;awèëãHì@H\$PH$H\$XH\$H\$`H\$èHL$HD$ H\$HH$HÇD$HL$0HL$HD$8HD$èHÇ$èHÄ@à |
| .0runtime.morestack_noctxt~fmt.Sprintlnè&"".(*Logger).Outputos.Exit@"".autotmp_0189type.string"".v&type.[]interface {}"".ltype.*"".Logger!hò!W
|
| >RTgclocals·e0dd5664695c71438932a711825a98a4Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ$"".(*Logger).PaniceH%(HH;awèëãHìPH\$`H$H\$hH\$H\$pH\$èHL$HD$ H\$XH$HÇD$HL$0HL$HD$8HD$èH\$0H\$@H\$8H\$HHH$H\$@H\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt~fmt.Sprintè&"".(*Logger).Outputtype.stringÄruntime.convT2Eôruntime.gopanic@ "".autotmp_0191type.string"".s?type.string"".v&type.[]interface {}"".ltype.*"".Logger! Àþ!,+H>5.Tgclocals·b29a376724b9675f7c9e576a6dabc1e0Tgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ&"".(*Logger).PanicfÀ´eH%(HH;awèëãHìXH\$hH$H\$pH\$H\$xH\$H$H\$H$H\$ èHL$(HD$0H\$`H$HÇD$HL$8HL$HD$@HD$èH\$8H\$HH\$@H\$PHH$H\$HH\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt²fmt.Sprintf&"".(*Logger).OutputÒtype.stringøruntime.convT2E¨runtime.gopanic`° |
| "".autotmp_0193type.string"".s?type.string"".v0&type.[]interface {}"".formattype.string"".ltype.*"".Logger!°¿à!F+NX5.%Tgclocals·e8d3240594e259421cd655d317fed5feTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ("".(*Logger).PaniclneH%(HH;awèëãHìPH\$`H$H\$hH\$H\$pH\$èHL$HD$ H\$XH$HÇD$HL$0HL$HD$8HD$èH\$0H\$@H\$8H\$HHH$H\$@H\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt~fmt.Sprintlnè&"".(*Logger).Outputtype.stringÄruntime.convT2Eôruntime.gopanic@ "".autotmp_0195type.string"".s?type.string"".v&type.[]interface {}"".ltype.*"".Logger! À!,+H>5.Tgclocals·b29a376724b9675f7c9e576a6dabc1e0Tgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ$"".(*Logger).FlagsÀ¶eH%(HH;awèëãHìHÇD$H\$H$H<$tXèH\$H$H<$t:H
QjèYYH
ÀuH\$HkHl$èHÄÃèHÄÃ%ë½%ë.0runtime.morestack_noctxtv$sync.(*Mutex).Lock¤.sync.(*Mutex).Unlock·f´"runtime.deferprocê&runtime.deferreturn&runtime.deferreturn "".~r0type.int"".ltype.*"".Logger*!6 |
| ¨*& |
| :fTgclocals·cf86db206769ec68369d07e260728f65Tgclocals·0115f8d53b75c1696444f08ad03251d9(c:/go/src/log/log.goþ*"".(*Logger).SetFlagsÀ¤eH%(HH;awèëãHìH\$H$H<$tXèH\$H$H<$t:H
QjèYYH
ÀuH\$Hl$HkèHÄÃèHÄÃ%ë½%ë.0runtime.morestack_noctxtd$sync.(*Mutex).Lock.sync.(*Mutex).Unlock·f¢"runtime.deferprocØ&runtime.deferreturnî&runtime.deferreturn "".flagtype.int"".ltype.*"".Logger*!- |
| ¶!& |
| 1oTgclocals·cd30d2bcfdea04ed7c49639580b4bd08Tgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ&"".(*Logger).PrefixîeH%(HH;awèëãHìHÇD$HÇD$ H\$H$H<$tkèH\$H$H<$tMH
QjèYYH
Àu,H\$HûtHkHl$HkHl$ èHÄÃëßèHÄÃ%ëª%ë.0runtime.morestack_noctxt$sync.(*Mutex).Lock¶.sync.(*Mutex).Unlock·fÆ"runtime.deferproc&runtime.deferreturn¸&runtime.deferreturn0"".~r0type.string"".ltype.*"".Logger*!?,ÀÄ3&, |
| C}Tgclocals·521d2fa12a56ba961a59b2852d682dbcTgclocals·0115f8d53b75c1696444f08ad03251d9(c:/go/src/log/log.goþ,"".(*Logger).SetPrefix eH%(HH;awèëãHìH\$ H$H<$èH\$ H$H<$tcH
QjèYYH
ÀuBH\$ H$H<$t)H$H\$(H\$H\$0H\$èèHÄÃ%ëÎèHÄÃ%ë%ésÿÿÿ.0runtime.morestack_noctxtl$sync.(*Mutex).Lock.sync.(*Mutex).Unlock·fª"runtime.deferproc4runtime.writebarrierstring &runtime.deferreturnÈ&runtime.deferreturn00"".prefixtype.string"".ltype.*"".Logger*!01=/0/0#Ð$Ò!&. 5Tgclocals·d3486bc7ce1948dc22d7ad1c0be2887aTgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".SetOutput eH%(HH;awèëãHìHH$H<$
èHH$H<$teH
QjèYYH
ÀuDHH$H<$t)H$ H\$ H\$H\$(H\$èèHÄÃ%ëÎèHÄÃ%ë%éoÿÿÿ.0runtime.morestack_noctxtH"".stdp$sync.(*Mutex).Lock~"".std¢.sync.(*Mutex).Unlock·f²"runtime.deferprocÎ"".std 2runtime.writebarrieriface¬&runtime.deferreturnÔ&runtime.deferreturn 0"".wtype.io.Writer*!05?/0/0Ð$à!(0 7Tgclocals·20671cc48303dfd2b9d73bba3d1850b7Tgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".FlagseH%(HH;awèëãHìHH$èH\$H\$HÄÃ.0runtime.morestack_noctxtH"".stdZ$"".(*Logger).Flags "".~r0type.int! @î! |
| ,Tgclocals·a7a3692b8e27e823add69ec4239ba55fTgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".SetFlagseH%(HH;awèëãHìHH$H\$H\$èHÄÃ.0runtime.morestack_noctxtH"".stdn*"".(*Logger).SetFlags "".flagtype.int! @ø! |
| 6 |
| Tgclocals·5d05a78f811f5c3f62710534cdce0004Tgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".PrefixÀ¸eH%(HH;awèëãHìHÇD$ HÇD$(HH$èHL$HD$HL$ HD$(HÄÃ.0runtime.morestack_noctxtl"".std~&"".(*Logger).Prefix 0"".~r0type.string!0:/`3- |
| >"Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3Tgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".SetPrefix eH%(HH;awèëãHìHH$H\$ H\$H\$(H\$èHÄÃ.0runtime.morestack_noctxtH"".std,"".(*Logger).SetPrefix 0"".prefixtype.string!0(/P!$ |
| @Tgclocals·06cab038d51064a089bda21fa03e00f7Tgclocals·3280bececceccd33cb74587feedb1f9f(c:/go/src/log/log.goþ"".PrintþeH%(HH;awèëãHì@H\$HH$H\$PH\$H\$XH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èHÄ@à |
| .0runtime.morestack_noctxt~fmt.Sprint "".stdì&"".(*Logger).Output0"".autotmp_0198type.string"".v&type.[]interface {}!]!Y |
| >BTgclocals·a08e9001cb8f9d822225de3b8e406515Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".PrintfÀ¦eH%(HH;awèëãHìHH\$PH$H\$XH\$H\$`H\$H\$hH\$H\$pH\$ èHL$(HD$0HH$HÇD$HL$8HL$HD$@HD$èHÄHà |
| .0runtime.morestack_noctxt¦fmt.SprintfÈ"".std&"".(*Logger).OutputP"".autotmp_0199type.string"".v &type.[]interface {}"".formattype.string!q ¨!m |
| RNTgclocals·f271231f400e778e0f59be25f7a26a56Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".PrintlnþeH%(HH;awèëãHì@H\$HH$H\$PH\$H\$XH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èHÄ@à |
| .0runtime.morestack_noctxt~fmt.Sprintln "".stdì&"".(*Logger).Output0"".autotmp_0200type.string"".v&type.[]interface {}!]´!Y |
| >BTgclocals·a08e9001cb8f9d822225de3b8e406515Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".Fatal eH%(HH;awèëãHì@H\$HH$H\$PH\$H\$XH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èHÇ$èHÄ@Ã.0runtime.morestack_noctxt~fmt.Sprint "".stdì&"".(*Logger).Outputos.Exit0"".autotmp_0201type.string"".v&type.[]interface {}!j¾!Y
|
| >RTgclocals·a08e9001cb8f9d822225de3b8e406515Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".FatalfÀÀeH%(HH;awèëãHìHH\$PH$H\$XH\$H\$`H\$H\$hH\$H\$pH\$ èHL$(HD$0HH$HÇD$HL$8HL$HD$@HD$èHÇ$èHÄHÃ.0runtime.morestack_noctxt¦fmt.SprintfÈ"".std&"".(*Logger).Output®os.ExitP"".autotmp_0202type.string"".v &type.[]interface {}"".formattype.string!~ Ê!m
|
| RNTgclocals·f271231f400e778e0f59be25f7a26a56Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".Fatalln eH%(HH;awèëãHì@H\$HH$H\$PH\$H\$XH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èHÇ$èHÄ@Ã.0runtime.morestack_noctxt~fmt.Sprintln "".stdì&"".(*Logger).Outputos.Exit0"".autotmp_0203type.string"".v&type.[]interface {}!jÖ!Y
|
| >RTgclocals·a08e9001cb8f9d822225de3b8e406515Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþ"".Panic eH%(HH;awèëãHìPH\$XH$H\$`H\$H\$hH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èH\$0H\$@H\$8H\$HHH$H\$@H\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt~fmt.Sprint "".stdì&"".(*Logger).Output¢type.stringÈruntime.convT2Eøruntime.gopanic0 "".autotmp_0205type.string"".s?type.string"".v&type.[]interface {}! ¯Ðâ!,-V>7.-Tgclocals·6d340c3bdac448a6ef1256f331f68dd3Tgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ"".PanicfÀ²eH%(HH;awèëãHìXH\$`H$H\$hH\$H\$pH\$H\$xH\$H$H\$ èHL$(HD$0HH$HÇD$HL$8HL$HD$@HD$èH\$8H\$HH\$@H\$PHH$H\$HH\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt¬fmt.SprintfÎ"".std&"".(*Logger).OutputÐtype.stringöruntime.convT2E¦runtime.gopanicP°"".autotmp_0207type.string"".s?type.string"".v &type.[]interface {}"".formattype.string!°¿àð!C-OU7.&Tgclocals·04edceee2a6f0c4170a9cc499facaf54Tgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ"".Panicln eH%(HH;awèëãHìPH\$XH$H\$`H\$H\$hH\$èHL$HD$ HH$HÇD$HL$0HL$HD$8HD$èH\$0H\$@H\$8H\$HHH$H\$@H\$èH\$H,$HïHÞH¥H¥è.0runtime.morestack_noctxt~fmt.Sprintln "".stdì&"".(*Logger).Output¢type.stringÈruntime.convT2Eøruntime.gopanic0 "".autotmp_0209type.string"".s?type.string"".v&type.[]interface {}! ¯Ðþ!,-V>7.-Tgclocals·6d340c3bdac448a6ef1256f331f68dd3Tgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(c:/go/src/log/log.goþ"".init eH%(HH;awèëãHì@¶ût¶ûuHÄ@ÃèÆèèèèèèH1íH9ètbH
HD$0H$HL$8HL$H\$HÇHÇCHÇD$ èHD$(HH$HD$èÆHÄ@ÃHH$HH\$HH\$èHD$élÿÿÿ,.0runtime.morestack_noctxtH"".initdone·`"".initdone·~"runtime.throwinit"".initdone·time.init¤sync.init®runtime.init¸os.initÂio.initÌfmt.initÚ4go.itab.*os.File.io.Writeröos.Stderrà"".Newø"".std.runtime.writebarrierptr "".initdone·ºtype.*os.FileÐtype.io.Writerè4go.itab.*os.File.io.Writerü runtime.typ2Itab"!6jd6>ÒTgclocals·3280bececceccd33cb74587feedb1f9fTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3(c:/go/src/log/log.goþTgclocals·e1ae6533a9e39048ba0735a2264ce16a þTgclocals·84a54c4f287e70ed0d2b919f26be35d2 ++þTgclocals·ed4776267ec81c62341a010deb18f9ad(( þTgclocals·8a25ff9445c966862c64be41b3868e34((þgo.string.": "0&: go.string.": "þTgclocals·120457a7116778ee7cb692a3ab16c77388 þTgclocals·5c3a6b88f198a7ce909626f0b9d1a06288ZJZJZJZJZJþgo.string."???"0(??? go.string."???"þTgclocals·11f654d730707295676fcf39027c0882HHPPPþTgclocals·72ef428e1472f439cb95f20e056bd68fHH&&&&&&&þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·0a3395567ab7eee3bb936aced49af517þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·e0dd5664695c71438932a711825a98a4 |
| þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·e0dd5664695c71438932a711825a98a4 |
| þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·e0dd5664695c71438932a711825a98a4 |
| þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·0a3395567ab7eee3bb936aced49af517þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·e0dd5664695c71438932a711825a98a4 |
| þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·b29a376724b9675f7c9e576a6dabc1e0(( |
| |
| |
| þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·e8d3240594e259421cd655d317fed5fe((þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·b29a376724b9675f7c9e576a6dabc1e0(( |
| |
| |
| þTgclocals·0115f8d53b75c1696444f08ad03251d9þTgclocals·cf86db206769ec68369d07e260728f65 þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·cd30d2bcfdea04ed7c49639580b4bd08þTgclocals·0115f8d53b75c1696444f08ad03251d9þTgclocals·521d2fa12a56ba961a59b2852d682dbc |
| þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·d3486bc7ce1948dc22d7ad1c0be2887a |
| þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·20671cc48303dfd2b9d73bba3d1850b7þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·a7a3692b8e27e823add69ec4239ba55fþTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·5d05a78f811f5c3f62710534cdce0004þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·3280bececceccd33cb74587feedb1f9fþTgclocals·06cab038d51064a089bda21fa03e00f7þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·a08e9001cb8f9d822225de3b8e406515þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·f271231f400e778e0f59be25f7a26a56 |
| "þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·a08e9001cb8f9d822225de3b8e406515þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·a08e9001cb8f9d822225de3b8e406515þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·f271231f400e778e0f59be25f7a26a56 |
| "þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·a08e9001cb8f9d822225de3b8e406515þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·6d340c3bdac448a6ef1256f331f68dd3((þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·04edceee2a6f0c4170a9cc499facaf54(( |
| """þTgclocals·df7d74f3dc4e6aab3075f0f05bb5e23b(( þTgclocals·6d340c3bdac448a6ef1256f331f68dd3((þ,4go.itab.*os.File.io.WriterþTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3þTgclocals·3280bececceccd33cb74587feedb1f9fþ*"".stdtype.*"".Loggerþ,"".initdone·type.uint8þ"".New·f"".Newþ(runtime.newobject·f"runtime.newobjectþ8runtime.writebarrieriface·f2runtime.writebarrierifaceþ:runtime.writebarrierstring·f4runtime.writebarrierstringþ,runtime.throwreturn·f&runtime.throwreturnþ"".itoa·f"".itoaþ(runtime.growslice·f"runtime.growsliceþ8runtime.writebarrierslice·f2runtime.writebarriersliceþ*runtime.panicindex·f$runtime.panicindexþ*runtime.panicslice·f$runtime.panicsliceþ$runtime.memmove·fruntime.memmoveþ8"".(*Logger).formatHeader·f2"".(*Logger).formatHeaderþ"time.Time.Date·ftime.Time.Dateþ$time.Time.Clock·ftime.Time.Clockþ,"".(*Logger).Output·f&"".(*Logger).Outputþtime.Now·ftime.Nowþ*sync.(*Mutex).Lock·f$sync.(*Mutex).Lockþ.sync.(*Mutex).Unlock·f(sync.(*Mutex).Unlockþ(runtime.deferproc·f"runtime.deferprocþ,runtime.deferreturn·f&runtime.deferreturnþ"runtime.Caller·fruntime.Callerþ,"".(*Logger).Printf·f&"".(*Logger).Printfþfmt.Sprintf·ffmt.Sprintfþ*"".(*Logger).Print·f$"".(*Logger).Printþfmt.Sprint·ffmt.Sprintþ."".(*Logger).Println·f("".(*Logger).Printlnþfmt.Sprintln·ffmt.Sprintlnþ*"".(*Logger).Fatal·f$"".(*Logger).Fatalþos.Exit·fos.Exitþ,"".(*Logger).Fatalf·f&"".(*Logger).Fatalfþ."".(*Logger).Fatalln·f("".(*Logger).Fatallnþ*"".(*Logger).Panic·f$"".(*Logger).Panicþ$runtime.convT2E·fruntime.convT2Eþ$runtime.gopanic·fruntime.gopanicþ,"".(*Logger).Panicf·f&"".(*Logger).Panicfþ."".(*Logger).Panicln·f("".(*Logger).Paniclnþ*"".(*Logger).Flags·f$"".(*Logger).Flagsþ0"".(*Logger).SetFlags·f*"".(*Logger).SetFlagsþ,"".(*Logger).Prefix·f&"".(*Logger).Prefixþ2"".(*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þ"".init·f"".initþ(runtime.throwinit·f"runtime.throwinitþtime.init·ftime.initþsync.init·fsync.initþruntime.init·fruntime.initþos.init·fos.initþio.init·fio.initþfmt.init·ffmt.initþ&runtime.typ2Itab·f runtime.typ2Itabþ4runtime.writebarrierptr·f.runtime.writebarrierptrþbruntime.gcbits.0x48844400000000000000000000000000 HDþ&go.string."[]uint8"00[]uint8 &go.string."[]uint8"þtype.[]uint8 ß~.8 runtime.algarray0bruntime.gcbits.0x48844400000000000000000000000000P&go.string."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint8þ6go.typelink.[]uint8/[]uint8type.[]uint8þbruntime.gcbits.0x88000000000000000000000000000000 þ.go.string."*log.Logger"@8*log.Logger .go.string."*log.Logger"þbruntime.gcbits.0xcc000000000000000000000000000000 Ìþ0go.string."interface {}"@:interface {} 0go.string."interface {}"þ"type.interface {}ÀÀçW runtime.algarray0bruntime.gcbits.0xcc000000000000000000000000000000P0go.string."interface {}"p4go.weak.type.*interface {}"runtime.zerovalueÀ"type.interface {}þ4go.string."[]interface {}"@>[]interface {} 4go.string."[]interface {}"þ&type.[]interface {} pê/ runtime.algarray0bruntime.gcbits.0x48844400000000000000000000000000P4go.string."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}þRgo.typelink.[]interface {}/[]interface {}&type.[]interface {}þ\go.string."func(*log.Logger, ...interface {})"pf"func(*log.Logger, ...interface {}) \go.string."func(*log.Logger, ...interface {})"þLtype.func(*"".Logger, ...interface {}) àÅ3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P\go.string."func(*log.Logger, ...interface {})"p^go.weak.type.*func(*"".Logger, ...interface {})"runtime.zerovalue Ltype.func(*"".Logger, ...interface {})Ð Ltype.func(*"".Logger, ...interface {})type.*"".Logger&type.[]interface {}þlgo.string."func(*log.Logger, string, ...interface {})"v*func(*log.Logger, string, ...interface {}) lgo.string."func(*log.Logger, string, ...interface {})"þ\type.func(*"".Logger, string, ...interface {})°°¯zI3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000Plgo.string."func(*log.Logger, string, ...interface {})"pngo.weak.type.*func(*"".Logger, string, ...interface {})"runtime.zerovalue \type.func(*"".Logger, string, ...interface {})а\type.func(*"".Logger, string, ...interface {})type.*"".Loggertype.string &type.[]interface {}þBgo.string."func(*log.Logger) int"PLfunc(*log.Logger) int Bgo.string."func(*log.Logger) int"þ2type.func(*"".Logger) int ÿû<R3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PBgo.string."func(*log.Logger) int"pDgo.weak.type.*func(*"".Logger) int"runtime.zerovalue 2type.func(*"".Logger) intÐ2type.func(*"".Logger) inttype.*"".Loggertype.intþ`go.string."func(*log.Logger, int, string) error"pj$func(*log.Logger, int, string) error `go.string."func(*log.Logger, int, string) error"þPtype.func(*"".Logger, int, string) errorÀÀV ¦3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P`go.string."func(*log.Logger, int, string) error"pbgo.weak.type.*func(*"".Logger, int, string) error"runtime.zerovalue Ptype.func(*"".Logger, int, string) errorаPtype.func(*"".Logger, int, string) errortype.*"".Loggertype.int type.string°type.errorþHgo.string."func(*log.Logger) string"`Rfunc(*log.Logger) string Hgo.string."func(*log.Logger) string"þ8type.func(*"".Logger) string +
3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PHgo.string."func(*log.Logger) string"pJgo.weak.type.*func(*"".Logger) string"runtime.zerovalue 8type.func(*"".Logger) stringÐ8type.func(*"".Logger) stringtype.*"".Loggertype.stringþDgo.string."func(*log.Logger, int)"PNfunc(*log.Logger, int) Dgo.string."func(*log.Logger, int)"þ4type.func(*"".Logger, int) yY£l3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PDgo.string."func(*log.Logger, int)"pFgo.weak.type.*func(*"".Logger, int)"runtime.zerovalue 4type.func(*"".Logger, int)Ð 4type.func(*"".Logger, int)type.*"".Loggertype.intþJgo.string."func(*log.Logger, string)"`Tfunc(*log.Logger, string) Jgo.string."func(*log.Logger, string)"þ:type.func(*"".Logger, string) àPÍY3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PJgo.string."func(*log.Logger, string)"pLgo.weak.type.*func(*"".Logger, string)"runtime.zerovalue :type.func(*"".Logger, string)Ð :type.func(*"".Logger, string)type.*"".Loggertype.stringþ(go.string."*[]uint8"@2*[]uint8 (go.string."*[]uint8"þtype.*[]uint8 ¥Ði6 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P(go.string."*[]uint8"p,go.weak.type.**[]uint8"runtime.zerovaluetype.[]uint8þ~go.string."func(*log.Logger, *[]uint8, time.Time, string, int)"3func(*log.Logger, *[]uint8, time.Time, string, int) ~go.string."func(*log.Logger, *[]uint8, time.Time, string, int)"þntype.func(*"".Logger, *[]uint8, time.Time, string, int)ÐÐ4t¨Í3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P~go.string."func(*log.Logger, *[]uint8, time.Time, string, int)"pgo.weak.type.*func(*"".Logger, *[]uint8, time.Time, string, int)"runtime.zerovalue ntype.func(*"".Logger, *[]uint8, time.Time, string, int)ÐÐntype.func(*"".Logger, *[]uint8, time.Time, string, int)type.*"".Loggertype.*[]uint8 type.time.Time°type.stringÀtype.intþ"go.string."Fatal"0,Fatal "go.string."Fatal"þBgo.string."func(...interface {})"PLfunc(...interface {}) Bgo.string."func(...interface {})"þ4type.func(...interface {})Ë3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PBgo.string."func(...interface {})"pFgo.weak.type.*func(...interface {})"runtime.zerovalue 4type.func(...interface {})Ð4type.func(...interface {})&type.[]interface {}þ$go.string."Fatalf"0.Fatalf $go.string."Fatalf"þRgo.string."func(string, ...interface {})"`\func(string, ...interface {}) Rgo.string."func(string, ...interface {})"þDtype.func(string, ...interface {}) õµ@µ3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PRgo.string."func(string, ...interface {})"pVgo.weak.type.*func(string, ...interface {})"runtime.zerovalue Dtype.func(string, ...interface {})Ð Dtype.func(string, ...interface {})type.string&type.[]interface {}þ&go.string."Fatalln"00Fatalln &go.string."Fatalln"þ"go.string."Flags"0,Flags "go.string."Flags"þ,go.string."func() int"@6 |
| func() int ,go.string."func() int"þtype.func() intå9à3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P,go.string."func() int"p0go.weak.type.*func() int"runtime.zerovalue type.func() intÐtype.func() inttype.intþ$go.string."Output"0.Output $go.string."Output"þFgo.string."func(int, string) error"PPfunc(int, string) error Fgo.string."func(int, string) error"þ8type.func(int, string) error°°æÍ_Ä3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000PFgo.string."func(int, string) error"pJgo.weak.type.*func(int, string) error"runtime.zerovalue 8type.func(int, string) errorÐ 8type.func(int, string) errortype.inttype.string type.errorþ"go.string."Panic"0,Panic "go.string."Panic"þ$go.string."Panicf"0.Panicf $go.string."Panicf"þ&go.string."Panicln"00Panicln &go.string."Panicln"þ$go.string."Prefix"0.Prefix $go.string."Prefix"þ2go.string."func() string"@<
func() string 2go.string."func() string"þ$type.func() string¢mË3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P2go.string."func() string"p6go.weak.type.*func() string"runtime.zerovalue $type.func() stringÐ$type.func() stringtype.stringþ"go.string."Print"0,Print "go.string."Print"þ$go.string."Printf"0.Printf $go.string."Printf"þ&go.string."Println"00Println &go.string."Println"þ(go.string."SetFlags"@2SetFlags (go.string."SetFlags"þ*go.string."func(int)"@4 func(int) *go.string."func(int)"þtype.func(int)æñ3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P*go.string."func(int)"p.go.weak.type.*func(int)"runtime.zerovalue type.func(int)Ðtype.func(int)type.intþ*go.string."SetPrefix"@4 SetPrefix *go.string."SetPrefix"þ0go.string."func(string)"@:func(string) 0go.string."func(string)"þ"type.func(string)ǹ¾3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P0go.string."func(string)"p4go.weak.type.*func(string)"runtime.zerovalue "type.func(string)Ð"type.func(string)type.stringþ0go.string."formatHeader"@:formatHeader 0go.string."formatHeader"þdgo.string."func(*[]uint8, time.Time, string, int)"pn&func(*[]uint8, time.Time, string, int) dgo.string."func(*[]uint8, time.Time, string, int)"þVtype.func(*[]uint8, time.Time, string, int)ÀÀæ¾â3 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000Pdgo.string."func(*[]uint8, time.Time, string, int)"phgo.weak.type.*func(*[]uint8, time.Time, string, int)"runtime.zerovalue Vtype.func(*[]uint8, time.Time, string, int)ÐÀVtype.func(*[]uint8, time.Time, string, int)type.*[]uint8type.time.Time type.string°type.intþtype.*"".Logger
Ð{$6¨ runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P.go.string."*log.Logger"p0go.weak.type.**"".Logger"runtime.zerovaluetype."".Logger` type.*"".LoggerÀðtype.*"".Loggerð"go.string."Fatal"4type.func(...interface {}) Ltype.func(*"".Logger, ...interface {})°$"".(*Logger).FatalÀ$"".(*Logger).FatalÐ$go.string."Fatalf"ðDtype.func(string, ...interface {})\type.func(*"".Logger, string, ...interface {})&"".(*Logger).Fatalf &"".(*Logger).Fatalf°&go.string."Fatalln"Ð4type.func(...interface {})àLtype.func(*"".Logger, ...interface {})ð("".(*Logger).Fatalln("".(*Logger).Fatalln"go.string."Flags"°type.func() intÀ2type.func(*"".Logger) intÐ$"".(*Logger).Flagsà$"".(*Logger).Flagsð$go.string."Output"8type.func(int, string) error Ptype.func(*"".Logger, int, string) error°&"".(*Logger).OutputÀ&"".(*Logger).OutputÐ"go.string."Panic"ð4type.func(...interface {})Ltype.func(*"".Logger, ...interface {})$"".(*Logger).Panic $"".(*Logger).Panic°$go.string."Panicf"ÐDtype.func(string, ...interface {})à\type.func(*"".Logger, string, ...interface {})ð&"".(*Logger).Panicf&"".(*Logger).Panicf&go.string."Panicln"°4type.func(...interface {})ÀLtype.func(*"".Logger, ...interface {})Ð("".(*Logger).Paniclnà("".(*Logger).Paniclnð$go.string."Prefix"$type.func() string 8type.func(*"".Logger) string°&"".(*Logger).PrefixÀ&"".(*Logger).PrefixÐ"go.string."Print"ð4type.func(...interface {}) Ltype.func(*"".Logger, ...interface {}) $"".(*Logger).Print $"".(*Logger).Print° $go.string."Printf"Ð Dtype.func(string, ...interface {})à \type.func(*"".Logger, string, ...interface {})ð &"".(*Logger).Printf |
| &"".(*Logger).Printf |
| &go.string."Println"° |
| 4type.func(...interface {})À |
| Ltype.func(*"".Logger, ...interface {})Ð |
| ("".(*Logger).Printlnà |
| ("".(*Logger).Printlnð |
| (go.string."SetFlags"type.func(int) 4type.func(*"".Logger, int)°*"".(*Logger).SetFlagsÀ*"".(*Logger).SetFlagsÐ*go.string."SetPrefix"ð"type.func(string):type.func(*"".Logger, string),"".(*Logger).SetPrefix ,"".(*Logger).SetPrefix°0go.string."formatHeader"À"go.importpath."".ÐVtype.func(*[]uint8, time.Time, string, int)àntype.func(*"".Logger, *[]uint8, time.Time, string, int)ð2"".(*Logger).formatHeader
2"".(*Logger).formatHeaderþbruntime.gcbits.0x84448c484448c4884400000000000000 DHDHÄDþ,go.string."log.Logger"@6 |
| log.Logger ,go.string."log.Logger"þgo.string."mu"0&mu go.string."mu"þ$go.string."prefix"0.prefix $go.string."prefix"þ go.string."flag"0*flag go.string."flag"þgo.string."out"0(out go.string."out"þgo.string."buf"0(buf go.string."buf"þ$go.string."Logger"0.Logger $go.string."Logger"þtype."".Logger H1G7 02 à runtime.algarray0bruntime.gcbits.0x84448c484448c4884400000000000000P,go.string."log.Logger"ptype.*"".Logger"runtime.zerovalueÀtype."".LoggerÀgo.string."mu"Ð"go.importpath."".àtype.sync.Mutex$go.string."prefix" "go.importpath."".°type.stringà go.string."flag"ð"go.importpath."".type.int°go.string."out"À"go.importpath."".Ðtype.io.Writergo.string."buf""go.importpath."". type.[]uint8`Ðtype."".LoggerÐ$go.string."Logger"à"go.importpath."".ð type."".Loggerþ^runtime.gcbits.0x000000000000000000000000000000 þ*go.string."[32]uint8"@4 [32]uint8 *go.string."[32]uint8"þtype.[32]uint8ÀÀ Yÿ¨ runtime.algarray0^runtime.gcbits.0x000000000000000000000000000000P*go.string."[32]uint8"p.go.weak.type.*[32]uint8"runtime.zerovaluetype.uint8 type.[]uint8þ>go.typelink.[32]uint8/[32]uint8type.[32]uint8þ,go.string."*[32]uint8"@6 |
| *[32]uint8 ,go.string."*[32]uint8"þtype.*[32]uint8 ôÇy6 runtime.algarray0bruntime.gcbits.0x88000000000000000000000000000000P,go.string."*[32]uint8"p0go.weak.type.**[32]uint8"runtime.zerovaluetype.[32]uint8þ go.string."sync"0*sync go.string."sync"þ&go.importpath.sync. go.string."sync"þ&go.string."runtime"00runtime &go.string."runtime"þ,go.importpath.runtime. &go.string."runtime"þ go.string."time"0*time go.string."time"þ&go.importpath.time. go.string."time"þgo.string."io"0&io go.string."io"þ"go.importpath.io. go.string."io"þgo.string."os"0&os go.string."os"þ"go.importpath.os. go.string."os"þgo.string."fmt"0(fmt go.string."fmt"þ$go.importpath.fmt. go.string."fmt"þ"runtime.zerovalueÿÿgo13ld |