blob: 55f3fd30955ca0761b301d382a3b2d814aacf5d7 [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 13791 `
go object windows amd64 go1.4.2 X:precisestack
$$
package pe
import binary "encoding/binary"
import runtime "runtime"
import errors "errors"
import io "io"
import os "os"
import strconv "strconv"
import fmt "fmt"
import dwarf "debug/dwarf"
type @"".FileHeader struct { Machine uint16; NumberOfSections uint16; TimeDateStamp uint32; PointerToSymbolTable uint32; NumberOfSymbols uint32; SizeOfOptionalHeader uint16; Characteristics uint16 }
type @"".SectionHeader struct { Name string; VirtualSize uint32; VirtualAddress uint32; Size uint32; Offset uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
type @"io".ReaderAt interface { ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error) }
type @"io".SectionReader struct { @"io".r @"io".ReaderAt; @"io".base int64; @"io".off int64; @"io".limit int64 }
func (@"io".s·3 *@"io".SectionReader) Read (@"io".p·4 []byte) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader) ReadAt (@"io".p·4 []byte, @"io".off·5 int64) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader "esc:0x0") Seek (@"io".offset·4 int64, @"io".whence·5 int) (? int64, ? error)
func (@"io".s·2 *@"io".SectionReader "esc:0x0") Size () (? int64) { return @"io".s·2.@"io".limit - @"io".s·2.@"io".base }
type @"io".ReadSeeker interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) }
type @"".Section struct { ? @"".SectionHeader; ? @"io".ReaderAt; @"".sr *@"io".SectionReader }
func (@"".s·3 *@"".Section) Data () (? []byte, ? error)
func (@"".s·2 *@"".Section) Open () (? @"io".ReadSeeker)
type @"".Symbol struct { Name string; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8 }
type @"io".Closer interface { Close() (? error) }
type @"debug/dwarf".Tag uint32
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) GoString () (? string)
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) String () (? string)
type @"debug/dwarf".Attr uint32
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) GoString () (? string)
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) String () (? string)
type @"debug/dwarf".format uint32
type @"debug/dwarf".afield struct { @"debug/dwarf".attr @"debug/dwarf".Attr; @"debug/dwarf".fmt @"debug/dwarf".format }
type @"debug/dwarf".abbrev struct { @"debug/dwarf".tag @"debug/dwarf".Tag; @"debug/dwarf".children bool; @"debug/dwarf".field []@"debug/dwarf".afield }
type @"debug/dwarf".abbrevTable map[uint32]@"debug/dwarf".abbrev
type @"encoding/binary".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) }
type @"debug/dwarf".CommonType struct { ByteSize int64; Name string }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x2") Common () (? *@"debug/dwarf".CommonType) { return @"debug/dwarf".c·2 }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x0") Size () (? int64) { return @"debug/dwarf".c·2.ByteSize }
type @"debug/dwarf".Type interface { Common() (? *@"debug/dwarf".CommonType); Size() (? int64); String() (? string) }
type @"debug/dwarf".Offset uint32
type @"debug/dwarf".unit struct { @"debug/dwarf".base @"debug/dwarf".Offset; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".atable @"debug/dwarf".abbrevTable; @"debug/dwarf".asize int; @"debug/dwarf".vers int; @"debug/dwarf".is64 bool }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".addrsize () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".asize }
func (@"debug/dwarf".u·3 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".dwarf64 () (? bool, ? bool) { return @"debug/dwarf".u·3.@"debug/dwarf".is64, true }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x0") @"debug/dwarf".version () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".vers }
type @"debug/dwarf".typeUnit struct { @"debug/dwarf".? @"debug/dwarf".unit; @"debug/dwarf".toff @"debug/dwarf".Offset; @"debug/dwarf".name string; @"debug/dwarf".cache @"debug/dwarf".Type }
type @"debug/dwarf".dataFormat interface { @"debug/dwarf".addrsize() (? int); @"debug/dwarf".dwarf64() (@"debug/dwarf".dwarf64 bool, @"debug/dwarf".isKnown bool); @"debug/dwarf".version() (? int) }
type @"debug/dwarf".Field struct { Attr @"debug/dwarf".Attr; Val interface {} }
type @"debug/dwarf".Entry struct { Offset @"debug/dwarf".Offset; Tag @"debug/dwarf".Tag; Children bool; Field []@"debug/dwarf".Field }
func (@"debug/dwarf".e·2 *@"debug/dwarf".Entry "esc:0x0") Val (@"debug/dwarf".a·3 @"debug/dwarf".Attr) (? interface {})
type @"debug/dwarf".buf struct { @"debug/dwarf".dwarf *@"debug/dwarf".Data; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".format @"debug/dwarf".dataFormat; @"debug/dwarf".name string; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".err error }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".addr () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".bytes (@"debug/dwarf".n·3 int) (? []byte)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".entry (@"debug/dwarf".atab·3 @"debug/dwarf".abbrevTable "esc:0x0", @"debug/dwarf".ubase·4 @"debug/dwarf".Offset) (? *@"debug/dwarf".Entry)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf) @"debug/dwarf".error (@"debug/dwarf".s·2 string) { if @"debug/dwarf".b·1.@"debug/dwarf".err == nil { @"debug/dwarf".b·1.@"debug/dwarf".data = nil; @"debug/dwarf".b·1.@"debug/dwarf".err = (@"debug/dwarf".DecodeError{ Name:@"debug/dwarf".b·1.@"debug/dwarf".name, Offset:@"debug/dwarf".b·1.@"debug/dwarf".off, Err:@"debug/dwarf".s·2 }) } }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".int () (? int64)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf) @"debug/dwarf".skip (@"debug/dwarf".n·2 int)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".string () (? string)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint16 () (? uint16)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint32 () (? uint32)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint64 () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf) @"debug/dwarf".uint8 () (? uint8)
func (@"debug/dwarf".b·3 *@"debug/dwarf".buf) @"debug/dwarf".varint () (@"debug/dwarf".c·1 uint64, @"debug/dwarf".bits·2 uint)
type @"debug/dwarf".typeReader interface { Next() (? *@"debug/dwarf".Entry, ? error); Seek(? @"debug/dwarf".Offset); @"debug/dwarf".clone() (? @"debug/dwarf".typeReader); @"debug/dwarf".offset() (? @"debug/dwarf".Offset) }
type @"debug/dwarf".Reader struct { @"debug/dwarf".b @"debug/dwarf".buf; @"debug/dwarf".d *@"debug/dwarf".Data; @"debug/dwarf".err error; @"debug/dwarf".unit int; @"debug/dwarf".lastChildren bool; @"debug/dwarf".lastSibling @"debug/dwarf".Offset }
func (@"debug/dwarf".r·3 *@"debug/dwarf".Reader) Next () (? *@"debug/dwarf".Entry, ? error)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) Seek (@"debug/dwarf".off·2 @"debug/dwarf".Offset)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) SkipChildren ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader) @"debug/dwarf".clone () (? @"debug/dwarf".typeReader)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader) @"debug/dwarf".maybeNextUnit ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader "esc:0x0") @"debug/dwarf".offset () (? @"debug/dwarf".Offset) { return @"debug/dwarf".r·2.@"debug/dwarf".b.@"debug/dwarf".off }
type @"debug/dwarf".Data struct { @"debug/dwarf".abbrev []byte; @"debug/dwarf".aranges []byte; @"debug/dwarf".frame []byte; @"debug/dwarf".info []byte; @"debug/dwarf".line []byte; @"debug/dwarf".pubnames []byte; @"debug/dwarf".ranges []byte; @"debug/dwarf".str []byte; @"debug/dwarf".abbrevCache map[uint32]@"debug/dwarf".abbrevTable; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".typeCache map[@"debug/dwarf".Offset]@"debug/dwarf".Type; @"debug/dwarf".typeSigs map[uint64]*@"debug/dwarf".typeUnit; @"debug/dwarf".unit []@"debug/dwarf".unit }
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) AddTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) Reader () (? *@"debug/dwarf".Reader)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) Type (@"debug/dwarf".off·4 @"debug/dwarf".Offset) (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseAbbrev (@"debug/dwarf".off·4 uint32) (? @"debug/dwarf".abbrevTable, ? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) @"debug/dwarf".parseTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseUnits () (? []@"debug/dwarf".unit, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".readType (@"debug/dwarf".name·4 string, @"debug/dwarf".r·5 @"debug/dwarf".typeReader, @"debug/dwarf".off·6 @"debug/dwarf".Offset, @"debug/dwarf".typeCache·7 map[@"debug/dwarf".Offset]@"debug/dwarf".Type "esc:0x0") (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".sigToType (@"debug/dwarf".sig·4 uint64) (? @"debug/dwarf".Type, ? error)
type @"".File struct { ? @"".FileHeader; OptionalHeader interface {}; Sections []*@"".Section; Symbols []*@"".Symbol; @"".closer @"io".Closer }
func (@"".f·2 *@"".File) Close () (? error)
func (@"".f·3 *@"".File "esc:0x0") DWARF () (? *@"debug/dwarf".Data, ? error)
func (@"".f·3 *@"".File "esc:0x0") ImportedLibraries () (? []string, ? error) { return nil, nil }
func (@"".f·3 *@"".File "esc:0x0") ImportedSymbols () (? []string, ? error)
func (@"".f·2 *@"".File "esc:0x0") Section (@"".name·3 string "esc:0x0") (? *@"".Section)
type @"".ImportDirectory struct { OriginalFirstThunk uint32; TimeDateStamp uint32; ForwarderChain uint32; Name uint32; FirstThunk uint32; @"".dll string }
type @"".FormatError struct { @"".off int64; @"".msg string; @"".val interface {} }
func (@"".e·2 *@"".FormatError) Error () (? string)
func @"".Open (@"".name·3 string) (? *@"".File, ? error)
func @"".NewFile (@"".r·3 @"io".ReaderAt) (? *@"".File, ? error)
type @"".DataDirectory struct { VirtualAddress uint32; Size uint32 }
type @"".OptionalHeader32 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; BaseOfData uint32; ImageBase uint32; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint32; SizeOfStackCommit uint32; SizeOfHeapReserve uint32; SizeOfHeapCommit uint32; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".OptionalHeader64 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; ImageBase uint64; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint64; SizeOfStackCommit uint64; SizeOfHeapReserve uint64; SizeOfHeapCommit uint64; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".SectionHeader32 struct { Name [8]uint8; VirtualSize uint32; VirtualAddress uint32; SizeOfRawData uint32; PointerToRawData uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
const @"".COFFSymbolSize = 0x12
type @"".COFFSymbol struct { Name [8]uint8; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8; NumberOfAuxSymbols uint8 }
const @"".IMAGE_FILE_MACHINE_UNKNOWN = 0x0
const @"".IMAGE_FILE_MACHINE_AM33 = 0x1D3
const @"".IMAGE_FILE_MACHINE_AMD64 = 0x8664
const @"".IMAGE_FILE_MACHINE_ARM = 0x1C0
const @"".IMAGE_FILE_MACHINE_EBC = 0xEBC
const @"".IMAGE_FILE_MACHINE_I386 = 0x14C
const @"".IMAGE_FILE_MACHINE_IA64 = 0x200
const @"".IMAGE_FILE_MACHINE_M32R = 0x9041
const @"".IMAGE_FILE_MACHINE_MIPS16 = 0x266
const @"".IMAGE_FILE_MACHINE_MIPSFPU = 0x366
const @"".IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466
const @"".IMAGE_FILE_MACHINE_POWERPC = 0x1F0
const @"".IMAGE_FILE_MACHINE_POWERPCFP = 0x1F1
const @"".IMAGE_FILE_MACHINE_R4000 = 0x166
const @"".IMAGE_FILE_MACHINE_SH3 = 0x1A2
const @"".IMAGE_FILE_MACHINE_SH3DSP = 0x1A3
const @"".IMAGE_FILE_MACHINE_SH4 = 0x1A6
const @"".IMAGE_FILE_MACHINE_SH5 = 0x1A8
const @"".IMAGE_FILE_MACHINE_THUMB = 0x1C2
const @"".IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
func @"".init ()
type @"debug/dwarf".DecodeError struct { Name string; Offset @"debug/dwarf".Offset; Err string }
func (@"debug/dwarf".e·2 @"debug/dwarf".DecodeError "esc:0x0") Error () (? string)
$$
�_go_.6 0 0 0 644 142262 `
go object windows amd64 go1.4.2 X:precisestack
!
��go13lddebug/dwarf.a"encoding/binary.aerrors.a
fmt.aio.aos.astrconv.a�þ$"".(*Section).Data��€��êeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹\$pH‰$è����HDŽ$€�������HDŽ$ˆ�������HDŽ$�������HDŽ$˜�������HDŽ$ �������H‹\$xH‰$Hƒ$@è����H‹\$xH‹k@H‰l$@H‰,$Hƒ$ è����H‹\$@H‰$Hƒ$è����H‹D$@H‹X H‹hH)ëH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰T$XH‰L$`H‰D$hH‹\$xH‰$Hƒ$@è����H‹\$xH‹k@H‰,$H‹\$XH‰\$H‹\$`H‰\$H‹\$hH‰\$HÇD$ ����è����H‹D$(H‹|$0H‹t$8H‹L$`H9ÈuV1ÿ1öH‹L$hH9ÁrAH‹T$XH‰”$€���H‰„$ˆ���H‰Œ$���H‰|$HH‰¼$˜���H‰t$PH‰´$ ���è����HƒÄpÃè���� ë¬������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ô�� runtime.raceread���¬�� runtime.raceread���Ò�� runtime.raceread���†��type.[]uint8���¬��"runtime.makeslice���Ž�� runtime.raceread���€��4io.(*SectionReader).ReadAt���Æ��(runtime.racefuncexit���Ú��$runtime.panicslice���`à��"".autotmp_0008��type.int64�io.s·2�_,type.*io.SectionReader� "".err�Otype.error� "".dat�/type.[]uint8� "".~r1�@type.error� "".~r0�type.[]uint8�"".s�� type.*"".Section�!àŠßà�À�&”!  <[
_� �*k@1œ
�Tgclocals·24770bb64c93afcae20133abf3ea5170�Tgclocals·4906dd4f210de81fd5ffb35f58945cd9���4c:/go/src/debug/pe/file.goþ$"".(*Section).Open��€��èeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹\$`H‰$è����HÇD$p����HÇD$x����H‹����H‰D$81íH9è„e��H‹\$hH‰$Hƒ$@è����H‹\$hH‹k@H‹D$8H‰D$PH‰D$@H‰l$XH‰l$HHÇD$ ����H»ÿÿÿÿÿÿÿH‰\$(H����H‰$è����H‹D$H‰D$0H‰$è����H‹\$0H‰$Hƒ<$�„Õ���H‹\$@H‰\$H‹\$HH‰\$è����H‹\$0H‰$Hƒ$è����H‹D$0H‹l$ H‰hH‰$Hƒ$è����H‹D$0H‹l$ H‰hH‰$Hƒ$ è����H‹D$0H‹l$ L‹D$(LÅH‰h H‰D$0H‹����1íH9ètH‹\$0H‰\$xH‰D$pè����HƒÄ`ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$븉%����éÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰\$8édþÿÿ,������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��Jgo.itab.*io.SectionReader.io.ReaderAt���Î�� runtime.raceread���Ð��*type.io.SectionReader���â��"runtime.newobject���ˆ��"runtime.racewrite���â��2runtime.writebarrieriface���ˆ��"runtime.racewrite���À��"runtime.racewrite���ø��"runtime.racewrite���¼��Ngo.itab.*io.SectionReader.io.ReadSeeker���ò��(runtime.racefuncexit���Š��,type.*io.SectionReader��� ��$type.io.ReadSeeker���¸��Ngo.itab.*io.SectionReader.io.ReadSeeker���Ì�� runtime.typ2Itab���€��,type.*io.SectionReader���–�� type.io.ReaderAt���®��Jgo.itab.*io.SectionReader.io.ReaderAt���Â�� runtime.typ2Itab���0À��"".autotmp_0019��type.*uint8�"".autotmp_0018�_,type.*io.SectionReader�"".autotmp_0017��,type.*io.SectionReader�"".autotmp_0016�Otype.*uint8�"".autotmp_0015� type.io.ReaderAt�"".autotmp_0014��,type.*io.SectionReader�io.n·4�otype.int64�io.off·3�type.int64�io.r·2�? type.io.ReaderAt� "".~r0�$type.io.ReadSeeker�"".s�� type.*"".Section�!Àà¿À~�€�
¨€�(�*<J-ˆ-; �Tgclocals·f649fcb844bc33ac28e2f953fda53555�Tgclocals·9fa9a70684bf846a37fff808ced129a3���4c:/go/src/debug/pe/file.goþ."".(*FormatError).Error�� ��’eH‹ %(���H‹‰����HD$àH;Awè����ëÞHì ���H‹œ$ ���H‰$è����HDŽ$°�������HDŽ$¸�������H‹œ$¨���H‰$Hƒ$è����H‹„$¨���Hƒø�„��H‹hH‰l$8H‹hH‰l$@H‰$Hƒ$è����H‹L$8H‹D$@H‹œ$¨���Hƒ{�„,��H‰L$xH‰„$€���H\$hHÇ����HÇC����H\$hHƒû�„”��HÇÂ���HÇÁ���H‰”$���H‰Œ$˜���H‰œ$ˆ���H‰$è����H‹œ$¨���H‰$Hƒ$è����H‹œ$ˆ���H‰$H‹¼$¨���Hƒÿ�„*��HoH|$H‰îH¥H¥è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‹œ$˜���H‰\$ è����H‹L$(H‹D$0H‹\$xH‰$H‹œ$€���H‰\$H‰L$XH‰L$H‰D$`H‰D$è����H‹L$ H‹D$(H‰L$8H‰L$xH‰D$@H‰„$€���H\$hHÇ����HÇC����H\$hHƒû�„P��HÇÁ���HÇÂ���H‰œ$ˆ���H‰Œ$���H‰”$˜���H����H‰$H‹œ$¨���H‰\$Hƒ|$�„ú���è����H‹\$H‰\$HH‹\$H‰\$PH‹œ$ˆ���H‰$è����H‹œ$ˆ���H‰$H‹\$HH‰\$H‹\$PH‰\$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‹œ$˜���H‰\$ è����H‹L$(H‹D$0H‹\$xH‰$H‹œ$€���H‰\$H‰L$XH‰L$H‰D$`H‰D$è����H‹L$ H‹D$(H‰L$8H‰Œ$°���H‰D$@H‰„$¸���è����HÄ ���É%����éúþÿÿ‰é©þÿÿ‰éÏýÿÿ‰éeýÿÿ‰�éñüÿÿ&������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���È�� runtime.raceread���¬�� runtime.raceread���¤��"runtime.racewrite���Ð�� runtime.raceread���¶��2runtime.writebarrieriface���Ä��"go.string." '%v'"���¸��fmt.Sprintf���ª��*runtime.concatstring2���Œ ��type.int64���Ð ��runtime.convT2E���š
��"runtime.racewrite���ä
��2runtime.writebarrieriface���ò
��Dgo.string." in record at byte %#x"���æ ��fmt.Sprintf���Ø ��*runtime.concatstring2���ª ��(runtime.racefuncexit���0À��"".autotmp_0032�¯"type.interface {}�"".autotmp_0031��*type.*[1]interface {}�"".autotmp_0030��&type.[]interface {}�"".autotmp_0028�/&type.[]interface {}�"".autotmp_0027��type.string�"".autotmp_0026��(type.[1]interface {}�"".autotmp_0025��type.string�"".autotmp_0024�type.string�"".autotmp_0023�o(type.[1]interface {}�"".autotmp_0022�Otype.string� "".msg�Ïtype.string� "".~r0�type.string�"".e��(type.*"".FormatError�)À·¿À/��4¸)  :+¬×'�6�5`|Š9“%%A9)<�Tgclocals·829d3494b827d5afc92bc9be3463e137�Tgclocals·501e35067a14be53462462d4e30905dd���4c:/go/src/debug/pe/file.goþ"".Open��  ��š eH‹ %(���H‹‰����H;awè����ëãHƒìxH‹\$xH‰$è����HDŽ$˜�������HDŽ$ �������H‹œ$€���H‰$H‹œ$ˆ���H‰\$è����H‹T$H‹D$H‹L$ H‰L$PHƒø�H‰D$Ht&HDŽ$�������H‰„$˜���H‰Œ$ ���è����HƒÄxÃH‰T$0H‰T$@H‹����1íH9è„U��H‹L$@H‰D$hH‰$H‰L$pH‰L$è����H‹L$0H‹\$H‰\$(H‹D$H‹\$ H‰\$PHƒø�H‰D$Ht9H‰ $è����HDŽ$�������H‹\$HH‰œ$˜���H‹\$PH‰œ$ ���è����HƒÄxÃH‰L$@H‹����H‰D$81íH9脃���H‹\$(H‰$Hƒ$Xè����H‹\$(H‰$Hƒ<$�tWHƒ$XH‹L$@H‹D$8H‰D$XH‰D$H‰L$`H‰L$è����H‹\$(H‰œ$���HDŽ$˜�������HDŽ$ �������è����HƒÄxÉ%����ë H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰\$8éFÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$éyþÿÿ*������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Â��os.Open���Â��(runtime.racefuncexit���î��8go.itab.*os.File.io.ReaderAt���¾��"".NewFile���¢�� os.(*File).Close���ø��(runtime.racefuncexit���š��4go.itab.*os.File.io.Closer���à��"runtime.racewrite���Ð��2runtime.writebarrieriface���¤��(runtime.racefuncexit���Î��type.*os.File���ä��type.io.Closer���ü��4go.itab.*os.File.io.Closer����� runtime.typ2Itab���¼��type.*os.File���Ò�� type.io.ReaderAt���ê��8go.itab.*os.File.io.ReaderAt���þ�� runtime.typ2Itab���Pð��"".autotmp_0042��type.*uint8�"".autotmp_0041�type.*uint8�"".autotmp_0040��type.*os.File�"".autotmp_0039�otype.*os.File�
"".ff�Ÿtype.*"".File� "".err�_type.error�"".f�type.*os.File� "".~r2�0type.error� "".~r1� type.*"".File�"".name��type.string�6!ðˆïðšïð•ïðu�Ð�LÌ!2 W  &g/@ 5�.�*v>2+4
8* 67�Tgclocals·2391ae81d7bb206c103a4e3f02f0e74d�Tgclocals·0cb920cc0946ca877b0e0af2a773d794���4c:/go/src/debug/pe/file.goþ "".(*File).Close��À��´eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$H����HÇD$P����HÇD$����HÇD$ ����H‹\$@H‰$Hƒ$Xè����H‹D$@HƒxX�tH‰$Hƒ$Xè����H‹\$@Hƒû�„„���H‹KXH‹k`H‰l$0H‰,$H‰L$(H‹Y ÿÓH‹L$H‹D$H‰L$H‰D$ H‹\$@H‰$Hƒ$Xè����H‹\$@Hƒû�t2HkXHÇE�����HÇE����H‹\$H‰\$HH‹\$ H‰\$Pè����HƒÄ8Éëʉéuÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Ä�� runtime.raceread���ø�� runtime.raceread���Ò�
������œ��"runtime.racewrite���Œ��(runtime.racefuncexit���0p�� "".err�?type.error� "".~r0�type.error�"".f��type.*"".File�!píop� �,î!  M2 ��*7R8�Tgclocals·7f720595ca0b8b6a95aaac2f38eb7b52�Tgclocals·eaaaa12749ce473c9dc26fe30d45da50���4c:/go/src/debug/pe/file.goþ"".NewFile��À¥��¾¥eH‹ %(���H‹‰����H„$¸üÿÿH;Awè����ëÛHìÈ��H‹œ$È��H‰$è����HDŽ$è������HDŽ$ð������H����H‰$è����H‹\$H‰œ$Ð���H‹œ$Ð��H‰œ$¨��H‹œ$Ø��H‰œ$°��HÇD$X����H»ÿÿÿÿÿÿÿH‰\$hH����H‰$è����H‹D$H‰„$���H‰$è����H‹œ$���H‰$Hƒ<$�„l(��H‹œ$¨��H‰\$H‹œ$°��H‰\$è����H‹œ$���H‰$Hƒ$è����H‹„$���H‹l$XH‰hH‰$Hƒ$è����H‹„$���H‹l$XH‰hH‰$Hƒ$ è����H‹„$���H‹l$XL‹D$hLÅH‰h H‰„$°���H����H‰$è����H‹D$H‰„$`��H‰$HÇD$`���è����H‹¬$`��Hƒý�„'��HÇÂ`���HÇÁ`���H‰¬$ ��H‰l$H‰”$(��H‰T$H‰Œ$0��H‰L$HÇD$ ����H‹œ$Ø��H‰$H‹œ$Ð��H‹[ ÿÓH‹D$0H‹L$8H‰Œ$@��Hƒø�H‰„$8��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH‹œ$`��H‰$è����H‹„$`��¶€ûM…Â&��H‰ÃHÿÃH‰$è����H‹œ$`��¶[€ûZ…ž&��H����H‰$HÇD$����è����H‹„$`��Hƒø�„l&��HÇÂ$���HÇÁ$���Hƒù�tHƒÀ<H‰„$ ��H‰”$(��H‰Œ$0��H‰Œ$���H‰„$ð��Hƒú�H‰”$ø��†&��H‰$è����H‹œ$ð��Hƒ¼$ø��†ì%��HÿÃH‰$è����H‹œ$ð��Hƒ¼$ø��†Â%��HƒÃH‰$è����H‹œ$ð��Hƒ¼$ø��†—%��HƒÃH‰$è����H‹Œ$ð��H‹„$ø��Hƒø�†i%��¶H‰ÍHƒø†R%��HÿŶm�Áå ëH‰ÍHƒø†2%��HƒÅ¶m�Áå ëH‰ÍHƒø†%��HƒÅ¶m�Áå ëH‰\$HH����H‰$è����H‹D$H‰„$@��H‰$HÇD$���è����H‹¬$@��Hƒý�„¶$��HÇÁ���HÇÂ���H‰¬$ ��H‰l$H‰Œ$(��H‰L$H‰”$0��H‰T$H‹\$HH‰\$ H‹œ$Ø��H‰$H‹œ$Ð��H‹[ ÿÓH‹œ$@��H‰$è����H‹„$@��¶€ûP…ü"��H‰ÃHÿÃH‰$è����H‹„$@��¶X€ûE…Ø"��H‰ÃHƒÃH‰$è����H‹„$@��¶X€û�…³"��H‰ÃHƒÃH‰$è����H‹œ$@��¶[€û�…Ž"��H‹D$HHƒÀH‹œ$°���H‰$H‰„$ˆ���H‰D$HÇD$����è����H‹œ$°���H‰œ$���H‹œ$Ð���Hƒû�„5"��H‰œ$8��H‹����H‰„$ð���1íH9è„Ù!��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$8��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰Œ$��Hƒø�H‰„$��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH‹œ$Ð���H‰$è����H‹„$Ð���H·fƒû�„|��H‰$è����H‹„$Ð���H·fûd†„\��H‰$è����H‹„$Ð���H·fûL„<��H����H‹+H‰¬$˜��H‹kH‰¬$ ��HDŽ$x������HDŽ$€������H����H‰$è����H‹D$H‰„$ø���H‰$è����H‹œ$ø���H‰$Hƒ<$�„½���H‹œ$˜��H‰\$H‹œ$ ��H‰\$è����H‹œ$ø���H‰œ$ø���H‹����1íH9ètQH‹”$ø���H‰„$¨��H‰”$°��HDŽ$à������H‰„$x��H‰„$è��H‰”$€��H‰”$ð��è����HÄÈ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뀉%����é7ÿÿÿHDŽ$Ø������HDŽ$à������HDŽ$è������H‰$Hƒ$ è����H‹„$Ð���‹X ƒû�†^ ��H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$ è����H‹„$Ð���H‹œ$°���H‰$‹X‹h kíëH‰\$HÇD$����è����H����H‰$è����H‹D$H‰„$X��H‰$è����H‹œ$°���H‰œ$���H‹œ$X��H‰œ$0��H‹����H‰„$ð���1íH9è„��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$0��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰Œ$ð��Hƒø�H‰„$è��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH‹œ$X��H‰$è����H‹œ$X��H‰$è����H‹„$X��H����H‰$‹(H‰l$‹(H‰l$è����H‹T$H‹L$ H‹D$(H‰”$Ø��H‰Œ$à��H‰„$è��H‹œ$Ð���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$ è����H‹„$Ð���H‹œ$Ø��H‰\$H‹œ$à��H‰\$H‹œ$è��H‰\$‹X‹h kíëH‰\$ H‹œ$Ø��H‰$H‹œ$Ð��H‹[ ÿÓH‹D$0H‹L$8H‰Œ$ ��Hƒø�H‰„$��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH‹œ$Ð���H‰$Hƒ$è����H‹œ$°���H‰$H‹œ$Ð���‹kH‰l$HÇD$����è����ÆD$E�HÇD$x����H‹œ$Ð���H‰$Hƒ$ è����H‹œ$Ð���‹[ H‹l$xH9ëŽ��H����H‰$è����H‹D$H‹œ$°���H‰œ$���H‰„$Ø���H‰„$(��H‹����H‰„$ð���1íH9è„}��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$(��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����¶T$EH‹D$0H‹L$8H‰Œ$`��Hƒø�H‰„$X��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��Àú�vH‰ÓHÿˈ\$EH‹\$xHÿÃH‰\$xétþÿÿHDŽ$È������HDŽ$Ð������H‹œ$Ø���H+H‰,$è����H‹„$Ø���¶€û�…Í��H(HÿÅH‰,$è����H‹„$Ø���¶X€û�…©��H(HƒÅH‰,$è����H‹„$Ø���¶X€û�…„��H(HƒÅH‰,$è����H‹„$Ø���¶X€û�…_��H����H‰$HÇD$����è����H‹„$Ø���Hƒø�„-��HÇÂ���HÇÁ���Hƒù�tHƒÀH‰„$ ��H‰”$(��H‰Œ$0��H‰Œ$��H‰„$��Hƒú�H‰”$��†Ô��H‰$è����H‹œ$��Hƒ¼$��†­��HÿÃH‰$è����H‹œ$��Hƒ¼$��†ƒ��HƒÃH‰$è����H‹œ$��Hƒ¼$��†X��HƒÃH‰$è����H‹Œ$��H‹„$��Hƒø�†*��¶H‰ÍHƒø†��HÿŶm�Áå ëH‰ÍHƒø†ó��HƒÅ¶m�Áå ëH‰ÍHƒø†Ò��HƒÅ¶m�Áå ëH‰ØH‹œ$Ø��H‰$H‹œ$à��H‰\$H‹œ$è��H‰\$H‰D$è����H‹\$ H‰œ$È��H‹\$(H‰œ$Ð��H‹œ$Ø���H‰$Hƒ$è����H‹œ$Ø���¶k@ˆl$EH����H‰$è����H‹D$H‰„$è���H‰$è����H‹œ$è���H‰$Hƒ<$�„��H‹œ$È��H‰\$H‹œ$Ð��H‰\$è����H‹œ$è���H‰$Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$è���Hƒø�„¤��L‹„$Ø���A‹h‰hH‰$Hƒ$è����H‹œ$Ø���H‰$Hƒ$ è����H‹„$è���Hƒø�„X��L‹„$Ø���I·h f‰hH‰$Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$è���Hƒø�„
��L‹„$Ø���I·hf‰hH‰$Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$è���Hƒø�„¼��L‹„$Ø���A¶h@ˆhH‰„$À���H‹œ$Ð���H‰$Hƒ$@è����H‹œ$Ð���Hƒû�„t��H‹S@H‹KHH‹[PH‰”$h��H‰Œ$p��H‰œ$x��H‰ØH)ËHƒû}OH����H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$H‰„$`��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÅH‰¬$X��H‰„$`��H‰”$P��H‰Œ$���HÊH‰$è����H‹œ$P��H‹¬$���HëH‰$H‹œ$À���H‰\$è����H‹œ$P��H‰œ$h��H‹œ$X��H‰œ$p��H‹œ$`��H‰œ$x��H‹œ$Ð���H‰$Hƒ$@è����H‹œ$Ð���H‰$Hƒ<$�t6Hƒ$@H‹œ$h��H‰\$H‹œ$p��H‰\$H‹œ$x��H‰\$è����éXúÿÿ‰%����ëÁ‰é…þÿÿ‰�é=þÿÿ‰�éïýÿÿ‰�é¡ýÿÿ‰�éUýÿÿ‰%����éìüÿÿè���� è���� è���� è���� è���� è���� è���� è���� ‰�éÌúÿÿHƒø�tXHÇÂ���HÇÁ���H‰„$ ��H‰$H‰”$(��H‰T$H‰Œ$0��H‰L$è����H‹L$H‹D$ H‰Œ$È��H‰„$Ð��éëûÿÿ‰�ë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���éIøÿÿH‹œ$°���H‰$H‹œ$ˆ���H‰\$HÇD$����è����H‹œ$°���H‰œ$���H‹œ$Ð���Hƒû�„ ��H‰œ$8��H‹����H‰„$ð���1íH9è„Ä��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$8��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰Œ$���Hƒø�H‰„$ø��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH����H‰$è����H‹D$H‰„$P��H‰$HÇD$à���è����H����H‰$è����H‹D$H‰„$H��H‰$HÇD$ð���è����H‹œ$Ð���H‰$Hƒ$è����H‹œ$Ð���H·kf‰l$FH����H‰$è����H·\$FH·-����f9ë…¨ ��H‹œ$°���H‰œ$���H‹œ$P��H‰œ$ ��H‹����H‰„$ð���1íH9è„4 ��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$ ��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰Œ$0��Hƒø�H‰„$(��t)HDŽ$à������H‰„$è��H‰Œ$ð��è����HÄÈ��ÃH‹œ$P��H‰$è����H‹Œ$P��H·fû „U��Hœ$¸��HÇ����HÇC����Hœ$¸��H‰œ$à���H‹œ$à���Hƒû�„��HÇÂ���HÇÅ���H‰œ$8��H‰”$@��H‰¬$H��H����H‰$H‰L$è����H‹\$H‰œ$ˆ��H‹\$H‰œ$��H‹œ$8��H‰$è����H‹œ$8��H‰$H‹œ$ˆ��H‰\$H‹œ$��H‰\$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$8��H‰\$H‹œ$@��H‰\$H‹œ$H��H‰\$ è����H‹D$(H‹L$0HDŽ$à������H‰„$¨��H‰„$è��H‰Œ$°��H‰Œ$ð��è����HÄÈ��ÉéäþÿÿH‰Œ$ ��H‹œ$Ð���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ<$�„Ž
��Hƒ$H‹Œ$ ��H����H‰„$ˆ��H‰D$H‰Œ$��H‰L$è����H‹œ$Ð���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$Ð���H����H‰$H·hH‰l$H·hH‰l$è����H‹\$H‰œ$€��H‹\$ H‰œ$ˆ��H‹\$(H‰œ$��H‹œ$Ð���H‰$Hƒ$(è����H‹œ$Ð���H‰$Hƒ<$�„£ ��Hƒ$(H‹œ$€��H‰\$H‹œ$ˆ��H‰\$H‹œ$��H‰\$è����HDŽ$€�������H‹œ$Ð���H‰$Hƒ$è����H‹„$Ð���H·XH‹¬$€���H9ëŽ ��H����H‰$è����H‹\$H‰œ$��H‹œ$��H‰œ$¸���H‹œ$°���H‰œ$���H‹œ$¸���H‰œ$��H‹����H‰„$ð���1íH9è„d��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰„$h��H‰Œ$p��Hƒ¼$h���t9HDŽ$à������H‹œ$h��H‰œ$è��H‹œ$p��H‰œ$ð��è����HÄÈ��ÃHDŽ$Ø������HDŽ$à������H‹œ$¸���H+H‰,$è����H‹œ$¸���¶€û/…½��H‹„$¸���Hƒø�„¤��HÇÂ���HÇÁ���Hƒù�tHÿÀH‰„$ ��H‰$H‰”$(��H‰T$H‰Œ$0��H‰L$è����H‹L$H‹D$ H‰Œ$È��H‰ $H‰„$Ð��H‰D$è����H‹\$H‰\$PH‹œ$Ø��H‰$H‹œ$à��H‰\$H‹œ$è��H‰\$H‹\$PH‰\$è����H‹\$ H‰œ$Ø��H‹\$(H‰œ$à��H����H‰$è����H‹\$H‰œ$��H‹´$��H‰´$È���H5����H¬$˜��H‰ïè����H‹œ$Ø��H‰œ$˜��H‹œ$à��H‰œ$ ��H‹œ$¸���H‰$Hƒ$è����H‹¬$¸���‹]‰œ$¨��H‹œ$¸���H‰$Hƒ$ è����H‹¬$¸���‹] ‰œ$¬��H‹œ$¸���H‰$Hƒ$è����H‹¬$¸���‹]‰œ$°��H‹œ$¸���H‰$Hƒ$è����H‹¬$¸���‹]‰œ$´��H‹œ$¸���H‰$Hƒ$è����H‹¬$¸���‹]‰œ$¸��H‹œ$¸���H‰$Hƒ$è����H‹¬$¸���‹]‰œ$¼��H‹œ$¸���H‰$Hƒ$ è����H‹¬$¸���H·] f‰œ$À��H‹œ$¸���H‰$Hƒ$"è����H‹¬$¸���H·]"f‰œ$Â��H‹œ$¸���H‰$Hƒ$$è����H‹¬$¸���‹]$‰œ$Ä��H‹œ$È���H‰$HÇD$0���è����H����H‰$H‹œ$È���H‰\$Hƒ|$�„Å��Hœ$˜��H‰\$è����H‹œ$È���H‰$Hƒ$è����H‹œ$È���‹kH‰¬$ ���H‹œ$È���H‰$Hƒ$è����H‹œ$È���‹kH‰¬$˜���H‹œ$Ð��H‰œ$¸��H‹œ$Ø��H‰œ$À��H‹œ$ ���H‰\$`H‹œ$˜���H‰\$pHDŽ$¨�������H����H‰$è����H‹D$H‰„$���H‰$è����H‹œ$���H‰$Hƒ<$�„Ò��H‹œ$¸��H‰\$H‹œ$À��H‰\$è����H‹œ$���H‰$Hƒ$è����H‹„$���H‹l$`H‰hH‰$Hƒ$è����H‹„$���H‹l$`H‰hH‰$Hƒ$ è����H‹„$���H‹l$`L‹D$pLÅH‰h H‰„$¨���H‹œ$È���H‰$Hƒ$@è����H‹œ$È���H‰$Hƒ<$�„��Hƒ$@H‹œ$¨���H‰\$è����H‹����H‰„$ð���1íH9è„š��H‹œ$È���H‰$Hƒ$0è����H‹œ$È���H‰$Hƒ$@è����H‹œ$È���H‰$Hƒ<$�„K��Hƒ$0H‹œ$È���H‹k@H‰¬$€��H‹œ$ð���H‰œ$x��H‹œ$x��H‰\$H‹œ$€��H‰\$è����H‹œ$Ð���H‹k(H‰¬$€��H‹k0H‰¬$ˆ��H‹k8H‰¬$��H‹œ$€��H‹¬$€���L‹„$ˆ��L9Ń¯���HëH‰$è����H‹œ$Ð���H‰$Hƒ$(è����H‹œ$Ð���Hƒû�tzH‹k(H‰¬$€��H‹k0H‰¬$ˆ��H‹k8H‰¬$��H‹œ$€��H‹¬$€���L‹„$ˆ��L9Ås2HëH‰$H‹œ$È���H‰\$è����H‹œ$€���HÿÃH‰œ$€���éî÷ÿÿè���� ‰ë‚è���� ‰%����é©þÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���é,þÿÿ‰%����éïýÿÿ‰%����é"ýÿÿ‰%����é/üÿÿ‰�éUùÿÿH‹´$¸���Hƒþ�tXHÇÅ���HÇÂ���H‰´$ ��H‰4$H‰¬$(��H‰l$H‰”$0��H‰T$è����H‹T$H‹D$ H‰”$Ø��H‰„$à��é²ùÿÿ‰ë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���éb÷ÿÿH‰„$à��HDŽ$è������HDŽ$ð������è����HÄÈ��É%����éQöÿÿ‰%����éfõÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���é’òÿÿH����H‰$è����H·\$FH·-����f9ë…8õÿÿH‹œ$°���H‰œ$���H‹œ$H��H‰œ$��H‹����H‰„$ð���1íH9è„ì��H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ Hl$H‰ïH‰ÞH¥H¥H‹Œ$���H‹„$ð���H‰„$˜��H‰$H‰Œ$ ��H‰L$H‹Œ$��H����H‰„$ˆ��H‰D$ H‰Œ$��H‰L$(è����H‹D$0H‹L$8H‰„$H��H‰Œ$P��Hƒ¼$H���t9HDŽ$à������H‹œ$H��H‰œ$è��H‹œ$P��H‰œ$ð��è����HÄÈ��ÃH‹œ$H��H‰$è����H‹Œ$H��H·fû „U��Hœ$¸��HÇ����HÇC����Hœ$¸��H‰œ$à���H‹œ$à���Hƒû�„��HÇÂ���HÇÅ���H‰œ$8��H‰”$@��H‰¬$H��H����H‰$H‰L$è����H‹\$H‰œ$ˆ��H‹\$H‰œ$��H‹œ$8��H‰$è����H‹œ$8��H‰$H‹œ$ˆ��H‰\$H‹œ$��H‰\$è����H����H,$H‰ïH‰ÞH¥H¥H‹œ$8��H‰\$H‹œ$@��H‰\$H‹œ$H��H‰\$ è����H‹D$(H‹L$0HDŽ$à������H‰„$¨��H‰„$è��H‰Œ$°��H‰Œ$ð��è����HÄÈ��ÉéäþÿÿH‰Œ$��H‹œ$Ð���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ<$�t8Hƒ$H‹Œ$��H����H‰„$ˆ��H‰D$H‰Œ$��H‰L$è����éòÿÿ‰%����ë¿H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���éÚüÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���éíÿÿ‰éÙìÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���é®áÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$ð���éíÝÿÿ‰éÄÝÿÿH����H‹+H‰¬$ˆ��H‹kH‰¬$��HDŽ$h������HDŽ$p������H����H‰$è����H‹D$H‰„$ø���H‰$è����H‹œ$ø���H‰$Hƒ<$�„½���H‹œ$ˆ��H‰\$H‹œ$��H‰\$è����H‹œ$ø���H‰œ$ø���H‹����1íH9ètQH‹Œ$ø���H‰„$¨��H‰Œ$°��HDŽ$à������H‰„$h��H‰„$è��H‰Œ$p��H‰Œ$ð��è����HÄÈ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뀉%����é7ÿÿÿ‰E�éBÛÿÿè���� è���� è���� è���� è���� è���� è���� è���� ‰�éÙÿÿ1ÀéñÛÿÿ‰E�éiØÿÿ‰%����éˆ×ÿÿê������>��0runtime.morestack_noctxt���r��*runtime.racefuncenter���°��type."".File���Â��"runtime.newobject���Ú��*type.io.SectionReader���ì��"runtime.newobject���˜��"runtime.racewrite���„��2runtime.writebarrieriface���°��"runtime.racewrite���î��"runtime.racewrite���¬��"runtime.racewrite���ü��type.[96]uint8���Ž��"runtime.newobject���Ì��,runtime.racewriterange���¤�
������¢ ��(runtime.racefuncexit���Ô �� runtime.raceread���š
�� runtime.raceread���Ò
��8encoding/binary.LittleEndian���ö
��*runtime.racereadrange���Ð �� runtime.raceread���– �� runtime.raceread���Þ �� runtime.raceread���¦�� runtime.raceread���’��type.[4]uint8���¤��"runtime.newobject���â��,runtime.racewriterange���¼�
������Ú�� runtime.raceread��� �� runtime.raceread���ê�� runtime.raceread���´�� runtime.raceread���¾��0io.(*SectionReader).Seek��� ��Fgo.itab.*io.SectionReader.io.Reader���Ô��Btype.encoding/binary.littleEndian���ê��<type.encoding/binary.ByteOrder���‚��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���š��8encoding/binary.LittleEndian���®��runtime.convT2I���Æ��&type.*"".FileHeader���„��(encoding/binary.Read���†��(runtime.racefuncexit���¸�� runtime.raceread���ö�� runtime.raceread���¶�� runtime.raceread���ò��Fgo.string."Invalid PE File Format."���Þ��.type.errors.errorString���ð��"runtime.newobject���œ��"runtime.racewrite���ˆ��4runtime.writebarrierstring���¶��Bgo.itab.*errors.errorString.error���Ö��(runtime.racefuncexit���ô��0type.*errors.errorString���Š ��type.error���¢ ��Bgo.itab.*errors.errorString.error���¶ �� runtime.typ2Itab���À!�� runtime.raceread���„"�� runtime.raceread���°"�� runtime.raceread���”#��0io.(*SectionReader).Seek���¢#��type.uint32���´#��"runtime.newobject���à#��"runtime.racewrite���®$��Fgo.itab.*io.SectionReader.io.Reader���â$��Btype.encoding/binary.littleEndian���ø$��<type.encoding/binary.ByteOrder���%��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���¨%��8encoding/binary.LittleEndian���¼%��runtime.convT2I���Ô&��type.*uint32���’'��(encoding/binary.Read���”(��(runtime.racefuncexit���Æ(�� runtime.raceread���è(�� runtime.raceread���†)��type.[]uint8���´)��"runtime.makeslice���®*�� runtime.raceread���Ú*�� runtime.raceread���,�
������Ž-��(runtime.racefuncexit���Ê-�� runtime.raceread���ž.��0io.(*SectionReader).Seek���æ.�� runtime.raceread���¦/��$type."".COFFSymbol���¸/��"runtime.newobject���0��Fgo.itab.*io.SectionReader.io.Reader���Ä0��Btype.encoding/binary.littleEndian���Ú0��<type.encoding/binary.ByteOrder���ò0��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���Š1��8encoding/binary.LittleEndian���ž1��runtime.convT2I���¶2��&type.*"".COFFSymbol���ô2��(encoding/binary.Read���€4��(runtime.racefuncexit���ª5�� runtime.raceread���ð5�� runtime.raceread���º6�� runtime.raceread���„7�� runtime.raceread���¼7��8encoding/binary.LittleEndian���à7��*runtime.racereadrange���º9�� runtime.raceread���€:�� runtime.raceread���È:�� runtime.raceread���;�� runtime.raceread���Ê=��"".getString���ª>�� runtime.raceread���Ú>��type."".Symbol���ì>��"runtime.newobject���˜?��"runtime.racewrite���„@��4runtime.writebarrierstring���°@��"runtime.racewrite���Ü@�� runtime.raceread���ºA��"runtime.racewrite���æA�� runtime.raceread���ÈB��"runtime.racewrite���ôB�� runtime.raceread���ÖC��"runtime.racewrite���‚D�� runtime.raceread���„E�� runtime.raceread���–F��"type.[]*"".Symbol���ˆG��"runtime.growslice���ŒH��"runtime.racewrite���àH��.runtime.writebarrierptr���ìI��"runtime.racewrite���ôJ��2runtime.writebarrierslice���øK��$runtime.panicindex���†L��$runtime.panicindex���”L��$runtime.panicindex���¢L��$runtime.panicindex���°L��$runtime.panicindex���¾L��$runtime.panicindex���ÌL��$runtime.panicindex���ÚL��$runtime.panicindex���êM��"".cstring���¾N��,type.*io.SectionReader���ÔN��type.io.Reader���ìN��Fgo.itab.*io.SectionReader.io.Reader���€O�� runtime.typ2Itab���òO��0io.(*SectionReader).Seek���ÔP��Fgo.itab.*io.SectionReader.io.Reader���ˆQ��Btype.encoding/binary.littleEndian���žQ��<type.encoding/binary.ByteOrder���¶Q��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ÎQ��8encoding/binary.LittleEndian���âQ��runtime.convT2I���úR��&type.*"".FileHeader���¸S��(encoding/binary.Read���ºT��(runtime.racefuncexit���ØT��0type."".OptionalHeader32���êT��"runtime.newobject���¨U��,runtime.racewriterange���¶U��0type."".OptionalHeader64���ÈU��"runtime.newobject���†V��,runtime.racewriterange���²V�� runtime.raceread���äV��2"".sizeofOptionalHeader32���öV�� runtime.raceread���’W��2"".sizeofOptionalHeader32���òW��Fgo.itab.*io.SectionReader.io.Reader���¦X��Btype.encoding/binary.littleEndian���¼X��<type.encoding/binary.ByteOrder���ÔX��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ìX��8encoding/binary.LittleEndian���€Y��runtime.convT2I���˜Z��2type.*"".OptionalHeader32���ÖZ��(encoding/binary.Read���Ø[��(runtime.racefuncexit���Š\�� runtime.raceread���„^��type.uint16��� ^��runtime.convT2E���ö^��"runtime.racewrite���Ì_��2runtime.writebarrieriface���Ú_��zgo.string."pe32 optional header has unexpected Magic of 0x%x"���Î`��fmt.Errorf���Äa��(runtime.racefuncexit���žb��"runtime.racewrite���ôb��2type.*"".OptionalHeader32���²c��2runtime.writebarrieriface���Þc�� runtime.raceread���Šd�� runtime.raceread���¨d��$type.[]*"".Section���âd��"runtime.makeslice���Üe��"runtime.racewrite���ìf��2runtime.writebarrierslice���°g�� runtime.raceread���úg��.type."".SectionHeader32���Œh��"runtime.newobject���”i��Fgo.itab.*io.SectionReader.io.Reader���Èi��Btype.encoding/binary.littleEndian���Þi��<type.encoding/binary.ByteOrder���öi��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���Žj��8encoding/binary.LittleEndian���¢j��runtime.convT2I���ºk��0type.*"".SectionHeader32���øk��(encoding/binary.Read���¤m��(runtime.racefuncexit���Œn�� runtime.raceread���Üo��"".cstring���¬p��strconv.Atoi���ªq��"".getString���ìq��type."".Section���þq��"runtime.newobject���Ær��""".statictmp_0132���ærØ� runtime.duffcopy���Òs�� runtime.raceread���¢t�� runtime.raceread���òt�� runtime.raceread���Âu�� runtime.raceread���’v�� runtime.raceread���âv�� runtime.raceread���²w�� runtime.raceread���ˆx�� runtime.raceread���Þx�� runtime.raceread���¶y��,runtime.racewriterange���Äy��*type."".SectionHeader���¢z��.runtime.writebarrierfat���Îz�� runtime.raceread��� {�� runtime.raceread���à|��*type.io.SectionReader���ò|��"runtime.newobject���ž}��"runtime.racewrite���Š~��2runtime.writebarrieriface���¶~��"runtime.racewrite���ô~��"runtime.racewrite���²��"runtime.racewrite��� €��"runtime.racewrite���ü€��.runtime.writebarrierptr���Š��Jgo.itab.*io.SectionReader.io.ReaderAt���܁��"runtime.racewrite���ˆ‚�� runtime.raceread���ƃ��2runtime.writebarrieriface���ú„��"runtime.racewrite���¦…�� runtime.raceread���ø†��.runtime.writebarrierptr���²‡��$runtime.panicindex���ȇ��$runtime.panicindex���ò‡��,type.*io.SectionReader���ˆˆ�� type.io.ReaderAt��� ˆ��Jgo.itab.*io.SectionReader.io.ReaderAt���´ˆ�� runtime.typ2Itab���¼Š��"".cstring���‹��,type.*io.SectionReader���¦‹��type.io.Reader���¾‹��Fgo.itab.*io.SectionReader.io.Reader���ҋ�� runtime.typ2Itab���ÀŒ��(runtime.racefuncexit���Ž��,type.*io.SectionReader���¤��type.io.Reader���¼��Fgo.itab.*io.SectionReader.io.Reader���Ѝ�� runtime.typ2Itab���‚Ž��2"".sizeofOptionalHeader64���”Ž�� runtime.raceread���°Ž��2"".sizeofOptionalHeader64�����Fgo.itab.*io.SectionReader.io.Reader���ď��Btype.encoding/binary.littleEndian���ڏ��<type.encoding/binary.ByteOrder���ò��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���Š��8encoding/binary.LittleEndian���ž��runtime.convT2I���¶‘��2type.*"".OptionalHeader64���ô‘��(encoding/binary.Read��� “��(runtime.racefuncexit���ғ�� runtime.raceread���̕��type.uint16���è•��runtime.convT2E���¾–��"runtime.racewrite���”—��2runtime.writebarrieriface���¢—��|go.string."pe32+ optional header has unexpected Magic of 0x%x"���–˜��fmt.Errorf���Œ™��(runtime.racefuncexit���æ™��"runtime.racewrite���´š��2type.*"".OptionalHeader64���òš��2runtime.writebarrieriface���œ›��,type.*io.SectionReader���²›��type.io.Reader���ʛ��Fgo.itab.*io.SectionReader.io.Reader���ޛ�� runtime.typ2Itab���œ��,type.*io.SectionReader���¦œ��type.io.Reader���¾œ��Fgo.itab.*io.SectionReader.io.Reader���Ҝ�� runtime.typ2Itab���’��,type.*io.SectionReader���¨��type.io.Reader���À��Fgo.itab.*io.SectionReader.io.Reader���ԝ�� runtime.typ2Itab���†ž��,type.*io.SectionReader���œž��type.io.Reader���´ž��Fgo.itab.*io.SectionReader.io.Reader���Ȟ�� runtime.typ2Itab���ˆŸ��Fgo.string."Invalid PE File Format."���ôŸ��.type.errors.errorString���† ��"runtime.newobject���² ��"runtime.racewrite���ž¡��4runtime.writebarrierstring���Ì¡��Bgo.itab.*errors.errorString.error���ì¢��(runtime.racefuncexit���Š£��0type.*errors.errorString��� £��type.error���¸£��Bgo.itab.*errors.errorString.error���Ì£�� runtime.typ2Itab���Œ¤��$runtime.panicindex���š¤��$runtime.panicindex���¨¤��$runtime.panicindex���¶¤��$runtime.panicindex���Ĥ��$runtime.panicindex���Ò¤��$runtime.panicindex���à¤��$runtime.panicindex���î¤��$runtime.panicindex���P��ú"".autotmp_0137��type.*uint8�"".autotmp_0136��,type.*io.SectionReader�"".autotmp_0135��,type.*io.SectionReader�"".autotmp_0134�ß type.int64�"".autotmp_0133�Ï type.int64�"".autotmp_0131��type.*[8]uint8�"".autotmp_0130��type.*[8]uint8�"".autotmp_0129��type.*uint8�"".autotmp_0128��"type.interface {}�"".autotmp_0127��*type.*[1]interface {}�"".autotmp_0126��&type.[]interface {}�"".autotmp_0125��type.*uint8�"".autotmp_0124��"type.interface {}�"".autotmp_0123�Ï *type.*[1]interface {}�"".autotmp_0122�Ÿ&type.[]interface {}�"".autotmp_0121��type.*uint8�"".autotmp_0120�ƒtype.uint16�"".autotmp_0119��type.*uint8�"".autotmp_0116��type.int�"".autotmp_0115��type.int�"".autotmp_0114�ï"type.[]*"".Symbol�"".autotmp_0113�¿"type.[]*"".Symbol�"".autotmp_0112�¿ type.*"".Symbol�"".autotmp_0111��type.*[8]uint8�"".autotmp_0110��type.uint32�"".autotmp_0108��type.[]uint8�"".autotmp_0107��type.*uint8�"".autotmp_0106��type.*uint8�"".autotmp_0105��type.*uint8�"".autotmp_0104��type.error�"".autotmp_0103��0type.*errors.errorString�"".autotmp_0102��type.*uint8�"".autotmp_0101�¯ type.*uint8�"".autotmp_0100�¿type.error�"".autotmp_0099�Ÿ 0type.*errors.errorString�"".autotmp_0096��type.*[96]uint8�"".autotmp_0095��type.[]uint8�"".autotmp_0093� ,type.*io.SectionReader�"".autotmp_0092��,type.*io.SectionReader�"".autotmp_0091��type.int�"".autotmp_0090�_*type."".SectionHeader�"".autotmp_0089�ÿ
 type.*"".Section�"".autotmp_0088��type.string�"".autotmp_0087��type.string�"".autotmp_0086��type.error�"".autotmp_0085��0type.*"".SectionHeader32�"".autotmp_0084��,type.*io.SectionReader�"".autotmp_0083�ï
0type.*"".SectionHeader32�"".autotmp_0082�$type.[]*"".Section�"".autotmp_0081��2type.*"".OptionalHeader64�"".autotmp_0080��type.error�"".autotmp_0079��(type.[1]interface {}�"".autotmp_0078��type.error�"".autotmp_0077�ß
2type.*"".OptionalHeader64�"".autotmp_0076��,type.*io.SectionReader�"".autotmp_0075��2type.*"".OptionalHeader32�"".autotmp_0074��type.error�"".autotmp_0073�Ÿ(type.[1]interface {}�"".autotmp_0072��type.error�"".autotmp_0071�Ï
2type.*"".OptionalHeader32�"".autotmp_0070��,type.*io.SectionReader�"".autotmp_0069��type.error�"".autotmp_0068��&type.*"".FileHeader�"".autotmp_0067��,type.*io.SectionReader�"".autotmp_0066��type.int�"".autotmp_0065��"type.[]*"".Symbol�"".autotmp_0064�ÿtype.string�"".autotmp_0062��type.error�"".autotmp_0061��&type.*"".COFFSymbol�"".autotmp_0060��,type.*io.SectionReader�"".autotmp_0059�¿
&type.*"".COFFSymbol�"".autotmp_0058��type.[]uint8�"".autotmp_0057��type.error�"".autotmp_0056�¯
type.*uint32�"".autotmp_0055��,type.*io.SectionReader�"".autotmp_0054��0type.*errors.errorString�"".autotmp_0053��type.error�"".autotmp_0052�Ÿ
&type.*"".FileHeader�"".autotmp_0051��,type.*io.SectionReader�"".autotmp_0050��0type.*errors.errorString�"".&oh64�ÿ 2type.*"".OptionalHeader64�"".&oh32�ï 2type.*"".OptionalHeader32�
"".&l�ß type.*uint32�"".&sign�
type.*[4]uint8�"".&dosheader�Ï type.*[96]uint8� "".~r0�¿ ,type.*io.SectionReader�io.n·4�¯ type.int64�io.off·3�Ï type.int64�io.r·2�Ÿ type.io.ReaderAt�(encoding/binary.b·2�ÿtype.[]uint8� "".~r0�Ÿ type.error�errors.text·2�ßtype.string� "".~r0�¿ type.error�errors.text·2�ÿtype.string�(encoding/binary.b·2�¯type.[]uint8�io.n·4�¿ type.int64�io.off·3�ß type.int64�io.r·2�¿ type.io.ReaderAt�"".s�ÿ  type.*"".Section�
"".si�ï type.int�"".name�ßtype.string� "".err�¿type.error�
"".sh�Ÿ 0type.*"".SectionHeader32�"".i� type.int� "".err�ÿtype.error� "".err�¿type.error� "".err�Ÿtype.error�"".s� type.*"".Symbol�"".name�ÿtype.string� "".err�ßtype.error�
"".cs�ß &type.*"".COFFSymbol�"".i�Ÿ type.int� "".aux�…type.uint8� "".err�ßtype.error� "".err�¿type.error�
"".ss�ßtype.[]uint8� "".err�ÿtype.error�"".signoff�ÿ type.int64�"".base�ÿ type.int64� "".err�Ÿtype.error�
"".sr�¯ ,type.*io.SectionReader�"".f�ï type.*"".File� "".~r2�0type.error� "".~r1� type.*"".File�"".r�� type.io.ReaderAt�Ò,°±çž¼¸œÎõïÍ¯õïž�àR�ÜŒ,‚‰/ŠöõIà/k“ 'ƒÖÕgôÐÏC$"V&ù¾½o¥¶µ@8þ¤£
–ÞJ' r')b Ž/0(?Y:6'ƒlk//('ù^](ÁXWhÝ@-þ,43(†O-7    
b­¥Ù56F !a:6-;  :'þ,NM(ÁHGd :AQ:A ôæåC? �ú�8}6…«¾ê®xkAœ6g 0
E
"nnkA7=°ê
kFU ˆˆ076ÀÄ*FDBy,K9x kA"/½kA56‹++A;-J1•<H;Û@kVU4VùjòL’6‹.0
u ÙIAj„K7QH:"…kVGH‹ ++A;-
F966:A: _6g 0
[�Tgclocals·c5f079982a801968bf24737fc70a429f�Tgclocals·8c6675ea44d7852764c53d83294c8fdf���4c:/go/src/debug/pe/file.goþ"".cstring��€��èeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹t$PH‹T$XHÇD$h����HÇD$p����1ÀH9Ð}CH‰D$(H9Ѓ���HH‰$è����H‹t$PH‹T$XH‹D$(H9ÐseH¶€û�tHÿÀH9Ð|½H‹L$`H9Ár@H‰t$0H‰4$H‰D$8H‰D$H‰L$@H‰L$è����H‹\$H‰\$hH‹\$ H‰\$pè����HƒÄHÃè���� è���� è���� ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Ò�� runtime.raceread���ú��2runtime.slicebytetostring���¬��(runtime.racefuncexit���À��$runtime.panicslice���Î��$runtime.panicindex���Ü��$runtime.panicindex���P��"".autotmp_0211��type.int�"".i�?type.int� "".~r1�0type.string�"".b��type.[]uint8�!½!�€�”!JQ��*«
!�Tgclocals·63a775e8a5255c196a529acc20d379e8�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���4c:/go/src/debug/pe/file.goþ"".getString��À��°eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹L$hH‹t$PH‹T$XHÇD$p����HÇD$x����Hƒù�Œ��H9э��H‰ÈH9ЍÓ���H‰D$(H9Ѓð���HH‰$è����H‹t$PH‹D$(H‹T$XH9ЃÄ���H¶€û�…„���H‹|$`H‰ÂH‹D$hH9×rkH9ÂrfH‰ñH‰ÖH)ÆH‰úH)ÂHƒú�t H‰ÃHËH‰ÙH‰L$0H‰ $H‰t$8H‰t$H‰T$@H‰T$è����H‹\$H‰\$pH‹\$ H‰\$xƄ$€���è����HƒÄHÃè���� HÿÀH9ÐŒ-ÿÿÿHÇD$p����HÇD$x����Ƅ$€����è����HƒÄHÃè���� è���� HÇD$p����HÇD$x����Ƅ$€����è����HƒÄHÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Œ�� runtime.raceread���Š��2runtime.slicebytetostring���Ì��(runtime.racefuncexit���à��$runtime.panicslice���º��(runtime.racefuncexit���Î��$runtime.panicindex���Ü��$runtime.panicindex���ž��(runtime.racefuncexit���p��"".autotmp_0221��type.int�"".autotmp_0220��type.int� "".end�?type.int� "".~r3�`type.bool� "".~r2�@type.string�"".start�0type.int�"".section��type.[]uint8�,!61 � �@¤! Cs 
$ � �*û
-
(�Tgclocals·b63f50f2c32f23ba935b8e8f4c9c0b3c�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���4c:/go/src/debug/pe/file.goþ$"".(*File).Section��à��ÆeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹\$pH‰$è����H‹\$xH‰$Hƒ$(è����H‹\$xHƒû�„ ��H‹S(H‹C0H‹k8H‰l$h1ÉH‰D$`H‰D$(H‰T$XH‰ÐH‰L$0H‹l$(H9鍶���H‰D$@H‰$è����H‹\$@H‹+H‰l$8H‰,$è����H‹Œ$ˆ���H‹\$8Hƒû�„‘���H‹H‰T$HH‹CH‰D$PH9ÈuAH‰$H‰D$H‹¬$€���H‰l$H‰L$è����¶\$ €û�tH‹\$8H‰œ$���è����HƒÄpÃH‹D$@H‹L$0HƒÀHÿÁH‰L$0H‹l$(H9éŒJÿÿÿHDŽ$�������è����HƒÄpÉéhÿÿÿ‰éîþÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���¦�� runtime.raceread���Ò�� runtime.raceread���ì�� runtime.eqstring���¤��(runtime.racefuncexit���˜��(runtime.racefuncexit���@à��"".autotmp_0234�Otype.string�"".autotmp_0232�_"type.**"".Section�"".autotmp_0231�type.int�"".autotmp_0230�type.int�"".autotmp_0229�/$type.[]*"".Section�"".s�o type.*"".Section� "".~r1�0 type.*"".Section�"".name�type.string�"".f��type.*"".File�&!àùßà9ßà�ð�0Â!  pe $
��*hi_�Tgclocals·bafc1330d2b39b016f5ca9443e509e8e�Tgclocals·5d953a8bfd94037a0a347002163fd548���4c:/go/src/debug/pe/file.goþ "".(*File).DWARF�� ��eH‹ %(���H‹‰����H„$�þÿÿH;Awè����ëÛHì€��H‹œ$€��H‰$è����HDŽ$˜������HDŽ$ ������H¼$Ø��1Àè����Hœ$Ø��H‰$è����Hœ$Ø��H-����H‰ßH‰îH¥H¥Hœ$Ø��HƒÃH‰$è����Hœ$Ø��HƒÃH-����H‰ßH‰îH¥H¥Hœ$Ø��HƒÃ H‰$è����Hœ$Ø��HƒÃ H-����H‰ßH‰îH¥H¥H¼$8��1Àè����Hœ$Ø��H¬$��H‰ïH‰Þè����1ÉHDŽ$à������Hœ$��H‰ØH‰Œ$è���H‹¬$à���H9éð���H‰„$���H‰$è����H‹œ$���Hƒû�„P��H‹ H‹CH‹´$è���H‰´$Ø���H‰Œ$(��H‰„$0��H5����H,$H‰ïH¥H¥H‰Œ$��H‰L$H‰„$��H‰D$è����H‹L$ H‹D$(H‹œ$ˆ��H‰$H‰Œ$��H‰L$H‰„$��H‰D$è����H‹D$1íH9è…q��H‹„$���H‹Œ$è���HƒÀHÿÁH‰Œ$è���H‹¬$à���H9éŒÿÿÿHœ$8��HƒÃH‰$è����H‹œ$P��H‰œ$¨��H‹œ$X��H‰œ$°��H‹œ$`��H‰œ$¸��Hœ$8��HƒÃ0H‰$è����H‹œ$h��H‰œ$��H‹œ$p��H‰œ$˜��H‹œ$x��H‰œ$ ��Hœ$8��H‰$è����L‹”$8��L‹Œ$@��L‹„$H��H‹¼$¨��H‹´$°��H‹¬$¸��H‹”$��H‹Œ$˜��H‹„$ ��L‰”$À��L‰$L‰Œ$È��L‰L$L‰„$Ð��L‰D$H\$HÇ����HÇC����HÇC����H\$0HÇ����HÇC����HÇC����H‰¼$`��H‰|$HH‰´$h��H‰t$PH‰¬$p��H‰l$XH\$`HÇ����HÇC����HÇC����H\$xHÇ����HÇC����HÇC����Hœ$���HÇ����HÇC����HÇC����H‰”$H��H‰”$¨���H‰Œ$P��H‰Œ$°���H‰„$X��H‰„$¸���è����H‹„$À���H‹”$È���H‹Œ$Ð���H‰„$��H‰”$8��H‰”$˜��H‰Œ$@��H‰Œ$ ��è����HÄ€��ÃH‰„$ø���H‰$è����H‹\$H‰œ$x��H‹L$H‰Œ$€��H‹\$H‰œ$ˆ��H‹D$ H‹\$(H‰œ$ ��Hƒø�H‰„$��tqH‰Œ$ð���H‹œ$ø���H‰$Hƒ$è����H‹œ$ð���L‹„$ø���‰ÛA‹h9ës9HDŽ$������H‹œ$��H‰œ$˜��H‹œ$ ��H‰œ$ ��è����HÄ€��ÃHœ$8��H‹¬$Ø���Hƒýs\HkíHëH‰$è����Hœ$8��H‹¬$Ø���Hƒýs/HkíHëH‹¬$x��H‰+H‹¬$€��H‰kH‹¬$ˆ��H‰ké[üÿÿè���� è���� ‰é©ûÿÿ6������>��0runtime.morestack_noctxt���r��*runtime.racefuncenter���Àè� runtime.duffzero���â��"runtime.racewrite���€��$go.string."abbrev"���¾��"runtime.racewrite���ä�� go.string."info"���¢��"runtime.racewrite���È��go.string."str"���úÜ� runtime.duffzero���°Ø� runtime.duffcopy���¶�� runtime.raceread���¶��&go.string.".debug_"���Š��*runtime.concatstring2���ô��$"".(*File).Section���ž �� runtime.raceread���¨
�� runtime.raceread���ª �� runtime.raceread���Ü��debug/dwarf.New���æ��(runtime.racefuncexit���˜��$"".(*Section).Data���â�� runtime.raceread���ø��(runtime.racefuncexit���Ô��"runtime.racewrite���è��$runtime.panicindex���ö��$runtime.panicindex���@€
��,"".autotmp_0245�ßtype.[]uint8�"".autotmp_0244�¯type.[]uint8�"".autotmp_0243�¯type.string�"".autotmp_0242�ÿtype.*string�"".autotmp_0241�¿type.int�"".autotmp_0240�¯type.int�"".autotmp_0239�type.error�"".autotmp_0237�Ÿtype.int�"".autotmp_0235�ïtype.[3]string� "".str�ïtype.[]uint8�"".info�¿type.[]uint8�"".abbrev�ÿtype.[]uint8� "".err�Ïtype.error�"".b�type.[]uint8�"".s� type.*"".Section�"".name�ïtype.string�"".i�Ïtype.int� "".dat�type.[3][]uint8�"".names�Ïtype.[3]string� "".~r1� type.error� "".~r0�,type.*debug/dwarf.Data�"".f��type.*"".File�*,€
Òÿ €
Èÿ €
ˆ�Ð �`Ô,('—;0 0ãÞJF,  f�@�88êô EAÙEeK.J�Tgclocals·b2c798978b1a9b8f40a4ebb475ffe473�Tgclocals·586456dd1979ff0e26b90a29f7b0e7ae���4c:/go/src/debug/pe/file.goþ4"".(*File).ImportedSymbols��€H��æGeH‹ %(���H‹‰����H„$(þÿÿH;Awè����ëÛHìX��1ÀH¼$à��è����H‹œ$X��H‰$è����HDŽ$h������HDŽ$p������HDŽ$x������HDŽ$€������HDŽ$ˆ������H‹œ$`��H‰$è����H‹„$`��H·fûd†„9��ÆD$C�H‰$H����Hl$H‰ïH‰ÞH¥H¥è����H‹D$1íH9èuIHDŽ$h������HDŽ$p������HDŽ$x������HDŽ$€������HDŽ$ˆ������è����HÄX��ÃH‰D$pH‰$è����H‹\$H‰œ$ð���H‹\$H‰œ$ø���H‹\$H‰œ$���H‹D$ H‹L$(H‰Œ$¨���Hƒø�H‰„$ ���tAHDŽ$h������HDŽ$p������HDŽ$x������H‰„$€��H‰Œ$ˆ��è����HÄX��ÃHDŽ$Ø�������HDŽ$à�������HDŽ$è�������H‹œ$ø���Hƒû�Ž˜��H¼$à��1Àè����H����H‰$HÇD$����è����H‹„$���Hƒø‚³��H‹´$ð���HÇÅ���H‰´$˜��H‰¬$ ��H‰„$¨��H‰„$0��H‰´$ ��Hƒý�H‰¬$(��†c��H‰4$è����H‹œ$ ��Hƒ¼$(��†<��HÿÃH‰$è����H‹œ$ ��Hƒ¼$(��†��HƒÃH‰$è����H‹œ$ ��Hƒ¼$(��†ç��HƒÃH‰$è����H‹Œ$ ��H‹„$(��Hƒø�†¹��¶H‰ÍHƒø†¢��HÿŶm�Áå ëH‰ÍHƒø†‚��HƒÅ¶m�Áå ëH‰ÍHƒø†a��HƒÅ¶m�Áå 뉜$à��H����H‰$HÇD$����è����H‹Œ$���Hƒù‚��H‹„$ð���HÇÂ���Hƒé Hƒù�tHƒÀ H‰„$˜��H‰”$ ��H‰Œ$¨��H‰Œ$��H‰„$��Hƒú�H‰”$��†½ ��H‰$è����H‹œ$��Hƒ¼$��†– ��HÿÃH‰$è����H‹œ$��Hƒ¼$��†l ��HƒÃH‰$è����H‹œ$��Hƒ¼$��†A ��HƒÃH‰$è����H‹Œ$��H‹„$��Hƒø�† ��¶H‰ÍHƒø†ü ��HÿŶm�Áå ëH‰ÍHƒø†Ü ��HƒÅ¶m�Áå ëH‰ÍHƒø†» ��HƒÅ¶m�Áå 뉜$ì��H����H‰$HÇD$����è����H‹Œ$���Hƒù‚u ��H‹„$ð���HÇÂ���HƒéHƒù�tHƒÀH‰„$˜��H‰”$ ��H‰Œ$¨��H‰Œ$`��H‰„$P��Hƒú�H‰”$X��† ��H‰$è����H‹œ$P��Hƒ¼$X��†ð ��HÿÃH‰$è����H‹œ$P��Hƒ¼$X��†Æ ��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†› ��HƒÃH‰$è����H‹Œ$P��H‹„$X��Hƒø�†m ��¶H‰ÍHƒø†V ��HÿŶm�Áå ëH‰ÍHƒø†6 ��HƒÅ¶m�Áå ëH‰ÍHƒø† ��HƒÅ¶m�Áå 뉜$ð��H‹¬$���H‹Œ$ø���Hƒù‚à
��H‹„$ð���H‰ÊHƒêH‰éHƒéHƒù�tHƒÀH‰„$ð���H‰”$ø���H‰Œ$���‹œ$à��ƒû�…{ ��H‹\$pH‰$è����H‹\$H‰œ$À���H‹\$H‰œ$È���H‹\$H‰œ$Ð���HDŽ$È������HDŽ$Ð������HDŽ$Ø������H‹Œ$Ø���H‹„$à���H‹œ$è���H‰œ$À��1ÒH‰„$¸��H‰D$XH‰Œ$°��H‰ÈH‰T$hH‹l$XH9ꍂ��H‰D$xH‰$HÇD$(���è����H‹t$xHƒþ�„¨��H¬$0��H‰ïè����Hœ$0��H¬$��H‰ïH‰Þè����H‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$‹œ$��L‹D$pA‹h)ëH‰\$è����Hœ$ ��Hl$ H‰ßH‰îH¥H¥H‹\$pH‰$è����H‹\$H‰œ$ð���H‹\$H‰œ$ø���H‹\$H‰œ$���H‹\$pH‰$Hƒ$è����‹„$��L‹D$pA‹hH‹¼$���H‹”$ø���)è‹ØH9Ú‚•��H‹Œ$ð���H‰ÖH)ÞH‰úH)ÚHƒú�tHËH‰ÙH‰Œ$ð���H‰´$ø���H‰”$���H‹œ$ø���Hƒû�Žâ���€|$C�„Y��H‹„$���H‰D$`Hƒø‚;��H����H‰$HÇD$����è����H$H����H‹”$ð���H‹D$`HÇÁ���H‰”$˜��H‰$H‰Œ$ ��H‰L$H‰„$¨��H‰D$è����H‹T$H‹¬$���H‹Œ$ø���Hƒù‚²��H‹„$ð���H‰ÎHƒîH‰éHƒéHƒù�tHƒÀH‰„$ð���H‰´$ø���H‰Œ$���Hƒú�uyH‹D$xH‹T$hHƒÀ(HÿÂH‰T$hH‹l$XH9êŒ~ýÿÿH‹œ$È��H‰œ$h��H‹œ$Ð��H‰œ$p��H‹œ$Ø��H‰œ$x��HDŽ$€������HDŽ$ˆ������è����HÄX��ÃH»�������€H‰T$HH!ÓHƒû�‡wþÿÿH‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹\$HL‹D$p‰ÛA‹h)ëƒÃH‰\$è����H‹L$ H‹D$(H‰Œ$���H‰ $H‰„$˜���H‰D$H����Hl$H‰ïH‰ÞH¥H¥Hœ$ ��Hl$ H‰ïH‰ÞH¥H¥è����H‹\$0H‰œ$°���H‹\$8H‰œ$¸���H‹”$È��H‹Œ$Ð��H‹œ$Ø��H‰ØH)ËHƒû}OH����H‰$H‰”$h��H‰T$H‰Œ$p��H‰L$H‰„$x��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÅH‰ÓH‰¬$p��H‰„$x��H‰”$h��H‰ÍH‰L$PHkíHëH‰$è����H‹œ$h��H‹l$PHkíHëH‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$è����H‹”$h��H‹Œ$p��H‹„$x��H‰”$È��H‰Œ$Ð��H‰„$Ø��é˜üÿÿè���� è���� H����H‰$HÇD$����è����H‹„$���Hƒø‚µ��H‹´$ð���HÇÅ���H‰´$˜��H‰¬$ ��H‰„$¨��H‰„$H��H‰´$8��Hƒý�H‰¬$@��†e��H‰4$è����H‹œ$8��Hƒ¼$@��†>��HÿÃH‰$è����H‹œ$8��Hƒ¼$@��†��HƒÃH‰$è����H‹œ$8��Hƒ¼$@��†é��HƒÃH‰$è����H‹Œ$8��H‹„$@��Hƒø�†»��¶H‰ÍHƒø†¤��HÿŶm�Áå ëH‰ÍHƒø†„��HƒÅ¶m�Áå ëH‰ÍHƒø†c��HƒÅ¶m�H‹´$���H‹Œ$ø���Áå ë‰ÚHƒù‚3��H‹„$ð���H‰ÍHƒíH‰ñHƒéHƒù�tHƒÀH‰„$ð���H‰¬$ø���H‰Œ$���ƒú�„Ïûÿÿ‰Ó‰T$Dã���€ƒû�‡ÆúÿÿH‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹l$p‹]‹l$D)݉ëƒÃH‰\$è����H‹L$ H‹D$(H‰Œ$€���H‰ $H‰„$ˆ���H‰D$H����Hl$H‰ïH‰ÞH¥H¥Hœ$ ��Hl$ H‰ïH‰ÞH¥H¥è����H‹\$0H‰œ$°���H‹\$8H‰œ$¸���H‹”$È��H‹Œ$Ð��H‹œ$Ø��H‰ØH)ËHƒû}OH����H‰$H‰”$h��H‰T$H‰Œ$p��H‰L$H‰„$x��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÅH‰ÓH‰¬$p��H‰„$x��H‰”$h��H‰ÍH‰L$PHkíHëH‰$è����H‹œ$h��H‹l$PHkíHëH‰$H‹œ$°���H‰\$H‹œ$¸���H‰\$è����H‹”$h��H‹Œ$p��H‹„$x��H‰”$È��H‰Œ$Ð��H‰„$Ø��ééøÿÿè���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� ‰éQ÷ÿÿH‹”$Ø���H‹Œ$à���H‹œ$è���H‰ØH)ËHƒû}OH����H‰$H‰”$€��H‰T$H‰Œ$ˆ��H‰L$H‰„$��H‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÁH‰Œ$ˆ��H‰„$��H‰ÓH‰”$€��H‰l$XHkí(HëH‰$HÇD$(���è����H����H‰$H‹œ$€��H‹l$XHkí(HëH‰\$Hœ$à��H‰\$è����H‹”$€��H‹Œ$ˆ��H‹„$��H‰”$Ø���H‰Œ$à���H‰„$è���é¾ðÿÿè���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� ÆD$CéÂîÿÿÜ������>��0runtime.morestack_noctxt���nì� runtime.duffzero�����*runtime.racefuncenter���ª�� runtime.raceread���ø��$go.string.".idata"��� ��$"".(*File).Section���º��(runtime.racefuncexit���æ��$"".(*Section).Data���æ��(runtime.racefuncexit���€ì� runtime.duffzero���Ž��8encoding/binary.LittleEndian���²��*runtime.racereadrange���ú �� runtime.raceread���À
�� runtime.raceread���ˆ �� runtime.raceread���Ð �� runtime.raceread���À ��8encoding/binary.LittleEndian���ä ��*runtime.racereadrange���È�� runtime.raceread���Ž�� runtime.raceread���Ö�� runtime.raceread���ž�� runtime.raceread���Ž��8encoding/binary.LittleEndian���²��*runtime.racereadrange���–�� runtime.raceread���Ü�� runtime.raceread���¤�� runtime.raceread���ì�� runtime.raceread���®��$"".(*Section).Data���Œ��*runtime.racereadrange���Êô� runtime.duffcopy���€ô� runtime.duffcopy���¦�� runtime.raceread���ª��"".getString���ô��$"".(*Section).Data���è �� runtime.raceread���¨#��8encoding/binary.LittleEndian���Ì#��*runtime.racereadrange���â#��8encoding/binary.LittleEndian���à$��Fencoding/binary.littleEndian.Uint64���ü'��(runtime.racefuncexit���ê(�� runtime.raceread���ô)��"".getString���È*��go.string.":"���ž+��*runtime.concatstring3���¨,��type.[]string���š-��"runtime.growslice���ª.��"runtime.racewrite���˜/��4runtime.writebarrierstring���Œ0��$runtime.panicslice���š0��$runtime.panicslice���¬0��8encoding/binary.LittleEndian���Ð0��*runtime.racereadrange���˜2�� runtime.raceread���Þ2�� runtime.raceread���¦3�� runtime.raceread���î3�� runtime.raceread���Ì7�� runtime.raceread���Ò8��"".getString���¦9��go.string.":"���ü9��*runtime.concatstring3���†;��type.[]string���ø;��"runtime.growslice���ˆ=��"runtime.racewrite���ö=��4runtime.writebarrierstring���ê>��$runtime.panicslice���ø>��$runtime.panicindex���†?��$runtime.panicindex���”?��$runtime.panicindex���¢?��$runtime.panicindex���°?��$runtime.panicindex���¾?��$runtime.panicindex���Ì?��$runtime.panicindex���Ú?��$runtime.panicindex���è?��$runtime.panicslice���ö?��$runtime.panicslice���Þ@��2type.[]"".ImportDirectory���ÐA��"runtime.growslice���ìB��,runtime.racewriterange���úB��.type."".ImportDirectory���ØC��.runtime.writebarrierfat���ÌD��$runtime.panicslice���ÚD��$runtime.panicindex���èD��$runtime.panicindex���öD��$runtime.panicindex���„E��$runtime.panicindex���’E��$runtime.panicindex��� E��$runtime.panicindex���®E��$runtime.panicindex���¼E��$runtime.panicindex���ÊE��$runtime.panicslice���ØE��$runtime.panicindex���æE��$runtime.panicindex���ôE��$runtime.panicindex���‚F��$runtime.panicindex���F��$runtime.panicindex���žF��$runtime.panicindex���¬F��$runtime.panicindex���ºF��$runtime.panicindex���ÈF��$runtime.panicslice���ÖF��$runtime.panicindex���äF��$runtime.panicindex���òF��$runtime.panicindex���€G��$runtime.panicindex���ŽG��$runtime.panicindex���œG��$runtime.panicindex���ªG��$runtime.panicindex���¸G��$runtime.panicindex���ÆG��$runtime.panicslice���`° ��†"".autotmp_0297��type.uint64�"".autotmp_0296��type.uint64�"".autotmp_0295��type.int�"".autotmp_0294��type.int�"".autotmp_0293��type.[]string�"".autotmp_0292��type.string�"".autotmp_0291��type.uint64�"".autotmp_0290��type.uint64�"".autotmp_0289��type.uint32�"".autotmp_0288��type.uint64�"".autotmp_0287��type.[]uint8�"".autotmp_0286��type.uint64�"".autotmp_0285��type.uint64�"".autotmp_0284��type.int�"".autotmp_0283��type.int�"".autotmp_0282�ßtype.[]string�"".autotmp_0281�Ïtype.string�"".autotmp_0280��type.uint64�"".autotmp_0279��type.uint64�"".autotmp_0278��type.uint64�"".autotmp_0277�ïtype.uint64�"".autotmp_0276��type.uint64�"".autotmp_0275��type.uint64�"".autotmp_0274��type.uint32�"".autotmp_0273�O.type."".ImportDirectory�"".autotmp_0272�¿0type.*"".ImportDirectory�"".autotmp_0271��type.int�"".autotmp_0270��type.int�"".autotmp_0269��type.uint64�"".autotmp_0268��type.uint64�"".autotmp_0267��type.int�"".autotmp_0266��type.int�"".autotmp_0265�¯2type.[]"".ImportDirectory�"".autotmp_0263��type.uint64�"".autotmp_0262��type.uint32�"".autotmp_0261��type.uint64�"".autotmp_0260��type.[]uint8�"".autotmp_0259��type.uint32�"".autotmp_0258��type.uint64�"".autotmp_0257��type.[]uint8�"".autotmp_0254�ÿtype.[]uint8�"".autotmp_0253��type.[]string�"".autotmp_0251��type.uint64�"".autotmp_0250��type.int�"".autotmp_0249��2type.[]"".ImportDirectory�"".autotmp_0248�Ï2type.[]"".ImportDirectory�"".autotmp_0247�ßtype.int�(encoding/binary.b·2�¿type.[]uint8�(encoding/binary.b·2�type.[]uint8�(encoding/binary.b·2�Ÿtype.[]uint8�(encoding/binary.b·2�ïtype.[]uint8�
"".fn�¯type.string�
"".va�§type.uint32�
"".fn�type.string�
"".va�Ÿtype.uint64�
"".dt�Ÿ.type."".ImportDirectory� "".all�Ÿtype.[]string�"".names�¯type.[]uint8�
"".dt�ï.type."".ImportDirectory� "".ida�ÿ2type.[]"".ImportDirectory� "".err�ïtype.error�"".d�Ïtype.[]uint8�
"".ds�Ï type.*"".Section�"".pe64�©type.bool� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�8,° ü¯ ° •¯ ° ʯ ° ö�€$�ŒŠ;xw<-$<nmG4fe$ÙççR
5$žl5x R$FU-bøÍB `ø/?˜
???�˜�GÕ€fdõrõr̯M¡Ê7˜H7:"dÚ–H7:³NpÛ�Tgclocals·b6ebb091d9748cc2155bacf8fec256c5�Tgclocals·cb08d3504a60f561d83b2f6e39930fae���4c:/go/src/debug/pe/file.goþ8"".(*File).ImportedLibraries��à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����HÇD$(����HÇD$0����HÇD$8����è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���º��(runtime.racefuncexit���`�� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�!D �p� Ž!O��*2�Tgclocals·d1e24ea75b35c9f098e445fa461ae5af�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ"".init��à��àeH‹ %(���H‹‰����H„$ˆþÿÿH;Awè����ëÛHìø��H‹œ$ø��H‰$è����H����H‰$è����¶����€û�t0H����H‰$è����¶����€ûu è����HÄø��Ãè���� H����H‰$è����Æ����è����è����è����è����è����è����H|$(1Àè����H����H‰$H\$(H‰\$è����H\$H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$ H����H‰$è����H‹\$ f‰����H¼$��1Àè����H����H‰$Hœ$��H‰\$è����H\$H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$ H����H‰$è����H‹\$ f‰����H����H‰$è����Æ����è����HÄø��ÃL������>��0runtime.morestack_noctxt���r��*runtime.racefuncenter���€��"".initdone·���’�� runtime.raceread��� ��"".initdone·���¸��"".initdone·���Ê�� runtime.raceread���Ø��"".initdone·���ì��(runtime.racefuncexit���†��"runtime.throwinit���˜��"".initdone·���ª��"runtime.racewrite���¶�"".initdone·���Â��strconv.init���Ì��os.init���Ö��io.init���à��fmt.init���ê��(encoding/binary.init���ô�� debug/dwarf.init���Œ� runtime.duffzero���š��0type."".OptionalHeader32���À��runtime.convT2E���ð��(encoding/binary.Size���’��2"".sizeofOptionalHeader32���¤��"runtime.racewrite���¼��2"".sizeofOptionalHeader32���Úˆ� runtime.duffzero���è��0type."".OptionalHeader64���”��runtime.convT2E���Ä��(encoding/binary.Size���æ��2"".sizeofOptionalHeader64���ø��"runtime.racewrite�����2"".sizeofOptionalHeader64���ž��"".initdone·���°��"runtime.racewrite���¼�"".initdone·���È��(runtime.racefuncexit����ð��"".autotmp_0338��type.int�"".autotmp_0337�ß0type."".OptionalHeader64�"".autotmp_0336�¯type.int�"".autotmp_0335�Ÿ0type."".OptionalHeader32� ,ðUïð­ï�¾Î$�Ž¾ dj
$� �8ø�Tgclocals·3280bececceccd33cb74587feedb1f9f�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/debug/pe/pe.go4c:/go/src/debug/pe/file.goþ6type..hash."".SectionHeader�€��èeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tlHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$HÇD$ ���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����ë‹ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��runtime.strhash���Š��runtime.memhash���²��(runtime.racefuncexit���@@��
"".autotmp_0340��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��,type.*"".SectionHeader�!@€?@�À�À��*n(�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ2type..eq."".SectionHeader�€��âeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹\$PH‰$è����H‹\$PHƒû�„^��H‹+H‰l$8H‹kH‰l$@H‹\$XH‰$è����H‹T$@H‹\$XHƒû�„$��H‹ H‰L$(H‹CH‰D$0H9Â…û���H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�„Ð���H‹\$PH‰$Hƒ<$�„°���Hƒ$H‹\$XH‰\$Hƒ|$�„‰���HƒD$HÇD$ ���è����H‹\$PH‰$Hƒ<$�t\Hƒ$H‹\$XH‰\$Hƒ|$�t<HƒD$HÇD$ ���è����¶\$€û�uÆD$h�è����HƒÄHÃÆD$hè����HƒÄHÉ%����뻉%����뛉%����ékÿÿÿ‰%����éDÿÿÿÆD$h�è����HƒÄHÉéÕþÿÿ‰é›þÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Î�� runtime.raceread���ä�� runtime.eqstring���†�� runtime.memequal���ü�� runtime.memequal���¤��(runtime.racefuncexit���Â��(runtime.racefuncexit���´��(runtime.racefuncexit���@�� "".autotmp_0343�?type.string�"".autotmp_0342�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�,type.*"".SectionHeader�"".p��,type.*"".SectionHeader�2!¹8�À�À��*<K o�Tgclocals·2bd0058e25364e522f9f24a53d6b8231�Tgclocals·a8cc63930a774e5693faf789d6200da1���4c:/go/src/debug/pe/file.goþ*type..hash."".Section�€��ìeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„§���HÇD$0���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�tqHƒ$0HÇD$���H‰D$8H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$@HÇD$���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����놉%����éMÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���®��6type..hash."".SectionHeader���’��"runtime.interhash���ö��runtime.memhash���ž��(runtime.racefuncexit���@@�� "".autotmp_0346��type.uintptr�"".autotmp_0345��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p�� type.*"".Section�!@¶?@(�€�€��*¤2�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ&type..eq."".Section�À��ÀeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹L$PHƒù�„[��H‹\$XHƒû�„E��H‰ $H‰\$HÇD$0���è����¶\$€û�uÆD$h�è����HƒÄHÃH‹\$XH‰$Hƒ$0è����H‹\$XHƒû�„ì���H‹k0H‰l$8H‹k8H‰l$@H‹\$PH‰$Hƒ$0è����H‹T$8H‹\$PHƒû�„¬���H‹C0H‹K8H‰L$0H‰D$(H9Ð…‚���H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�t[H‹\$PH‰$Hƒ$@è����H‹\$XH‰$Hƒ$@è����H‹l$PH‹]@L‹D$XI‹h@H9ëtÆD$h�è����HƒÄHÃÆD$hè����HƒÄHÃÆD$h�è����HƒÄHÉéMÿÿÿ‰é ÿÿÿ‰é´þÿÿ‰éžþÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���À��2type..eq."".SectionHeader���è��(runtime.racefuncexit���˜�� runtime.raceread���€�� runtime.raceread���˜��runtime.ifaceeq���Ò�� runtime.raceread���ø�� runtime.raceread���º��(runtime.racefuncexit���Ø��(runtime.racefuncexit���ö��(runtime.racefuncexit���@�� "".autotmp_0350�? type.io.ReaderAt�"".autotmp_0349� type.io.ReaderAt� "".~r3�0type.bool�"".s� type.uintptr�"".q� type.*"".Section�"".p�� type.*"".Section�>![è� � ��*I4LQD�Tgclocals·e73dda19a20e82d42018f024f527634b�Tgclocals·f574ca94451a75e85a1f721f8031a289���4c:/go/src/debug/pe/file.goþ("".(*Section).ReadAt� ��–eH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����HDŽ$˜�������HDŽ$ �������H‹\$hH‰$Hƒ$0è����H‹\$hHƒû�„…���H‹K0H‹k8H‹\$pH‰\$H‹\$xH‰\$H‹œ$€���H‰\$H‹œ$ˆ���H‰\$ H‰l$HH‰,$H‰L$@H‹Y ÿÓH‹D$(H‹T$0H‹L$8H‰„$���H‰T$PH‰”$˜���H‰L$XH‰Œ$ ���è����HƒÄ`Éétÿÿÿ ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ø�� runtime.raceread���Ž�
������ö��(runtime.racefuncexit���€À�� "".autotmp_0352�type.error� io.err�`type.error�io.n�Ptype.int� io.off�@type.int64�io.p�type.[]uint8�""..this�� type.*"".Section�!Àâ¿À ����@º�Tgclocals·feb307aa180126d792a75f5d0f61f654�Tgclocals·7ffb78b700595f24597d5e62e49bba43���<autogenerated>þ""".Section.ReadAt�à��àeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����HDŽ$Ø�������HDŽ$à�������H‹Œ$˜���H‹„$ ���H‹œ$°���H‰\$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$ H‰D$HH‰$H‰L$@H‹Y ÿÓH‹D$(H‹T$0H‹L$8H‰„$Ð���H‰T$PH‰”$Ø���H‰L$XH‰Œ$à���è����HƒÄ`Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���æ�
������Î��(runtime.racefuncexit���€À�� "".autotmp_0355�type.error� io.err�àtype.error�io.n�Ðtype.int� io.off�Àtype.int64�io.p�type.[]uint8�""..this��type."".Section�!Àο�ð�ð��@¦
�Tgclocals·ec51573ad8e24f34c160984516c68d55�Tgclocals·7ffb78b700595f24597d5e62e49bba43���<autogenerated>þ2type..hash."".FormatError�€��ìeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„§���HÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�tqHƒ$HÇD$���H‰D$8H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$HÇD$���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����놉%����éMÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���®��runtime.memhash���’��runtime.strhash���ö��(runtime.nilinterhash���ž��(runtime.racefuncexit���@@�� "".autotmp_0359��type.uintptr�"".autotmp_0358��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��(type.*"".FormatError�!@¶?@(�€�€��*¤2�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ.type..eq."".FormatError�€��äeH‹ %(���H‹‰����H;awè����ëãHƒìhH‹\$hH‰$è����H‹\$pH‰$è����H‹\$xH‰$è����H‹D$pH‹L‹D$xI‹(H9ëtƄ$ˆ����è����HƒÄhÃH‰$Hƒ$è����H‹\$pHƒû�„\��H‹kH‰l$XH‹kH‰l$`H‹\$xH‰$Hƒ$è����H‹T$`H‹\$xHƒû�„��H‹KH‰L$HH‹CH‰D$PH9Â…ï���H‹l$XH‰,$H‰T$H‰L$H‰D$è����¶\$ €û�„Ä���H‹\$xH‰$Hƒ$è����H‹\$xHƒû�„›���H‹kH‰l$8H‹k H‰l$@H‹\$pH‰$Hƒ$è����H‹T$8H‹\$pHƒû�tbH‹CH‹K H‰L$0H‰D$(H9Ðu9H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�tƄ$ˆ���è����HƒÄhÃƄ$ˆ����è����HƒÄhÉ뚉é^ÿÿÿƄ$ˆ����è����HƒÄhÉéÝþÿÿ‰éþÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Ž�� runtime.raceread���Ò��(runtime.racefuncexit���ø�� runtime.raceread���à�� runtime.raceread���ø�� runtime.eqstring���º�� runtime.raceread���¢�� runtime.raceread���ª��runtime.efaceeq���Ø��(runtime.racefuncexit���ü��(runtime.racefuncexit���¶��(runtime.racefuncexit���@Ð��"".autotmp_0363�"type.interface {}�"".autotmp_0362�_"type.interface {}�"".autotmp_0361�?type.string�"".autotmp_0360�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�(type.*"".FormatError�"".p��(type.*"".FormatError�>!ÐPÏÐÂÏÐÏÐÏÐ�€�€�&�*>4LUDU�Tgclocals·a8ecdea11584705cb197413488592c94�Tgclocals·b9f7001b2686320c7199d8ea83199c41���4c:/go/src/debug/pe/file.goþ4type..hash.[1]interface {}� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹\$0H‰$è����H‹T$H1ÀHÇD$ ���H‹l$ H9è}eH‰D$(H‰ÅH‰ÐHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$8Hƒû�tNHkíHëH‰$HÇD$���H‰D$HH‰D$è����H‹T$H‹D$(HÿÀH‹l$ H9è|›H‰T$HH‰T$Pè����HƒÄ0Éë®
������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��(runtime.nilinterhash���ò��(runtime.racefuncexit���@`�� "".autotmp_0366�type.int�"".autotmp_0365�type.int� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��*type.*[1]interface {}�!` _`�Ð�Ð��*Ž�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ0type..eq.[1]interface {}�À��¬eH‹ %(���H‹‰����H;awè����ëãHƒì`H‹\$`H‰$è����1ÀHÇD$0���H‹l$0H9èÜ���H‰D$8H‹\$pH‰ÅH‰D$(HkíHëH‰$è����H‹D$(H‹\$pHƒû�„Ñ���H‰ÅHkíHëH‹+H‰l$PH‹kH‰l$XH‹\$hH‰ÅHkíHëH‰$è����H‹T$PH‹\$hHƒû�„ƒ���H‹l$(HkíHëH‹H‹KH‰L$HH‰D$@H9ÐuOH‰$H‰L$H‰T$H‹l$XH‰l$è����¶\$ €û�t(H‹D$8HÿÀH‹l$0H9èŒ$ÿÿÿƄ$€���è����HƒÄ`ÃƄ$€����è����HƒÄ`Éévÿÿÿ‰é(ÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Ì�� runtime.raceread���Ú�� runtime.raceread���€��runtime.efaceeq���Ú��(runtime.racefuncexit���þ��(runtime.racefuncexit���@À��"".autotmp_0370�?"type.interface {}�"".autotmp_0369�"type.interface {}�"".autotmp_0368�_type.int�"".autotmp_0367�Otype.int�"".i�otype.int� "".~r3�0type.bool�"".s� type.uintptr�"".q�*type.*[1]interface {}�"".p��*type.*[1]interface {}�&!À”¿À¿À�à�à��*‚S-4�Tgclocals·2bd0058e25364e522f9f24a53d6b8231�Tgclocals·13e5989dfabb82780030343bf65bff4b���4c:/go/src/debug/pe/file.goþ(type..hash."".Symbol�€��èeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tlHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$HÇD$ ���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����ë‹ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��runtime.strhash���Š��runtime.memhash���²��(runtime.racefuncexit���@@��
"".autotmp_0372��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*"".Symbol�!@€?@�À�À��*n(�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ$type..eq."".Symbol�€��âeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹\$PH‰$è����H‹\$PHƒû�„^��H‹+H‰l$8H‹kH‰l$@H‹\$XH‰$è����H‹T$@H‹\$XHƒû�„$��H‹ H‰L$(H‹CH‰D$0H9Â…û���H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�„Ð���H‹\$PH‰$Hƒ<$�„°���Hƒ$H‹\$XH‰\$Hƒ|$�„‰���HƒD$HÇD$ ���è����H‹\$PH‰$Hƒ<$�t\Hƒ$H‹\$XH‰\$Hƒ|$�t<HƒD$HÇD$ ���è����¶\$€û�uÆD$h�è����HƒÄHÃÆD$hè����HƒÄHÉ%����뻉%����뛉%����ékÿÿÿ‰%����éDÿÿÿÆD$h�è����HƒÄHÉéÕþÿÿ‰é›þÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Î�� runtime.raceread���ä�� runtime.eqstring���†�� runtime.memequal���ü�� runtime.memequal���¤��(runtime.racefuncexit���Â��(runtime.racefuncexit���´��(runtime.racefuncexit���@�� "".autotmp_0375�?type.string�"".autotmp_0374�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*"".Symbol�"".p��type.*"".Symbol�2!¹8�À�À��*<K o�Tgclocals·2bd0058e25364e522f9f24a53d6b8231�Tgclocals·a8cc63930a774e5693faf789d6200da1���4c:/go/src/debug/pe/file.goþ0type..hash."".COFFSymbol�€��òeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�t1HÇD$���H‹\$8H‰\$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÆ
������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��runtime.memhash���Î��(runtime.racefuncexit���@@�� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��&type.*"".COFFSymbol�!@N?@�€�€��*<�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ,type..eq."".COFFSymbol�à��ÊeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„–���H‹\$0H‰\$Hƒ|$�txHÇD$���è����H‹\$(H‰$Hƒ<$�tQH‹\$0H‰\$Hƒ|$�t6HÇD$���è����¶\$€û�uÆD$@�è����HƒÄ ÃÆD$@è����HƒÄ É%����ëÁ‰%����릉%����é|ÿÿÿ‰%����é^ÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾�� runtime.memequal���ž�� runtime.memequal���Æ��(runtime.racefuncexit���ä��(runtime.racefuncexit���@@�� "".~r3�0type.bool�"".s� type.uintptr�"".q�&type.*"".COFFSymbol�"".p��&type.*"".COFFSymbol�!@Š?@?@5�ð�ð��*xN�Tgclocals·eaf31f95896361dc5cdd0293aac48f97�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ(type..hash.[3]string� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹\$0H‰$è����H‹T$H1ÀHÇD$ ���H‹l$ H9è}eH‰D$(H‰ÅH‰ÐHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$8Hƒû�tNHkíHëH‰$HÇD$���H‰D$HH‰D$è����H‹T$H‹D$(HÿÀH‹l$ H9è|›H‰T$HH‰T$Pè����HƒÄ0Éë®
������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��runtime.strhash���ò��(runtime.racefuncexit���@`�� "".autotmp_0380�type.int�"".autotmp_0379�type.int� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*[3]string�!` _`�Ð�Ð��*Ž�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ$type..eq.[3]string�À��¬eH‹ %(���H‹‰����H;awè����ëãHƒì`H‹\$`H‰$è����1ÀHÇD$0���H‹l$0H9èÜ���H‰D$8H‹\$hH‰ÅH‰D$(HkíHëH‰$è����H‹D$(H‹\$hHƒû�„Ñ���H‰ÅHkíHëH‹+H‰l$PH‹kH‰l$XH‹\$pH‰ÅHkíHëH‰$è����H‹T$XH‹\$pHƒû�„ƒ���H‹l$(HkíHëH‹ H‰L$@H‹CH‰D$HH9ÂuOH‹l$PH‰,$H‰T$H‰L$H‰D$è����¶\$ €û�t(H‹D$8HÿÀH‹l$0H9èŒ$ÿÿÿƄ$€���è����HƒÄ`ÃƄ$€����è����HƒÄ`Éévÿÿÿ‰é(ÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Ì�� runtime.raceread���Ú�� runtime.raceread���€�� runtime.eqstring���Ú��(runtime.racefuncexit���þ��(runtime.racefuncexit���@À��"".autotmp_0384�?type.string�"".autotmp_0383�type.string�"".autotmp_0382�_type.int�"".autotmp_0381�Otype.int�"".i�otype.int� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*[3]string�"".p��type.*[3]string�&!À”¿À¿À�à�à��*‚S-4�Tgclocals·2bd0058e25364e522f9f24a53d6b8231�Tgclocals·a8cc63930a774e5693faf789d6200da1���4c:/go/src/debug/pe/file.goþ:type..hash."".ImportDirectory�€��èeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tlHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$HÇD$���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����ë‹ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��runtime.memhash���Š��runtime.strhash���²��(runtime.racefuncexit���@@��
"".autotmp_0386��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��0type.*"".ImportDirectory�!@€?@�À�À��*n(�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���4c:/go/src/debug/pe/file.goþ6type..eq."".ImportDirectory�à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹\$PH‰$Hƒ<$�„W��H‹\$XH‰\$Hƒ|$�„5��HÇD$���è����H‹\$PH‰$Hƒ<$�„��H‹\$XH‰\$Hƒ|$�„å���HÇD$���è����¶\$€û�uÆD$h�è����HƒÄHÃH‹\$PH‰$Hƒ$è����H‹\$PHƒû�„•���H‹kH‰l$8H‹k H‰l$@H‹\$XH‰$Hƒ$è����H‹T$@H‹\$XHƒû�t\H‹KH‰L$(H‹C H‰D$0H9Âu6H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�tÆD$hè����HƒÄHÃÆD$h�è����HƒÄHÉ렉édÿÿÿ‰%����éÿÿÿ‰%����éíþÿÿ‰%����é¿þÿÿ‰%����éþÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Æ�� runtime.memequal���¶�� runtime.memequal���Þ��(runtime.racefuncexit���Ž�� runtime.raceread���ö�� runtime.raceread���þ�� runtime.eqstring���¦��(runtime.racefuncexit���Ä��(runtime.racefuncexit���@�� "".autotmp_0389�?type.string�"".autotmp_0388�type.string� "".~r3�0type.bool�"".s� type.uintptr�"".q�0type.*"".ImportDirectory�"".p��0type.*"".ImportDirectory�4!–£E�°�°� �*„4D^�Tgclocals·e73dda19a20e82d42018f024f527634b�Tgclocals·1714908d3c053eb26b467f507247f79e���4c:/go/src/debug/pe/file.goþTgclocals·4906dd4f210de81fd5ffb35f58945cd9�0��0��� ����������€��������þTgclocals·24770bb64c93afcae20133abf3ea5170�0��0��� ������������
���þ,Jgo.itab.*io.SectionReader.io.ReaderAt�����þ,Ngo.itab.*io.SectionReader.io.ReadSeeker�����þTgclocals·9fa9a70684bf846a37fff808ced129a3�@��@��� ����������°���²�����������þTgclocals·f649fcb844bc33ac28e2f953fda53555�@��@���������������������.����þ"go.string." '%v'"�0��,��������������� '%v'�� �"go.string." '%v'"���þDgo.string." in record at byte %#x"�P��N��������������� in record at byte %#x�� �Dgo.string." in record at byte %#x"���þTgclocals·501e35067a14be53462462d4e30905dd�H��H��������������ð"��ð��ð��ðð"������þTgclocals·829d3494b827d5afc92bc9be3463e137�H��H������������������������
����þ,8go.itab.*os.File.io.ReaderAt�����þ,4go.itab.*os.File.io.Closer�����þTgclocals·0cb920cc0946ca877b0e0af2a773d794�P��P��������������ˆ������� ��‚���¢�������þTgclocals·2391ae81d7bb206c103a4e3f02f0e74d�P��P���
������â���������������������þTgclocals·eaaaa12749ce473c9dc26fe30d45da50�(��(���������� ��������þTgclocals·7f720595ca0b8b6a95aaac2f38eb7b52�(��(������������.����þ,Bgo.itab.*errors.errorString.error�����þ,Fgo.itab.*io.SectionReader.io.Reader�����þ,|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder�����þFgo.string."Invalid PE File Format."�P��P���������������Invalid PE File Format.�� �Fgo.string."Invalid PE File Format."���þzgo.string."pe32 optional header has unexpected Magic of 0x%x"���„��������1�������pe32 optional header has unexpected Magic of 0x%x�� �zgo.string."pe32 optional header has unexpected Magic of 0x%x"���þ|go.string."pe32+ optional header has unexpected Magic of 0x%x"���†��������2�������pe32+ optional header has unexpected Magic of 0x%x�� �|go.string."pe32+ optional header has unexpected Magic of 0x%x"���þTgclocals·8c6675ea44d7852764c53d83294c8fdf�ø��ø;���È�������������������������������������� ��������������������€����� ��������������������€������������������������������������������������������€�����������������������������������������������������������������������������€���������������������������������������������������� �������������������������� �������������������������€� �����������������������ˆ� ������������������������������ ���������������������� ���� ����������������������������������� ������������� ����������������������€� ����������������������ˆ� ����������������������(€������������� ����������(ˆ������������� ����������(��������������� ����������(��������������� ���������(�������������� ����������(������������� ����������(�������������� ����������ˆ��������������� ����������ˆ��������������� ������������������������ ������������������������ ���������€� ������������ ����������ˆ� ������������ ������������������������ �������������
����������� ����������€€������������ ����������ˆ€������������ ��������������������������ð��� ����������������������ð��� �����������������������ð���������������������������ð������������€������������� ������������������������ ����������€ ������������ ����������ˆ ������������ ����������� ������������� ������������������������� ����€�����(€������������� ����������(ˆ������������� ����������(��������������� ����������(������� ������� ����������(
��������������� ����� U���
��������������� ����� U���
��������������� ����������
������°�������� ����������
€�����°�������� ����������
€�������������� ����������
��������������� ����������
�������������� �����������þTgclocals·c5f079982a801968bf24737fc70a429f�è��è;���
��� ��� ��� ��� ��� ��� ���ë�� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ���ë�� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ����þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·63a775e8a5255c196a529acc20d379e8� �� ���
������‚����þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·b63f50f2c32f23ba935b8e8f4c9c0b3c� �� ������B���B���þTgclocals·5d953a8bfd94037a0a347002163fd548�0��0�������������
��������þTgclocals·bafc1330d2b39b016f5ca9443e509e8e�0��0������
���
���
���Š����þ$go.string."abbrev"�0��.���������������abbrev�� �$go.string."abbrev"���þ go.string."info"�0��*���������������info�� � go.string."info"���þgo.string."str"�0��(���������������str�� �go.string."str"���þ&go.string.".debug_"�0��0���������������.debug_�� �&go.string.".debug_"���þTgclocals·586456dd1979ff0e26b90a29f7b0e7ae��� ���b��������������������������"�������������"""‚ ����
������"""‚ ����
����"""‚ �����������"""‚ �����������"""‚ ���������"""‚ �����������"�‚ ��������� �"�‚ ��������€ �"�‚ �����������"�‚ �����þTgclocals·b2c798978b1a9b8f40a4ebb475ffe473�p��p ���������������������º������������������º����þ$go.string.".idata"�0��.���������������.idata�� �$go.string.".idata"���þgo.string.":"�0��$���������������:�� �go.string.":"���þTgclocals·cb08d3504a60f561d83b2f6e39930fae�Ð��Ð���z������������������������������P ��������������P �������������P �����������P ����� �����P �����‚������P ����������P ������������P ��������� ��P ������������P ���
� �������€P ���
� �������€PI%��
� ������€PI%��
�"�������PI%��
�"���€���PI%��
� ���€���PI%��
� �����€PI%���þTgclocals·b6ebb091d9748cc2155bacf8fec256c5� �� ��� ���������
������������������������������������������������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·d1e24ea75b35c9f098e445fa461ae5af� �� ��� ������
���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þ,2"".sizeofOptionalHeader32��type.uint16���þ,2"".sizeofOptionalHeader64��type.uint16���þ""".statictmp_0132��`*type."".SectionHeader���þ,"".initdone·��type.uint8���þ*"".(*Section).Data·f��������������$"".(*Section).Data���þ0runtime.racefuncenter·f��������������*runtime.racefuncenter���þ&runtime.raceread·f�������������� runtime.raceread���þ(runtime.makeslice·f��������������"runtime.makeslice���þ:io.(*SectionReader).ReadAt·f��������������4io.(*SectionReader).ReadAt���þ*runtime.panicslice·f��������������$runtime.panicslice���þ.runtime.racefuncexit·f��������������(runtime.racefuncexit���þ,runtime.throwreturn·f��������������&runtime.throwreturn���þ*"".(*Section).Open·f��������������$"".(*Section).Open���þ&runtime.typ2Itab·f�������������� runtime.typ2Itab���þ(runtime.newobject·f��������������"runtime.newobject���þ(runtime.racewrite·f��������������"runtime.racewrite���þ8runtime.writebarrieriface·f��������������2runtime.writebarrieriface���þ4"".(*FormatError).Error·f��������������."".(*FormatError).Error���þfmt.Sprintf·f��������������fmt.Sprintf���þ0runtime.concatstring2·f��������������*runtime.concatstring2���þ$runtime.convT2E·f��������������runtime.convT2E���þ"".Open·f��������������"".Open���þos.Open·f��������������os.Open���þ"".NewFile·f��������������"".NewFile���þ&os.(*File).Close·f�������������� os.(*File).Close���þ&"".(*File).Close·f�������������� "".(*File).Close���þ2runtime.racewriterange·f��������������,runtime.racewriterange���þ0runtime.racereadrange·f��������������*runtime.racereadrange���þ*runtime.panicindex·f��������������$runtime.panicindex���þ:runtime.writebarrierstring·f��������������4runtime.writebarrierstring���þ6io.(*SectionReader).Seek·f��������������0io.(*SectionReader).Seek���þ$runtime.convT2I·f��������������runtime.convT2I���þ.encoding/binary.Read·f��������������(encoding/binary.Read���þ"".getString·f��������������"".getString���þ"".cstring·f��������������"".cstring���þ(runtime.growslice·f��������������"runtime.growslice���þ4runtime.writebarrierptr·f��������������.runtime.writebarrierptr���þ8runtime.writebarrierslice·f��������������2runtime.writebarrierslice���þfmt.Errorf·f��������������fmt.Errorf���þstrconv.Atoi·f��������������strconv.Atoi���þ4runtime.writebarrierfat·f��������������.runtime.writebarrierfat���þ8runtime.slicebytetostring·f��������������2runtime.slicebytetostring���þ*"".(*File).Section·f��������������$"".(*File).Section���þ&runtime.eqstring·f�������������� runtime.eqstring���þ&"".(*File).DWARF·f�������������� "".(*File).DWARF���þ$debug/dwarf.New·f��������������debug/dwarf.New���þ:"".(*File).ImportedSymbols·f��������������4"".(*File).ImportedSymbols���þLencoding/binary.littleEndian.Uint64·f��������������Fencoding/binary.littleEndian.Uint64���þ0runtime.concatstring3·f��������������*runtime.concatstring3���þ>"".(*File).ImportedLibraries·f��������������8"".(*File).ImportedLibraries���þ"".init·f��������������"".init���þ(runtime.throwinit·f��������������"runtime.throwinit���þstrconv.init·f��������������strconv.init���þos.init·f��������������os.init���þio.init·f��������������io.init���þfmt.init·f��������������fmt.init���þ.encoding/binary.init·f��������������(encoding/binary.init���þ&debug/dwarf.init·f�������������� debug/dwarf.init���þ.encoding/binary.Size·f��������������(encoding/binary.Size���þbruntime.gcbits.0x48844400000000000000000000000000� �� H„D��������������þ&go.string."[]uint8"�0��0���������������[]uint8�� �&go.string."[]uint8"���þtype.[]uint8� �� �������ß~.8�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��&go.string."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8/[]uint8��������������type.[]uint8���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·a8cc63930a774e5693faf789d6200da1�(��(���������� ��������þTgclocals·2bd0058e25364e522f9f24a53d6b8231�(��(������������Z����þ>type..hashfunc."".SectionHeader��������������6type..hash."".SectionHeader���þ:type..eqfunc."".SectionHeader��������������2type..eq."".SectionHeader���þ4type..alg."".SectionHeader� �� �������������������>type..hashfunc."".SectionHeader�����:type..eqfunc."".SectionHeader���þbruntime.gcbits.0x88000000000000000000000000000000� �� ˆ����������������þ:go.string."*pe.SectionHeader"�P��D���������������*pe.SectionHeader�� �:go.string."*pe.SectionHeader"���þ,type.*"".SectionHeader�� �� �������æü8j�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��:go.string."*pe.SectionHeader"���p��>go.weak.type.**"".SectionHeader���€��"runtime.zerovalue�����*type."".SectionHeader���þbruntime.gcbits.0x48444400000000000000000000000000� �� HDD��������������þ8go.string."pe.SectionHeader"�P��B���������������pe.SectionHeader�� �8go.string."pe.SectionHeader"���þ go.string."Name"�0��*���������������Name�� � go.string."Name"���þ.go.string."VirtualSize"�@��8�������� �������VirtualSize�� �.go.string."VirtualSize"���þ4go.string."VirtualAddress"�@��>���������������VirtualAddress�� �4go.string."VirtualAddress"���þ go.string."Size"�0��*���������������Size�� � go.string."Size"���þ$go.string."Offset"�0��.���������������Offset�� �$go.string."Offset"���þ@go.string."PointerToRelocations"�P��J���������������PointerToRelocations�� �@go.string."PointerToRelocations"���þ@go.string."PointerToLineNumbers"�P��J���������������PointerToLineNumbers�� �@go.string."PointerToLineNumbers"���þ>go.string."NumberOfRelocations"�P��H���������������NumberOfRelocations�� �>go.string."NumberOfRelocations"���þ>go.string."NumberOfLineNumbers"�P��H���������������NumberOfLineNumbers�� �>go.string."NumberOfLineNumbers"���þ6go.string."Characteristics"�@��@���������������Characteristics�� �6go.string."Characteristics"���þ2go.string."SectionHeader"�@��<�������� �������SectionHeader�� �2go.string."SectionHeader"���þ*type."".SectionHeader��°��°0�������­iÌü�����������������������������������������������������������������
�������
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,�����������������������������������������������< ��4type..alg."".SectionHeader���0��bruntime.gcbits.0x48444400000000000000000000000000���P��8go.string."pe.SectionHeader"���p��,type.*"".SectionHeader���€��"runtime.zerovalue���À�*type."".SectionHeader���À�� go.string."Name"���à��type.string�����.go.string."VirtualSize"���°��type.uint32���à��4go.string."VirtualAddress"���€��type.uint32���°�� go.string."Size"���Ð��type.uint32���€��$go.string."Offset"��� ��type.uint32���Ð��@go.string."PointerToRelocations"���ð��type.uint32��� ��@go.string."PointerToLineNumbers"���À��type.uint32���ð��>go.string."NumberOfRelocations"�����type.uint16���À��>go.string."NumberOfLineNumbers"���à��type.uint16�����6go.string."Characteristics"���°��type.uint32���`à�*type."".SectionHeader���à��2go.string."SectionHeader"���ð��"go.importpath."".���€°�*type."".SectionHeader���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·f574ca94451a75e85a1f721f8031a289�(��(��������������°����þTgclocals·e73dda19a20e82d42018f024f527634b�(��(���������Z�������þ2type..hashfunc."".Section��������������*type..hash."".Section���þ.type..eqfunc."".Section��������������&type..eq."".Section���þ(type..alg."".Section� �� �������������������2type..hashfunc."".Section�����.type..eqfunc."".Section���þbruntime.gcbits.0x4844448c884444c48800000000000000� �� HDDŒˆDDĈ��������þ,go.string."pe.Section"�@��6��������
�������pe.Section�� �,go.string."pe.Section"���þgo.string."sr"�0��&���������������sr�� �go.string."sr"���þTgclocals·7ffb78b700595f24597d5e62e49bba43� �� ���������������þTgclocals·feb307aa180126d792a75f5d0f61f654� �� ������
��
µ���þTgclocals·7ffb78b700595f24597d5e62e49bba43� �� ���������������þTgclocals·ec51573ad8e24f34c160984516c68d55� �� ��� ���Rµ
Rµ
µ�þrgo.string."func(pe.Section, []uint8, int64) (int, error)"�€��|��������-�������func(pe.Section, []uint8, int64) (int, error)�� �rgo.string."func(pe.Section, []uint8, int64) (int, error)"���þdtype.func("".Section, []uint8, int64) (int, error)�Ð��Ð�������÷ýpÊ�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."func(pe.Section, []uint8, int64) (int, error)"���p��vgo.weak.type.*func("".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�dtype.func("".Section, []uint8, int64) (int, error)���а�dtype.func("".Section, []uint8, int64) (int, error)���€��type."".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þ&go.string."Section"�0��0���������������Section�� �&go.string."Section"���þ$go.string."ReadAt"�0��.���������������ReadAt�� �$go.string."ReadAt"���þZgo.string."func([]uint8, int64) (int, error)"�p��d��������!�������func([]uint8, int64) (int, error)�� �Zgo.string."func([]uint8, int64) (int, error)"���þLtype.func([]uint8, int64) (int, error)�À��À�������ŠC¶,�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func([]uint8, int64) (int, error)"���p��^go.weak.type.*func([]uint8, int64) (int, error)���€��"runtime.zerovalue��� €�Ltype.func([]uint8, int64) (int, error)���Р�Ltype.func([]uint8, int64) (int, error)���€��type.[]uint8�����type.int64��� ��type.int���°��type.error���þtype."".Section��à��àH�������—B2d�������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������@���������������������������������������������������������������������������������������������( ��(type..alg."".Section���0��bruntime.gcbits.0x4844448c884444c48800000000000000���P��,go.string."pe.Section"���p�� type.*"".Section���€��"runtime.zerovalue���À�type."".Section���à��*type."".SectionHeader���°�� type.io.ReaderAt���à��go.string."sr"���ð��"go.importpath."".���€��,type.*io.SectionReader���`°�type."".Section���°��&go.string."Section"���À��"go.importpath."".���Ѐ�type."".Section���€��$go.string."ReadAt"��� ��Ltype.func([]uint8, int64) (int, error)���°��dtype.func("".Section, []uint8, int64) (int, error)���À��("".(*Section).ReadAt���Ð��""".Section.ReadAt���þ.go.string."*pe.Section"�@��8�������� �������*pe.Section�� �.go.string."*pe.Section"���þ\go.string."func(*pe.Section) ([]uint8, error)"�p��f��������"�������func(*pe.Section) ([]uint8, error)�� �\go.string."func(*pe.Section) ([]uint8, error)"���þNtype.func(*"".Section) ([]uint8, error)�°��°�������;•Ü=�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*pe.Section) ([]uint8, error)"���p��`go.weak.type.*func(*"".Section) ([]uint8, error)���€��"runtime.zerovalue��� €�Ntype.func(*"".Section) ([]uint8, error)���А�Ntype.func(*"".Section) ([]uint8, error)���€�� type.*"".Section�����type.[]uint8��� ��type.error���þVgo.string."func(*pe.Section) io.ReadSeeker"�`��`���������������func(*pe.Section) io.ReadSeeker�� �Vgo.string."func(*pe.Section) io.ReadSeeker"���þHtype.func(*"".Section) io.ReadSeeker� �� �������‰­NÆ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*pe.Section) io.ReadSeeker"���p��Zgo.weak.type.*func(*"".Section) io.ReadSeeker���€��"runtime.zerovalue��� €�Htype.func(*"".Section) io.ReadSeeker���А�Htype.func(*"".Section) io.ReadSeeker���€�� type.*"".Section�����$type.io.ReadSeeker���þtgo.string."func(*pe.Section, []uint8, int64) (int, error)"�€��~��������.�������func(*pe.Section, []uint8, int64) (int, error)�� �tgo.string."func(*pe.Section, []uint8, int64) (int, error)"���þftype.func(*"".Section, []uint8, int64) (int, error)�Ð��Ð�������ƒðVe�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."func(*pe.Section, []uint8, int64) (int, error)"���p��xgo.weak.type.*func(*"".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�ftype.func(*"".Section, []uint8, int64) (int, error)���а�ftype.func(*"".Section, []uint8, int64) (int, error)���€�� type.*"".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þ go.string."Data"�0��*���������������Data�� � go.string."Data"���þFgo.string."func() ([]uint8, error)"�P��P���������������func() ([]uint8, error)�� �Fgo.string."func() ([]uint8, error)"���þ8type.func() ([]uint8, error)� �� �������Ÿìx]�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."func() ([]uint8, error)"���p��Jgo.weak.type.*func() ([]uint8, error)���€��"runtime.zerovalue��� €�8type.func() ([]uint8, error)���Ѐ�8type.func() ([]uint8, error)���€��type.[]uint8�����type.error���þ go.string."Open"�0��*���������������Open�� � go.string."Open"���þ@go.string."func() io.ReadSeeker"�P��J���������������func() io.ReadSeeker�� �@go.string."func() io.ReadSeeker"���þ2type.func() io.ReadSeeker����������Ã&–�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."func() io.ReadSeeker"���p��Dgo.weak.type.*func() io.ReadSeeker���€��"runtime.zerovalue��� €�2type.func() io.ReadSeeker���Ѐ�2type.func() io.ReadSeeker���€��$type.io.ReadSeeker���þ type.*"".Section�����������T°é`�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*pe.Section"���p��2go.weak.type.**"".Section���€��"runtime.zerovalue�����type."".Section���` � type.*"".Section���Àð� type.*"".Section���ð�� go.string."Data"�����8type.func() ([]uint8, error)��� ��Ntype.func(*"".Section) ([]uint8, error)���°��$"".(*Section).Data���À��$"".(*Section).Data���Ð�� go.string."Open"���ð��2type.func() io.ReadSeeker���€��Htype.func(*"".Section) io.ReadSeeker�����$"".(*Section).Open��� ��$"".(*Section).Open���°��$go.string."ReadAt"���Ð��Ltype.func([]uint8, int64) (int, error)���à��ftype.func(*"".Section, []uint8, int64) (int, error)���ð��("".(*Section).ReadAt���€��("".(*Section).ReadAt���þbruntime.gcbits.0xcc000000000000000000000000000000� �� Ì����������������þ0go.string."interface {}"�@��:�������� �������interface {}�� �0go.string."interface {}"���þ"type.interface {}�À��À�������çW ��������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0xcc000000000000000000000000000000���P��0go.string."interface {}"���p��4go.weak.type.*interface {}���€��"runtime.zerovalue���À�"type.interface {}���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·b9f7001b2686320c7199d8ea83199c41�0��0��������������� ��ð����þTgclocals·a8ecdea11584705cb197413488592c94�0��0���������Z����������þ:type..hashfunc."".FormatError��������������2type..hash."".FormatError���þ6type..eqfunc."".FormatError��������������.type..eq."".FormatError���þ0type..alg."".FormatError� �� �������������������:type..hashfunc."".FormatError�����6type..eqfunc."".FormatError���þbruntime.gcbits.0x84c44c48cc0000000000000000000000� �� „ÄLHÌ������������þ4go.string."pe.FormatError"�@��>���������������pe.FormatError�� �4go.string."pe.FormatError"���þgo.string."off"�0��(���������������off�� �go.string."off"���þgo.string."msg"�0��(���������������msg�� �go.string."msg"���þgo.string."val"�0��(���������������val�� �go.string."val"���þ.go.string."FormatError"�@��8�������� �������FormatError�� �.go.string."FormatError"���þ&type."".FormatError��€��€(������� Œ^H���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������& ��0type..alg."".FormatError���0��bruntime.gcbits.0x84c44c48cc0000000000000000000000���P��4go.string."pe.FormatError"���p��(type.*"".FormatError���€��"runtime.zerovalue���À�&type."".FormatError���À��go.string."off"���Ð��"go.importpath."".���à��type.int64�����go.string."msg"��� ��"go.importpath."".���°��type.string���à��go.string."val"���ð��"go.importpath."".���€��"type.interface {}���`°�&type."".FormatError���°��.go.string."FormatError"���À��"go.importpath."".���Ѐ�&type."".FormatError���þ6go.string."*pe.FormatError"�@��@���������������*pe.FormatError�� �6go.string."*pe.FormatError"���þPgo.string."func(*pe.FormatError) string"�`��Z���������������func(*pe.FormatError) string�� �Pgo.string."func(*pe.FormatError) string"���þBtype.func(*"".FormatError) string� �� ������� ßZÜ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(*pe.FormatError) string"���p��Tgo.weak.type.*func(*"".FormatError) string���€��"runtime.zerovalue��� €�Btype.func(*"".FormatError) string���А�Btype.func(*"".FormatError) string���€��(type.*"".FormatError�����type.string���þ"go.string."Error"�0��,���������������Error�� �"go.string."Error"���þ2go.string."func() string"�@��<�������� �������func() string�� �2go.string."func() string"���þ$type.func() string����������¢mË�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þ(type.*"".FormatError��Ð��Ð������� ú„†�6������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��6go.string."*pe.FormatError"���p��:go.weak.type.**"".FormatError���€��"runtime.zerovalue�����&type."".FormatError���` �(type.*"".FormatError���Àð�(type.*"".FormatError���ð��"go.string."Error"�����$type.func() string��� ��Btype.func(*"".FormatError) string���°��."".(*FormatError).Error���À��."".(*FormatError).Error���þ4go.string."[]interface {}"�@��>���������������[]interface {}�� �4go.string."[]interface {}"���þ&type.[]interface {}� �� �������p“ê/�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��4go.string."[]interface {}"���p��8go.weak.type.*[]interface {}���€��"runtime.zerovalue�����"type.interface {}���þRgo.typelink.[]interface {}/[]interface {}��������������&type.[]interface {}���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·13e5989dfabb82780030343bf65bff4b�(��(����������ð��������þTgclocals·2bd0058e25364e522f9f24a53d6b8231�(��(������������Z����þ<type..hashfunc.[1]interface {}��������������4type..hash.[1]interface {}���þ8type..eqfunc.[1]interface {}��������������0type..eq.[1]interface {}���þ2type..alg.[1]interface {}� �� �������������������<type..hashfunc.[1]interface {}�����8type..eqfunc.[1]interface {}���þ6go.string."[1]interface {}"�@��@���������������[1]interface {}�� �6go.string."[1]interface {}"���þ(type.[1]interface {}�À��À�������P‘[ú�������������������������������������������������������������������������������� ��2type..alg.[1]interface {}���0��bruntime.gcbits.0xcc000000000000000000000000000000���P��6go.string."[1]interface {}"���p��:go.weak.type.*[1]interface {}���€��"runtime.zerovalue�����"type.interface {}��� ��&type.[]interface {}���þVgo.typelink.[1]interface {}/[1]interface {}��������������(type.[1]interface {}���þ8go.string."*[1]interface {}"�P��B���������������*[1]interface {}�� �8go.string."*[1]interface {}"���þ*type.*[1]interface {}� �� �������¿¨5�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��8go.string."*[1]interface {}"���p��<go.weak.type.**[1]interface {}���€��"runtime.zerovalue�����(type.[1]interface {}���þ4go.string."*pe.FileHeader"�@��>���������������*pe.FileHeader�� �4go.string."*pe.FileHeader"���þ&type.*"".FileHeader�� �� �������56 °�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*pe.FileHeader"���p��8go.weak.type.**"".FileHeader���€��"runtime.zerovalue�����$type."".FileHeader���þ^runtime.gcbits.0x000000000000000000000000000000� �� �����������������þ2go.string."pe.FileHeader"�@��<�������� �������pe.FileHeader�� �2go.string."pe.FileHeader"���þ&go.string."Machine"�0��0���������������Machine�� �&go.string."Machine"���þ8go.string."NumberOfSections"�P��B���������������NumberOfSections�� �8go.string."NumberOfSections"���þ2go.string."TimeDateStamp"�@��<�������� �������TimeDateStamp�� �2go.string."TimeDateStamp"���þ@go.string."PointerToSymbolTable"�P��J���������������PointerToSymbolTable�� �@go.string."PointerToSymbolTable"���þ6go.string."NumberOfSymbols"�@��@���������������NumberOfSymbols�� �6go.string."NumberOfSymbols"���þ@go.string."SizeOfOptionalHeader"�P��J���������������SizeOfOptionalHeader�� �@go.string."SizeOfOptionalHeader"���þ,go.string."FileHeader"�@��6��������
�������FileHeader�� �,go.string."FileHeader"���þ$type."".FileHeader��À��À�������5|~†�™��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������0 �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��2go.string."pe.FileHeader"���p��&type.*"".FileHeader���€��"runtime.zerovalue���À�$type."".FileHeader���À��&go.string."Machine"���à��type.uint16�����8go.string."NumberOfSections"���°��type.uint16���à��2go.string."TimeDateStamp"���€��type.uint32���°��@go.string."PointerToSymbolTable"���Ð��type.uint32���€��6go.string."NumberOfSymbols"��� ��type.uint32���Ð��@go.string."SizeOfOptionalHeader"���ð��type.uint16��� ��6go.string."Characteristics"���À��type.uint16���`ð�$type."".FileHeader���ð��,go.string."FileHeader"���€��"go.importpath."".���À�$type."".FileHeader���þ2go.string."[]*pe.Section"�@��<�������� �������[]*pe.Section�� �2go.string."[]*pe.Section"���þ$type.[]*"".Section� �� �������#�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��2go.string."[]*pe.Section"���p��6go.weak.type.*[]*"".Section���€��"runtime.zerovalue����� type.*"".Section���þNgo.typelink.[]*pe.Section/[]*"".Section��������������$type.[]*"".Section���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·a8cc63930a774e5693faf789d6200da1�(��(���������� ��������þTgclocals·2bd0058e25364e522f9f24a53d6b8231�(��(������������Z����þ0type..hashfunc."".Symbol��������������(type..hash."".Symbol���þ,type..eqfunc."".Symbol��������������$type..eq."".Symbol���þ&type..alg."".Symbol� �� �������������������0type..hashfunc."".Symbol�����,type..eqfunc."".Symbol���þbruntime.gcbits.0x48440000000000000000000000000000� �� HD���������������þ*go.string."pe.Symbol"�@��4�������� �������pe.Symbol�� �*go.string."pe.Symbol"���þ"go.string."Value"�0��,���������������Value�� �"go.string."Value"���þ2go.string."SectionNumber"�@��<�������� �������SectionNumber�� �2go.string."SectionNumber"���þ go.string."Type"�0��*���������������Type�� � go.string."Type"���þ0go.string."StorageClass"�@��:�������� �������StorageClass�� �0go.string."StorageClass"���þ$go.string."Symbol"�0��.���������������Symbol�� �$go.string."Symbol"���þtype."".Symbol�� ��  �������æÃE@���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������( ��&type..alg."".Symbol���0��bruntime.gcbits.0x48440000000000000000000000000000���P��*go.string."pe.Symbol"���p��type.*"".Symbol���€��"runtime.zerovalue���À�type."".Symbol���À�� go.string."Name"���à��type.string�����"go.string."Value"���°��type.uint32���à��2go.string."SectionNumber"���€��type.int16���°�� go.string."Type"���Ð��type.uint16���€��0go.string."StorageClass"��� ��type.uint8���`Ð�type."".Symbol���Ð��$go.string."Symbol"���à��"go.importpath."".���ð �type."".Symbol���þ,go.string."*pe.Symbol"�@��6��������
�������*pe.Symbol�� �,go.string."*pe.Symbol"���þtype.*"".Symbol�� �� �������Bl1;�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*pe.Symbol"���p��0go.weak.type.**"".Symbol���€��"runtime.zerovalue�����type."".Symbol���þ0go.string."[]*pe.Symbol"�@��:�������� �������[]*pe.Symbol�� �0go.string."[]*pe.Symbol"���þ"type.[]*"".Symbol� �� �������HLž¼�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��0go.string."[]*pe.Symbol"���p��4go.weak.type.*[]*"".Symbol���€��"runtime.zerovalue�����type.*"".Symbol���þJgo.typelink.[]*pe.Symbol/[]*"".Symbol��������������"type.[]*"".Symbol���þbruntime.gcbits.0x44c48c4448c44844cc4884448c000000� �� DČDHÄHDÌH„DŒ����þ&go.string."pe.File"�0��0���������������pe.File�� �&go.string."pe.File"���þ4go.string."OptionalHeader"�@��>���������������OptionalHeader�� �4go.string."OptionalHeader"���þ(go.string."Sections"�@��2���������������Sections�� �(go.string."Sections"���þ&go.string."Symbols"�0��0���������������Symbols�� �&go.string."Symbols"���þ$go.string."closer"�0��.���������������closer�� �$go.string."closer"���þ go.string."File"�0��*���������������File�� � go.string."File"���þtype."".File�� �� h�������{Òq©����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���������������������������������������@���������������������������������������X�����������������������������������������������( à� runtime.algarray���0��bruntime.gcbits.0x44c48c4448c44844cc4884448c000000���P��&go.string."pe.File"���p��type.*"".File���€��"runtime.zerovalue���À�type."".File���à��$type."".FileHeader�����4go.string."OptionalHeader"���°��"type.interface {}���à��(go.string."Sections"���€��$type.[]*"".Section���°��&go.string."Symbols"���Ð��"type.[]*"".Symbol���€��$go.string."closer"�����"go.importpath."".��� ��type.io.Closer���`Ð�type."".File���Ð�� go.string."File"���à��"go.importpath."".���ð �type."".File���þ(go.string."*pe.File"�@��2���������������*pe.File�� �(go.string."*pe.File"���þ@go.string."func(*pe.File) error"�P��J���������������func(*pe.File) error�� �@go.string."func(*pe.File) error"���þ2type.func(*"".File) error� �� �������#]‚�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."func(*pe.File) error"���p��Dgo.weak.type.*func(*"".File) error���€��"runtime.zerovalue��� €�2type.func(*"".File) error���А�2type.func(*"".File) error���€��type.*"".File�����type.error���þ^go.string."func(*pe.File) (*dwarf.Data, error)"�p��h��������#�������func(*pe.File) (*dwarf.Data, error)�� �^go.string."func(*pe.File) (*dwarf.Data, error)"���þ\type.func(*"".File) (*debug/dwarf.Data, error)�°��°�������¯39A�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*pe.File) (*dwarf.Data, error)"���p��ngo.weak.type.*func(*"".File) (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�\type.func(*"".File) (*debug/dwarf.Data, error)���А�\type.func(*"".File) (*debug/dwarf.Data, error)���€��type.*"".File�����,type.*debug/dwarf.Data��� ��type.error���þ(go.string."[]string"�@��2���������������[]string�� �(go.string."[]string"���þtype.[]string� �� �������Ó¨ó
�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��(go.string."[]string"���p��,go.weak.type.*[]string���€��"runtime.zerovalue�����type.string���þ:go.typelink.[]string/[]string��������������type.[]string���þXgo.string."func(*pe.File) ([]string, error)"�p��b�������� �������func(*pe.File) ([]string, error)�� �Xgo.string."func(*pe.File) ([]string, error)"���þJtype.func(*"".File) ([]string, error)�°��°�������uë¸b�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*pe.File) ([]string, error)"���p��\go.weak.type.*func(*"".File) ([]string, error)���€��"runtime.zerovalue��� €�Jtype.func(*"".File) ([]string, error)���А�Jtype.func(*"".File) ([]string, error)���€��type.*"".File�����type.[]string��� ��type.error���þ\go.string."func(*pe.File, string) *pe.Section"�p��f��������"�������func(*pe.File, string) *pe.Section�� �\go.string."func(*pe.File, string) *pe.Section"���þNtype.func(*"".File, string) *"".Section�°��°�������“Ð�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*pe.File, string) *pe.Section"���p��`go.weak.type.*func(*"".File, string) *"".Section���€��"runtime.zerovalue��� €�Ntype.func(*"".File, string) *"".Section���Р�Ntype.func(*"".File, string) *"".Section���€��type.*"".File�����type.string��� �� type.*"".Section���þ"go.string."Close"�0��,���������������Close�� �"go.string."Close"���þ0go.string."func() error"�@��:�������� �������func() error�� �0go.string."func() error"���þ"type.func() error����������œ‚Öµ�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."func() error"���p��4go.weak.type.*func() error���€��"runtime.zerovalue��� €�"type.func() error���Ѐ�"type.func() error���€��type.error���þ"go.string."DWARF"�0��,���������������DWARF�� �"go.string."DWARF"���þNgo.string."func() (*dwarf.Data, error)"�`��X���������������func() (*dwarf.Data, error)�� �Ngo.string."func() (*dwarf.Data, error)"���þLtype.func() (*debug/dwarf.Data, error)� �� �������$¹9�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func() (*dwarf.Data, error)"���p��^go.weak.type.*func() (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�Ltype.func() (*debug/dwarf.Data, error)���Ѐ�Ltype.func() (*debug/dwarf.Data, error)���€��,type.*debug/dwarf.Data�����type.error���þ:go.string."ImportedLibraries"�P��D���������������ImportedLibraries�� �:go.string."ImportedLibraries"���þHgo.string."func() ([]string, error)"�`��R���������������func() ([]string, error)�� �Hgo.string."func() ([]string, error)"���þ:type.func() ([]string, error)� �� �������B‹í¡�3������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func() ([]string, error)"���p��Lgo.weak.type.*func() ([]string, error)���€��"runtime.zerovalue��� €�:type.func() ([]string, error)���Ѐ�:type.func() ([]string, error)���€��type.[]string�����type.error���þ6go.string."ImportedSymbols"�@��@���������������ImportedSymbols�� �6go.string."ImportedSymbols"���þHgo.string."func(string) *pe.Section"�`��R���������������func(string) *pe.Section�� �Hgo.string."func(string) *pe.Section"���þ:type.func(string) *"".Section� �� �������h-â±�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func(string) *pe.Section"���p��Lgo.weak.type.*func(string) *"".Section���€��"runtime.zerovalue��� €�:type.func(string) *"".Section���А�:type.func(string) *"".Section���€��type.string����� type.*"".Section���þtype.*"".File��Ð��Ð�������uîõ2�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������B  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��(go.string."*pe.File"���p��,go.weak.type.**"".File���€��"runtime.zerovalue�����type."".File���` �type.*"".File���Àð�type.*"".File���ð��"go.string."Close"�����"type.func() error��� ��2type.func(*"".File) error���°�� "".(*File).Close���À�� "".(*File).Close���Ð��"go.string."DWARF"���ð��Ltype.func() (*debug/dwarf.Data, error)���€��\type.func(*"".File) (*debug/dwarf.Data, error)����� "".(*File).DWARF��� �� "".(*File).DWARF���°��:go.string."ImportedLibraries"���Ð��:type.func() ([]string, error)���à��Jtype.func(*"".File) ([]string, error)���ð��8"".(*File).ImportedLibraries���€��8"".(*File).ImportedLibraries�����6go.string."ImportedSymbols"���°��:type.func() ([]string, error)���À��Jtype.func(*"".File) ([]string, error)���Ð��4"".(*File).ImportedSymbols���à��4"".(*File).ImportedSymbols���ð��&go.string."Section"�����:type.func(string) *"".Section��� ��Ntype.func(*"".File, string) *"".Section���°��$"".(*File).Section���À��$"".(*File).Section���þ(go.string."[8]uint8"�@��2���������������[8]uint8�� �(go.string."[8]uint8"���þtype.[8]uint8�À��À�������>ù0´�‘�������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��(go.string."[8]uint8"���p��,go.weak.type.*[8]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[8]uint8/[8]uint8��������������type.[8]uint8���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·eaf31f95896361dc5cdd0293aac48f97� �� ���������Z����þ8type..hashfunc."".COFFSymbol��������������0type..hash."".COFFSymbol���þ4type..eqfunc."".COFFSymbol��������������,type..eq."".COFFSymbol���þ.type..alg."".COFFSymbol� �� �������������������8type..hashfunc."".COFFSymbol�����4type..eqfunc."".COFFSymbol���þ4go.string."*pe.COFFSymbol"�@��>���������������*pe.COFFSymbol�� �4go.string."*pe.COFFSymbol"���þ&type.*"".COFFSymbol�� �� �������çZ |�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*pe.COFFSymbol"���p��8go.weak.type.**"".COFFSymbol���€��"runtime.zerovalue�����$type."".COFFSymbol���þ2go.string."pe.COFFSymbol"�@��<�������� �������pe.COFFSymbol�� �2go.string."pe.COFFSymbol"���þ<go.string."NumberOfAuxSymbols"�P��F���������������NumberOfAuxSymbols�� �<go.string."NumberOfAuxSymbols"���þ,go.string."COFFSymbol"�@��6��������
�������COFFSymbol�� �,go.string."COFFSymbol"���þ$type."".COFFSymbol��ð��ð�������ë+q�™��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������, ��.type..alg."".COFFSymbol���0��^runtime.gcbits.0x000000000000000000000000000000���P��2go.string."pe.COFFSymbol"���p��&type.*"".COFFSymbol���€��"runtime.zerovalue���À�$type."".COFFSymbol���À�� go.string."Name"���à��type.[8]uint8�����"go.string."Value"���°��type.uint32���à��2go.string."SectionNumber"���€��type.int16���°�� go.string."Type"���Ð��type.uint16���€��0go.string."StorageClass"��� ��type.uint8���Ð��<go.string."NumberOfAuxSymbols"���ð��type.uint8���` �$type."".COFFSymbol��� ��,go.string."COFFSymbol"���°��"go.importpath."".���Àð�$type."".COFFSymbol���þ:go.string."*pe.DataDirectory"�P��D���������������*pe.DataDirectory�� �:go.string."*pe.DataDirectory"���þ,type.*"".DataDirectory�� �� �������½¶”±�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��:go.string."*pe.DataDirectory"���p��>go.weak.type.**"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þ8go.string."pe.DataDirectory"�P��B���������������pe.DataDirectory�� �8go.string."pe.DataDirectory"���þ2go.string."DataDirectory"�@��<�������� �������DataDirectory�� �2go.string."DataDirectory"���þ*type."".DataDirectory��°��°������� kªï�™�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��8go.string."pe.DataDirectory"���p��,type.*"".DataDirectory���€��"runtime.zerovalue���À�*type."".DataDirectory���À��4go.string."VirtualAddress"���à��type.uint32����� go.string."Size"���°��type.uint32���`à�*type."".DataDirectory���à��2go.string."DataDirectory"���ð��"go.importpath."".���€°�*type."".DataDirectory���þ<go.string."[]pe.DataDirectory"�P��F���������������[]pe.DataDirectory�� �<go.string."[]pe.DataDirectory"���þ.type.[]"".DataDirectory� �� �������q¡»�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��<go.string."[]pe.DataDirectory"���p��@go.weak.type.*[]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þbgo.typelink.[]pe.DataDirectory/[]"".DataDirectory��������������.type.[]"".DataDirectory���þ@go.string."[16]pe.DataDirectory"�P��J���������������[16]pe.DataDirectory�� �@go.string."[16]pe.DataDirectory"���þ2type.[16]"".DataDirectory�À��À€�������ñ$0ß�‘������������������������������������������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��@go.string."[16]pe.DataDirectory"���p��Dgo.weak.type.*[16]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory��� ��.type.[]"".DataDirectory���þjgo.typelink.[16]pe.DataDirectory/[16]"".DataDirectory��������������2type.[16]"".DataDirectory���þ>go.string."pe.OptionalHeader32"�P��H���������������pe.OptionalHeader32�� �>go.string."pe.OptionalHeader32"���þ"go.string."Magic"�0��,���������������Magic�� �"go.string."Magic"���þ<go.string."MajorLinkerVersion"�P��F���������������MajorLinkerVersion�� �<go.string."MajorLinkerVersion"���þ<go.string."MinorLinkerVersion"�P��F���������������MinorLinkerVersion�� �<go.string."MinorLinkerVersion"���þ,go.string."SizeOfCode"�@��6��������
�������SizeOfCode�� �,go.string."SizeOfCode"���þBgo.string."SizeOfInitializedData"�P��L���������������SizeOfInitializedData�� �Bgo.string."SizeOfInitializedData"���þFgo.string."SizeOfUninitializedData"�P��P���������������SizeOfUninitializedData�� �Fgo.string."SizeOfUninitializedData"���þ>go.string."AddressOfEntryPoint"�P��H���������������AddressOfEntryPoint�� �>go.string."AddressOfEntryPoint"���þ,go.string."BaseOfCode"�@��6��������
�������BaseOfCode�� �,go.string."BaseOfCode"���þ,go.string."BaseOfData"�@��6��������
�������BaseOfData�� �,go.string."BaseOfData"���þ*go.string."ImageBase"�@��4�������� �������ImageBase�� �*go.string."ImageBase"���þ8go.string."SectionAlignment"�P��B���������������SectionAlignment�� �8go.string."SectionAlignment"���þ2go.string."FileAlignment"�@��<�������� �������FileAlignment�� �2go.string."FileAlignment"���þNgo.string."MajorOperatingSystemVersion"�`��X���������������MajorOperatingSystemVersion�� �Ngo.string."MajorOperatingSystemVersion"���þNgo.string."MinorOperatingSystemVersion"�`��X���������������MinorOperatingSystemVersion�� �Ngo.string."MinorOperatingSystemVersion"���þ:go.string."MajorImageVersion"�P��D���������������MajorImageVersion�� �:go.string."MajorImageVersion"���þ:go.string."MinorImageVersion"�P��D���������������MinorImageVersion�� �:go.string."MinorImageVersion"���þBgo.string."MajorSubsystemVersion"�P��L���������������MajorSubsystemVersion�� �Bgo.string."MajorSubsystemVersion"���þBgo.string."MinorSubsystemVersion"�P��L���������������MinorSubsystemVersion�� �Bgo.string."MinorSubsystemVersion"���þ:go.string."Win32VersionValue"�P��D���������������Win32VersionValue�� �:go.string."Win32VersionValue"���þ.go.string."SizeOfImage"�@��8�������� �������SizeOfImage�� �.go.string."SizeOfImage"���þ2go.string."SizeOfHeaders"�@��<�������� �������SizeOfHeaders�� �2go.string."SizeOfHeaders"���þ(go.string."CheckSum"�@��2���������������CheckSum�� �(go.string."CheckSum"���þ*go.string."Subsystem"�@��4�������� �������Subsystem�� �*go.string."Subsystem"���þ<go.string."DllCharacteristics"�P��F���������������DllCharacteristics�� �<go.string."DllCharacteristics"���þ<go.string."SizeOfStackReserve"�P��F���������������SizeOfStackReserve�� �<go.string."SizeOfStackReserve"���þ:go.string."SizeOfStackCommit"�P��D���������������SizeOfStackCommit�� �:go.string."SizeOfStackCommit"���þ:go.string."SizeOfHeapReserve"�P��D���������������SizeOfHeapReserve�� �:go.string."SizeOfHeapReserve"���þ8go.string."SizeOfHeapCommit"�P��B���������������SizeOfHeapCommit�� �8go.string."SizeOfHeapCommit"���þ.go.string."LoaderFlags"�@��8�������� �������LoaderFlags�� �.go.string."LoaderFlags"���þ>go.string."NumberOfRvaAndSizes"�P��H���������������NumberOfRvaAndSizes�� �>go.string."NumberOfRvaAndSizes"���þ8go.string."OptionalHeader32"�P��B���������������OptionalHeader32�� �8go.string."OptionalHeader32"���þ0type."".OptionalHeader32��À��Àà�������,ÚKú�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������L���������������������������������������P���������������������������������������T���������������������������������������X���������������������������������������\���������������������������������������`����������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��>go.string."pe.OptionalHeader32"���p��2type.*"".OptionalHeader32���€��"runtime.zerovalue���À�0type."".OptionalHeader32���À��"go.string."Magic"���à��type.uint16�����<go.string."MajorLinkerVersion"���°��type.uint8���à��<go.string."MinorLinkerVersion"���€��type.uint8���°��,go.string."SizeOfCode"���Ð��type.uint32���€��Bgo.string."SizeOfInitializedData"��� ��type.uint32���Ð��Fgo.string."SizeOfUninitializedData"���ð��type.uint32��� ��>go.string."AddressOfEntryPoint"���À��type.uint32���ð��,go.string."BaseOfCode"�����type.uint32���À��,go.string."BaseOfData"���à��type.uint32�����*go.string."ImageBase"���°��type.uint32���à��8go.string."SectionAlignment"���€��type.uint32���°��2go.string."FileAlignment"���Ð��type.uint32���€ ��Ngo.string."MajorOperatingSystemVersion"���  ��type.uint16���Ð ��Ngo.string."MinorOperatingSystemVersion"���ð ��type.uint16��� 
��:go.string."MajorImageVersion"�����type.uint16���ð
��:go.string."MinorImageVersion"��� ��type.uint16���À ��Bgo.string."MajorSubsystemVersion"���à ��type.uint16��� ��Bgo.string."MinorSubsystemVersion"���° ��type.uint16���à ��:go.string."Win32VersionValue"���€ ��type.uint32���° ��.go.string."SizeOfImage"���Ð ��type.uint32���€��2go.string."SizeOfHeaders"��� ��type.uint32���Ð��(go.string."CheckSum"���ð��type.uint32��� ��*go.string."Subsystem"���À��type.uint16���ð��<go.string."DllCharacteristics"�����type.uint16���À��<go.string."SizeOfStackReserve"���à��type.uint32�����:go.string."SizeOfStackCommit"���°��type.uint32���à��:go.string."SizeOfHeapReserve"���€��type.uint32���°��8go.string."SizeOfHeapCommit"���Ð��type.uint32���€��.go.string."LoaderFlags"��� ��type.uint32���Ð��>go.string."NumberOfRvaAndSizes"���ð��type.uint32��� ��2go.string."DataDirectory"���À��2type.[16]"".DataDirectory���`ð�0type."".OptionalHeader32���ð��8go.string."OptionalHeader32"���€��"go.importpath."".���À�0type."".OptionalHeader32���þ@go.string."*pe.OptionalHeader32"�P��J���������������*pe.OptionalHeader32�� �@go.string."*pe.OptionalHeader32"���þ2type.*"".OptionalHeader32�� �� �������Å"Ë�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*pe.OptionalHeader32"���p��Dgo.weak.type.**"".OptionalHeader32���€��"runtime.zerovalue�����0type."".OptionalHeader32���þ>go.string."pe.OptionalHeader64"�P��H���������������pe.OptionalHeader64�� �>go.string."pe.OptionalHeader64"���þ8go.string."OptionalHeader64"�P��B���������������OptionalHeader64�� �8go.string."OptionalHeader64"���þ0type."".OptionalHeader64��ð��ðð�������¤×cI�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ������������������������������������������������������������������������������������������������������������������������������������������������������������ ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`���������������������������������������h���������������������������������������l���������������������������������������p�����������������������������������������������Œ �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��>go.string."pe.OptionalHeader64"���p��2type.*"".OptionalHeader64���€��"runtime.zerovalue���À�0type."".OptionalHeader64���À��"go.string."Magic"���à��type.uint16�����<go.string."MajorLinkerVersion"���°��type.uint8���à��<go.string."MinorLinkerVersion"���€��type.uint8���°��,go.string."SizeOfCode"���Ð��type.uint32���€��Bgo.string."SizeOfInitializedData"��� ��type.uint32���Ð��Fgo.string."SizeOfUninitializedData"���ð��type.uint32��� ��>go.string."AddressOfEntryPoint"���À��type.uint32���ð��,go.string."BaseOfCode"�����type.uint32���À��*go.string."ImageBase"���à��type.uint64�����8go.string."SectionAlignment"���°��type.uint32���à��2go.string."FileAlignment"���€��type.uint32���°��Ngo.string."MajorOperatingSystemVersion"���Ð��type.uint16���€ ��Ngo.string."MinorOperatingSystemVersion"���  ��type.uint16���Ð ��:go.string."MajorImageVersion"���ð ��type.uint16��� 
��:go.string."MinorImageVersion"�����type.uint16���ð
��Bgo.string."MajorSubsystemVersion"��� ��type.uint16���À ��Bgo.string."MinorSubsystemVersion"���à ��type.uint16��� ��:go.string."Win32VersionValue"���° ��type.uint32���à ��.go.string."SizeOfImage"���€ ��type.uint32���° ��2go.string."SizeOfHeaders"���Ð ��type.uint32���€��(go.string."CheckSum"��� ��type.uint32���Ð��*go.string."Subsystem"���ð��type.uint16��� ��<go.string."DllCharacteristics"���À��type.uint16���ð��<go.string."SizeOfStackReserve"�����type.uint64���À��:go.string."SizeOfStackCommit"���à��type.uint64�����:go.string."SizeOfHeapReserve"���°��type.uint64���à��8go.string."SizeOfHeapCommit"���€��type.uint64���°��.go.string."LoaderFlags"���Ð��type.uint32���€��>go.string."NumberOfRvaAndSizes"��� ��type.uint32���Ð��2go.string."DataDirectory"���ð��2type.[16]"".DataDirectory���` �0type."".OptionalHeader64��� ��8go.string."OptionalHeader64"���°��"go.importpath."".���Àð�0type."".OptionalHeader64���þ@go.string."*pe.OptionalHeader64"�P��J���������������*pe.OptionalHeader64�� �@go.string."*pe.OptionalHeader64"���þ2type.*"".OptionalHeader64�� �� �������=
k�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*pe.OptionalHeader64"���p��Dgo.weak.type.**"".OptionalHeader64���€��"runtime.zerovalue�����0type."".OptionalHeader64���þ>go.string."*pe.SectionHeader32"�P��H���������������*pe.SectionHeader32�� �>go.string."*pe.SectionHeader32"���þ0type.*"".SectionHeader32�� �� �������òÚL�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��>go.string."*pe.SectionHeader32"���p��Bgo.weak.type.**"".SectionHeader32���€��"runtime.zerovalue�����.type."".SectionHeader32���þ<go.string."pe.SectionHeader32"�P��F���������������pe.SectionHeader32�� �<go.string."pe.SectionHeader32"���þ2go.string."SizeOfRawData"�@��<�������� �������SizeOfRawData�� �2go.string."SizeOfRawData"���þ8go.string."PointerToRawData"�P��B���������������PointerToRawData�� �8go.string."PointerToRawData"���þ6go.string."SectionHeader32"�@��@���������������SectionHeader32�� �6go.string."SectionHeader32"���þ.type."".SectionHeader32��°��°(�������Œ- Ä�™����������������������������������������������������������������
�������
���������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������"���������������������������������������$�����������������������������������������������< �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��<go.string."pe.SectionHeader32"���p��0type.*"".SectionHeader32���€��"runtime.zerovalue���À�.type."".SectionHeader32���À�� go.string."Name"���à��type.[8]uint8�����.go.string."VirtualSize"���°��type.uint32���à��4go.string."VirtualAddress"���€��type.uint32���°��2go.string."SizeOfRawData"���Ð��type.uint32���€��8go.string."PointerToRawData"��� ��type.uint32���Ð��@go.string."PointerToRelocations"���ð��type.uint32��� ��@go.string."PointerToLineNumbers"���À��type.uint32���ð��>go.string."NumberOfRelocations"�����type.uint16���À��>go.string."NumberOfLineNumbers"���à��type.uint16�����6go.string."Characteristics"���°��type.uint32���`à�.type."".SectionHeader32���à��6go.string."SectionHeader32"���ð��"go.importpath."".���€°�.type."".SectionHeader32���þ*go.string."[96]uint8"�@��4�������� �������[96]uint8�� �*go.string."[96]uint8"���þtype.[96]uint8�À��À`�������ÄA ©�‘������������������������������������������������������������������������`������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��*go.string."[96]uint8"���p��.go.weak.type.*[96]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ>go.typelink.[96]uint8/[96]uint8��������������type.[96]uint8���þ,go.string."*[96]uint8"�@��6��������
�������*[96]uint8�� �,go.string."*[96]uint8"���þtype.*[96]uint8� �� �������O|Á�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*[96]uint8"���p��0go.weak.type.**[96]uint8���€��"runtime.zerovalue�����type.[96]uint8���þ(go.string."[4]uint8"�@��2���������������[4]uint8�� �(go.string."[4]uint8"���þtype.[4]uint8�À��À�������„B�‘������������������������������������������������������������������������������� €� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��(go.string."[4]uint8"���p��,go.weak.type.*[4]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[4]uint8/[4]uint8��������������type.[4]uint8���þ*go.string."*[4]uint8"�@��4�������� �������*[4]uint8�� �*go.string."*[4]uint8"���þtype.*[4]uint8� �� �������G³ã¡�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��*go.string."*[4]uint8"���p��.go.weak.type.**[4]uint8���€��"runtime.zerovalue�����type.[4]uint8���þ*go.string."*[8]uint8"�@��4�������� �������*[8]uint8�� �*go.string."*[8]uint8"���þtype.*[8]uint8� �� �������©‰¥z�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��*go.string."*[8]uint8"���p��.go.weak.type.**[8]uint8���€��"runtime.zerovalue�����type.[8]uint8���þ0go.string."**pe.Section"�@��:�������� �������**pe.Section�� �0go.string."**pe.Section"���þ"type.**"".Section� �� �������LXÈ_�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."**pe.Section"���p��4go.weak.type.***"".Section���€��"runtime.zerovalue����� type.*"".Section���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·a8cc63930a774e5693faf789d6200da1�(��(���������� ��������þTgclocals·2bd0058e25364e522f9f24a53d6b8231�(��(������������Z����þ0type..hashfunc.[3]string��������������(type..hash.[3]string���þ,type..eqfunc.[3]string��������������$type..eq.[3]string���þ&type..alg.[3]string� �� �������������������0type..hashfunc.[3]string�����,type..eqfunc.[3]string���þbruntime.gcbits.0x48484800000000000000000000000000� �� HHH��������������þ*go.string."[3]string"�@��4�������� �������[3]string�� �*go.string."[3]string"���þtype.[3]string�À��À0�������CÙiB�������������������������������������������������������������������������������� ��&type..alg.[3]string���0��bruntime.gcbits.0x48484800000000000000000000000000���P��*go.string."[3]string"���p��.go.weak.type.*[3]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[3]string/[3]string��������������type.[3]string���þ*go.string."[][]uint8"�@��4�������� �������[][]uint8�� �*go.string."[][]uint8"���þtype.[][]uint8� �� �������õ}ï�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��*go.string."[][]uint8"���p��.go.weak.type.*[][]uint8���€��"runtime.zerovalue�����type.[]uint8���þ>go.typelink.[][]uint8/[][]uint8��������������type.[][]uint8���þbruntime.gcbits.0x48844448844448844400000000000000� �� H„DH„DH„D��������þ,go.string."[3][]uint8"�@��6��������
�������[3][]uint8�� �,go.string."[3][]uint8"���þtype.[3][]uint8�À��ÀH�������˜XØy�������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48844448844448844400000000000000���P��,go.string."[3][]uint8"���p��0go.weak.type.*[3][]uint8���€��"runtime.zerovalue�����type.[]uint8��� ��type.[][]uint8���þBgo.typelink.[3][]uint8/[3][]uint8��������������type.[3][]uint8���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·1714908d3c053eb26b467f507247f79e�(��(�������������� ����þTgclocals·e73dda19a20e82d42018f024f527634b�(��(���������Z�������þBtype..hashfunc."".ImportDirectory��������������:type..hash."".ImportDirectory���þ>type..eqfunc."".ImportDirectory��������������6type..eq."".ImportDirectory���þ8type..alg."".ImportDirectory� �� �������������������Btype..hashfunc."".ImportDirectory�����>type..eqfunc."".ImportDirectory���þ>go.string."*pe.ImportDirectory"�P��H���������������*pe.ImportDirectory�� �>go.string."*pe.ImportDirectory"���þ0type.*"".ImportDirectory�� �� �������ÌöÔâ�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��>go.string."*pe.ImportDirectory"���p��Bgo.weak.type.**"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þbruntime.gcbits.0x44844444480000000000000000000000� �� D„DDH������������þ<go.string."pe.ImportDirectory"�P��F���������������pe.ImportDirectory�� �<go.string."pe.ImportDirectory"���þ<go.string."OriginalFirstThunk"�P��F���������������OriginalFirstThunk�� �<go.string."OriginalFirstThunk"���þ4go.string."ForwarderChain"�@��>���������������ForwarderChain�� �4go.string."ForwarderChain"���þ,go.string."FirstThunk"�@��6��������
�������FirstThunk�� �,go.string."FirstThunk"���þgo.string."dll"�0��(���������������dll�� �go.string."dll"���þ6go.string."ImportDirectory"�@��@���������������ImportDirectory�� �6go.string."ImportDirectory"���þ.type."".ImportDirectory��ð��ð(�������×5w-������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������. ��8type..alg."".ImportDirectory���0��bruntime.gcbits.0x44844444480000000000000000000000���P��<go.string."pe.ImportDirectory"���p��0type.*"".ImportDirectory���€��"runtime.zerovalue���À�.type."".ImportDirectory���À��<go.string."OriginalFirstThunk"���à��type.uint32�����2go.string."TimeDateStamp"���°��type.uint32���à��4go.string."ForwarderChain"���€��type.uint32���°�� go.string."Name"���Ð��type.uint32���€��,go.string."FirstThunk"��� ��type.uint32���Ð��go.string."dll"���à��"go.importpath."".���ð��type.string���` �.type."".ImportDirectory��� ��6go.string."ImportDirectory"���°��"go.importpath."".���Àð�.type."".ImportDirectory���þ@go.string."[]pe.ImportDirectory"�P��J���������������[]pe.ImportDirectory�� �@go.string."[]pe.ImportDirectory"���þ2type.[]"".ImportDirectory� �� �������nëí2�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��@go.string."[]pe.ImportDirectory"���p��Dgo.weak.type.*[]"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þjgo.typelink.[]pe.ImportDirectory/[]"".ImportDirectory��������������2type.[]"".ImportDirectory���þ,go.string."*[3]string"�@��6��������
�������*[3]string�� �,go.string."*[3]string"���þtype.*[3]string� �� �������
+é �6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."*[3]string"���p��0go.weak.type.**[3]string���€��"runtime.zerovalue�����type.[3]string���þ6go.string."encoding/binary"�@��@���������������encoding/binary�� �6go.string."encoding/binary"���þ<go.importpath.encoding/binary.� �� ���������������� �6go.string."encoding/binary"���þ&go.string."runtime"�0��0���������������runtime�� �&go.string."runtime"���þ,go.importpath.runtime.� �� ���������������� �&go.string."runtime"���þ$go.string."errors"�0��.���������������errors�� �$go.string."errors"���þ*go.importpath.errors.� �� ���������������� �$go.string."errors"���þ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."strconv"�0��0���������������strconv�� �&go.string."strconv"���þ,go.importpath.strconv.� �� ���������������� �&go.string."strconv"���þgo.string."fmt"�0��(���������������fmt�� �go.string."fmt"���þ$go.importpath.fmt.� �� ���������������� �go.string."fmt"���þ.go.string."debug/dwarf"�@��8�������� �������debug/dwarf�� �.go.string."debug/dwarf"���þ4go.importpath.debug/dwarf.� �� �������� �������� �.go.string."debug/dwarf"���þ<type..hash."".SectionHeader·f��������������6type..hash."".SectionHeader���þ$runtime.strhash·f��������������runtime.strhash���þ$runtime.memhash·f��������������runtime.memhash���þ8type..eq."".SectionHeader·f��������������2type..eq."".SectionHeader���þ&runtime.memequal·f�������������� runtime.memequal���þ0type..hash."".Section·f��������������*type..hash."".Section���þ(runtime.interhash·f��������������"runtime.interhash���þ,type..eq."".Section·f��������������&type..eq."".Section���þ$runtime.ifaceeq·f��������������runtime.ifaceeq���þ."".(*Section).ReadAt·f��������������("".(*Section).ReadAt���þ("".Section.ReadAt·f��������������""".Section.ReadAt���þ8type..hash."".FormatError·f��������������2type..hash."".FormatError���þ.runtime.nilinterhash·f��������������(runtime.nilinterhash���þ4type..eq."".FormatError·f��������������.type..eq."".FormatError���þ$runtime.efaceeq·f��������������runtime.efaceeq���þ:type..hash.[1]interface {}·f��������������4type..hash.[1]interface {}���þ6type..eq.[1]interface {}·f��������������0type..eq.[1]interface {}���þ.type..hash."".Symbol·f��������������(type..hash."".Symbol���þ*type..eq."".Symbol·f��������������$type..eq."".Symbol���þ6type..hash."".COFFSymbol·f��������������0type..hash."".COFFSymbol���þ2type..eq."".COFFSymbol·f��������������,type..eq."".COFFSymbol���þ.type..hash.[3]string·f��������������(type..hash.[3]string���þ*type..eq.[3]string·f��������������$type..eq.[3]string���þ@type..hash."".ImportDirectory·f��������������:type..hash."".ImportDirectory���þ<type..eq."".ImportDirectory·f��������������6type..eq."".ImportDirectory���þ"runtime.zerovalue������ÿÿgo13ld