blob: 4eda1465bcc81eb1994fa84e92f585e56bcd3bee [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 27953 `
go object linux amd64 go1.5.1 X:none
build id "fa46e1eac4092d8128f53947eea954186595d349"
$$
package image
import runtime "runtime"
import bufio "bufio"
import errors "errors"
import io "io"
import color "image/color"
import strconv "strconv"
var @"".ErrFormat error
type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
type @"".Point struct { X int; Y int }
func (@"".p·2 @"".Point) Add (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X + @"".q·3.X, Y:@"".p·2.Y + @"".q·3.Y }) }
func (@"".p·2 @"".Point) Div (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X / @"".k·3, Y:@"".p·2.Y / @"".k·3 }) }
func (@"".p·2 @"".Point) Eq (@"".q·3 @"".Point) (? bool) { return @"".p·2 == @"".q·3 }
func (@"".p·2 @"".Point) In (@"".r·3 @"".Rectangle) (? bool) { return @"".r·3.Min.X <= @"".p·2.X && @"".p·2.X < @"".r·3.Max.X && @"".r·3.Min.Y <= @"".p·2.Y && @"".p·2.Y < @"".r·3.Max.Y }
func (@"".p·2 @"".Point) Mod (@"".r·3 @"".Rectangle) (? @"".Point)
func (@"".p·2 @"".Point) Mul (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X * @"".k·3, Y:@"".p·2.Y * @"".k·3 }) }
func (@"".p·2 @"".Point) String () (? string)
func (@"".p·2 @"".Point) Sub (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X - @"".q·3.X, Y:@"".p·2.Y - @"".q·3.Y }) }
type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
type @"".Rectangle struct { Min @"".Point; Max @"".Point }
func (@"".r·2 @"".Rectangle) Add (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X + @"".p·3.X, Y:@"".r·2.Min.Y + @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X + @"".p·3.X, Y:@"".r·2.Max.Y + @"".p·3.Y }) }) }
func (@"".r·2 @"".Rectangle) At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { if (@"".Point{ X:@"".x·3, Y:@"".y·4 }).In(@"".r·2) { return @"image/color".Opaque }; return @"image/color".Transparent }
func (@"".r·2 @"".Rectangle) Bounds () (? @"".Rectangle) { return @"".r·2 }
func (@"".r·2 @"".Rectangle) Canon () (? @"".Rectangle) { if @"".r·2.Max.X < @"".r·2.Min.X { @"".r·2.Min.X, @"".r·2.Max.X = @"".r·2.Max.X, @"".r·2.Min.X }; if @"".r·2.Max.Y < @"".r·2.Min.Y { @"".r·2.Min.Y, @"".r·2.Max.Y = @"".r·2.Max.Y, @"".r·2.Min.Y }; return @"".r·2 }
func (@"".r·2 @"".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
func (@"".r·2 @"".Rectangle) Dx () (? int) { return @"".r·2.Max.X - @"".r·2.Min.X }
func (@"".r·2 @"".Rectangle) Dy () (? int) { return @"".r·2.Max.Y - @"".r·2.Min.Y }
func (@"".r·2 @"".Rectangle) Empty () (? bool) { return @"".r·2.Min.X >= @"".r·2.Max.X || @"".r·2.Min.Y >= @"".r·2.Max.Y }
func (@"".r·2 @"".Rectangle) Eq (@"".s·3 @"".Rectangle) (? bool) { return @"".r·2 == @"".s·3 || @"".r·2.Empty() && @"".s·3.Empty() }
func (@"".r·2 @"".Rectangle) In (@"".s·3 @"".Rectangle) (? bool) { if @"".r·2.Empty() { return true }; return @"".s·3.Min.X <= @"".r·2.Min.X && @"".r·2.Max.X <= @"".s·3.Max.X && @"".s·3.Min.Y <= @"".r·2.Min.Y && @"".r·2.Max.Y <= @"".s·3.Max.Y }
func (@"".r·2 @"".Rectangle) Inset (@"".n·3 int) (? @"".Rectangle)
func (@"".r·2 @"".Rectangle) Intersect (@"".s·3 @"".Rectangle) (? @"".Rectangle)
func (@"".r·2 @"".Rectangle) Overlaps (@"".s·3 @"".Rectangle) (? bool)
func (@"".r·2 @"".Rectangle) Size () (? @"".Point) { return (@"".Point{ X:@"".r·2.Max.X - @"".r·2.Min.X, Y:@"".r·2.Max.Y - @"".r·2.Min.Y }) }
func (@"".r·2 @"".Rectangle) String () (? string)
func (@"".r·2 @"".Rectangle) Sub (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X - @"".p·3.X, Y:@"".r·2.Min.Y - @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X - @"".p·3.X, Y:@"".r·2.Max.Y - @"".p·3.Y }) }) }
func (@"".r·2 @"".Rectangle) Union (@"".s·3 @"".Rectangle) (? @"".Rectangle)
type @"".Image interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorModel() (? @"image/color".Model) }
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"".Config struct { ColorModel @"image/color".Model; Width int; Height int }
func @"".RegisterFormat (@"".name·1 string, @"".magic·2 string, @"".decode·3 func(? @"io".Reader) (? @"".Image, ? error), @"".decodeConfig·4 func(? @"io".Reader) (? @"".Config, ? error)) { @"".formats = append(@"".formats, (@"".format{ @"".name:@"".name·1, @"".magic:@"".magic·2, @"".decode:@"".decode·3, @"".decodeConfig:@"".decodeConfig·4 })) }
func @"".Decode (@"".r·4 @"io".Reader) (? @"".Image, ? string, ? error)
func @"".DecodeConfig (@"".r·4 @"io".Reader) (? @"".Config, ? string, ? error)
var @"".ZP @"".Point
func @"".Pt (@"".X·2 int, @"".Y·3 int) (? @"".Point) { return (@"".Point{ X:@"".X·2, Y:@"".Y·3 }) }
var @"".ZR @"".Rectangle
func @"".Rect (@"".x0·2 int, @"".y0·3 int, @"".x1·4 int, @"".y1·5 int) (? @"".Rectangle) { if @"".x0·2 > @"".x1·4 { @"".x0·2, @"".x1·4 = @"".x1·4, @"".x0·2 }; if @"".y0·3 > @"".y1·5 { @"".y0·3, @"".y1·5 = @"".y1·5, @"".y0·3 }; return (@"".Rectangle{ Min:(@"".Point{ X:@"".x0·2, Y:@"".y0·3 }), Max:(@"".Point{ X:@"".x1·4, Y:@"".y1·5 }) }) }
type @"".PalettedImage interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorIndexAt(@"".x int, @"".y int) (? uint8); ColorModel() (? @"image/color".Model) }
type @"image/color".RGBA struct { R uint8; G uint8; B uint8; A uint8 }
func (@"image/color".c·5 @"image/color".RGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << 0x8; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return }
type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".RGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel }
func (@"".p·2 *@"".RGBA "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".RGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 }
func (@"".p·2 *@"".RGBA "esc:0x1") RGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA)
func (@"".p·1 *@"".RGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA "esc:0x1") SetRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA)
func (@"".p·2 *@"".RGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA (@"".r·2 @"".Rectangle) (? *@"".RGBA) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".RGBA{ Pix:@"".buf·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".RGBA64 struct { R uint16; G uint16; B uint16; A uint16 }
func (@"image/color".c·5 @"image/color".RGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { return uint32(@"image/color".c·5.R), uint32(@"image/color".c·5.G), uint32(@"image/color".c·5.B), uint32(@"image/color".c·5.A) }
type @"".RGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".RGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model }
func (@"".p·2 *@"".RGBA64 "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".RGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x8 }
func (@"".p·2 *@"".RGBA64 "esc:0x1") RGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA64)
func (@"".p·1 *@"".RGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA64 "esc:0x1") SetRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA64)
func (@"".p·2 *@"".RGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA64 (@"".r·2 @"".Rectangle) (? *@"".RGBA64) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x8 * @"".w·3 * @"".h·4); return (&@"".RGBA64{ Pix:@"".pix·5, Stride:0x8 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".NRGBA struct { R uint8; G uint8; B uint8; A uint8 }
func (@"image/color".c·5 @"image/color".NRGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << 0x8; @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= 0xff; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= 0xff; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= 0xff; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return }
type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel }
func (@"".p·2 *@"".NRGBA "esc:0x1") NRGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 }
func (@"".p·1 *@"".NRGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA "esc:0x1") SetNRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA (@"".r·2 @"".Rectangle) (? *@"".NRGBA) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".NRGBA{ Pix:@"".pix·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".NRGBA64 struct { R uint16; G uint16; B uint16; A uint16 }
func (@"image/color".c·5 @"image/color".NRGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= 0xffff; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= 0xffff; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= 0xffff; @"image/color".a·4 = uint32(@"image/color".c·5.A); return }
type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model }
func (@"".p·2 *@"".NRGBA64 "esc:0x1") NRGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64 "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x8 }
func (@"".p·1 *@"".NRGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA64 "esc:0x1") SetNRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA64 (@"".r·2 @"".Rectangle) (? *@"".NRGBA64) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x8 * @"".w·3 * @"".h·4); return (&@"".NRGBA64{ Pix:@"".pix·5, Stride:0x8 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".Alpha struct { A uint8 }
func (@"image/color".c·5 @"image/color".Alpha) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 }
type @"".Alpha struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".Alpha "esc:0x1") AlphaAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha)
func (@"".p·2 *@"".Alpha "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel }
func (@"".p·2 *@"".Alpha "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".Alpha "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 }
func (@"".p·1 *@"".Alpha "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha "esc:0x1") SetAlpha (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha)
func (@"".p·2 *@"".Alpha "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha (@"".r·2 @"".Rectangle) (? *@"".Alpha) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x1 * @"".w·3 * @"".h·4); return (&@"".Alpha{ Pix:@"".pix·5, Stride:0x1 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".Alpha16 struct { A uint16 }
func (@"image/color".c·5 @"image/color".Alpha16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 }
type @"".Alpha16 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".Alpha16 "esc:0x1") Alpha16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
func (@"".p·2 *@"".Alpha16 "esc:0x1") Opaque () (? bool)
func (@"".p·2 *@"".Alpha16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x2 }
func (@"".p·1 *@"".Alpha16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha16 "esc:0x1") SetAlpha16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha16 (@"".r·2 @"".Rectangle) (? *@"".Alpha16) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x2 * @"".w·3 * @"".h·4); return (&@"".Alpha16{ Pix:@"".pix·5, Stride:0x2 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".Gray struct { Y uint8 }
func (@"image/color".c·5 @"image/color".Gray) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); @"image/color".y·6 |= @"image/color".y·6 << 0x8; return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, 0xffff }
type @"".Gray struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".Gray "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel }
func (@"".p·2 *@"".Gray "esc:0x1") GrayAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray)
func (@"".p·2 *@"".Gray "esc:0x1") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 }
func (@"".p·1 *@"".Gray "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray "esc:0x1") SetGray (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray)
func (@"".p·2 *@"".Gray "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray (@"".r·2 @"".Rectangle) (? *@"".Gray) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x1 * @"".w·3 * @"".h·4); return (&@"".Gray{ Pix:@"".pix·5, Stride:0x1 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".Gray16 struct { Y uint16 }
func (@"image/color".c·5 @"image/color".Gray16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, 0xffff }
type @"".Gray16 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".Gray16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model }
func (@"".p·2 *@"".Gray16 "esc:0x1") Gray16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray16)
func (@"".p·2 *@"".Gray16 "esc:0x1") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x2 }
func (@"".p·1 *@"".Gray16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray16 "esc:0x1") SetGray16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray16)
func (@"".p·2 *@"".Gray16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray16 (@"".r·2 @"".Rectangle) (? *@"".Gray16) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x2 * @"".w·3 * @"".h·4); return (&@"".Gray16{ Pix:@"".pix·5, Stride:0x2 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".CMYK struct { C uint8; M uint8; Y uint8; K uint8 }
func (@"image/color".c·5 @"image/color".CMYK) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) { var @"image/color".w·6 uint32; ; @"image/color".w·6 = uint32(0xffff - uint32(@"image/color".c·5.K) * 0x101); var @"image/color".r·7 uint32; ; @"image/color".r·7 = uint32(0xffff - uint32(@"image/color".c·5.C) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".g·8 uint32; ; @"image/color".g·8 = uint32(0xffff - uint32(@"image/color".c·5.M) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".b·9 uint32; ; @"image/color".b·9 = uint32(0xffff - uint32(@"image/color".c·5.Y) * 0x101) * @"image/color".w·6 / 0xffff; return uint32(@"image/color".r·7), uint32(@"image/color".g·8), uint32(@"image/color".b·9), 0xffff }
type @"".CMYK struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".CMYK "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".CMYK "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".CMYK "esc:0x1") CMYKAt (@"".x·3 int, @"".y·4 int) (? @"image/color".CMYK)
func (@"".p·2 *@"".CMYK "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".CMYKModel }
func (@"".p·2 *@"".CMYK "esc:0x1") Opaque () (? bool) { return true }
func (@"".p·2 *@"".CMYK "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 }
func (@"".p·1 *@"".CMYK "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".CMYK "esc:0x1") SetCMYK (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".CMYK)
func (@"".p·2 *@"".CMYK "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewCMYK (@"".r·2 @"".Rectangle) (? *@"".CMYK) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".CMYK{ Pix:@"".buf·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) }
type @"image/color".Palette []@"image/color".Color
func (@"image/color".p·2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color)
func (@"image/color".p·2 @"image/color".Palette "esc:0x9") Index (@"image/color".c·3 @"image/color".Color) (? int)
type @"".Paletted struct { Pix []uint8; Stride int; Rect @"".Rectangle; Palette @"image/color".Palette }
func (@"".p·2 *@"".Paletted "esc:0x32") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Paletted "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Paletted "esc:0x1") ColorIndexAt (@"".x·3 int, @"".y·4 int) (? uint8)
func (@"".p·2 *@"".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"".p·2.Palette }
func (@"".p·2 *@"".Paletted "esc:0x9") Opaque () (? bool)
func (@"".p·2 *@"".Paletted "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 }
func (@"".p·1 *@"".Paletted "esc:0x9") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Paletted "esc:0x1") SetColorIndex (@"".x·2 int, @"".y·3 int, @"".index·4 uint8)
func (@"".p·2 *@"".Paletted "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewPaletted (@"".r·2 @"".Rectangle, @"".p·3 @"image/color".Palette) (? *@"".Paletted) { var @"".w·4 int; var @"".h·5 int; @"".w·4, @"".h·5 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·6 []uint8; @"".pix·6 = make([]uint8, 0x1 * @"".w·4 * @"".h·5); return (&@"".Paletted{ Pix:@"".pix·6, Stride:0x1 * @"".w·4, Rect:@"".r·2, Palette:@"".p·3 }) }
type @"".Uniform struct { C @"image/color".Color }
func (@"".c·2 *@"".Uniform "esc:0x22") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform "esc:0x1") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:-0x3b9aca00, Y:-0x3b9aca00 }), Max:(@"".Point{ X:0x3b9aca00, Y:0x3b9aca00 }) }) }
func (@"".c·2 *@"".Uniform "esc:0x12") ColorModel () (? @"image/color".Model) { return @"".c·2 }
func (@"".c·2 *@"".Uniform "esc:0x22") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform "esc:0x9") Opaque () (? bool)
func (@"".c·5 *@"".Uniform "esc:0x9") RGBA () (@"".r·1 uint32, @"".g·2 uint32, @"".b·3 uint32, @"".a·4 uint32)
var @"".Black *@"".Uniform
var @"".White *@"".Uniform
var @"".Transparent *@"".Uniform
var @"".Opaque *@"".Uniform
func @"".NewUniform (@"".c·2 @"image/color".Color) (? *@"".Uniform) { return (&@"".Uniform{ C:@"".c·2 }) }
type @"".YCbCrSubsampleRatio int
func (@"".s·2 @"".YCbCrSubsampleRatio) String () (? string)
const @"".YCbCrSubsampleRatio444 @"".YCbCrSubsampleRatio = 0x0
const @"".YCbCrSubsampleRatio422 @"".YCbCrSubsampleRatio = 0x1
const @"".YCbCrSubsampleRatio420 @"".YCbCrSubsampleRatio = 0x2
const @"".YCbCrSubsampleRatio440 @"".YCbCrSubsampleRatio = 0x3
const @"".YCbCrSubsampleRatio411 @"".YCbCrSubsampleRatio = 0x4
const @"".YCbCrSubsampleRatio410 @"".YCbCrSubsampleRatio = 0x5
type @"image/color".YCbCr struct { Y uint8; Cb uint8; Cr uint8 }
func (@"image/color".c·5 @"image/color".YCbCr) RGBA () (? uint32, ? uint32, ? uint32, ? uint32)
type @"".YCbCr struct { Y []uint8; Cb []uint8; Cr []uint8; YStride int; CStride int; SubsampleRatio @"".YCbCrSubsampleRatio; Rect @"".Rectangle }
func (@"".p·2 *@"".YCbCr "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".YCbCr "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".YCbCr "esc:0x1") COffset (@"".x·3 int, @"".y·4 int) (? int)
func (@"".p·2 *@"".YCbCr "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel }
func (@"".p·2 *@"".YCbCr "esc:0x1") Opaque () (? bool) { return true }
func (@"".p·2 *@"".YCbCr "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func (@"".p·2 *@"".YCbCr "esc:0x1") YCbCrAt (@"".x·3 int, @"".y·4 int) (? @"image/color".YCbCr)
func (@"".p·2 *@"".YCbCr "esc:0x1") YOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.YStride + (@"".x·3 - @"".p·2.Rect.Min.X) }
func @"".NewYCbCr (@"".r·2 @"".Rectangle, @"".subsampleRatio·3 @"".YCbCrSubsampleRatio) (? *@"".YCbCr)
func @"".init ()
var @"image/color".Opaque @"image/color".Alpha16
var @"image/color".Transparent @"image/color".Alpha16
var @"image/color".Alpha16Model @"image/color".Model
type @"".format struct { @"".name string; @"".magic string; @"".decode func(? @"io".Reader) (? @"".Image, ? error); @"".decodeConfig func(? @"io".Reader) (? @"".Config, ? error) }
var @"".formats []@"".format
var @"image/color".RGBAModel @"image/color".Model
var @"image/color".RGBA64Model @"image/color".Model
var @"image/color".NRGBAModel @"image/color".Model
var @"image/color".NRGBA64Model @"image/color".Model
var @"image/color".AlphaModel @"image/color".Model
var @"image/color".GrayModel @"image/color".Model
var @"image/color".Gray16Model @"image/color".Model
var @"image/color".CMYKModel @"image/color".Model
var @"image/color".YCbCrModel @"image/color".Model
$$
�_go_.o 0 0 0 644 533729 `
go object linux amd64 go1.5.1 X:none
!
��go13ldbufio.aerrors.aio.aimage/color.astrconv.a�þ""".RegisterFormat�� ��ŽdH‹ %����HD$ðH;A†å��Hì���H‹œ$���H‰$è����1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‰œ$€���H‰œ$ˆ���H‹œ$˜���H‰\$`H‹œ$ ���H‰\$hH‹œ$¨���H‰\$pH‹œ$°���H‰\$xH‹œ$¸���H‰œ$€���H‹œ$À���H‰œ$ˆ���H����H‰$è����H‹����H‹����H‹ ����H‰ËH)ÃHƒû}HH����H‰$H‰T$HH‰T$H‰D$H‰L$XH‰L$H‰ÃH‰D$PHÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰L$XH9ˇ¿���H‰\$PH‰ÓH‰T$HH‰ÅH‰D$@Hkí0HëH‰$HÇD$0���è����H‹\$HH‹l$@Hkí0HëHl$`H‰\$H‰l$H-����H‰,$è����H����H‰$è����H‹\$PH‰����H‹\$XH‰����H‹\$H€=�����uH‰����è����HÄ���ÃH-����H‰,$H‰\$è����ëÜè���� è����éùýÿÿ.
������X
��*runtime.racefuncenter���Ú��"".formats���ì
�� runtime.raceread���ú��"".formats���ˆ�"".formats���– �"".formats���¼�� type.[]"".format��� 
��"runtime.growslice���Â
��,runtime.racewriterange�����type."".format���¢
��(runtime.typedmemmove���°��"".formats���Â
��"runtime.racewrite���Ú�"".formats���ò �"".formats���ˆ�6runtime.writeBarrierEnabled���œ��"".formats���¦
��(runtime.racefuncexit���Ä��"".formats���à
��.runtime.writebarrierptr���î
��$runtime.panicslice���ü
��0runtime.morestack_noctxt���` ��"".autotmp_0002�Ÿtype.int�"".autotmp_0001� type.[]"".format�"".autotmp_0000�_type."".format�"".decodeConfig�PNtype.func(io.Reader) ("".Config, error)�"".decode�@Ltype.func(io.Reader) ("".Image, error)�"".magic� type.string�"".name��type.string� ¿Ÿ 1��B¸��+Š«0B>�Tgclocals·61b167ad47cde17c5a09bf89f76e51ad�Tgclocals·219d8d154da9b833882f5372d7b1af99���6/tmp/go/src/image/format.goþ"".asReader��À ��¤ dH‹ %����H„$`ÿÿÿH;A†í��Hì ��H‹œ$ ��H‰$è����1ÛH‰œ$8��H‰œ$@��1ÛH‰œ$ ���H‰œ$¨���H����H‰$H‹œ$(��H‰\$H‹œ$0��H‰\$Hœ$ ���H‰\$è����¶\$ H‹”$ ���H‰T$pH‹Œ$¨���H‰L$x€û�tH‰”$8��H‰Œ$@��è����HÄ ��ÃH‹Œ$(��H‹„$0��H‰Œ$€���H‰„$ˆ���HÇD$0���HÇD$X����H����H‰$H‰Œ$���H‰L$H‰„$˜���H‰D$H\$XH‰\$è����¶\$ H‹L$X€û�„ˆ���H‰L$@H‰ $è����H‹L$@H‹YH‹l$0H9ë|gH‰ÈH‰D$PH‹����1íH9èt"H‹\$PH‰œ$@��H‰„$8��è����HÄ ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¯H‹\$0Hƒû} HÇD$0���H����H‰$è����H‹L$0H‹D$H‰D$8H‰D$HH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$���H‹Œ$˜���H¼$È���1ÀHƒÇøè����L‰„$°���L‰„$È���H‰´$¸���H‰´$Ð���H‰¬$À���H‰¬$Ø���H‰T$`H‰”$à���H‰L$hH‰Œ$è���HDŽ$��ÿÿÿÿHDŽ$��ÿÿÿÿH‹\$HH‰$HÇD$X���è����H‹\$HHƒû�t,H¬$È���H‰\$H‰l$H-����H‰,$è����H‹D$8éhþÿÿ‰ëÐè����éîüÿÿ.
������^
��*runtime.racefuncenter���´��type."".reader���”
��$runtime.assertI2I2���†
��(runtime.racefuncexit���ˆ��$type.*bufio.Reader���â
��$runtime.assertI2T2���¤
�� runtime.raceread���è��>go.itab.*bufio.Reader."".reader���ª
��(runtime.racefuncexit���È��$type.*bufio.Reader���Þ��type."".reader���ö��>go.itab.*bufio.Reader."".reader���Š
�� runtime.typ2Itab���Î��"type.bufio.Reader���à
��"runtime.newobject���–��type.[]uint8���¼
��"runtime.makeslice���  
Ô� runtime.duffzero���’ 
��,runtime.racewriterange���Ú ��"type.bufio.Reader���ì 
��(runtime.typedmemmove���’ 
��0runtime.morestack_noctxt���@À��""".autotmp_0010��$type.*bufio.Reader�"".autotmp_0009��$type.*bufio.Reader�"".autotmp_0008�¯"type.bufio.Reader�"".autotmp_0006�Ÿ$type.*bufio.Reader�"".autotmp_0004�$type.*bufio.Reader�"".autotmp_0003�ÿtype."".reader�bufio.r·3�ÿtype.io.Reader�bufio.buf·2�ßtype.[]uint8�bufio.b·1�¯$type.*bufio.Reader�bufio.r·6�Ï$type.*bufio.Reader�bufio.b·4�¿$type.*bufio.Reader�bufio.size·3�ßtype.int�bufio.rd·2�Ÿtype.io.Reader�bufio.rd·2�¿type.io.Reader�
"".rr�ßtype."".reader� "".~r1� type."".reader�"".r��type.io.Reader�*"À¬¿ÀÑ¿Àÿ� �2XEmÅ…\[R�4�.[9n!C0+.«-+�Tgclocals·68c9fa00f2dd3a035f977db2d5190cf0�Tgclocals·0318f4fe3c9ebb20c9b242b602ec92a7���6/tmp/go/src/image/format.goþ"".match�� ��”dH‹ %����H;a†í���Hƒì8H‹\$8H‰$è����H‹t$XH‹L$HH9ñtÆD$h�è����HƒÄ8ÃH‹D$PH‹\$`H‰\$01ÉH‰t$(H‰t$H‰D$ H‰L$H‹l$H9é}qH‰D$H‰$è����L‹L$HH‹|$H‹t$H‹T$@¶.L9Ïs]H:¶@8ët L9ÏsEH:¶€û?tÆD$h�è����HƒÄ8ÃH‰ðHÿÀH‰ùHÿÁH‰L$H‹l$H9é|ÆD$hè����HƒÄ8Ãè���� è���� è����éöþÿÿ
������B
��*runtime.racefuncenter���t
��(runtime.racefuncexit���ø
�� runtime.raceread���þ
��(runtime.racefuncexit���Ò
��(runtime.racefuncexit���æ
��$runtime.panicindex���ô
��$runtime.panicindex���‚
��0runtime.morestack_noctxt���`p��"".autotmp_0018�?type.*uint8�"".autotmp_0017��type.int�"".autotmp_0016��type.int�"".autotmp_0015�/type.[]uint8�"".autotmp_0014�_type.int�"".autotmp_0013�Otype.int� "".~r2�Ptype.bool�"".b� type.[]uint8�"".magic��type.string�$p+op„op)op��>h
 T"
 �� [CR�Tgclocals·9ba22629e9611c66625b3db4800944b7�Tgclocals·83ead081cd909acab0dcd88a450c1878���6/tmp/go/src/image/format.goþ"".sniff��€ ��€ dH‹ %����HD$H;A†Þ��Hìð���H‹œ$ð���H‰$è����1ÛH‰œ$��H‰œ$��H‰œ$��H‰œ$ ��H‰œ$(��H‰œ$0��H����H‰$è����H‹����H‹����H‹����H‰œ$ˆ���1ÉH‰„$€���H‰D$8H‰T$xH‰ÐH‰L$@H‹l$8H9éÇ��H‰D$HH‰$HÇD$0���è����H‹\$HHƒû�„��L‹H‹{H‹sH‹SH‹K H‹k(L‰„$À���L‰„$���H‰¼$È���H‰¼$˜���H‰´$Ð���H‰´$ ���H‰”$Ø���H‰”$¨���H‰Œ$à���H‰Œ$°���H‰¬$è���H‰¬$¸���H‹œ$¨���H‰\$H‹œ$���H‰$H‹œ$ø���H‹[ ÿÓL‹D$H‹l$H‹T$ H‹L$(H‹D$0L‰D$`H‰l$hH‰T$pH‰D$XH‰L$PHƒù�…£���Hœ$ ���H‹ H‰ $H‹KH‰L$L‰D$H‰l$H‰T$ è����¶\$(€û�tmH‹œ$���H‰œ$��H‹œ$˜���H‰œ$��H‹œ$ ���H‰œ$��H‹œ$¨���H‰œ$ ��H‹œ$°���H‰œ$(��H‹œ$¸���H‰œ$0��è����HÄð���ÃH‹D$HH‹L$@HƒÀ0HÿÁH‰L$@H‹l$8H9éŒ9þÿÿ1ÿH‰¼$À���H‰¼$��H‰¼$È���H‰¼$��H‰¼$Ð���H‰¼$��H‰¼$Ø���H‰¼$ ��H‰¼$à���H‰¼$(��H‰¼$è���H‰¼$0��è����HÄð���Éééýÿÿè����é�ýÿÿ
������X
��*runtime.racefuncenter���Ê��"".formats���Ü
�� runtime.raceread���ê��"".formats���ø�"".formats���† �"".formats���˜
��*runtime.racereadrange���ö�������Â
��"".match���  
��(runtime.racefuncexit���Æ 
��(runtime.racefuncexit���î 
��0runtime.morestack_noctxt���€à��"".autotmp_0029��type."".format�"".autotmp_0028�_type."".format�"".autotmp_0027�Ïtype.*"".format�"".autotmp_0026�ïtype.int�"".autotmp_0025�ßtype.int�"".autotmp_0020�ï type.[]"".format� "".err�¿type.error�"".b�Ÿtype.[]uint8�"".f�¿type."".format� "".~r1� type."".format�"".r��type."".reader�(à¼ßà’ßà�€�:‚ 2ôTE`$ o 
��+ °Ô±�Tgclocals·f62a41cb78c03c15bed464e78226a130�Tgclocals·c29a587d9b6ca82553d1d08ff007a778���6/tmp/go/src/image/format.goþ"".Decode��à��ÞdH‹ %����H„$ÀþÿÿH;A†Ê��HìÀ��H‹œ$À��H‰$è����1ÛH‰œ$Ø��H‰œ$à��1ÛH‰œ$è��H‰œ$ð��1ÛH‰œ$ø��H‰œ$���H‹Œ$È��H‹„$Ð��1ÛH‰\$pH‰\$x1ÛH‰œ$��H‰œ$��H����H‰$H‰Œ$Ð���H‰L$H‰„$Ø���H‰D$Hœ$��H‰\$è����¶\$ H‹Œ$��H‰Œ$���H‹”$��H‰”$˜���€û�„¬��H‰ÐH‰L$pH‰D$xH‰Œ$ ���H‰ $H‰„$¨���H‰D$è����H‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$8��H‰´$@��H‰¬$H��H‰”$P��H‰„$`��H‰Œ$X��1íH9éu_H����H‰$è����1ÛH‰œ$Ø��H‰œ$à��1ÛH‰œ$è��H‰œ$ð��H‹����H‰œ$ø��H‹����H‰œ$���è����HÄÀ��ÃH����H‰$H‹œ$ ���H‰\$H‹œ$¨���H‰\$è����H\$H‹ H‰ $H‹KH‰L$H‹”$X��H‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰¬$à���H‰¬$Ø��H‰”$è���H‰”$à��H‹œ$8��H‰œ$è��H‹œ$@��H‰œ$ð��H‰Œ$ð���H‰Œ$ø��H‰„$ø���H‰„$���è����HÄÀ��ÃH‹Œ$Ð���H‹„$Ø���H‰Œ$°���H‰„$¸���HÇD$@���HÇD$h����H����H‰$H‰Œ$À���H‰L$H‰„$È���H‰D$H\$hH‰\$è����¶\$ H‹L$h€û�„†���H‰L$PH‰ $è����H‹L$PH‹YH‹l$@H9ë|eH‰ÈH‰D$`H‹����1íH9èt H‹T$`H‰„$���H‰ÁH‰”$��H‰Ðé‡ýÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±H‹\$@Hƒû} HÇD$@���H����H‰$è����H‹L$@H‹D$H‰D$HH‰D$XH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$À���H‹Œ$È���H¼$h��1ÀHƒÇøè����L‰„$ ��L‰„$h��H‰´$(��H‰´$p��H‰¬$0��H‰¬$x��H‰”$€���H‰”$€��H‰Œ$ˆ���H‰Œ$ˆ��HDŽ$°��ÿÿÿÿHDŽ$¸��ÿÿÿÿH‹\$XH‰$HÇD$X���è����H‹\$XHƒû�t,H¬$h��H‰\$H‰l$H-����H‰,$è����H‹D$Hédþÿÿ‰ëÐè����éûÿÿ>
������^
��*runtime.racefuncenter���´��type."".reader���”
��$runtime.assertI2I2���Æ
��"".sniff���þ��"".ErrFormat���
�� runtime.raceread���æ��"".ErrFormat���„�"".ErrFormat���ž
��(runtime.racefuncexit���¼��type.io.Reader���‚
��runtime.convI2I���Ê�������¸

��(runtime.racefuncexit���º ��$type.*bufio.Reader���” 
��$runtime.assertI2T2���Ö 
�� runtime.raceread���š ��>go.itab.*bufio.Reader."".reader���ö ��$type.*bufio.Reader���Œ��type."".reader���¤��>go.itab.*bufio.Reader."".reader���¸
�� runtime.typ2Itab���ü��"type.bufio.Reader���Ž
��"runtime.newobject���Ä��type.[]uint8���ê
��"runtime.makeslice���Î
Ô� runtime.duffzero���Ì
��,runtime.racewriterange���”��"type.bufio.Reader���¦
��(runtime.typedmemmove���Ì
��0runtime.morestack_noctxt���€€��4"".autotmp_0041�ÿtype."".reader�"".autotmp_0040��$type.*bufio.Reader�"".autotmp_0036��$type.*bufio.Reader�"".autotmp_0035�¯"type.bufio.Reader�"".autotmp_0033�¿$type.*bufio.Reader�"".autotmp_0031�¯$type.*bufio.Reader�"".autotmp_0030�ßtype."".reader�bufio.r·3�ÿtype.io.Reader�bufio.buf·2�¿type.[]uint8�bufio.b·1�Ï$type.*bufio.Reader�bufio.r·6�ï$type.*bufio.Reader�bufio.b·4�ß$type.*bufio.Reader�bufio.size·3�ÿtype.int�bufio.rd·2�ÿtype.io.Reader�bufio.rd·2�Ÿtype.io.Reader� "".~r1�Ÿtype."".reader�
"".rr�ßtype."".reader�"".r�ßtype.io.Reader� "".err�Ÿtype.error�"".m�¿type."".Image�"".f�type."".format�
"".rr�¿type."".reader� "".~r3�`type.error� "".~r2�@type.string� "".~r1� type."".Image�"".r��type.io.Reader�*"€¸ÿ€Ìÿ€È�ð �Dž" 6 dR`m ÓR �D�.›YeG2›n!q
+.±-�Tgclocals·01125e2a5c0350eb923f65fb084fb0be�Tgclocals·89dd7cd510c646dd78bd230190fb8a36���6/tmp/go/src/image/format.goþ"".DecodeConfig��€��údH‹ %����H„$þÿÿH;A†X��Hìð��H‹œ$ð��H‰$è����1ÛH‰œ$��H‰œ$��H‰œ$��H‰œ$ ��1ÛH‰œ$(��H‰œ$0��1ÛH‰œ$8��H‰œ$@��H‹Œ$ø��H‹„$���1ÛH‰\$pH‰\$x1ÛH‰œ$���H‰œ$��H����H‰$H‰Œ$Ð���H‰L$H‰„$Ø���H‰D$Hœ$���H‰\$è����¶\$ H‹Œ$���H‰Œ$���H‹”$��H‰”$˜���€û�„*��H‰ÐH‰L$pH‰D$xH‰Œ$ ���H‰ $H‰„$¨���H‰D$è����H‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$h��H‰´$p��H‰¬$x��H‰”$€��H‰Œ$ˆ��H‰„$��1íH9è…¯���1ÛH‰œ$H��H‰œ$P��H‰œ$X��H‰œ$`��H����H‰$è����H‹œ$H��H‰œ$��H‹œ$P��H‰œ$��H‹œ$X��H‰œ$��H‹œ$`��H‰œ$ ��1ÛH‰œ$(��H‰œ$0��H‹����H‰œ$8��H‹����H‰œ$@��è����HÄð��ÃH����H‰$H‹œ$ ���H‰\$H‹œ$¨���H‰\$è����H\$H‹ H‰ $H‹KH‰L$H‹”$��H‹ÿÓH‹|$H‹t$H‹l$ H‹T$(H‹L$0H‹D$8H‰¼$(��H‰¼$��H‰´$0��H‰´$��H‰¬$8��H‰¬$��H‰”$@��H‰”$ ��H‹œ$h��H‰œ$(��H‹œ$p��H‰œ$0��H‰Œ$à���H‰Œ$8��H‰„$è���H‰„$@��è����HÄð��ÃH‹Œ$Ð���H‹„$Ø���H‰Œ$°���H‰„$¸���HÇD$@���HÇD$h����H����H‰$H‰Œ$À���H‰L$H‰„$È���H‰D$H\$hH‰\$è����¶\$ H‹L$h€û�„†���H‰L$PH‰ $è����H‹L$PH‹YH‹l$@H9ë|eH‰ÈH‰D$`H‹����1íH9èt H‹T$`H‰„$ð���H‰ÁH‰”$ø���H‰Ðé ýÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$ë±H‹\$@Hƒû} HÇD$@���H����H‰$è����H‹L$@H‹D$H‰D$HH‰D$XH����H‰$H‰L$H‰L$è����L‹D$H‹t$ H‹l$(H‹”$À���H‹Œ$È���H¼$˜��1ÀHƒÇøè����L‰„$��L‰„$˜��H‰´$��H‰´$ ��H‰¬$ ��H‰¬$¨��H‰”$€���H‰”$°��H‰Œ$ˆ���H‰Œ$¸��HDŽ$à��ÿÿÿÿHDŽ$è��ÿÿÿÿH‹\$XH‰$HÇD$X���è����H‹\$XHƒû�t,H¬$˜��H‰\$H‰l$H-����H‰,$è����H‹D$Hédþÿÿ‰ëÐè����éƒúÿÿ>
������^
��*runtime.racefuncenter���Ô��type."".reader���´
��$runtime.assertI2I2���æ
��"".sniff���ê��"".ErrFormat���ü
�� runtime.raceread���®��"".ErrFormat���Ì�"".ErrFormat���æ
��(runtime.racefuncexit���„ ��type.io.Reader���Ê 
��runtime.convI2I���’
�������Ô 
��(runtime.racefuncexit���Ö ��$type.*bufio.Reader���°
��$runtime.assertI2T2���ò
�� runtime.raceread���¶��>go.itab.*bufio.Reader."".reader���’��$type.*bufio.Reader���¨��type."".reader���À��>go.itab.*bufio.Reader."".reader���Ô
�� runtime.typ2Itab���˜��"type.bufio.Reader���ª
��"runtime.newobject���à��type.[]uint8���†
��"runtime.makeslice���ê
Ô� runtime.duffzero���è
��,runtime.racewriterange���°��"type.bufio.Reader���Â
��(runtime.typedmemmove���è
��0runtime.morestack_noctxt��� à��8"".autotmp_0057�Ïtype."".Config�"".autotmp_0055�ÿtype."".reader�"".autotmp_0054��$type.*bufio.Reader�"".autotmp_0052��type."".Config�"".autotmp_0050��$type.*bufio.Reader�"".autotmp_0049�¯"type.bufio.Reader�"".autotmp_0047�Ÿ$type.*bufio.Reader�"".autotmp_0045�$type.*bufio.Reader�"".autotmp_0044�ßtype."".reader�bufio.r·3�ßtype.io.Reader�bufio.buf·2�¿type.[]uint8�bufio.b·1�¯$type.*bufio.Reader�bufio.r·6�Ï$type.*bufio.Reader�bufio.b·4�¿$type.*bufio.Reader�bufio.size·3�ßtype.int�bufio.rd·2�ßtype.io.Reader�bufio.rd·2�ÿtype.io.Reader� "".~r1�ÿtype."".reader�
"".rr�¿type."".reader�"".r�¿type.io.Reader� "".err�Ÿtype.error�"".c�type."".Config�"".f�type."".format�
"".rr�Ÿtype."".reader� "".~r3�€type.error� "".~r2�`type.string� "".~r1� type."".Config�"".r��type.io.Reader�*"àœßàößàÊ�€ �@º" F d¢j ½ �F�.«Y‹u2Ån!q
+.±- �Tgclocals·404bd706b395d652fac0e702c80086b6�Tgclocals·3f96fc659bf6a949de7b329a27509890���6/tmp/go/src/image/format.goþ"".Point.String��à��ÚdH‹ %����HD$øH;A† ��Hìˆ���H‹œ$ˆ���H‰$è����1ÛH‰œ$ ���H‰œ$¨���H‹œ$���H‰$è����H‹\$H‰\$xH‹\$H‰œ$€���H‹œ$˜���H‰$è����H‹L$H‹D$HÇ$����H����H‰\$HÇD$���H‹\$xH‰\$H‹œ$€���H‰\$ H����H‰\$(HÇD$0���H‰L$hH‰L$8H‰D$pH‰D$@H����H‰\$HHÇD$P���è����H‹\$XH‰œ$ ���H‹\$`H‰œ$¨���è����HÄˆ���Ãè����éÓþÿÿ
������X
��*runtime.racefuncenter���ž
��strconv.Itoa���î
��strconv.Itoa��� ��go.string."("���ø��go.string.","���Ê��go.string.")"���ð
��*runtime.concatstring5���®
��(runtime.racefuncexit���È
��0runtime.morestack_noctxt���@��"".autotmp_0060�?type.string�"".autotmp_0059�type.string� "".~r0� type.string�"".p��type."".Point�ƒ �°�&BÔ ��+K�Tgclocals·124a21249e8861ddbb76c8b0b45d3971�Tgclocals·4839c181b903023c3ae99be60aaf4271���2/tmp/go/src/image/geom.goþ"".Point.Add��à��ÈdH‹ %����H;avNHƒìH‹\$H‰$è����1Û1ÛH‹L$ H‹l$0H‹D$(HéH‹l$8HèH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃè����ëœ
������:
��*runtime.racefuncenter���¨
��(runtime.racefuncexit���¼
��0runtime.morestack_noctxt���`0��"".autotmp_0061�type."".Point� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0I/0�p�0:�
�T�Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.Sub��à��ÈdH‹ %����H;avNHƒìH‹\$H‰$è����1Û1ÛH‹L$ H‹l$0H‹D$(H)éH‹l$8H)èH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃè����ëœ
������:
��*runtime.racefuncenter���¨
��(runtime.racefuncexit���¼
��0runtime.morestack_noctxt���`0��"".autotmp_0062�type."".Point� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0I/0�p�::�
�T�Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.Mul��à��ÂdH‹ %����H;avKHƒìH‹\$H‰$è����H‹D$01Û1ÛH‹L$ H‹\$(H¯ÈH¯ØH‰L$H‰L$8H‰\$H‰\$@è����HƒÄÃè����ëŸ
������:
��*runtime.racefuncenter���¢
��(runtime.racefuncexit���¶
��0runtime.morestack_noctxt���P0��"".autotmp_0063�type."".Point� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�0F/0�p�D2�
�T�Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.Div�� ��–dH‹ %����H;avrHƒìH‹\$H‰$è����H‹L$01Û1ÛH‹D$ HƒùÿtDH™H÷ùH‰ÃH‹D$(H‰ÞHƒùÿt&H™H÷ùH‰ÃH‰t$H‰t$8H‰\$H‰\$@è����HƒÄÃH÷ØH‰ÃëÚH÷ØH‰Ãë¼è����éuÿÿÿ
������:
��*runtime.racefuncenter���Ð
��(runtime.racefuncexit���„
��0runtime.morestack_noctxt���P0��"".autotmp_0064�type."".Point� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�0]/0��NY�
�t�Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.In��à��ÜdH‹ %����H;avXHƒìH‹\$H‰$è����H‹L$H‹D$H‹\$ H9Ë+H‹l$0H9é}!H‹\$(H9ÃH‹l$8H9èœD$@è����HƒÄÃÆD$@�ëïè����ë’
������:
��*runtime.racefuncenter���®
��(runtime.racefuncexit���Ð
��0runtime.morestack_noctxt���p�� "".~r1�`type.bool�"".r� "type."".Rectangle�"".p��type."".Point�L�p�XT �
�T�Tgclocals·627bbca91efe935c3ac76737d2026ca6�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.Mod�� ��ŠdH‹ %����HD$ÈH;A†c��Hì¸���H‹œ$¸���H‰$è����H‹Œ$à���H‹´$è���L‹Œ$Ð���L‹„$Ø���1ÛL‰„$€���H‰´$���H‰ÏH‰Œ$ˆ���L‰L$xL)ÉL‰Œ$˜���H‰¼$¨���H‰´$°���L‰„$ ���L)ÆH‰ÏH‹„$À���L‹”$È���1Û1ÛH‰D$HL‰L$(L)ÈL‰T$PL‰D$0M)ÂH‰D$L‰T$H‰ÂHƒùÿ„”���H™H÷ùH‰ÓH‰ÙHƒû�}HùL‰ÐHƒþÿtsH™H÷þH‰ÓH‰ØHƒû�}HðH‰Œ$À���H‰„$È���1Û1ÛH‰L$XL‰L$8LÉH‰D$`L‰D$@LÀH‰L$hH‰D$pH‰L$H‰Œ$ð���H‰D$ H‰„$ø���è����HÄ¸���Ã1Ûë‘1Ûémÿÿÿè����é{þÿÿ
������X
��*runtime.racefuncenter���È
��(runtime.racefuncexit���ø
��0runtime.morestack_noctxt���€ð��""".autotmp_0072��type."".Point�"".autotmp_0071�Ÿtype."".Point�"".autotmp_0069��type.int�"".autotmp_0068��type.int�"".autotmp_0066��type.int�"".autotmp_0065��type.int� "".~r1�¿type."".Point�"".q�ÿtype."".Point�"".p�¿type."".Point� "".~r1�ßtype."".Point�"".q�Ÿtype."".Point�"".p�ßtype."".Point�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�`type."".Point�"".r� "type."".Rectangle�"".p��type."".Point�ðÐïð ��>f1I8_� �+å�Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Point.Eq��à��ÆdH‹ %����H;a†Æ���Hƒì8H‹\$8H‰$è����H‹\$@H‰\$H‹\$HH‰\$ H‹\$PH‰\$H‹D$XH‰D$HD$H\$H‰\$(H‰D$0H‰$è����H‹\$(H‰$è����H‹D$0H‹L‹D$(I‹(H9ëuEH‰$Hƒ$è����H‹\$(H‰$Hƒ$è����H‹l$0H‹]L‹D$(I‹hH9ë”D$`è����HƒÄ8ÃÆD$`�ëïè����éÿÿÿ
������B
��*runtime.racefuncenter���Ì
�� runtime.raceread���è
�� runtime.raceread���®
�� runtime.raceread���Ô
�� runtime.raceread���’
��(runtime.racefuncexit���´
��0runtime.morestack_noctxt���Pp��"".autotmp_0076�type.*"".Point�"".autotmp_0075�type.*"".Point�"".autotmp_0074�_type."".Point�"".autotmp_0073�?type."".Point� "".~r1�@type.bool�"".q� type."".Point�"".p��type."".Point�pºop�ð�„%£
�� Ec(�Tgclocals·98a935522f11e180b06d5a082b7d09c1�Tgclocals·21a8f585a14d020f181242c5256583dc���2/tmp/go/src/image/geom.goþ
"".Pt��À��¨dH‹ %����H;av>HƒìH‹\$H‰$è����1Û1ÛH‹L$ H‹D$(H‰L$H‰L$0H‰D$H‰D$8è����HƒÄÃè����ë¬
������:
��*runtime.racefuncenter���ˆ
��(runtime.racefuncexit���œ
��0runtime.morestack_noctxt���@0��"".autotmp_0077�type."".Point� "".~r2� type."".Point�"".Y�type.int�"".X��type.int�09/0�`�”*�
�D�Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ&"".Rectangle.String�� ��ˆdH‹ %����H;a†ç���HƒìhH‹\$hH‰$è����1ÛH‰œ$���H‰œ$˜���H\$pH‹ H‰ $H‹KH‰L$è����H‹\$H‰\$XH‹\$H‰\$`Hœ$€���H‹ H‰ $H‹KH‰L$è����H‹L$H‹D$HÇ$����H‹\$XH‰\$H‹\$`H‰\$H����H‰\$HÇD$ ���H‰L$HH‰L$(H‰D$PH‰D$0è����H‹\$8H‰œ$���H‹\$@H‰œ$˜���è����HƒÄhÃè����éüþÿÿ
������B
��*runtime.racefuncenter���š
��"".Point.String���ü
��"".Point.String���Ö��go.string."-"���¤
��*runtime.concatstring3���â
��(runtime.racefuncexit���ö
��0runtime.morestack_noctxt���`Ð��"".autotmp_0079�?type.string�"".autotmp_0078�type.string� "".~r0�@type.string�"".r��"type."".Rectangle�ÐâÏÐ��¶7¹�� ]T �Tgclocals·b2f74c392de0ed28f7e906de7ba4bab4�Tgclocals·4839c181b903023c3ae99be60aaf4271���2/tmp/go/src/image/geom.goþ"".Rectangle.Dx�� ��ˆdH‹ %����H;av.HƒìH‹\$H‰$è����H‹\$ H‹l$H)ëH‰\$0è����HƒÄÃè����ë¼
������:
��*runtime.racefuncenter���h
��(runtime.racefuncexit���|
��0runtime.morestack_noctxt���P�� "".~r0�@type.int�"".r��"type."".Rectangle�)�P�À*�
�4�Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Rectangle.Dy�� ��ˆdH‹ %����H;av.HƒìH‹\$H‰$è����H‹\$(H‹l$H)ëH‰\$0è����HƒÄÃè����ë¼
������:
��*runtime.racefuncenter���h
��(runtime.racefuncexit���|
��0runtime.morestack_noctxt���P�� "".~r0�@type.int�"".r��"type."".Rectangle�)�P�Ê*�
�4�Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ""".Rectangle.Size��à��ÈdH‹ %����H;avNHƒìH‹\$H‰$è����1Û1ÛH‹L$0H‹l$ H‹D$8H)éH‹l$(H)èH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃè����ëœ
������:
��*runtime.racefuncenter���¨
��(runtime.racefuncexit���¼
��0runtime.morestack_noctxt���`0��"".autotmp_0080�type."".Point� "".~r0�@type."".Point�"".r��"type."".Rectangle�0I/0�p�,Ô
�
�T�Tgclocals·709a14768fab2805a378215c02f0d27f�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ "".Rectangle.Add�� ��œdH‹ %����H;avuHƒì(H‹\$(H‰$è����H‹L$PH‹D$X1Û1ÛH‹t$0H‹T$8H‹\$@HÎHÂHËH‰ÙH‹\$HHÃH‰t$H‰t$`H‰T$H‰T$hH‰L$H‰L$pH‰\$ H‰\$xè����HƒÄ(Ãè����érÿÿÿ
������:
��*runtime.racefuncenter���ö
��(runtime.racefuncexit���Š
��0runtime.morestack_noctxt��� P��"".autotmp_0081�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�PpOP ��,ä
2 �
�t�Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23c�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ "".Rectangle.Sub�� ��œdH‹ %����H;avuHƒì(H‹\$(H‰$è����H‹L$PH‹D$X1Û1ÛH‹t$0H‹T$8H‹\$@H)ÎH)ÂH)ËH‰ÙH‹\$HH)ÃH‰t$H‰t$`H‰T$H‰T$hH‰L$H‰L$pH‰\$ H‰\$xè����HƒÄ(Ãè����érÿÿÿ
������:
��*runtime.racefuncenter���ö
��(runtime.racefuncexit���Š
��0runtime.morestack_noctxt��� P��"".autotmp_0082�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�PpOP ��,ô
2 �
�t�Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23c�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ$"".Rectangle.Inset��À��°dH‹ %����H;a†û���HƒìHH‹\$HH‰$è����L‹D$PH‹t$`H‹|$XH‹T$hH‹D$p1ÛH‰|$H‰T$ H‰óH‰t$L‰D$L)ÃH‰ÅHÑåH9덗���L‰ÃHóH‰ÙHÁû?H)ÙHÑùH‰ÎH‰L$(H‰t$8H‰ÓH‰T$@H‰|$0H)ûH‰ÅHÑåH9ë}NH×H‰ûHÁû?H)ßHÑÿH‰øH‰L$PH‰L$xH‰|$XH‰¼$€���H‰t$`H‰´$ˆ���H‰D$hH‰„$���è����HƒÄHÃHÇH‰ÓH)ÃH‰Øë·L‰ÁHÁH)Æéqÿÿÿè����éèþÿÿ
������B
��*runtime.racefuncenter���Ò
��(runtime.racefuncexit���ž
��0runtime.morestack_noctxt�����"".autotmp_0090��type.int�"".autotmp_0089��type.int�"".autotmp_0088��type.int�"".autotmp_0086��type.int�"".autotmp_0085��type.int�"".autotmp_0084��type.int�"".autotmp_0083��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�P"type."".Rectangle�"".n�@type.int�"".r��"type."".Rectangle�Ú.� �Hˆ')
%
; � � €�Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ,"".Rectangle.Intersect��À��¸dH‹ %����H;a†ÿ���HƒìH‹\$H‰$è����L‹T$8L‹L$@L‹D$HH‹|$PH‹t$H‹T$ H‹L$(H‹D$01ÛH‰\$XH‰\$`H‰\$hH‰\$pL9Ö}L‰ÖL9Ê}L‰ÊL‰L$ L9Á~L‰ÁH9ø~H‰øH‰|$0H‰t$H‰L$(H9Î#H9ÂH‰t$XH‰T$`H‰L$hH‰D$pè����HƒÄÃH����H‰$HÇD$ ���è����H‹����H‰\$XH‹����H‰\$`H‹����H‰\$hH‹����H‰\$pè����HƒÄÃè����éäþÿÿ
������B
��*runtime.racefuncenter���ì
��(runtime.racefuncexit���„��
"".ZR���¨
��*runtime.racereadrange���¶��
"".ZR����
"".ZR���æ �
"".ZR���þ0�
"".ZR���’
��(runtime.racefuncexit���¦
��0runtime.morestack_noctxt���À �� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle� § R � �H° 6I� � €�Tgclocals·5f32766c99d383f833fae93d4e4d71d1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ$"".Rectangle.Union��€��údH‹ %����H;a†`��HƒìHH‹\$HH‰$è����L‹T$PL‹L$XL‹D$`H‹|$hH‹t$pH‹T$xH‹Œ$€���H‹„$ˆ���1ÛL‰L$H‰|$ L‰T$L‰D$M9õ���I9ù@Å@€ý�t*H‰´$���H‰”$˜���H‰Œ$ ���H‰„$¨���è����HƒÄHÃH‰T$0H‰D$@H‰t$(H‰L$8H9΍•���H9Â@Å@€ý�t*L‰”$���L‰Œ$˜���L‰„$ ���H‰¼$¨���è����HƒÄHÃI9ò~I‰òI9Ñ~I‰ÑI9È}I‰ÈH9Ç}H‰ÇL‰T$PL‰”$���L‰L$XL‰Œ$˜���L‰D$`L‰„$ ���H‰|$hH‰¼$¨���è����HƒÄHÃHÇÅ���éfÿÿÿHÇÅ���éÿÿÿè����éƒþÿÿ
������B
��*runtime.racefuncenter�����(runtime.racefuncexit���è
��(runtime.racefuncexit���¤
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���À�� "".autotmp_0092��type.bool�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�2‘S]%�€�`Ø&<%* "!* >   � � à�Tgclocals·5f32766c99d383f833fae93d4e4d71d1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ$"".Rectangle.Empty��À��´dH‹ %����H;avDHƒìH‹\$H‰$è����H‹\$H‹l$ H9ë}H‹\$H‹l$(H9ëD$0è����HƒÄÃÆD$0ëïè����ë¦
������:
��*runtime.racefuncenter���†
��(runtime.racefuncexit���¨
��0runtime.morestack_noctxt���P�� "".~r0�@type.bool�"".r��"type."".Rectangle�8�`�†@ �
�D�Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Rectangle.Eq��À ��¤ dH‹ %����HD$ØH;A†ð��Hì¨���H‹œ$¨���H‰$è����H‹œ$°���H‰\$hH‹œ$¸���H‰\$pH‹œ$À���H‰\$xH‹œ$È���H‰œ$€���H‹œ$Ð���H‰\$HH‹œ$Ø���H‰\$PH‹Œ$à���H‰L$XH‹„$è���H‰D$`HD$hHL$HH‰„$ ���Hƒø�„J��H‰Œ$˜���Hƒù�„1��H‰Œ$ˆ���H‰„$���H‰$è����H‹œ$ˆ���H‰$è����H‹„$���H‹L‹„$ˆ���I‹(H9ë…á��H‰$Hƒ$è����H‹œ$ˆ���H‰$Hƒ$è����H‹¬$���H‹]L‹„$ˆ���I‹hH9ë”À<�„��H‹„$ ���Hƒø�„w��H‹Œ$˜���HƒÀHƒù�„Z��HƒÁH‰Œ$���H‰„$ˆ���H‰$è����H‹œ$���H‰$è����H‹„$ˆ���H‹L‹„$���I‹(H9ë…��H‰$Hƒ$è����H‹œ$���H‰$Hƒ$è����H‹¬$ˆ���H‹]L‹„$���I‹hH9ë”À<�…²���H‹œ$°���H‹”$¸���H‰T$0H‹Œ$À���H‹„$È���H‰D$@H‰\$(H‰L$8H9Ë}pH9À<�t\H‹œ$Ð���H‹”$Ø���H‰T$H‹Œ$à���H‹„$è���H‰D$ H‰\$H‰L$H9Ë}H9Àˆ„$ð���è����HÄ¨���ÃHÇÀ���ëãƄ$ð����ëàHÇÀ���ëÆ„$ð���ëÍ1Àé5ÿÿÿ‰éŸþÿÿ‰�é‚þÿÿ1Àé ÿÿÿ1ÀéZþÿÿ‰éÈýÿÿ‰�é¯ýÿÿè����éîüÿÿ
������X
��*runtime.racefuncenter���¼
�� runtime.raceread���Þ
�� runtime.raceread���¸
�� runtime.raceread���ä
�� runtime.raceread���º
�� runtime.raceread���Ü
�� runtime.raceread���¶
�� runtime.raceread���â
�� runtime.raceread���Ê

��(runtime.racefuncexit���’ 
��0runtime.morestack_noctxt���Ð��"".autotmp_0102��type.bool�"".autotmp_0101��type.bool�"".autotmp_0100��type.*"".Point�"".autotmp_0099��type.*"".Point�"".autotmp_0098�?type.*"".Point�"".autotmp_0097�/type.*"".Point�"".autotmp_0096�$type.*"".Rectangle�"".autotmp_0095�$type.*"".Rectangle�"".autotmp_0094�¿"type."".Rectangle�"".autotmp_0093�"type."".Rectangle�"".r�¿"type."".Rectangle�"".r�ÿ"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�БÏÐo� �*’0ô1��+²¿ˆ|�Tgclocals·bb62ddeba3b841c3b8407d8da49fbc51�Tgclocals·406991e81a5d6b9f25174854f4bda0b5���2/tmp/go/src/image/geom.goþ*"".Rectangle.Overlaps��à��ÆdH‹ %����H;a†Æ���HƒìHH‹\$HH‰$è����L‹l$PL‹d$XL‹\$`L‹T$hL‹L$pL‹D$xH‹´$€���H‹Œ$ˆ���L‰d$L‰T$ L‰l$L‰\$M9Ý}dM9ԝÀ<�uGL‰D$0H‰L$@L‰L$(H‰t$8I9ñ}8I9ȝÀ<�u$I9õ}M9Ù}I9Ì}M9Ðœ„$���è����HƒÄHÃƄ$����ëìHÇÀ���ëÅHÇÀ���ë™è����éÿÿÿ
������B
��*runtime.racefuncenter���è
��(runtime.racefuncexit���´
��0runtime.morestack_noctxt����� "".autotmp_0106��type.bool�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�¥3�ð�0œ<2� � Ð�Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Rectangle.In��€��ôdH‹ %����H;a†���Hƒì(H‹\$(H‰$è����L‹L$0L‹D$8H‹t$@H‹L$HL‰D$H‰L$ L‰L$H‰t$I9ñ}UI9ȝÀ<�tÆD$pè����HƒÄ(ÃH‹\$PL9Ë+H‹l$`H9î!H‹\$XL9ÃH‹l$hH9éžD$pè����HƒÄ(ÃÆD$p�ëïHÇÀ���ë¨è����éFÿÿÿ
������B
��*runtime.racefuncenter���Ä
��(runtime.racefuncexit���®
��(runtime.racefuncexit���â
��0runtime.morestack_noctxt���P��"".r�?"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�PSOP4OP �À�(ª" #
 
< � �  �Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ$"".Rectangle.Canon�� ��ždH‹ %����H;avvHƒìH‹\$H‰$è����H‹|$ H‹t$H‹L$(H‹D$1ÛH9÷} H‰òH‰þH‰×H9Á} H‰ÂH‰ÈH‰ÑH‰t$H‰t$0H‰D$H‰D$8H‰|$ H‰|$@H‰L$(H‰L$Hè����HƒÄÃè����éqÿÿÿ
������:
��*runtime.racefuncenter���ø
��(runtime.racefuncexit���Œ
��0runtime.morestack_noctxt���€��"".autotmp_0109��type.int� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�q ��(Â"   2 �
�t�Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ"".Rectangle.At��€��òdH‹ %����H;a†\��HƒìhH‹\$hH‰$è����1ÛH‰œ$ ���H‰œ$¨���1ÛH‹Œ$���H‹„$˜���H‰D$@H‹\$pH‹|$xH‰|$PH‹´$€���H‰t$XH‹”$ˆ���H‰T$`H‰\$HH‰L$8H9ˏÞ���H9ñÕ���H9ǏÌ���H9ÐœÀ<�taH����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹\$(H‰œ$ ���H‹\$0H‰œ$¨���è����HƒÄhÃH����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹\$(H‰œ$ ���H‹\$0H‰œ$¨���è����HƒÄhÃ1Àé3ÿÿÿè����é‡þÿÿ
������B
��*runtime.racefuncenter���Ò��0type.image/color.Alpha16���è��,type.image/color.Color���€��Zgo.itab.image/color.Alpha16.image/color.Color���˜��$image/color.Opaque���¾
��runtime.convT2I���ü
��(runtime.racefuncexit���”��0type.image/color.Alpha16���ª��,type.image/color.Color���Â��Zgo.itab.image/color.Alpha16.image/color.Color���Ú��.image/color.Transparent���€
��runtime.convT2I���¾
��(runtime.racefuncexit���à
��0runtime.morestack_noctxt���€Ð�� "".r�?"type."".Rectangle�"".p�_type."".Point� "".~r2�`,type.image/color.Color�"".y�Ptype.int�"".x�@type.int�"".r��"type."".Rectangle�&ÐïÏÐ`ÏÐ�€�,ØoWa�� ÝB"�Tgclocals·aa63f3db2ec75827f6605d10a5453148�Tgclocals·69c1753bd5f81501d95132d08af04464���2/tmp/go/src/image/geom.goþ&"".Rectangle.Bounds��À��¸dH‹ %����H;avFHƒìH‹\$H‰$è����1ÛH‹\$H‰\$0H‹\$H‰\$8H‹\$ H‰\$@H‹\$(H‰\$Hè����HƒÄÃè����ë¤
������:
��*runtime.racefuncenter���˜
��(runtime.racefuncexit���¬
��0runtime.morestack_noctxt���€�� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�A �`�è2 �
�D�Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ."".Rectangle.ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$0H‰\$8H����H‰$è����H‹����H‰\$0H‹����H‰\$8è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��0image/color.Alpha16Model���r
�� runtime.raceread���€��0image/color.Alpha16Model���˜�0image/color.Alpha16Model���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���`�� "".~r0�@,type.image/color.Model�"".r��"type."".Rectangle�K�p�ò 2��9�Tgclocals·8c067d5052c60a71dd2787c367bb278b�Tgclocals·69c1753bd5f81501d95132d08af04464���2/tmp/go/src/image/geom.goþ"".Rect��à��ÒdH‹ %����H;a†Œ���Hƒì(H‹\$(H‰$è����H‹|$0H‹t$@H‹L$8H‹D$H1ÛH9÷~ H‰úH‰÷H‰ÖH9Á~ H‰ÊH‰ÁH‰Ð1ÛH‰|$0H‰L$8H‰t$@H‰D$HH‰|$H‰|$PH‰L$H‰L$XH‰t$H‰t$`H‰D$ H‰D$hè����HƒÄ(Ãè����éWÿÿÿ
������B
��*runtime.racefuncenter���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���€P��"".autotmp_0113�?"type."".Rectangle�"".autotmp_0112��type.int� "".~r4�@"type."".Rectangle�
"".y1�0type.int�
"".x1� type.int�
"".y0�type.int�
"".x0��type.int�P‡OP�°�(†"   H � � �Tgclocals·895d0569a38a56443b84805daa09d838�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���2/tmp/go/src/image/geom.goþ*"".(*RGBA).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��*image/color.RGBAModel���r
�� runtime.raceread���€��*image/color.RGBAModel���˜�*image/color.RGBAModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA�K�p�Žp��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*RGBA).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA� x � �
’ � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*RGBA).At��À��´dH‹ %����H;a†½���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é&ÿÿÿ
������B
��*runtime.racefuncenter���ž
��""".(*RGBA).RGBAAt���ô��*type.image/color.RGBA���Š��,type.image/color.Color���¢��Tgo.itab.image/color.RGBA.image/color.Color���Ü
��runtime.convT2I���Ž
��(runtime.racefuncexit���¢
��0runtime.morestack_noctxt���P€��
"".autotmp_0114�*type.image/color.RGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�€¸€�à�–1•�� ¦�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*RGBA).RGBAAt��À��¶dH‹ %����HD$øH;A†¹��Hìˆ���H‹œ$ˆ���H‰$è����1ۈœ$¨���ˆœ$©���ˆœ$ª���ˆœ$«���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„%��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώñ��I9ɍè��L9ß��I9ÀœÀ<�uC1í@ˆl$@ˆ¬$¨���@ˆl$@ˆ¬$©���@ˆl$@ˆ¬$ª���@ˆl$@ˆ¬$«���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ›��HH‰$è����H‹´$���H‹D$(HƒÀ�Hƒþ�„l��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ?��H¶ˆ\$H‰4$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃî��HH‰$è����H‹´$���H‹D$(HÿÀHƒþ�„À��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ“��H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃA��HH‰$è����H‹´$���H‹D$(HƒÀHƒþ�„��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃå���H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ“���HH‰$è����H‹D$(H‹œ$���HƒÀHƒû�tkH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨���¶\$ˆœ$©���¶\$ˆœ$ª���ˆ„$«���è����HÄˆ���Ãè���� ‰ë‘è���� è���� ‰éçþÿÿè���� è���� ‰é9þÿÿè���� è���� ‰éýÿÿè���� 1Àé üÿÿ‰éÔûÿÿè����é%ûÿÿ2
������X
��*runtime.racefuncenter���Š
��*runtime.racereadrange���Ê
��(runtime.racefuncexit���´
�� runtime.raceread���†
�� runtime.raceread���¬
�� runtime.raceread���Ì
�� runtime.raceread���Ô
�� runtime.raceread���þ 
�� runtime.raceread���„ 
�� runtime.raceread���¬ 
�� runtime.raceread���´ 
�� runtime.raceread���Þ
�� runtime.raceread���æ
�� runtime.raceread���Ì
��(runtime.racefuncexit���æ
��$runtime.panicindex���ü
��$runtime.panicindex���Š
��$runtime.panicindex���¦
��$runtime.panicindex���´
��$runtime.panicindex���Ð
��$runtime.panicindex���Þ
��$runtime.panicindex���ú
��$runtime.panicindex���¤
��0runtime.morestack_noctxt���@��"".autotmp_0119��*type.image/color.RGBA�"".autotmp_0118�¯type.int�"".autotmp_0117��type.int�"".autotmp_0116�ç*type.image/color.RGBA�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�(‘Àn�à �6ž
  6–ü��+®Œû�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ("".(*RGBA).PixOffset��€��êdH‹ %����H;a†˜���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃè����éKÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���@ ��
"".autotmp_0136�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA� “ �À�²”� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*RGBA).Set��À��¬dH‹ %����HD$ÐH;A†4��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„¾��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠ��I9ɍ��L9x��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$,H‰\$è����¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńª��H)H‰$è����H‹”$¸���Hƒú�„„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃL��H)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńê��H)H‰$è����H‹”$¸���Hƒú�„Ä��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃŒ��H)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń)��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃË���H)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)¶l$+@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� è���� ‰éöþÿÿè���� è���� ‰é5þÿÿè���� è���� ‰éuýÿÿè���� 1Àé‡ûÿÿ‰é;ûÿÿè����éªúÿÿ@
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���„��*image/color.RGBAModel���–
�� runtime.raceread���Ø�*image/color.RGBAModel���î��*image/color.RGBAModel���þ�������À��*type.image/color.RGBA���š
��"runtime.assertI2T���  
�� runtime.raceread���¬

��"runtime.racewrite���ö 
�� runtime.raceread���‚ 
��"runtime.racewrite���Î
�� runtime.raceread���Ú
��"runtime.racewrite���¦
�� runtime.raceread���ª
��"runtime.racewrite���Â
��(runtime.racefuncexit���Ü
��$runtime.panicindex���ò
��$runtime.panicindex���€
��$runtime.panicindex���œ
��$runtime.panicindex���ª
��$runtime.panicindex���Æ
��$runtime.panicindex���Ô
��$runtime.panicindex���ð
��$runtime.panicindex���š
��0runtime.morestack_noctxt���Pà��&"".autotmp_0145��type.int�"".autotmp_0144��type.int�"".autotmp_0143��type.int�"".autotmp_0142��type.int�"".autotmp_0141�Ïtype.int�"".autotmp_0140��type.int�"".autotmp_0138�‡*type.image/color.RGBA�"".autotmp_0137�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".RGBA�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�*type.image/color.RGBA�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�(à½ßàßàs�à
�Zº  ¢¶´«¬¥ ��+Ý‚Ö�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ$"".(*RGBA).SetRGBA�� ��œdH‹ %����H;a†1��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„»��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡��I9ɍ~��L9u��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńw��H)H‰$è����H‹”$ˆ���Hƒú�„Q��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"��H)¶¬$ ���@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆ��H)H‰$è����H‹”$ˆ���Hƒú�„ ��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńq��H)¶¬$¡���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„î���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿���H)¶¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� è���� ‰é ÿÿÿè���� è���� ‰éYþÿÿè���� è���� ‰é¨ýÿÿè���� 1ÀéŠüÿÿ‰é>üÿÿè����é²ûÿÿ2
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���ˆ
�� runtime.raceread���‚
��"runtime.racewrite����� runtime.raceread���º 
��"runtime.racewrite���ú

�� runtime.raceread���ô 
��"runtime.racewrite���´ 
�� runtime.raceread���¦
��"runtime.racewrite���²
��(runtime.racefuncexit���Ì
��$runtime.panicindex���â
��$runtime.panicindex���ð
��$runtime.panicindex���Œ
��$runtime.panicindex���š
��$runtime.panicindex���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���à
��$runtime.panicindex���Š
��0runtime.morestack_noctxt���@€�� "".autotmp_0160��type.int�"".autotmp_0159��type.int�"".autotmp_0158��type.int�"".autotmp_0157��type.int�"".autotmp_0156�¯type.int�"".autotmp_0155��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�(€½ÿ€Œÿ€k�Ð�TÒ   ‘¥œ– ��&ÚƒÍ�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ&"".(*RGBA).SubImage��€��€dH‹ %����HD$¸H;A†^��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„É��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍J��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é°üÿÿ‰é0üÿÿè����é€ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".RGBA���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��2go.itab.*"".RGBA."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".RGBA�����type."".Image���¨��2go.itab.*"".RGBA."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread��� 

�� runtime.raceread���À ��type."".RGBA���Ò 
��"runtime.newobject���þ 
��"runtime.racewrite���Ú �6runtime.writeBarrierEnabled���š 
��"runtime.racewrite���Æ 
�� runtime.raceread���¸
��,runtime.racewriterange���Æ��2go.itab.*"".RGBA."".Image���Ž
��(runtime.racefuncexit���¬��type.*"".RGBA���Â��type."".Image���Ú��2go.itab.*"".RGBA."".Image���î
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���º
��$runtime.panicslice���î
��0runtime.morestack_noctxt���p��""".autotmp_0180��type.*uint8�"".autotmp_0179��type.*"".RGBA�"".autotmp_0178��type.int�"".autotmp_0177��type.int�"".autotmp_0176�Ÿtype.int�"".autotmp_0174�?type.*"".RGBA�"".autotmp_0172��type.*"".RGBA�"".autotmp_0171�/type.[]uint8�"".autotmp_0170��type.*"".RGBA�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".RGBA�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA�(šØm�€ �jìBŽW†  7šZt80- 
�<�+¦\0/ƒYNº0&$�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ""".(*RGBA).Opaque��  ��Œ dH‹ %����HD$ðH;A†ä��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„”��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍[��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„ ��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽh��H‹D$ H‰D$(H‹l$H9èÇ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń
��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„ß���H‹H‹AH‹iH‰¬$ˆ���H‰T$xH‰„$€���H9ƃ¯���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéíýÿÿHÇÀ���éŸýÿÿ‰éeýÿÿè����éúüÿÿ
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���¼
�� runtime.raceread���Ž
�� runtime.raceread���„
�� runtime.raceread���Š
�� runtime.raceread���¼
��(runtime.racefuncexit���° 
�� runtime.raceread���’

�� runtime.raceread���ò

��$runtime.panicindex���Ž 
��$runtime.panicindex���¬ 
��(runtime.racefuncexit���ú 
��0runtime.morestack_noctxt���  ��"".autotmp_0190��type.int�"".autotmp_0189��type.int�"".autotmp_0188�¿type.int�"".autotmp_0186��type.int�"".autotmp_0185��type.int�"".autotmp_0184��type.int�"".autotmp_0183��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".RGBA�6 Ÿ üŸ ·Ÿ .��^ŽhbV˜  
11 � �+å�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewRGBA�� ��šdH‹ %����HD$èH;A†«��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…‰���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����égÿÿÿè����é3þÿÿ
������X
��*runtime.racefuncenter���¨��type.[]uint8���Î
��"runtime.makeslice���ª��type."".RGBA���¼
��"runtime.newobject���â
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ò
��"runtime.racewrite���Ä
��,runtime.racewriterange���È
��(runtime.racefuncexit���ô
��.runtime.writebarrierptr���ˆ
��0runtime.morestack_noctxt���P°��"".autotmp_0199�?type.*"".RGBA�"".autotmp_0198��type.int�"".autotmp_0196��type.int�"".autotmp_0195��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA�"".r��"type."".Rectangle�°¯° �Ð�²11Qñ � �+²Hk�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ."".(*RGBA64).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��.image/color.RGBA64Model���r
�� runtime.raceread���€��.image/color.RGBA64Model���˜�.image/color.RGBA64Model���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA64�K�p�Ôp��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ&"".(*RGBA64).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA64� x � �
Ø � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*RGBA64).At��à��ÄdH‹ %����H;a†Å���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$8H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����éÿÿÿ
������B
��*runtime.racefuncenter���ž
��*"".(*RGBA64).RGBA64At���„��.type.image/color.RGBA64���š��,type.image/color.Color���²��Xgo.itab.image/color.RGBA64.image/color.Color���ì
��runtime.convT2I���ž
��(runtime.racefuncexit���²
��0runtime.morestack_noctxt���P€��
"".autotmp_0200�.type.image/color.RGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�€À€�ð�Ü1�� ®"�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ*"".(*RGBA64).RGBA64At��€��ødH‹ %����HD$øH;A†��Hìˆ���H‹œ$ˆ���H‰$è����1Ûf‰œ$¨���f‰œ$ª���f‰œ$¬���f‰œ$®���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„‚��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏN��I9ɍE��L9<��I9ÀœÀ<�uC1íf‰l$0f‰¬$¨���f‰l$2f‰¬$ª���f‰l$4f‰¬$¬���f‰l$6f‰¬$®���è����HÄˆ���ÃH‹œ$˜���H‰\$H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃô��HH‰$è����H‹œ$���H‰$è����H‹D$ HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ™��HH‰$è����H‹|$ H‹´$���H‰úHƒÂ�Hƒþ�„g��H‹H‹FL‹FH9ƒL��Hf¶HÁãH‰øHÿÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ ��H,f¶m�H ëf‰\$0H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃµ��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃY��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„'��H‹H‹FL‹FH9ƒ ��Hf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃÌ��H,f¶m�H ëf‰\$2H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃt��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„æ��H‹H‹FL‹FH9ƒË��Hf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ‹��H,f¶m�H ëf‰\$4H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ3��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ×���HH‰$è����H‹¼$���H‹t$ H‰òHƒÂHƒÿ�„¥���H‹H‹GL‹GH9ƒŠ���Hf¶HÁãH‰ðHƒÀH‹H‹OL‹GL‰„$€���H‰T$pH‰L$xH9ÈsNH,f¶m�H ëH‰ØH·\$0f‰œ$¨���H·\$2f‰œ$ª���H·\$4f‰œ$¬���f‰„$®���è����HÄˆ���Ãè���� è���� ‰éTÿÿÿè���� è���� è���� è���� ‰éþÿÿè���� è���� è���� è���� ‰éÒüÿÿè���� è���� è���� è���� ‰é’ûÿÿè���� è���� 1ÀéÃùÿÿ‰éwùÿÿè����éÄøÿÿR
������X
��*runtime.racefuncenter���’
��*runtime.racereadrange���Ò
��(runtime.racefuncexit���¼
�� runtime.raceread���Ž
�� runtime.raceread���´
�� runtime.raceread���Ü
�� runtime.raceread���ä
�� runtime.raceread���† 
�� runtime.raceread���Œ

�� runtime.raceread���” 
�� runtime.raceread���œ 
�� runtime.raceread���¾ 
�� runtime.raceread���Æ
�� runtime.raceread���Ð
�� runtime.raceread���Ø
�� runtime.raceread���ú
�� runtime.raceread���‚
�� runtime.raceread���Œ
�� runtime.raceread���”
�� runtime.raceread���¶
�� runtime.raceread���¾
�� runtime.raceread���˜
��(runtime.racefuncexit���²
��$runtime.panicindex�����$runtime.panicindex���Ü
��$runtime.panicindex���ê
��$runtime.panicindex���ø
��$runtime.panicindex���†
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���¾
��$runtime.panicindex���Ì
��$runtime.panicindex���è
��$runtime.panicindex���ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex���®
��$runtime.panicindex���¼
��$runtime.panicindex���æ
��0runtime.morestack_noctxt���@��"".autotmp_0205��.type.image/color.RGBA64�"".autotmp_0204�¿type.int�"".autotmp_0203��type.int�"".autotmp_0202�¯.type.image/color.RGBA64�"".y�ïtype.int�"".x�ßtype.int�"".p�?type.*"".RGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�Ïtype.int� "".~r2�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*•â
¨�À�`ä" 6–¤žž˜?#### ��+²Ó
�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ,"".(*RGBA64).PixOffset��€��êdH‹ %����H;a†˜���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃè����éKÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���@ ��
"".autotmp_0238�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64� “ �À�‚”� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ "".(*RGBA64).Set�� "��‚"dH‹ %����HD$ÈH;A†_��Hì¸���H‹œ$¸���H‰$è����1ÛH‹œ$È���H‰\$XH‹œ$Ð���H‰\$`H‹œ$À���H‰$Hƒ$ HÇD$ ���è����L‹L$XL‹D$`H‹¼$À���Hƒÿ�„é��H‹w H‹W(H‰T$pH‹O0H‰L$xH‹G8H‰„$€���H‰t$hL9Ώ²��I9ɍ©��L9 ��I9ÀœÀ<�u è����HÄ¸���ÃH‹œ$È���H‰\$0H‹œ$Ð���H‰\$(H‰¼$ˆ���H‰<$Hƒ$ è����H‹„$ˆ���H‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$ˆ���H‰$Hƒ$è����H‹„$ˆ���H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8H����H‰$è����H‹œ$Ø���H‰\$H‹œ$à���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$Pf‰\$Rf‰\$Tf‰\$VH����H‰$H‰Œ$���H‰L$H‰„$˜���H‰D$H\$PH‰\$è����H·\$Pf‰\$@H·\$Rf‰\$BH·\$Tf‰\$DH·\$Vf‰\$FH‹\$8HƒÃ�H‰\$HH‹œ$À���H‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃÆ��H)H‰$è����H‹”$À���Hƒú�„ ��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńh��H)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń��H)H‰$è����H‹”$À���Hƒú�„Û��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń£��H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń?��H)H‰$è����H‹”$À���Hƒú�„��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńá��H)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńy��H)H‰$è����H‹”$À���Hƒú�„S��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń��H)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń·��H)H‰$è����H‹”$À���Hƒú�„‘��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃY��H)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńñ��H)H‰$è����H‹”$À���Hƒú�„Ë��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń“��H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń/��H)H‰$è����H‹”$À���Hƒú�„ ��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃÑ���H)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ÅsmH)H‰$è����H‹œ$À���Hƒû�tNH‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ÅsH)H·l$F@ˆ+è����HÄ¸���Ãè���� ‰ë®è���� è���� ‰éðþÿÿè���� è���� ‰é.þÿÿè���� è���� ‰éhýÿÿè���� è���� ‰é¦üÿÿè���� è���� ‰éàûÿÿè���� è���� ‰éûÿÿè���� è���� ‰éYúÿÿè���� 1Àé_øÿÿ‰éøÿÿè����é÷ÿÿ`
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¨
��(runtime.racefuncexit���˜
�� runtime.raceread���ð
�� runtime.raceread���œ
�� runtime.raceread���Š��.image/color.RGBA64Model���œ
�� runtime.raceread���Þ�.image/color.RGBA64Model���ô��.image/color.RGBA64Model���„�������Î��.type.image/color.RGBA64���¨
��"runtime.assertI2T���¾ 
�� runtime.raceread���Ê

��"runtime.racewrite���ž 
�� runtime.raceread���ª 
��"runtime.racewrite���ø
�� runtime.raceread���„
��"runtime.racewrite���Ú
�� runtime.raceread���æ
��"runtime.racewrite���´
�� runtime.raceread�����"runtime.racewrite���–
�� runtime.raceread���¢
��"runtime.racewrite���ð
�� runtime.raceread���ü
��"runtime.racewrite���Ò
�� runtime.raceread���Ö
��"runtime.racewrite���ð
��(runtime.racefuncexit���Š
��$runtime.panicindex��� 
��$runtime.panicindex���®
��$runtime.panicindex���Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���ô
��$runtime.panicindex���‚ 
��$runtime.panicindex���ž 
��$runtime.panicindex���¬ 
��$runtime.panicindex���È 
��$runtime.panicindex���Ö 
��$runtime.panicindex���ò 
��$runtime.panicindex���€!
��$runtime.panicindex���œ!
��$runtime.panicindex���ª!
��$runtime.panicindex���Æ!
��$runtime.panicindex���ð!
��0runtime.morestack_noctxt���Pð��."".autotmp_0251��type.int�"".autotmp_0250��type.int�"".autotmp_0249��type.int�"".autotmp_0248��type.int�"".autotmp_0247��type.int�"".autotmp_0246��type.int�"".autotmp_0245��type.int�"".autotmp_0244��type.int�"".autotmp_0243�ßtype.int�"".autotmp_0242��type.int�"".autotmp_0240�Ï.type.image/color.RGBA64�"".autotmp_0239�O,type.image/color.Color�"".y�Ÿtype.int�"".x�type.int�"".p�_type.*"".RGBA64�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ï.type.image/color.RGBA64�"".i�ÿtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*ðÀïðã ïðÌ��‚Š£¢Â¹¬±­±­±¦ ��+à‚ƒ�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ,"".(*RGBA64).SetRGBA64��à��ÜdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„›��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώg��I9ɍ^��L9U��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃW��H)H‰$è����H‹”$ˆ���Hƒú�„1��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡��H)H‰$è����H‹”$ˆ���Hƒú�„{��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃL��H)H·¬$ ���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńî��H)H‰$è����H‹”$ˆ���Hƒú�„È��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™��H)H·¬$¢���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7��H)H‰$è����H‹”$ˆ���Hƒú�„��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńâ��H)H·¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„��H)H‰$è����H‹”$ˆ���Hƒú�„^��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/��H)H·¬$¤���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍ��H)H‰$è����H‹”$ˆ���Hƒú�„§��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńx��H)H·¬$¤���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ô���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅ���H)H·¬$¦���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� è���� ‰éRþÿÿè���� è���� ‰é›ýÿÿè���� è���� ‰éèüÿÿè���� è���� ‰é1üÿÿè���� è���� ‰é~ûÿÿè���� è���� ‰éÈúÿÿè���� 1Àéªùÿÿ‰é^ùÿÿè����éÒøÿÿR
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���ˆ
�� runtime.raceread���‚
��"runtime.racewrite���Ê
�� runtime.raceread���Ä 
��"runtime.racewrite���† 
�� runtime.raceread���€ 
��"runtime.racewrite���Ê 
�� runtime.raceread���Ä
��"runtime.racewrite���†
�� runtime.raceread���€
��"runtime.racewrite���Ê
�� runtime.raceread���Ä
��"runtime.racewrite���†
�� runtime.raceread���€
��"runtime.racewrite���Ê
�� runtime.raceread���¼
��"runtime.racewrite���Ê
��(runtime.racefuncexit���ä
��$runtime.panicindex���ú
��$runtime.panicindex���ˆ
��$runtime.panicindex���¤
��$runtime.panicindex���²
��$runtime.panicindex���Î
��$runtime.panicindex���Ü
��$runtime.panicindex���ø
��$runtime.panicindex���†
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���Ì
��$runtime.panicindex���Ú
��$runtime.panicindex���ö
��$runtime.panicindex���„
��$runtime.panicindex��� 
��$runtime.panicindex���Ê
��0runtime.morestack_noctxt���@€��("".autotmp_0278��type.int�"".autotmp_0277��type.int�"".autotmp_0276��type.int�"".autotmp_0275��type.int�"".autotmp_0274��type.int�"".autotmp_0273��type.int�"".autotmp_0272��type.int�"".autotmp_0271��type.int�"".autotmp_0270�¯type.int�"".autotmp_0269��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*€½ÿ€˜ ÿ€¿�°�|ª ‘ª¢ž¢ž¢— ��&Úƒ­ �Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ*"".(*RGBA64).SubImage��€��€dH‹ %����HD$¸H;A†^��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„É��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍J��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é°üÿÿ‰é0üÿÿè����é€ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".RGBA64���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��6go.itab.*"".RGBA64."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".RGBA64�����type."".Image���¨��6go.itab.*"".RGBA64."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread��� 

�� runtime.raceread���À ��type."".RGBA64���Ò 
��"runtime.newobject���þ 
��"runtime.racewrite���Ú �6runtime.writeBarrierEnabled���š 
��"runtime.racewrite���Æ 
�� runtime.raceread���¸
��,runtime.racewriterange���Æ��6go.itab.*"".RGBA64."".Image���Ž
��(runtime.racefuncexit���¬��type.*"".RGBA64���Â��type."".Image���Ú��6go.itab.*"".RGBA64."".Image���î
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���º
��$runtime.panicslice���î
��0runtime.morestack_noctxt���p��""".autotmp_0306��type.*uint8�"".autotmp_0305��type.*"".RGBA64�"".autotmp_0304��type.int�"".autotmp_0303��type.int�"".autotmp_0302�Ÿtype.int�"".autotmp_0300�?type.*"".RGBA64�"".autotmp_0298��type.*"".RGBA64�"".autotmp_0297�/type.[]uint8�"".autotmp_0296��type.*"".RGBA64�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".RGBA64�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA64�(šØm�€ �jÌBŽW†  7šZt80- 
�<�+¦\0/ƒYNº0&$�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ&"".(*RGBA64).Opaque�� ��˜dH‹ %����HD$ðH;A†ª��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„Z��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍!��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ò��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NH‹nH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QH‹iH‰¬$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé'ýÿÿHÇÀ���éÙüÿÿ‰éŸüÿÿè����é4üÿÿ(
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���¼
�� runtime.raceread���Ž
�� runtime.raceread���„
�� runtime.raceread���’
�� runtime.raceread���Ì
�� runtime.raceread���Ø 
�� runtime.raceread���è 
�� runtime.raceread���Ê 
�� runtime.raceread���º 
��(runtime.racefuncexit���Ô 
��$runtime.panicindex���ð 
��$runtime.panicindex���þ 
��$runtime.panicindex���š
��$runtime.panicindex���¸
��(runtime.racefuncexit���†
��0runtime.morestack_noctxt���  ��"".autotmp_0316��type.int�"".autotmp_0315��type.int�"".autotmp_0314�¿type.int�"".autotmp_0312��type.int�"".autotmp_0311��type.int�"".autotmp_0310��type.int�"".autotmp_0309��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".RGBA64�4 Ÿ »Ÿ >Ÿ (�Ð�^îhbVÉ
11   *� �+¥�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewRGBA64�� ��šdH‹ %����HD$èH;A†«��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…‰���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����égÿÿÿè����é3þÿÿ
������X
��*runtime.racefuncenter���¨��type.[]uint8���Î
��"runtime.makeslice���ª��type."".RGBA64���¼
��"runtime.newobject���â
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ò
��"runtime.racewrite���Ä
��,runtime.racewriterange���È
��(runtime.racefuncexit���ô
��.runtime.writebarrierptr���ˆ
��0runtime.morestack_noctxt���P°��"".autotmp_0331�?type.*"".RGBA64�"".autotmp_0330��type.int�"".autotmp_0328��type.int�"".autotmp_0327��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA64�"".r��"type."".Rectangle�°¯° �Ð�’11Qñ � �+²Hk�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ,"".(*NRGBA).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��,image/color.NRGBAModel���r
�� runtime.raceread���€��,image/color.NRGBAModel���˜�,image/color.NRGBAModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".NRGBA�K�p�´p��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ$"".(*NRGBA).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".NRGBA� x � �
¸ � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*NRGBA).At��À��´dH‹ %����H;a†½���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é&ÿÿÿ
������B
��*runtime.racefuncenter���ž
��&"".(*NRGBA).NRGBAAt���ô��,type.image/color.NRGBA���Š��,type.image/color.Color���¢��Vgo.itab.image/color.NRGBA.image/color.Color���Ü
��runtime.convT2I���Ž
��(runtime.racefuncexit���¢
��0runtime.morestack_noctxt���P€��
"".autotmp_0332�,type.image/color.NRGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�€¸€�à�¼1•�� ¦�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ&"".(*NRGBA).NRGBAAt��À��¶dH‹ %����HD$øH;A†¹��Hìˆ���H‹œ$ˆ���H‰$è����1ۈœ$¨���ˆœ$©���ˆœ$ª���ˆœ$«���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„%��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώñ��I9ɍè��L9ß��I9ÀœÀ<�uC1í@ˆl$@ˆ¬$¨���@ˆl$@ˆ¬$©���@ˆl$@ˆ¬$ª���@ˆl$@ˆ¬$«���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ›��HH‰$è����H‹´$���H‹D$(HƒÀ�Hƒþ�„l��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ?��H¶ˆ\$H‰4$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃî��HH‰$è����H‹´$���H‹D$(HÿÀHƒþ�„À��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ“��H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃA��HH‰$è����H‹´$���H‹D$(HƒÀHƒþ�„��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃå���H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ“���HH‰$è����H‹D$(H‹œ$���HƒÀHƒû�tkH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨���¶\$ˆœ$©���¶\$ˆœ$ª���ˆ„$«���è����HÄˆ���Ãè���� ‰ë‘è���� è���� ‰éçþÿÿè���� è���� ‰é9þÿÿè���� è���� ‰éýÿÿè���� 1Àé üÿÿ‰éÔûÿÿè����é%ûÿÿ2
������X
��*runtime.racefuncenter���Š
��*runtime.racereadrange���Ê
��(runtime.racefuncexit���´
�� runtime.raceread���†
�� runtime.raceread���¬
�� runtime.raceread���Ì
�� runtime.raceread���Ô
�� runtime.raceread���þ 
�� runtime.raceread���„ 
�� runtime.raceread���¬ 
�� runtime.raceread���´ 
�� runtime.raceread���Þ
�� runtime.raceread���æ
�� runtime.raceread���Ì
��(runtime.racefuncexit���æ
��$runtime.panicindex���ü
��$runtime.panicindex���Š
��$runtime.panicindex���¦
��$runtime.panicindex���´
��$runtime.panicindex���Ð
��$runtime.panicindex���Þ
��$runtime.panicindex���ú
��$runtime.panicindex���¤
��0runtime.morestack_noctxt���@��"".autotmp_0337��,type.image/color.NRGBA�"".autotmp_0336�¯type.int�"".autotmp_0335��type.int�"".autotmp_0334�ç,type.image/color.NRGBA�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".NRGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�(‘Àn�à �6Ä
  6–ü��+®Œû�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ*"".(*NRGBA).PixOffset��€��êdH‹ %����H;a†˜���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃè����éKÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���@ ��
"".autotmp_0354�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA� “ �À�Ø”� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*NRGBA).Set��À��¬dH‹ %����HD$ÐH;A†4��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„¾��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠ��I9ɍ��L9x��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$,H‰\$è����¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńª��H)H‰$è����H‹”$¸���Hƒú�„„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃL��H)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńê��H)H‰$è����H‹”$¸���Hƒú�„Ä��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃŒ��H)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń)��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃË���H)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)¶l$+@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� è���� ‰éöþÿÿè���� è���� ‰é5þÿÿè���� è���� ‰éuýÿÿè���� 1Àé‡ûÿÿ‰é;ûÿÿè����éªúÿÿ@
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���„��,image/color.NRGBAModel���–
�� runtime.raceread���Ø�,image/color.NRGBAModel���î��,image/color.NRGBAModel���þ�������À��,type.image/color.NRGBA���š
��"runtime.assertI2T���  
�� runtime.raceread���¬

��"runtime.racewrite���ö 
�� runtime.raceread���‚ 
��"runtime.racewrite���Î
�� runtime.raceread���Ú
��"runtime.racewrite���¦
�� runtime.raceread���ª
��"runtime.racewrite���Â
��(runtime.racefuncexit���Ü
��$runtime.panicindex���ò
��$runtime.panicindex���€
��$runtime.panicindex���œ
��$runtime.panicindex���ª
��$runtime.panicindex���Æ
��$runtime.panicindex���Ô
��$runtime.panicindex���ð
��$runtime.panicindex���š
��0runtime.morestack_noctxt���Pà��&"".autotmp_0363��type.int�"".autotmp_0362��type.int�"".autotmp_0361��type.int�"".autotmp_0360��type.int�"".autotmp_0359�Ïtype.int�"".autotmp_0358��type.int�"".autotmp_0356�‡,type.image/color.NRGBA�"".autotmp_0355�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".NRGBA�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�,type.image/color.NRGBA�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�(à½ßàßàs�à
�Zà  ¢¶´«¬¥ ��+Ý‚Ö�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ("".(*NRGBA).SetNRGBA�� ��œdH‹ %����H;a†1��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„»��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡��I9ɍ~��L9u��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńw��H)H‰$è����H‹”$ˆ���Hƒú�„Q��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"��H)¶¬$ ���@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆ��H)H‰$è����H‹”$ˆ���Hƒú�„ ��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńq��H)¶¬$¡���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„î���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿���H)¶¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� è���� ‰é ÿÿÿè���� è���� ‰éYþÿÿè���� è���� ‰é¨ýÿÿè���� 1ÀéŠüÿÿ‰é>üÿÿè����é²ûÿÿ2
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���ˆ
�� runtime.raceread���‚
��"runtime.racewrite����� runtime.raceread���º 
��"runtime.racewrite���ú

�� runtime.raceread���ô 
��"runtime.racewrite���´ 
�� runtime.raceread���¦
��"runtime.racewrite���²
��(runtime.racefuncexit���Ì
��$runtime.panicindex���â
��$runtime.panicindex���ð
��$runtime.panicindex���Œ
��$runtime.panicindex���š
��$runtime.panicindex���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���à
��$runtime.panicindex���Š
��0runtime.morestack_noctxt���@€�� "".autotmp_0378��type.int�"".autotmp_0377��type.int�"".autotmp_0376��type.int�"".autotmp_0375��type.int�"".autotmp_0374�¯type.int�"".autotmp_0373��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".NRGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�(€½ÿ€Œÿ€k�Ð�Tø   ‘¥œ– ��&ÚƒÍ�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ("".(*NRGBA).SubImage��€��€dH‹ %����HD$¸H;A†^��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„É��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍J��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é°üÿÿ‰é0üÿÿè����é€ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".NRGBA���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��4go.itab.*"".NRGBA."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".NRGBA�����type."".Image���¨��4go.itab.*"".NRGBA."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread��� 

�� runtime.raceread���À ��type."".NRGBA���Ò 
��"runtime.newobject���þ 
��"runtime.racewrite���Ú �6runtime.writeBarrierEnabled���š 
��"runtime.racewrite���Æ 
�� runtime.raceread���¸
��,runtime.racewriterange���Æ��4go.itab.*"".NRGBA."".Image���Ž
��(runtime.racefuncexit���¬��type.*"".NRGBA���Â��type."".Image���Ú��4go.itab.*"".NRGBA."".Image���î
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���º
��$runtime.panicslice���î
��0runtime.morestack_noctxt���p��""".autotmp_0398��type.*uint8�"".autotmp_0397��type.*"".NRGBA�"".autotmp_0396��type.int�"".autotmp_0395��type.int�"".autotmp_0394�Ÿtype.int�"".autotmp_0392�?type.*"".NRGBA�"".autotmp_0390��type.*"".NRGBA�"".autotmp_0389�/type.[]uint8�"".autotmp_0388��type.*"".NRGBA�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".NRGBA�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".NRGBA�(šØm�€ �j’BŽW†  7šZt80- 
�<�+¦\0/ƒYNº0&$�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ$"".(*NRGBA).Opaque��  ��Œ dH‹ %����HD$ðH;A†ä��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„”��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍[��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„ ��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽh��H‹D$ H‰D$(H‹l$H9èÇ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń
��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„ß���H‹H‹AH‹iH‰¬$ˆ���H‰T$xH‰„$€���H9ƃ¯���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéíýÿÿHÇÀ���éŸýÿÿ‰éeýÿÿè����éúüÿÿ
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���¼
�� runtime.raceread���Ž
�� runtime.raceread���„
�� runtime.raceread���Š
�� runtime.raceread���¼
��(runtime.racefuncexit���° 
�� runtime.raceread���’

�� runtime.raceread���ò

��$runtime.panicindex���Ž 
��$runtime.panicindex���¬ 
��(runtime.racefuncexit���ú 
��0runtime.morestack_noctxt���  ��"".autotmp_0408��type.int�"".autotmp_0407��type.int�"".autotmp_0406�¿type.int�"".autotmp_0404��type.int�"".autotmp_0403��type.int�"".autotmp_0402��type.int�"".autotmp_0401��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".NRGBA�6 Ÿ üŸ ·Ÿ .��^´hbV˜  
11 � �+å�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewNRGBA�� ��šdH‹ %����HD$èH;A†«��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…‰���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����égÿÿÿè����é3þÿÿ
������X
��*runtime.racefuncenter���¨��type.[]uint8���Î
��"runtime.makeslice���ª��type."".NRGBA���¼
��"runtime.newobject���â
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ò
��"runtime.racewrite���Ä
��,runtime.racewriterange���È
��(runtime.racefuncexit���ô
��.runtime.writebarrierptr���ˆ
��0runtime.morestack_noctxt���P°��"".autotmp_0417�?type.*"".NRGBA�"".autotmp_0416��type.int�"".autotmp_0414��type.int�"".autotmp_0413��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".NRGBA�"".r��"type."".Rectangle�°¯° �Ð�Ø11Qñ � �+²Hk�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ0"".(*NRGBA64).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��0image/color.NRGBA64Model���r
�� runtime.raceread���€��0image/color.NRGBA64Model���˜�0image/color.NRGBA64Model���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p�� type.*"".NRGBA64�K�p�úp��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ("".(*NRGBA64).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p�� type.*"".NRGBA64� x � �
þ � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ "".(*NRGBA64).At��à��ÄdH‹ %����H;a†Å���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$8H·\$f‰\$:H·\$f‰\$<H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$8H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����éÿÿÿ
������B
��*runtime.racefuncenter���ž
��."".(*NRGBA64).NRGBA64At���„��0type.image/color.NRGBA64���š��,type.image/color.Color���²��Zgo.itab.image/color.NRGBA64.image/color.Color���ì
��runtime.convT2I���ž
��(runtime.racefuncexit���²
��0runtime.morestack_noctxt���P€��
"".autotmp_0418�0type.image/color.NRGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�€À€�ð�‚1�� ®"�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ."".(*NRGBA64).NRGBA64At��€��ødH‹ %����HD$øH;A†��Hìˆ���H‹œ$ˆ���H‰$è����1Ûf‰œ$¨���f‰œ$ª���f‰œ$¬���f‰œ$®���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„‚��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9ΏN��I9ɍE��L9<��I9ÀœÀ<�uC1íf‰l$0f‰¬$¨���f‰l$2f‰¬$ª���f‰l$4f‰¬$¬���f‰l$6f‰¬$®���è����HÄˆ���ÃH‹œ$˜���H‰\$H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ 1Ûf‰\$0f‰\$2f‰\$4f‰\$6H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃô��HH‰$è����H‹œ$���H‰$è����H‹D$ HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ™��HH‰$è����H‹|$ H‹´$���H‰úHƒÂ�Hƒþ�„g��H‹H‹FL‹FH9ƒL��Hf¶HÁãH‰øHÿÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ ��H,f¶m�H ëf‰\$0H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃµ��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃY��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„'��H‹H‹FL‹FH9ƒ ��Hf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃÌ��H,f¶m�H ëf‰\$2H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃt��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„æ��H‹H‹FL‹FH9ƒË��Hf¶HÁãH‰øHƒÀH‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ‹��H,f¶m�H ëf‰\$4H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ3��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ×���HH‰$è����H‹¼$���H‹t$ H‰òHƒÂHƒÿ�„¥���H‹H‹GL‹GH9ƒŠ���Hf¶HÁãH‰ðHƒÀH‹H‹OL‹GL‰„$€���H‰T$pH‰L$xH9ÈsNH,f¶m�H ëH‰ØH·\$0f‰œ$¨���H·\$2f‰œ$ª���H·\$4f‰œ$¬���f‰„$®���è����HÄˆ���Ãè���� è���� ‰éTÿÿÿè���� è���� è���� è���� ‰éþÿÿè���� è���� è���� è���� ‰éÒüÿÿè���� è���� è���� è���� ‰é’ûÿÿè���� è���� 1ÀéÃùÿÿ‰éwùÿÿè����éÄøÿÿR
������X
��*runtime.racefuncenter���’
��*runtime.racereadrange���Ò
��(runtime.racefuncexit���¼
�� runtime.raceread���Ž
�� runtime.raceread���´
�� runtime.raceread���Ü
�� runtime.raceread���ä
�� runtime.raceread���† 
�� runtime.raceread���Œ

�� runtime.raceread���” 
�� runtime.raceread���œ 
�� runtime.raceread���¾ 
�� runtime.raceread���Æ
�� runtime.raceread���Ð
�� runtime.raceread���Ø
�� runtime.raceread���ú
�� runtime.raceread���‚
�� runtime.raceread���Œ
�� runtime.raceread���”
�� runtime.raceread���¶
�� runtime.raceread���¾
�� runtime.raceread���˜
��(runtime.racefuncexit���²
��$runtime.panicindex�����$runtime.panicindex���Ü
��$runtime.panicindex���ê
��$runtime.panicindex���ø
��$runtime.panicindex���†
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���¾
��$runtime.panicindex���Ì
��$runtime.panicindex���è
��$runtime.panicindex���ö
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex���®
��$runtime.panicindex���¼
��$runtime.panicindex���æ
��0runtime.morestack_noctxt���@��"".autotmp_0423��0type.image/color.NRGBA64�"".autotmp_0422�¿type.int�"".autotmp_0421��type.int�"".autotmp_0420�¯0type.image/color.NRGBA64�"".y�ïtype.int�"".x�ßtype.int�"".p�? type.*"".NRGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�Ïtype.int� "".~r2�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*•â
¨�À�`Š" 6–¤žž˜?#### ��+²Ó
�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ."".(*NRGBA64).PixOffset��€��êdH‹ %����H;a†˜���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃè����éKÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���@ ��
"".autotmp_0456�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64� “ �À�¨”� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ""".(*NRGBA64).Set�� "��‚"dH‹ %����HD$ÈH;A†_��Hì¸���H‹œ$¸���H‰$è����1ÛH‹œ$È���H‰\$XH‹œ$Ð���H‰\$`H‹œ$À���H‰$Hƒ$ HÇD$ ���è����L‹L$XL‹D$`H‹¼$À���Hƒÿ�„é��H‹w H‹W(H‰T$pH‹O0H‰L$xH‹G8H‰„$€���H‰t$hL9Ώ²��I9ɍ©��L9 ��I9ÀœÀ<�u è����HÄ¸���ÃH‹œ$È���H‰\$0H‹œ$Ð���H‰\$(H‰¼$ˆ���H‰<$Hƒ$ è����H‹„$ˆ���H‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$ˆ���H‰$Hƒ$è����H‹„$ˆ���H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8H����H‰$è����H‹œ$Ø���H‰\$H‹œ$à���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$Pf‰\$Rf‰\$Tf‰\$VH����H‰$H‰Œ$���H‰L$H‰„$˜���H‰D$H\$PH‰\$è����H·\$Pf‰\$@H·\$Rf‰\$BH·\$Tf‰\$DH·\$Vf‰\$FH‹\$8HƒÃ�H‰\$HH‹œ$À���H‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃÆ��H)H‰$è����H‹”$À���Hƒú�„ ��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńh��H)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń��H)H‰$è����H‹”$À���Hƒú�„Û��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń£��H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń?��H)H‰$è����H‹”$À���Hƒú�„��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńá��H)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńy��H)H‰$è����H‹”$À���Hƒú�„S��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń��H)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń·��H)H‰$è����H‹”$À���Hƒú�„‘��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃY��H)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ńñ��H)H‰$è����H‹”$À���Hƒú�„Ë��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń“��H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9Ń/��H)H‰$è����H‹”$À���Hƒú�„ ��H‹
H‹BH‹jH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ŃÑ���H)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$À���H‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ÅsmH)H‰$è����H‹œ$À���Hƒû�tNH‹ H‹CH‹kH‰¬$°���H‰Œ$ ���H‹l$HH‰„$¨���H9ÅsH)H·l$F@ˆ+è����HÄ¸���Ãè���� ‰ë®è���� è���� ‰éðþÿÿè���� è���� ‰é.þÿÿè���� è���� ‰éhýÿÿè���� è���� ‰é¦üÿÿè���� è���� ‰éàûÿÿè���� è���� ‰éûÿÿè���� è���� ‰éYúÿÿè���� 1Àé_øÿÿ‰éøÿÿè����é÷ÿÿ`
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¨
��(runtime.racefuncexit���˜
�� runtime.raceread���ð
�� runtime.raceread���œ
�� runtime.raceread���Š��0image/color.NRGBA64Model���œ
�� runtime.raceread���Þ�0image/color.NRGBA64Model���ô��0image/color.NRGBA64Model���„�������Î��0type.image/color.NRGBA64���¨
��"runtime.assertI2T���¾ 
�� runtime.raceread���Ê

��"runtime.racewrite���ž 
�� runtime.raceread���ª 
��"runtime.racewrite���ø
�� runtime.raceread���„
��"runtime.racewrite���Ú
�� runtime.raceread���æ
��"runtime.racewrite���´
�� runtime.raceread�����"runtime.racewrite���–
�� runtime.raceread���¢
��"runtime.racewrite���ð
�� runtime.raceread���ü
��"runtime.racewrite���Ò
�� runtime.raceread���Ö
��"runtime.racewrite���ð
��(runtime.racefuncexit���Š
��$runtime.panicindex��� 
��$runtime.panicindex���®
��$runtime.panicindex���Ê
��$runtime.panicindex���Ø
��$runtime.panicindex���ô
��$runtime.panicindex���‚ 
��$runtime.panicindex���ž 
��$runtime.panicindex���¬ 
��$runtime.panicindex���È 
��$runtime.panicindex���Ö 
��$runtime.panicindex���ò 
��$runtime.panicindex���€!
��$runtime.panicindex���œ!
��$runtime.panicindex���ª!
��$runtime.panicindex���Æ!
��$runtime.panicindex���ð!
��0runtime.morestack_noctxt���Pð��."".autotmp_0469��type.int�"".autotmp_0468��type.int�"".autotmp_0467��type.int�"".autotmp_0466��type.int�"".autotmp_0465��type.int�"".autotmp_0464��type.int�"".autotmp_0463��type.int�"".autotmp_0462��type.int�"".autotmp_0461�ßtype.int�"".autotmp_0460��type.int�"".autotmp_0458�Ï0type.image/color.NRGBA64�"".autotmp_0457�O,type.image/color.Color�"".y�Ÿtype.int�"".x�type.int�"".p�_ type.*"".NRGBA64�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ï0type.image/color.NRGBA64�"".i�ÿtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*ðÀïðã ïðÌ��‚°£¢Â¹¬±­±­±¦ ��+à‚ƒ�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64��à��ÜdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„›��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώg��I9ɍ^��L9U��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃW��H)H‰$è����H‹”$ˆ���Hƒú�„1��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡��H)H‰$è����H‹”$ˆ���Hƒú�„{��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃL��H)H·¬$ ���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńî��H)H‰$è����H‹”$ˆ���Hƒú�„È��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™��H)H·¬$¢���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7��H)H‰$è����H‹”$ˆ���Hƒú�„��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńâ��H)H·¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„��H)H‰$è����H‹”$ˆ���Hƒú�„^��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/��H)H·¬$¤���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍ��H)H‰$è����H‹”$ˆ���Hƒú�„§��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńx��H)H·¬$¤���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ô���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅ���H)H·¬$¦���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� è���� ‰éRþÿÿè���� è���� ‰é›ýÿÿè���� è���� ‰éèüÿÿè���� è���� ‰é1üÿÿè���� è���� ‰é~ûÿÿè���� è���� ‰éÈúÿÿè���� 1Àéªùÿÿ‰é^ùÿÿè����éÒøÿÿR
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���ˆ
�� runtime.raceread���‚
��"runtime.racewrite���Ê
�� runtime.raceread���Ä 
��"runtime.racewrite���† 
�� runtime.raceread���€ 
��"runtime.racewrite���Ê 
�� runtime.raceread���Ä
��"runtime.racewrite���†
�� runtime.raceread���€
��"runtime.racewrite���Ê
�� runtime.raceread���Ä
��"runtime.racewrite���†
�� runtime.raceread���€
��"runtime.racewrite���Ê
�� runtime.raceread���¼
��"runtime.racewrite���Ê
��(runtime.racefuncexit���ä
��$runtime.panicindex���ú
��$runtime.panicindex���ˆ
��$runtime.panicindex���¤
��$runtime.panicindex���²
��$runtime.panicindex���Î
��$runtime.panicindex���Ü
��$runtime.panicindex���ø
��$runtime.panicindex���†
��$runtime.panicindex���¢
��$runtime.panicindex���°
��$runtime.panicindex���Ì
��$runtime.panicindex���Ú
��$runtime.panicindex���ö
��$runtime.panicindex���„
��$runtime.panicindex��� 
��$runtime.panicindex���Ê
��0runtime.morestack_noctxt���@€��("".autotmp_0496��type.int�"".autotmp_0495��type.int�"".autotmp_0494��type.int�"".autotmp_0493��type.int�"".autotmp_0492��type.int�"".autotmp_0491��type.int�"".autotmp_0490��type.int�"".autotmp_0489��type.int�"".autotmp_0488�¯type.int�"".autotmp_0487��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".NRGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*€½ÿ€˜ ÿ€¿�°�|Р‘ª¢ž¢ž¢— ��&Úƒ­ �Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ,"".(*NRGBA64).SubImage��€��€dH‹ %����HD$¸H;A†^��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„É��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍J��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é°üÿÿ‰é0üÿÿè����é€ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".NRGBA64���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��8go.itab.*"".NRGBA64."".Image���Ü
��(runtime.racefuncexit���ú�� type.*"".NRGBA64�����type."".Image���¨��8go.itab.*"".NRGBA64."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread��� 

�� runtime.raceread���À ��type."".NRGBA64���Ò 
��"runtime.newobject���þ 
��"runtime.racewrite���Ú �6runtime.writeBarrierEnabled���š 
��"runtime.racewrite���Æ 
�� runtime.raceread���¸
��,runtime.racewriterange���Æ��8go.itab.*"".NRGBA64."".Image���Ž
��(runtime.racefuncexit���¬�� type.*"".NRGBA64���Â��type."".Image���Ú��8go.itab.*"".NRGBA64."".Image���î
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���º
��$runtime.panicslice���î
��0runtime.morestack_noctxt���p��""".autotmp_0524��type.*uint8�"".autotmp_0523�� type.*"".NRGBA64�"".autotmp_0522��type.int�"".autotmp_0521��type.int�"".autotmp_0520�Ÿtype.int�"".autotmp_0518�? type.*"".NRGBA64�"".autotmp_0516�� type.*"".NRGBA64�"".autotmp_0515�/type.[]uint8�"".autotmp_0514�� type.*"".NRGBA64�"".y�Ïtype.int�"".x�¿type.int�"".p�O type.*"".NRGBA64�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".NRGBA64�(šØm�€ �jòBŽW†  7šZt80- 
�<�+¦\0/ƒYNº0&$�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ("".(*NRGBA64).Opaque�� ��˜dH‹ %����HD$ðH;A†ª��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„Z��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍!��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ò��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NH‹nH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QH‹iH‰¬$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé'ýÿÿHÇÀ���éÙüÿÿ‰éŸüÿÿè����é4üÿÿ(
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���¼
�� runtime.raceread���Ž
�� runtime.raceread���„
�� runtime.raceread���’
�� runtime.raceread���Ì
�� runtime.raceread���Ø 
�� runtime.raceread���è 
�� runtime.raceread���Ê 
�� runtime.raceread���º 
��(runtime.racefuncexit���Ô 
��$runtime.panicindex���ð 
��$runtime.panicindex���þ 
��$runtime.panicindex���š
��$runtime.panicindex���¸
��(runtime.racefuncexit���†
��0runtime.morestack_noctxt���  ��"".autotmp_0534��type.int�"".autotmp_0533��type.int�"".autotmp_0532�¿type.int�"".autotmp_0530��type.int�"".autotmp_0529��type.int�"".autotmp_0528��type.int�"".autotmp_0527��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p�� type.*"".NRGBA64�4 Ÿ »Ÿ >Ÿ (�Ð�^”hbVÉ
11   *� �+¥�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewNRGBA64�� ��šdH‹ %����HD$èH;A†«��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…‰���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����égÿÿÿè����é3þÿÿ
������X
��*runtime.racefuncenter���¨��type.[]uint8���Î
��"runtime.makeslice���ª��type."".NRGBA64���¼
��"runtime.newobject���â
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ò
��"runtime.racewrite���Ä
��,runtime.racewriterange���È
��(runtime.racefuncexit���ô
��.runtime.writebarrierptr���ˆ
��0runtime.morestack_noctxt���P°��"".autotmp_0549�? type.*"".NRGBA64�"".autotmp_0548��type.int�"".autotmp_0546��type.int�"".autotmp_0545��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".NRGBA64�"".r��"type."".Rectangle�°¯° �Ð�¸11Qñ � �+²Hk�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ,"".(*Alpha).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��,image/color.AlphaModel���r
�� runtime.raceread���€��,image/color.AlphaModel���˜�,image/color.AlphaModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Alpha�K�p�Úp��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ$"".(*Alpha).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Alpha� x � �
Þ � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*Alpha).At��€��þdH‹ %����H;a†¢���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$?H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����éAÿÿÿ
������B
��*runtime.racefuncenter���ž
��&"".(*Alpha).AlphaAt���¾��,type.image/color.Alpha���Ô��,type.image/color.Color���ì��Vgo.itab.image/color.Alpha.image/color.Color���¦
��runtime.convT2I���Ø
��(runtime.racefuncexit���ì
��0runtime.morestack_noctxt���P€��
"".autotmp_0550�,type.image/color.Alpha� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�€€ �À�â1z �� ‹�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ&"".(*Alpha).AlphaAt��À ��¤ dH‹ %����HD$øH;A†0��Hìˆ���H‹œ$ˆ���H‰$è����1ۈœ$¨���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„±��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ}��I9ɍt��L9k��I9ÀœÀ<�u1ÀˆD$ˆ„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(1ۈ\$H‹œ$���H‰$è����H‹œ$���H‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅshH)H‰$è����H‹œ$���Hƒû�tIH‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨���è����HÄˆ���Ãè���� ‰ë³è���� 1Àé”þÿÿ‰éHþÿÿè����é®ýÿÿ
������X
��*runtime.racefuncenter���à
��*runtime.racereadrange���Î
��(runtime.racefuncexit���¸
�� runtime.raceread���Š
�� runtime.raceread���°
�� runtime.raceread���°
�� runtime.raceread���¨
�� runtime.raceread���¸
��(runtime.racefuncexit���Ò
��$runtime.panicindex���è
��$runtime.panicindex���’ 
��0runtime.morestack_noctxt���@��"".autotmp_0555��,type.image/color.Alpha�"".autotmp_0554�¯type.int�"".autotmp_0553��type.int�"".autotmp_0552�á,type.image/color.Alpha�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Alpha�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�(Ó´8�à�6ê
   ’µ��+ð|É�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ*"".(*Alpha).PixOffset��€��âdH‹ %����H;a†”���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃè����éOÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���¼
��(runtime.racefuncexit���Ð
��0runtime.morestack_noctxt���@ ��
"".autotmp_0558�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�  �À�þ� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*Alpha).Set��À ��¤ dH‹ %����HD$ÐH;A†°��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„:��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9Ώ��I9ɍý��L9ô��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$/H‰\$è����H‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$@H‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$@H‰„$ ���H9ÅsH)¶l$/@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� 1Àé þÿÿ‰é¿ýÿÿè����é.ýÿÿ(
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���ü��,image/color.AlphaModel���Ž
�� runtime.raceread���Ð�,image/color.AlphaModel���æ��,image/color.AlphaModel���ö������� ��,type.image/color.Alpha���ú
��"runtime.assertI2T���œ
�� runtime.raceread���  
��"runtime.racewrite���¸

��(runtime.racefuncexit���Ò

��$runtime.panicindex���è

��$runtime.panicindex���’ 
��0runtime.morestack_noctxt���Pà��"".autotmp_0563�Ïtype.int�"".autotmp_0562��type.int�"".autotmp_0560�,type.image/color.Alpha�"".autotmp_0559�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Alpha�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�(à½ßàÊßà8�à�6†
 ž¥��+Ý~Ú�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ("".(*Alpha).SetAlpha��à��ØdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„™��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώe��I9ɍ\��L9S��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰é`þÿÿè����éÔýÿÿ
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���î
�� runtime.raceread���à
��"runtime.racewrite���ì
��(runtime.racefuncexit���†
��$runtime.panicindex���œ
��$runtime.panicindex���Æ
��0runtime.morestack_noctxt���@€��"".autotmp_0568�¯type.int�"".autotmp_0567��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Alpha�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�(€½ÿ€©ÿ€.�°�6–
 ’��&Úvº�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ("".(*Alpha).SubImage��€��ødH‹ %����HD$¸H;A†Z��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„Å��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍F��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é´üÿÿ‰é4üÿÿè����é„ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".Alpha���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��4go.itab.*"".Alpha."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".Alpha�����type."".Image���¨��4go.itab.*"".Alpha."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread���˜

�� runtime.raceread���¸ ��type."".Alpha���Ê 
��"runtime.newobject���ö 
��"runtime.racewrite���Ò �6runtime.writeBarrierEnabled���’ 
��"runtime.racewrite���¾ 
�� runtime.raceread���°
��,runtime.racewriterange���¾��4go.itab.*"".Alpha."".Image���†
��(runtime.racefuncexit���¤��type.*"".Alpha���º��type."".Image���Ò��4go.itab.*"".Alpha."".Image���æ
�� runtime.typ2Itab���ž
��.runtime.writebarrierptr���²
��$runtime.panicslice���æ
��0runtime.morestack_noctxt���p��""".autotmp_0582��type.*uint8�"".autotmp_0581��type.*"".Alpha�"".autotmp_0580��type.int�"".autotmp_0579��type.int�"".autotmp_0578�Ÿtype.int�"".autotmp_0576�?type.*"".Alpha�"".autotmp_0574��type.*"".Alpha�"".autotmp_0573�/type.[]uint8�"".autotmp_0572��type.*"".Alpha�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".Alpha�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Alpha�(šÔq�€ �jªBŽW†  7–Zt80- �:�+¦\0/YNº0&(�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ$"".(*Alpha).Opaque��  ��‚ dH‹ %����HD$ðH;A†ß��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍V��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÇD$ ����H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽg��H‹D$ H‰D$(H‹l$H9èÆ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń ��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„Þ���H‹H‹AH‹iH‰¬$ˆ���H‰T$xH‰„$€���H9ƃ®���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHÿÀH‰D$(H‹l$H9èŒ:ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é|þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéòýÿÿHÇÀ���é¤ýÿÿ‰éjýÿÿè����éÿüÿÿ
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���´
�� runtime.raceread���†
�� runtime.raceread���ü
�� runtime.raceread���‚
�� runtime.raceread���´
��(runtime.racefuncexit���¦ 
�� runtime.raceread���ˆ

�� runtime.raceread���è

��$runtime.panicindex���„ 
��$runtime.panicindex���¢ 
��(runtime.racefuncexit���ð 
��0runtime.morestack_noctxt���  ��"".autotmp_0591��type.int�"".autotmp_0590�¿type.int�"".autotmp_0588��type.int�"".autotmp_0587��type.int�"".autotmp_0586��type.int�"".autotmp_0585��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".Alpha�6 Ÿ øŸ ¶Ÿ 3��^Ìh^V˜  
11 � �+å�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewAlpha�� ��ŠdH‹ %����HD$èH;A†£��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����……���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����ékÿÿÿè����é;þÿÿ
������X
��*runtime.racefuncenter��� ��type.[]uint8���Æ
��"runtime.makeslice���¢��type."".Alpha���´
��"runtime.newobject���Ú
��"runtime.racewrite���°�6runtime.writeBarrierEnabled���ê
��"runtime.racewrite���´
��,runtime.racewriterange���¸
��(runtime.racefuncexit���ä
��.runtime.writebarrierptr���ø
��0runtime.morestack_noctxt���P°��"".autotmp_0600�?type.*"".Alpha�"".autotmp_0599��type.int�"".autotmp_0597��type.int�"".autotmp_0596��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Alpha�"".r��"type."".Rectangle�°ˆ¯°(�Ð�ð11Mí� �+®Hg�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ0"".(*Alpha16).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��0image/color.Alpha16Model���r
�� runtime.raceread���€��0image/color.Alpha16Model���˜�0image/color.Alpha16Model���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p�� type.*"".Alpha16�K�p�’ p��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ("".(*Alpha16).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p�� type.*"".Alpha16� x � �
–  � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ "".(*Alpha16).At�� ��‚dH‹ %����H;a†¤���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$>H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é?ÿÿÿ
������B
��*runtime.racefuncenter���ž
��."".(*Alpha16).Alpha16At���Â��0type.image/color.Alpha16���Ø��,type.image/color.Color���ð��Zgo.itab.image/color.Alpha16.image/color.Color���ª
��runtime.convT2I���Ü
��(runtime.racefuncexit���ð
��0runtime.morestack_noctxt���P€��
"".autotmp_0601�0type.image/color.Alpha16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�€Ÿ€�Ð�š 1|�� #�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ."".(*Alpha16).Alpha16At��€ ��ä dH‹ %����HD$øH;A†Ð��Hìˆ���H‹œ$ˆ���H‰$è����1Ûf‰œ$¨���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„P��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ��I9ɍ��L9
��I9ÀœÀ<�u1Àf‰D$f‰„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(1Ûf‰\$H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃù���HH‰$è����H‹œ$���H‰$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃž���HH‰$è����H‹¼$���H‹t$(H‰òHƒÂ�Hƒÿ�tsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹GL‰„$€���H‰T$pH‰L$xH9Ès!H,f¶m�H ëf‰œ$¨���è����HÄˆ���Ãè���� è���� ‰ë‰è���� è���� 1Àéõýÿÿ‰é©ýÿÿè����éýÿÿ"
������X
��*runtime.racefuncenter���â
��*runtime.racereadrange���Ô
��(runtime.racefuncexit���¾
�� runtime.raceread���
�� runtime.raceread���¶
�� runtime.raceread���¾
�� runtime.raceread���Æ
�� runtime.raceread���è
�� runtime.raceread���î
�� runtime.raceread���Ü

��(runtime.racefuncexit���ö

��$runtime.panicindex���„ 
��$runtime.panicindex���š 
��$runtime.panicindex���¨ 
��$runtime.panicindex���Ò 
��0runtime.morestack_noctxt���@��"".autotmp_0606��0type.image/color.Alpha16�"".autotmp_0605�¯type.int�"".autotmp_0604��type.int�"".autotmp_0603�ã0type.image/color.Alpha16�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".Alpha16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�(ÖÃF�€�6¢ 

 •Ï��+ó€â�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ."".(*Alpha16).PixOffset��€��èdH‹ %����H;a†—���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0è����HƒÄÃè����éLÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Â
��(runtime.racefuncexit���Ö
��0runtime.morestack_noctxt���@ ��
"".autotmp_0615�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16� ’ �À�¶ “� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ""".(*Alpha16).Set��€��êdH‹ %����HD$ÐH;A†“��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9Ώé��I9ɍà��L9×��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$.H‰\$è����H·\$.f‰\$,H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń.��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÐ���H)H·l$,fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$,@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éñþÿÿè���� 1Àé(ýÿÿ‰éÜüÿÿè����éKüÿÿ0
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���‚��0image/color.Alpha16Model���”
�� runtime.raceread���Ö�0image/color.Alpha16Model���ì��0image/color.Alpha16Model���ü�������¨��0type.image/color.Alpha16���‚
��"runtime.assertI2T���Ö
�� runtime.raceread���â 
��"runtime.racewrite���¶ 
�� runtime.raceread���º 
��"runtime.racewrite���Ô 
��(runtime.racefuncexit���î 
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex���®
��$runtime.panicindex���Ø
��0runtime.morestack_noctxt���Pà��""".autotmp_0622��type.int�"".autotmp_0621��type.int�"".autotmp_0620�Ïtype.int�"".autotmp_0619��type.int�"".autotmp_0617�ƒ0type.image/color.Alpha16�"".autotmp_0616�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_ type.*"".Alpha16�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�‡0type.image/color.Alpha16�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�(à½ßà˜ßàJ�À�F¾     ¡’¹¥ ��+݁·�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ0"".(*Alpha16).SetAlpha16��à ��Þ dH‹ %����H;a†Ò��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„\��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ(��I9ɍ��L9��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ó���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄ���H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� 1Àééýÿÿ‰éýÿÿè����éýÿÿ"
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���†
�� runtime.raceread���€
��"runtime.racewrite���È
�� runtime.raceread���º 
��"runtime.racewrite���È

��(runtime.racefuncexit���â

��$runtime.panicindex���ø

��$runtime.panicindex���† 
��$runtime.panicindex���¢ 
��$runtime.panicindex���Ì 
��0runtime.morestack_noctxt���@€��"".autotmp_0631��type.int�"".autotmp_0630��type.int�"".autotmp_0629�¯type.int�"".autotmp_0628��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".Alpha16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�(€½ÿ€×ÿ€@�ð�@Ò    
ª– ��&Ú‚î�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ,"".(*Alpha16).SubImage��€��þdH‹ %����HD$¸H;A†]��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„È��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍I��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÑåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é±üÿÿ‰é1üÿÿè����éûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".Alpha16���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��8go.itab.*"".Alpha16."".Image���Ü
��(runtime.racefuncexit���ú�� type.*"".Alpha16�����type."".Image���¨��8go.itab.*"".Alpha16."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread���ž

�� runtime.raceread���¾ ��type."".Alpha16���Ð 
��"runtime.newobject���ü 
��"runtime.racewrite���Ø �6runtime.writeBarrierEnabled���˜ 
��"runtime.racewrite���Ä 
�� runtime.raceread���¶
��,runtime.racewriterange���Ä��8go.itab.*"".Alpha16."".Image���Œ
��(runtime.racefuncexit���ª�� type.*"".Alpha16���À��type."".Image���Ø��8go.itab.*"".Alpha16."".Image���ì
�� runtime.typ2Itab���¤
��.runtime.writebarrierptr���¸
��$runtime.panicslice���ì
��0runtime.morestack_noctxt���p��""".autotmp_0647��type.*uint8�"".autotmp_0646�� type.*"".Alpha16�"".autotmp_0645��type.int�"".autotmp_0644��type.int�"".autotmp_0643�Ÿtype.int�"".autotmp_0641�? type.*"".Alpha16�"".autotmp_0639�� type.*"".Alpha16�"".autotmp_0638�/type.[]uint8�"".autotmp_0637�� type.*"".Alpha16�"".y�Ïtype.int�"".x�¿type.int�"".p�O type.*"".Alpha16�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".Alpha16�(š×n�€ �jè BŽW†  7™Zt80-  �<�+¦\0/‚YNº0&%�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ("".(*Alpha16).Opaque�� ��–dH‹ %����HD$ðH;A†©��Hì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹¼$˜���Hƒÿ�„Y��H‹w H‹W(H‰T$`H‹O0H‹G8H‰D$pH‰t$XH‰L$hH9΍ ��H9À<�tƄ$ ���è����HÄ���ÃH‰<$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ñ��H‹J H‹j(H‰l$@H‹Z0H‹j8H‰l$PH‰\$HH‰L$8H)ËHÑãHÇD$ ����H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NH‹nH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QH‹iH‰¬$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé(ýÿÿHÇÀ���éÚüÿÿ‰é üÿÿè����é5üÿÿ(
������X
��*runtime.racefuncenter���–
��*runtime.racereadrange���Â
��(runtime.racefuncexit���€
��*runtime.racereadrange���º
�� runtime.raceread���Œ
�� runtime.raceread���‚
�� runtime.raceread���
�� runtime.raceread���Ê
�� runtime.raceread���Ö 
�� runtime.raceread���æ 
�� runtime.raceread���È 
�� runtime.raceread���¸ 
��(runtime.racefuncexit���Ò 
��$runtime.panicindex���î 
��$runtime.panicindex���ü 
��$runtime.panicindex���˜
��$runtime.panicindex���¶
��(runtime.racefuncexit���„
��0runtime.morestack_noctxt���  ��"".autotmp_0657��type.int�"".autotmp_0656��type.int�"".autotmp_0655�¿type.int�"".autotmp_0653��type.int�"".autotmp_0652��type.int�"".autotmp_0651��type.int�"".autotmp_0650��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p�� type.*"".Alpha16�4 Ÿ ºŸ >Ÿ )�Ð�^Š
haVÉ
11   *� �+¥�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·790e5cc5051fc0affc980ade09e929ec���4/tmp/go/src/image/image.goþ"".NewAlpha16�� ��–dH‹ %����HD$èH;A†©��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…ˆ���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����éhÿÿÿè����é5þÿÿ
������X
��*runtime.racefuncenter���¦��type.[]uint8���Ì
��"runtime.makeslice���¨��type."".Alpha16���º
��"runtime.newobject���à
��"runtime.racewrite���¶�6runtime.writeBarrierEnabled���ð
��"runtime.racewrite�����,runtime.racewriterange���Ä
��(runtime.racefuncexit���ð
��.runtime.writebarrierptr���„
��0runtime.morestack_noctxt���P°��"".autotmp_0672�? type.*"".Alpha16�"".autotmp_0671��type.int�"".autotmp_0669��type.int�"".autotmp_0668��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".Alpha16�"".r��"type."".Rectangle�°Ž¯°"�Ð�®
11Pð� �+±Hj�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ*"".(*Gray).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��*image/color.GrayModel���r
�� runtime.raceread���€��*image/color.GrayModel���˜�*image/color.GrayModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Gray�K�p�Ð
p��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*Gray).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Gray� x � �
Ô
 � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*Gray).At��€��þdH‹ %����H;a†¢���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$?H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����éAÿÿÿ
������B
��*runtime.racefuncenter���ž
��""".(*Gray).GrayAt���¾��*type.image/color.Gray���Ô��,type.image/color.Color���ì��Tgo.itab.image/color.Gray.image/color.Color���¦
��runtime.convT2I���Ø
��(runtime.racefuncexit���ì
��0runtime.morestack_noctxt���P€��
"".autotmp_0673�*type.image/color.Gray� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�€€ �À�Ø
1z �� ‹�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*Gray).GrayAt��À ��¤ dH‹ %����HD$øH;A†0��Hìˆ���H‹œ$ˆ���H‰$è����1ۈœ$¨���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„±��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ}��I9ɍt��L9k��I9ÀœÀ<�u1ÀˆD$ˆ„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(1ۈ\$H‹œ$���H‰$è����H‹œ$���H‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅshH)H‰$è����H‹œ$���Hƒû�tIH‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨���è����HÄˆ���Ãè���� ‰ë³è���� 1Àé”þÿÿ‰éHþÿÿè����é®ýÿÿ
������X
��*runtime.racefuncenter���à
��*runtime.racereadrange���Î
��(runtime.racefuncexit���¸
�� runtime.raceread���Š
�� runtime.raceread���°
�� runtime.raceread���°
�� runtime.raceread���¨
�� runtime.raceread���¸
��(runtime.racefuncexit���Ò
��$runtime.panicindex���è
��$runtime.panicindex���’ 
��0runtime.morestack_noctxt���@��"".autotmp_0678��*type.image/color.Gray�"".autotmp_0677�¯type.int�"".autotmp_0676��type.int�"".autotmp_0675�á*type.image/color.Gray�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�(Ó´8�à�6à

   ’µ��+ð|É�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ("".(*Gray).PixOffset��€��âdH‹ %����H;a†”���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃè����éOÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���¼
��(runtime.racefuncexit���Ð
��0runtime.morestack_noctxt���@ ��
"".autotmp_0681�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�  �À�ô
� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*Gray).Set��À ��¤ dH‹ %����HD$ÐH;A†°��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„:��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9Ώ��I9ɍý��L9ô��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$/H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$/H‰\$è����H‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$@H‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$@H‰„$ ���H9ÅsH)¶l$/@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� 1Àé þÿÿ‰é¿ýÿÿè����é.ýÿÿ(
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���ü��*image/color.GrayModel���Ž
�� runtime.raceread���Ð�*image/color.GrayModel���æ��*image/color.GrayModel���ö������� ��*type.image/color.Gray���ú
��"runtime.assertI2T���œ
�� runtime.raceread���  
��"runtime.racewrite���¸

��(runtime.racefuncexit���Ò

��$runtime.panicindex���è

��$runtime.panicindex���’ 
��0runtime.morestack_noctxt���Pà��"".autotmp_0686�Ïtype.int�"".autotmp_0685��type.int�"".autotmp_0683�*type.image/color.Gray�"".autotmp_0682�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Gray�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�(à½ßàÊßà8�à�6ü

 ž¥��+Ý~Ú�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ$"".(*Gray).SetGray��à��ØdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„™��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώe��I9ɍ\��L9S��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰é`þÿÿè����éÔýÿÿ
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���î
�� runtime.raceread���à
��"runtime.racewrite���ì
��(runtime.racefuncexit���†
��$runtime.panicindex���œ
��$runtime.panicindex���Æ
��0runtime.morestack_noctxt���@€��"".autotmp_0691�¯type.int�"".autotmp_0690��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�(€½ÿ€©ÿ€.�°�6Œ 
 ’��&Úvº�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ&"".(*Gray).SubImage��€��ødH‹ %����HD$¸H;A†Z��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„Å��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍F��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é´üÿÿ‰é4üÿÿè����é„ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".Gray���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��2go.itab.*"".Gray."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".Gray�����type."".Image���¨��2go.itab.*"".Gray."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread���˜

�� runtime.raceread���¸ ��type."".Gray���Ê 
��"runtime.newobject���ö 
��"runtime.racewrite���Ò �6runtime.writeBarrierEnabled���’ 
��"runtime.racewrite���¾ 
�� runtime.raceread���°
��,runtime.racewriterange���¾��2go.itab.*"".Gray."".Image���†
��(runtime.racefuncexit���¤��type.*"".Gray���º��type."".Image���Ò��2go.itab.*"".Gray."".Image���æ
�� runtime.typ2Itab���ž
��.runtime.writebarrierptr���²
��$runtime.panicslice���æ
��0runtime.morestack_noctxt���p��""".autotmp_0705��type.*uint8�"".autotmp_0704��type.*"".Gray�"".autotmp_0703��type.int�"".autotmp_0702��type.int�"".autotmp_0701�Ÿtype.int�"".autotmp_0699�?type.*"".Gray�"".autotmp_0697��type.*"".Gray�"".autotmp_0696�/type.[]uint8�"".autotmp_0695��type.*"".Gray�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".Gray�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray�(šÔq�€ �j  BŽW†  7–Zt80- �:�+¦\0/YNº0&(�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ""".(*Gray).Opaque��€��ndH‹ %����H;av!HƒìH‹\$H‰$è����ÆD$è����HƒÄÃè����ëÉ
������:
��*runtime.racefuncenter���N
��(runtime.racefuncexit���b
��0runtime.morestack_noctxt��� �� "".~r0�type.bool�"".p��type.*"".Gray��@� �
�$�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".NewGray�� ��ŠdH‹ %����HD$èH;A†£��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����……���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����ékÿÿÿè����é;þÿÿ
������X
��*runtime.racefuncenter��� ��type.[]uint8���Æ
��"runtime.makeslice���¢��type."".Gray���´
��"runtime.newobject���Ú
��"runtime.racewrite���°�6runtime.writeBarrierEnabled���ê
��"runtime.racewrite���´
��,runtime.racewriterange���¸
��(runtime.racefuncexit���ä
��.runtime.writebarrierptr���ø
��0runtime.morestack_noctxt���P°��"".autotmp_0714�?type.*"".Gray�"".autotmp_0713��type.int�"".autotmp_0711��type.int�"".autotmp_0710��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray�"".r��"type."".Rectangle�°ˆ¯°(�Ð�Ì 11Mí� �+®Hg�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ."".(*Gray16).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��.image/color.Gray16Model���r
�� runtime.raceread���€��.image/color.Gray16Model���˜�.image/color.Gray16Model���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Gray16�K�p�î p��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ&"".(*Gray16).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Gray16� x � �
ò  � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*Gray16).At�� ��‚dH‹ %����H;a†¤���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����H·\$f‰\$>H����H‰$H����H‰\$H����H‰\$H\$>H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é?ÿÿÿ
������B
��*runtime.racefuncenter���ž
��*"".(*Gray16).Gray16At���Â��.type.image/color.Gray16���Ø��,type.image/color.Color���ð��Xgo.itab.image/color.Gray16.image/color.Color���ª
��runtime.convT2I���Ü
��(runtime.racefuncexit���ð
��0runtime.morestack_noctxt���P€��
"".autotmp_0715�.type.image/color.Gray16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�€Ÿ€�Ð�ö 1|�� #�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ*"".(*Gray16).Gray16At��€ ��ä dH‹ %����HD$øH;A†Ð��Hìˆ���H‹œ$ˆ���H‰$è����1Ûf‰œ$¨���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„P��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώ��I9ɍ��L9
��I9ÀœÀ<�u1Àf‰D$f‰„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(1Ûf‰\$H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃù���HH‰$è����H‹œ$���H‰$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃž���HH‰$è����H‹¼$���H‹t$(H‰òHƒÂ�Hƒÿ�tsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹GL‰„$€���H‰T$pH‰L$xH9Ès!H,f¶m�H ëf‰œ$¨���è����HÄˆ���Ãè���� è���� ‰ë‰è���� è���� 1Àéõýÿÿ‰é©ýÿÿè����éýÿÿ"
������X
��*runtime.racefuncenter���â
��*runtime.racereadrange���Ô
��(runtime.racefuncexit���¾
�� runtime.raceread���
�� runtime.raceread���¶
�� runtime.raceread���¾
�� runtime.raceread���Æ
�� runtime.raceread���è
�� runtime.raceread���î
�� runtime.raceread���Ü

��(runtime.racefuncexit���ö

��$runtime.panicindex���„ 
��$runtime.panicindex���š 
��$runtime.panicindex���¨ 
��$runtime.panicindex���Ò 
��0runtime.morestack_noctxt���@��"".autotmp_0720��.type.image/color.Gray16�"".autotmp_0719�¯type.int�"".autotmp_0718��type.int�"".autotmp_0717�ã.type.image/color.Gray16�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�(ÖÃF�€�6þ 

 •Ï��+ó€â�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ,"".(*Gray16).PixOffset��€��èdH‹ %����H;a†—���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0è����HƒÄÃè����éLÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Â
��(runtime.racefuncexit���Ö
��0runtime.morestack_noctxt���@ ��
"".autotmp_0729�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16� ’ �À�’ “� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ "".(*Gray16).Set��€��êdH‹ %����HD$ÐH;A†“��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9Ώé��I9ɍà��L9×��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1Ûf‰\$.H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$.H‰\$è����H·\$.f‰\$,H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń.��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÐ���H)H·l$,fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$,@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éñþÿÿè���� 1Àé(ýÿÿ‰éÜüÿÿè����éKüÿÿ0
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���‚��.image/color.Gray16Model���”
�� runtime.raceread���Ö�.image/color.Gray16Model���ì��.image/color.Gray16Model���ü�������¨��.type.image/color.Gray16���‚
��"runtime.assertI2T���Ö
�� runtime.raceread���â 
��"runtime.racewrite���¶ 
�� runtime.raceread���º 
��"runtime.racewrite���Ô 
��(runtime.racefuncexit���î 
��$runtime.panicindex���„
��$runtime.panicindex���’
��$runtime.panicindex���®
��$runtime.panicindex���Ø
��0runtime.morestack_noctxt���Pà��""".autotmp_0736��type.int�"".autotmp_0735��type.int�"".autotmp_0734�Ïtype.int�"".autotmp_0733��type.int�"".autotmp_0731�ƒ.type.image/color.Gray16�"".autotmp_0730�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Gray16�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�‡.type.image/color.Gray16�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�(à½ßà˜ßàJ�À�Fš     ¡’¹¥ ��+݁·�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ,"".(*Gray16).SetGray16��à ��Þ dH‹ %����H;a†Ò��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„\��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ(��I9ɍ��L9��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ó���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄ���H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� 1Àééýÿÿ‰éýÿÿè����éýÿÿ"
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���†
�� runtime.raceread���€
��"runtime.racewrite���È
�� runtime.raceread���º 
��"runtime.racewrite���È

��(runtime.racefuncexit���â

��$runtime.panicindex���ø

��$runtime.panicindex���† 
��$runtime.panicindex���¢ 
��$runtime.panicindex���Ì 
��0runtime.morestack_noctxt���@€��"".autotmp_0745��type.int�"".autotmp_0744��type.int�"".autotmp_0743�¯type.int�"".autotmp_0742��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�(€½ÿ€×ÿ€@�ð�@®    
ª– ��&Ú‚î�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ*"".(*Gray16).SubImage��€��þdH‹ %����HD$¸H;A†]��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„È��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍I��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÑåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é±üÿÿ‰é1üÿÿè����éûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".Gray16���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��6go.itab.*"".Gray16."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".Gray16�����type."".Image���¨��6go.itab.*"".Gray16."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread���ž

�� runtime.raceread���¾ ��type."".Gray16���Ð 
��"runtime.newobject���ü 
��"runtime.racewrite���Ø �6runtime.writeBarrierEnabled���˜ 
��"runtime.racewrite���Ä 
�� runtime.raceread���¶
��,runtime.racewriterange���Ä��6go.itab.*"".Gray16."".Image���Œ
��(runtime.racefuncexit���ª��type.*"".Gray16���À��type."".Image���Ø��6go.itab.*"".Gray16."".Image���ì
�� runtime.typ2Itab���¤
��.runtime.writebarrierptr���¸
��$runtime.panicslice���ì
��0runtime.morestack_noctxt���p��""".autotmp_0761��type.*uint8�"".autotmp_0760��type.*"".Gray16�"".autotmp_0759��type.int�"".autotmp_0758��type.int�"".autotmp_0757�Ÿtype.int�"".autotmp_0755�?type.*"".Gray16�"".autotmp_0753��type.*"".Gray16�"".autotmp_0752�/type.[]uint8�"".autotmp_0751��type.*"".Gray16�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".Gray16�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray16�(š×n�€ �jÄ BŽW†  7™Zt80-  �<�+¦\0/‚YNº0&%�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ&"".(*Gray16).Opaque��€��ndH‹ %����H;av!HƒìH‹\$H‰$è����ÆD$è����HƒÄÃè����ëÉ
������:
��*runtime.racefuncenter���N
��(runtime.racefuncexit���b
��0runtime.morestack_noctxt��� �� "".~r0�type.bool�"".p��type.*"".Gray16��@�æ �
�$�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".NewGray16�� ��–dH‹ %����HD$èH;A†©��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…ˆ���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����éhÿÿÿè����é5þÿÿ
������X
��*runtime.racefuncenter���¦��type.[]uint8���Ì
��"runtime.makeslice���¨��type."".Gray16���º
��"runtime.newobject���à
��"runtime.racewrite���¶�6runtime.writeBarrierEnabled���ð
��"runtime.racewrite�����,runtime.racewriterange���Ä
��(runtime.racefuncexit���ð
��.runtime.writebarrierptr���„
��0runtime.morestack_noctxt���P°��"".autotmp_0770�?type.*"".Gray16�"".autotmp_0769��type.int�"".autotmp_0767��type.int�"".autotmp_0766��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray16�"".r��"type."".Rectangle�°Ž¯°"�Ð�ð 11Pð� �+±Hj�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ*"".(*CMYK).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��*image/color.CMYKModel���r
�� runtime.raceread���€��*image/color.CMYKModel���˜�*image/color.CMYKModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".CMYK�K�p�’ p��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*CMYK).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".CMYK� x � �
–  � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*CMYK).At��À��´dH‹ %����H;a†½���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$<¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$<H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é&ÿÿÿ
������B
��*runtime.racefuncenter���ž
��""".(*CMYK).CMYKAt���ô��*type.image/color.CMYK���Š��,type.image/color.Color���¢��Tgo.itab.image/color.CMYK.image/color.Color���Ü
��runtime.convT2I���Ž
��(runtime.racefuncexit���¢
��0runtime.morestack_noctxt���P€��
"".autotmp_0771�*type.image/color.CMYK� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�€¸€�à�š 1•�� ¦�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ""".(*CMYK).CMYKAt��À��¶dH‹ %����HD$øH;A†¹��Hìˆ���H‹œ$ˆ���H‰$è����1ۈœ$¨���ˆœ$©���ˆœ$ª���ˆœ$«���1ÛH‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹L$8L‹D$@H‹¼$���Hƒÿ�„%��H‹w H‹W(H‰T$PH‹O0H‰L$XH‹G8H‰D$`H‰t$HL9Ώñ��I9ɍè��L9ß��I9ÀœÀ<�uC1í@ˆl$@ˆ¬$¨���@ˆl$@ˆ¬$©���@ˆl$@ˆ¬$ª���@ˆl$@ˆ¬$«���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰|$hH‰<$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(1ۈ\$ˆ\$ˆ\$ˆ\$H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ›��HH‰$è����H‹´$���H‹D$(HƒÀ�Hƒþ�„l��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ?��H¶ˆ\$H‰4$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃî��HH‰$è����H‹´$���H‹D$(HÿÀHƒþ�„À��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃ“��H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃA��HH‰$è����H‹´$���H‹D$(HƒÀHƒþ�„��H‹H‹NH‹nH‰¬$€���H‰T$pH‰L$xH9ȃå���H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ“���HH‰$è����H‹D$(H‹œ$���HƒÀHƒû�tkH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨���¶\$ˆœ$©���¶\$ˆœ$ª���ˆ„$«���è����HÄˆ���Ãè���� ‰ë‘è���� è���� ‰éçþÿÿè���� è���� ‰é9þÿÿè���� è���� ‰éýÿÿè���� 1Àé üÿÿ‰éÔûÿÿè����é%ûÿÿ2
������X
��*runtime.racefuncenter���Š
��*runtime.racereadrange���Ê
��(runtime.racefuncexit���´
�� runtime.raceread���†
�� runtime.raceread���¬
�� runtime.raceread���Ì
�� runtime.raceread���Ô
�� runtime.raceread���þ 
�� runtime.raceread���„ 
�� runtime.raceread���¬ 
�� runtime.raceread���´ 
�� runtime.raceread���Þ
�� runtime.raceread���æ
�� runtime.raceread���Ì
��(runtime.racefuncexit���æ
��$runtime.panicindex���ü
��$runtime.panicindex���Š
��$runtime.panicindex���¦
��$runtime.panicindex���´
��$runtime.panicindex���Ð
��$runtime.panicindex���Þ
��$runtime.panicindex���ú
��$runtime.panicindex���¤
��0runtime.morestack_noctxt���@��"".autotmp_0776��*type.image/color.CMYK�"".autotmp_0775�¯type.int�"".autotmp_0774��type.int�"".autotmp_0773�ç*type.image/color.CMYK�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".CMYK�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0*type.image/color.CMYK�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�(‘Àn�à �6¢ 
  6–ü��+®Œû�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ("".(*CMYK).PixOffset��€��êdH‹ %����H;a†˜���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃè����éKÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���@ ��
"".autotmp_0793�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK� “ �À�¶ ”� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".(*CMYK).Set��À��¬dH‹ %����HD$ÐH;A†4��Hì°���H‹œ$°���H‰$è����1ÛH‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¸���Hƒÿ�„¾��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9ΏŠ��I9ɍ��L9x��I9ÀœÀ<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ 1ۈ\$,ˆ\$-ˆ\$.ˆ\$/H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$H\$,H‰\$è����¶\$,ˆ\$(¶\$-ˆ\$)¶\$.ˆ\$*¶\$/ˆ\$+H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńª��H)H‰$è����H‹”$¸���Hƒú�„„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃL��H)¶l$(@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńê��H)H‰$è����H‹”$¸���Hƒú�„Ä��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃŒ��H)¶l$)@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń)��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃË���H)¶l$*@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)¶l$+@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� è���� ‰éöþÿÿè���� è���� ‰é5þÿÿè���� è���� ‰éuýÿÿè���� 1Àé‡ûÿÿ‰é;ûÿÿè����éªúÿÿ@
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���„��*image/color.CMYKModel���–
�� runtime.raceread���Ø�*image/color.CMYKModel���î��*image/color.CMYKModel���þ�������À��*type.image/color.CMYK���š
��"runtime.assertI2T���  
�� runtime.raceread���¬

��"runtime.racewrite���ö 
�� runtime.raceread���‚ 
��"runtime.racewrite���Î
�� runtime.raceread���Ú
��"runtime.racewrite���¦
�� runtime.raceread���ª
��"runtime.racewrite���Â
��(runtime.racefuncexit���Ü
��$runtime.panicindex���ò
��$runtime.panicindex���€
��$runtime.panicindex���œ
��$runtime.panicindex���ª
��$runtime.panicindex���Æ
��$runtime.panicindex���Ô
��$runtime.panicindex���ð
��$runtime.panicindex���š
��0runtime.morestack_noctxt���Pà��&"".autotmp_0802��type.int�"".autotmp_0801��type.int�"".autotmp_0800��type.int�"".autotmp_0799��type.int�"".autotmp_0798�Ïtype.int�"".autotmp_0797��type.int�"".autotmp_0795�‡*type.image/color.CMYK�"".autotmp_0794�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".CMYK�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�*type.image/color.CMYK�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�(à½ßàßàs�à
�Z¾   ¢¶´«¬¥ ��+Ý‚Ö�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·524aafe7d1228e5424d64f5d94771fbf���4/tmp/go/src/image/image.goþ$"".(*CMYK).SetCMYK�� ��œdH‹ %����H;a†1��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„»��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώ‡��I9ɍ~��L9u��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńw��H)H‰$è����H‹”$ˆ���Hƒú�„Q��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"��H)¶¬$ ���@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆ��H)H‰$è����H‹”$ˆ���Hƒú�„ ��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńq��H)¶¬$¡���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„î���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿���H)¶¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� è���� ‰é ÿÿÿè���� è���� ‰éYþÿÿè���� è���� ‰é¨ýÿÿè���� 1ÀéŠüÿÿ‰é>üÿÿè����é²ûÿÿ2
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���ˆ
�� runtime.raceread���‚
��"runtime.racewrite����� runtime.raceread���º 
��"runtime.racewrite���ú

�� runtime.raceread���ô 
��"runtime.racewrite���´ 
�� runtime.raceread���¦
��"runtime.racewrite���²
��(runtime.racefuncexit���Ì
��$runtime.panicindex���â
��$runtime.panicindex���ð
��$runtime.panicindex���Œ
��$runtime.panicindex���š
��$runtime.panicindex���¶
��$runtime.panicindex���Ä
��$runtime.panicindex���à
��$runtime.panicindex���Š
��0runtime.morestack_noctxt���@€�� "".autotmp_0817��type.int�"".autotmp_0816��type.int�"".autotmp_0815��type.int�"".autotmp_0814��type.int�"".autotmp_0813�¯type.int�"".autotmp_0812��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".CMYK�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0*type.image/color.CMYK�"".y� type.int�"".x�type.int�"".p��type.*"".CMYK�(€½ÿ€Œÿ€k�Ð�TÖ    ‘¥œ– ��&ÚƒÍ�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ&"".(*CMYK).SubImage��€��€dH‹ %����HD$¸H;A†^��HìÈ���H‹œ$È���H‰$è����1ÛH‰œ$ø���H‰œ$���H‹œ$Ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$Ø���H‰$H‹œ$à���H‰\$H‹œ$è���H‰\$H‹œ$ð���H‰\$H‹´$Ð���Hƒþ�„É��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$Ø���H‰”$à���H‰”$ˆ���H‰Œ$è���H‰„$ð���H‰„$˜���H‰´$€���H‰Œ$���H9΍J��H9À<�„Â���H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$@���è����H‹„$¨���1íH‰(H‰hH‰hH‰hH‰h H‰h(H‰h0H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¬H‹Œ$Ð���H‰t$hH‰T$`H‰Œ$ ���H‰ $Hƒ$ è����H‹„$ ���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$ ���H‰$Hƒ$è����H‹„$ ���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHÁåHëH‰\$pH‹œ$Ð���H‰$è����H‹œ$Ð���H‹l$pL‹CL‹KL9Ňª��L‹I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$¸���H‰kH‹¬$À���H‰kH‹¬$°���€=�����…��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$Ð���H‰$Hƒ$è����H‹„$¨���Hƒø�„É���L‹„$Ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$¨���H‹¬$Ø���H‰h H‹¬$à���H‰h(H‹¬$è���H‰h0H‹¬$ð���H‰h8H‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$���H‰„$ø���è����HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿH‰$H‰l$è����éßþÿÿè���� HÇÀ���é°üÿÿ‰é0üÿÿè����é€ûÿÿD
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".CMYK���æ
��"runtime.newobject���¤
��,runtime.racewriterange���”��2go.itab.*"".CMYK."".Image���Ü
��(runtime.racefuncexit���ú��type.*"".CMYK�����type."".Image���¨��2go.itab.*"".CMYK."".Image���¼
�� runtime.typ2Itab���š
�� runtime.raceread���ò
�� runtime.raceread���ž 
�� runtime.raceread��� 

�� runtime.raceread���À ��type."".CMYK���Ò 
��"runtime.newobject���þ 
��"runtime.racewrite���Ú �6runtime.writeBarrierEnabled���š 
��"runtime.racewrite���Æ 
�� runtime.raceread���¸
��,runtime.racewriterange���Æ��2go.itab.*"".CMYK."".Image���Ž
��(runtime.racefuncexit���¬��type.*"".CMYK���Â��type."".Image���Ú��2go.itab.*"".CMYK."".Image���î
�� runtime.typ2Itab���¦
��.runtime.writebarrierptr���º
��$runtime.panicslice���î
��0runtime.morestack_noctxt���p��""".autotmp_0837��type.*uint8�"".autotmp_0836��type.*"".CMYK�"".autotmp_0835��type.int�"".autotmp_0834��type.int�"".autotmp_0833�Ÿtype.int�"".autotmp_0831�?type.*"".CMYK�"".autotmp_0829��type.*"".CMYK�"".autotmp_0828�/type.[]uint8�"".autotmp_0827��type.*"".CMYK�"".y�Ïtype.int�"".x�¿type.int�"".p�Otype.*"".CMYK�"".r�"type."".Rectangle�"".i�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".CMYK�(šØm�€ �jð BŽW†  7šZt80- 
�<�+¦\0/ƒYNº0&$�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ""".(*CMYK).Opaque��€��ndH‹ %����H;av!HƒìH‹\$H‰$è����ÆD$è����HƒÄÃè����ëÉ
������:
��*runtime.racefuncenter���N
��(runtime.racefuncexit���b
��0runtime.morestack_noctxt��� �� "".~r0�type.bool�"".p��type.*"".CMYK��@�’�
�$�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ"".NewCMYK�� ��šdH‹ %����HD$èH;A†«��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…‰���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰„$À���è����HÄ˜���ÃH‰$H‰l$è����égÿÿÿè����é3þÿÿ
������X
��*runtime.racefuncenter���¨��type.[]uint8���Î
��"runtime.makeslice���ª��type."".CMYK���¼
��"runtime.newobject���â
��"runtime.racewrite���¸�6runtime.writeBarrierEnabled���ò
��"runtime.racewrite���Ä
��,runtime.racewriterange���È
��(runtime.racefuncexit���ô
��.runtime.writebarrierptr���ˆ
��0runtime.morestack_noctxt���P°��"".autotmp_0846�?type.*"".CMYK�"".autotmp_0845��type.int�"".autotmp_0843��type.int�"".autotmp_0842��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".CMYK�"".r��"type."".Rectangle�°¯° �Ð�œ11Qñ � �+²Hk�Tgclocals·8c4115247b3638c79e08e0e295c9b378�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ2"".(*Paletted).ColorModel��à��ÖdH‹ %����H;a†Ž���Hƒì8H‹\$8H‰$è����1ÛH‰\$HH‰\$PH����H‰$H����H‰\$H����H‰\$H‹\$@H‰\$Hƒ|$�t2HƒD$@HÇD$ ����è����H‹\$(H‰\$HH‹\$0H‰\$Pè����HƒÄ8É%����ëÅè����éUÿÿÿ
������B
��*runtime.racefuncenter���h��0type.image/color.Palette���~��,type.image/color.Model���–��Zgo.itab.image/color.Palette.image/color.Model���ì
��runtime.convT2I���ž
��(runtime.racefuncexit���Ä
��0runtime.morestack_noctxt���0p�� "".~r0�,type.image/color.Model�"".p��"type.*"".Paletted�p€op�°�
°�� n"�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/image.goþ*"".(*Paletted).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$ HÇD$ ���è����H‹\$Hƒû�t.H‹k H‰l$ H‹k(H‰l$(H‹k0H‰l$0H‹k8H‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��"type.*"".Paletted� x � �
Æ � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ""".(*Paletted).At��€��âdH‹ %����HD$èH;A†��Hì˜���H‹œ$˜���H‰$è����1ÛH‰œ$¸���H‰œ$À���H‹œ$ ���H‰$Hƒ$@è����H‹Œ$ ���H‹iHHƒý�u1ÛH‰œ$¸���H‰œ$À���è����HÄ˜���Ã1ÛH‹œ$¨���H‰\$0H‹œ$°���H‰\$8H‰ $Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹Œ$ ���Hƒù�„H��H‹y H‹q(H‰t$HH‹Q0H‰T$PH‹A8H‰D$XH‰|$@L9Ϗ��I9э ��L9Ə��I9ÀœÀ<�…·���H‰ $Hƒ$@è����H‹œ$ ���H‹K@H‹CHH‹kPH‰¬$���H‰Œ$€���Hƒø�H‰„$ˆ���vpH‰ $è����H‹œ$ ���Hƒû�tUH‹K@H‹CHH‹kPH‰¬$���H‰Œ$€���Hƒø�H‰„$ˆ���v$H‹)H‰¬$¸���H‹iH‰¬$À���è����HÄ˜���Ãè���� ‰ë§è���� H‹œ$¨���H‰\$H‹œ$°���H‰\$H‰L$`H‰ $Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ ���H‰$Hƒ$@è����H‹œ$ ���H‰$è����H‹œ$ ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ŃM��H)H‰$è����H‹”$ ���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9Ń ��H)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$���H‰ÓH‰”$€���¶èH‰Œ$ˆ���H9̓Â���HÁåHëH‰$è����H‹”$ ���Hƒú�„™���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsnH)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$���H‰ÓH‰”$€���¶èH‰Œ$ˆ���H9Ís+HÁåHëH‹+H‰¬$¸���H‹kH‰¬$À���è����HÄ˜���Ãè���� è���� ‰é`ÿÿÿè���� è���� è���� 1Àéýüÿÿ‰é±üÿÿè����éÏûÿÿ0
������X
��*runtime.racefuncenter���¨
�� runtime.raceread���ú
��(runtime.racefuncexit���ð
��*runtime.racereadrange���Þ
�� runtime.raceread���Ô
�� runtime.raceread���ü
��(runtime.racefuncexit���–
��$runtime.panicindex���¬
��$runtime.panicindex���Š
�� runtime.raceread���Ü
�� runtime.raceread���‚ 
�� runtime.raceread���€

�� runtime.raceread���¢

�� runtime.raceread���œ 
�� runtime.raceread���œ 
�� runtime.raceread���Æ
��(runtime.racefuncexit���à
��$runtime.panicindex���î
��$runtime.panicindex���Š
��$runtime.panicindex���˜
��$runtime.panicindex���¦
��$runtime.panicindex���Ð
��0runtime.morestack_noctxt���P°��"".autotmp_0850��type.int�"".autotmp_0849��type.int�"".autotmp_0847�ßtype.int�"".y�type.int�"".x�ÿtype.int�"".p�o"type.*"".Paletted�"".r�¯"type."".Rectangle�"".p�Ïtype."".Point�"".i�ïtype.int� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�4°i¯°À¯°¤¯°Q�À�HÊ(  œ˜’«�.�+Q;† :{ã Q�Tgclocals·9bafea7b2a19e2cc3d593c51cce7c661�Tgclocals·f7103403aec01e4990bdf6681d1baac8���4/tmp/go/src/image/image.goþ0"".(*Paletted).PixOffset��€��âdH‹ %����H;a†”���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃè����éOÿÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���º
�� runtime.raceread���à
�� runtime.raceread���¼
��(runtime.racefuncexit���Ð
��0runtime.morestack_noctxt���@ ��
"".autotmp_0860�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�  �À�ä� �  �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/image.goþ$"".(*Paletted).Set��  ��‚ dH‹ %����HD$àH;A†Ÿ��Hì ���H‹œ$ ���H‰$è����1ÛH‹œ$°���H‰\$PH‹œ$¸���H‰\$XH‹œ$¨���H‰$Hƒ$ HÇD$ ���è����L‹L$PL‹D$XH‹¼$¨���Hƒÿ�„)��H‹w H‹W(H‰T$hH‹O0H‰L$pH‹G8H‰D$xH‰t$`L9Ώõ��I9ɍì��L9ã��I9ÀœÀ<�u è����HÄ ���ÃH‹œ$°���H‰\$8H‹œ$¸���H‰\$0H‰¼$€���H‰<$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@H‹œ$¨���H‰$Hƒ$@è����H‹´$¨���Hƒþ�„ÿ���H^@H‹ H‰ $H‹KH‰L$H‹KH‰L$H‹œ$À���H‰\$H‹œ$È���H‰\$ è����H‹\$(H‰\$HH‹œ$¨���H‰$è����H‹œ$¨���H‹ H‹CH‹kH‰¬$˜���H‰Œ$ˆ���H‹l$@H‰„$���H9ÅslH)H‰$è����H‹œ$¨���Hƒû�tMH‹ H‹CH‹kH‰¬$˜���H‰Œ$ˆ���H‹l$@H‰„$���H9ÅsH)H‹l$H@ˆ+è����HÄ ���Ãè���� ‰ë¯è���� ‰éúþÿÿ1Àéþÿÿ‰éÐýÿÿè����é?ýÿÿ
������X
��*runtime.racefuncenter���Î
��*runtime.racereadrange���¢
��(runtime.racefuncexit���’
�� runtime.raceread���ê
�� runtime.raceread���–
�� runtime.raceread���š
�� runtime.raceread���¶
��2image/color.Palette.Index���ì
�� runtime.raceread���ð
��"runtime.racewrite���ˆ

��(runtime.racefuncexit���¢

��$runtime.panicindex���¸

��$runtime.panicindex���ð

��0runtime.morestack_noctxt���PÀ��"".autotmp_0864�¯type.int�"".autotmp_0863��type.int�"".autotmp_0861��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�(À½¿À²¿À@�Ð�6ì
 ž��+Ý„Ä�Tgclocals·1b19623ccfd3351b9464338f230e8b94�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ6"".(*Paletted).ColorIndexAt��€ ��èdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„¡��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώm��I9ɍd��L9[��I9ÀœÀ<�uƄ$ ����è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶+@ˆ¬$ ���è����HÄ€���Ãè���� ‰ëµè���� 1Àé¤þÿÿ‰éXþÿÿè����éÌýÿÿ
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���¨
��(runtime.racefuncexit���’
�� runtime.raceread���ä
�� runtime.raceread���Š
�� runtime.raceread���þ
�� runtime.raceread���ð
�� runtime.raceread���ü
��(runtime.racefuncexit���–
��$runtime.panicindex���¬
��$runtime.panicindex���Ö
��0runtime.morestack_noctxt���@€��"".autotmp_0869�¯type.int�"".autotmp_0868��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�(€Åÿ€©ÿ€6�À�2ü
 ’ª��&âvÂ�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ8"".(*Paletted).SetColorIndex��à��ØdH‹ %����H;a†��Hì€���H‹œ$€���H‰$è����1ÛH‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹L$0L‹D$8H‹¼$ˆ���Hƒÿ�„™��H‹w H‹W(H‰T$HH‹O0H‰L$PH‹G8H‰D$XH‰t$@L9Ώe��I9ɍ\��L9S��I9ÀœÀ<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰|$`H‰<$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰é`þÿÿè����éÔýÿÿ
������N
��*runtime.racefuncenter���Ä
��*runtime.racereadrange���˜
��(runtime.racefuncexit���‚
�� runtime.raceread���Ô
�� runtime.raceread���ú
�� runtime.raceread���î
�� runtime.raceread���à
��"runtime.racewrite���ì
��(runtime.racefuncexit���†
��$runtime.panicindex���œ
��$runtime.panicindex���Æ
��0runtime.morestack_noctxt���@€��"".autotmp_0874�¯type.int�"".autotmp_0873��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".index�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�(€½ÿ€©ÿ€.�°�6Œ
 ’��&Úvº�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/image.goþ."".(*Paletted).SubImage��à��ÌdH‹ %����HD$˜H;A†��Hìè���H‹œ$è���H‰$è����1ÛH‰œ$��H‰œ$ ��H‹œ$ð���H‰$Hƒ$ HÇD$ ���è����H‹œ$ø���H‰$H‹œ$���H‰\$H‹œ$��H‰\$H‹œ$��H‰\$H‹´$ð���Hƒþ�„o��H^ H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$ø���H‰”$���H‰”$ˆ���H‰Œ$��H‰„$��H‰„$˜���H‰´$€���H‰Œ$���H9΍ð��H9À<�„@��H����H‰$è����H‹D$H‰„$È���H‰$HÇD$X���è����H‹Œ$È���H‰ÏHƒù�„õ���1ÀHƒÇøè����H‰ $Hƒ$@è����H‹œ$ð���H‰$Hƒ$@è����H‹œ$ð���Hƒû�„­���Hk@H‹œ$È���Hƒû�„���LC@L‰D$H‰l$H-����H‰,$è����H‹œ$È���H‰œ$È���H‹����1íH9èt%H‹œ$È���H‰œ$ ��H‰„$��è����HÄè���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉éiÿÿÿ‰éLÿÿÿ‰éÿÿÿH‹Œ$ð���H‰t$hH‰T$`H‰Œ$À���H‰ $Hƒ$ è����H‹„$À���H‹X H‹l$hH)ÝH‰l$xH‰$Hƒ$ Hƒ$è����H‹œ$À���H‰$Hƒ$è����H‹„$À���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹l$xHëH‰\$pH‹œ$ð���H‰$è����H‹„$ð���H‹l$pL‹@L‹HL9ŇÖ��L‹I)èI)éIƒù�tM*L‰„$Ø���L‰Œ$à���L‰”$Ð���H‰$Hƒ$ HÇD$ ���è����H‹´$ð���Hƒþ�„{��H^ H‰çH‰Þè����H‹œ$ø���H‰\$ H‹œ$���H‰\$(H‹œ$��H‰\$0H‹œ$��H‰\$8è����H‹\$@H‰œ$ ���H‹\$HH‰œ$¨���H‹\$PH‰œ$°���H‹\$XH‰œ$¸���H����H‰$è����H‹D$H‰„$È���H‰$è����H‹œ$È���H‹¬$Ø���H‰kH‹¬$à���H‰kH‹¬$Ð���€=�����…‘��H‰+H‹œ$È���H‰$Hƒ$è����H‹œ$ð���H‰$Hƒ$è����H‹„$È���Hƒø�„I��L‹„$ð���I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$È���H‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰$Hƒ$@è����H‹œ$ð���H‰$Hƒ$@è����H‹œ$ð���Hƒû�„­���Hk@H‹œ$È���Hƒû�„���LC@L‰D$H‰l$H-����H‰,$è����H‹œ$È���H‰œ$È���H‹����1íH9èt%H‹œ$È���H‰œ$ ��H‰„$��è����HÄè���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉éiÿÿÿ‰éLÿÿÿ‰�é°þÿÿH‰$H‰l$è����é_þÿÿ‰é~ýÿÿè���� HÇÀ���é
ûÿÿ‰éŠúÿÿè����éÚùÿÿ\
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô�� type."".Paletted���æ
��"runtime.newobject���¤
��,runtime.racewriterange���ä
Ô� runtime.duffzero���€
��"runtime.racewrite���¬
�� runtime.raceread���¦��0type.image/color.Palette���¸
��(runtime.typedmemmove���æ��:go.itab.*"".Paletted."".Image���®
��(runtime.racefuncexit���Ì��"type.*"".Paletted���â��type."".Image���ú��:go.itab.*"".Paletted."".Image���Ž 
�� runtime.typ2Itab���–

�� runtime.raceread���î

�� runtime.raceread���š 
�� runtime.raceread���” 
�� runtime.raceread���Ô 
��*runtime.racereadrange���–
� runtime.duffcopy���ˆ
��,"".Rectangle.Intersect���þ�� type."".Paletted���
��"runtime.newobject���¼
��"runtime.racewrite���˜�6runtime.writeBarrierEnabled���Ø
��"runtime.racewrite���„
�� runtime.raceread���ö
��,runtime.racewriterange���‚
��"runtime.racewrite���®
�� runtime.raceread���¨��0type.image/color.Palette���º
��(runtime.typedmemmove���è��:go.itab.*"".Paletted."".Image���°
��(runtime.racefuncexit���Î��"type.*"".Paletted���ä��type."".Image���ü��:go.itab.*"".Paletted."".Image���
�� runtime.typ2Itab���ä
��.runtime.writebarrierptr���†
��$runtime.panicslice���º
��0runtime.morestack_noctxt���pÐ��&"".autotmp_0889��type.*uint8�"".autotmp_0888��"type.*"".Paletted�"".autotmp_0887��type.int�"".autotmp_0886��type.int�"".autotmp_0885�ßtype.int�"".autotmp_0883�?"type.*"".Paletted�"".autotmp_0881��"type.*"".Paletted�"".autotmp_0880��"type."".Rectangle�"".autotmp_0879�/type.[]uint8�"".autotmp_0878��"type.*"".Paletted�"".autotmp_0877�"type."".Rectangle�"".y�type.int�"".x�ÿtype.int�"".p�O"type.*"".Paletted�"".r�Ï"type."".Rectangle�"".i�ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��"type.*"".Paletted�*ЃÏЀÏÐŒ�° �Š BŽW×-–Z¥t80ˆ - �>�+¦Å0D`´N¬0;.�Tgclocals·beaeb9c48e230c42df709f19dd51c03b�Tgclocals·6303a5fef1b34377e043c222d45020fc���4/tmp/go/src/image/image.goþ*"".(*Paletted).Opaque��à��ÎdH‹ %����H„$¨þÿÿH;A†‚��HìØ��H‹œ$Ø��H‰$è����H|$`1Àè����H‹œ$à��H‰$Hƒ$ HÇD$ ���è����H‹”$à��Hƒú�„&��H‹J H‹j(H‰l$HH‹Z0H‹j8H‰l$XH‰\$PH‰L$@H)ËHÇD$(����H‰\$ H‰$Hƒ$ Hƒ$è����H‹Œ$à��H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹„$à��H‹X8H‹l$H9ëŽV��H‰$è����H‹œ$à��H‹l$(L‹D$ L‹KM9ȇ'��L9Ň��L‹I)èI)éIƒù�tM*L‰”$À��L‰„$È��L‰Œ$Ð��L‰Œ$¸��1ÉL‰„$°��L‰D$0L‰”$¨��L‰ÐH‰L$8H‹l$0H9é}FH‰„$h��H‰$è����H‹„$h��¶(H\$`@¶íH+ÆHÿÀH‹L$8HÿÁH‰L$8H‹l$0H9é|ºH‹\$(H‰\$8H‹œ$à��H‰$Hƒ$è����H‹„$à��H‹XH‹l$8HëH‰\$(H‹\$ H‰\$8H‰$Hƒ$è����H‹Œ$à��H‹YH‹l$8HëH‰\$ H‹\$HÿÃH‰\$éþÿÿè���� H‰$Hƒ$@è����H‹œ$à��Hƒû�„��H‹S@H‹CHH‹kPH‰¬$ ��1ÉH‰„$˜��H‰D$0H‰”$��H‰ÐH‰L$8H‹l$0H9鍏���H‰„$`��H‰$è����H‹œ$`��Hƒû�„³���H‹H‹KH‹D$8H‰”$€��H‰”$p��H‰Œ$ˆ��H‰Œ$x��H\$`H=���ssH¶€û�u<H‹„$`��H‹L$8HƒÀHÿÁH‰L$8H‹l$0H9éŒqÿÿÿƄ$è��è����HÄØ��ÃH‰ $H‹Z ÿӋ\$ûÿÿ��t®Æ„$è���è����HÄØ��Ãè���� ‰éFÿÿÿ‰éÛþÿÿ‰éÓüÿÿè����éYüÿÿ$
������^
��*runtime.racefuncenter���v
� runtime.duffzero���´
��*runtime.racereadrange���è
�� runtime.raceread���º
�� runtime.raceread���€
�� runtime.raceread���ª
�� runtime.raceread���Ô
�� runtime.raceread���¶
�� runtime.raceread���– 
��$runtime.panicslice���¶ 
�� runtime.raceread���þ

�� runtime.raceread���” 
��(runtime.racefuncexit���¼ �������ê 
��(runtime.racefuncexit���„
��$runtime.panicindex���¼
��0runtime.morestack_noctxt��� °��."".autotmp_0908�¯,type.image/color.Color�"".autotmp_0907�ï.type.*image/color.Color�"".autotmp_0906��type.int�"".autotmp_0905��type.int�"".autotmp_0903�ßtype.*uint8�"".autotmp_0902�Ïtype.int�"".autotmp_0901��type.int�"".autotmp_0900��type.int�"".autotmp_0899�¿type.int�"".autotmp_0897�0type.image/color.Palette�"".autotmp_0896��type.int�"".autotmp_0895��type.int�"".autotmp_0894��type.int�"".autotmp_0893�_type.[]uint8�"".autotmp_0892�/type.[]uint8�"".r�¯"type."".Rectangle�"".c�Ï,type.image/color.Color�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int�"".present�ïtype.[256]bool� "".~r0�type.bool�"".p��"type.*"".Paletted�&"°³¯°*¯°/�°�lÈ"&# fV©91  °'  �(�.æUÕ‹<�Tgclocals·f7309186bf9eeb0f8ece2eb16f2dc110�Tgclocals·12b8aeecac339c1231ec601931927feb���4/tmp/go/src/image/image.goþ"".NewPaletted��À��¼dH‹ %����HD$èH;A†ü��Hì˜���H‹œ$˜���H‰$è����L‹„$ ���H‹”$¨���H‹¼$°���H‹„$¸���H‰T$`H‰D$pH‰ûH‰|$hL‰D$XL)ÃL‰D$8H‰|$HH‰D$PH‰T$@H)ÐH‰\$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$€���H‰Œ$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‹¬$ˆ���H‰kH‹¬$���H‰kH‹¬$€���€=�����…Þ���H‰+H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xH‹¬$ ���H‰h H‹¬$¨���H‰h(H‹¬$°���H‰h0H‹¬$¸���H‰h8H‰$Hƒ$@è����H‹\$xH‹¬$È���H‰kHH‹¬$Ð���H‰kPH‹¬$À���€=�����uH‰k@H‹\$xH‰œ$Ø���è����HÄ˜���ÃLC@L‰$H‰l$è����ëÒH‰$H‰l$è����éÿÿÿè����éâýÿÿ
������X
��*runtime.racefuncenter��� ��type.[]uint8���Æ
��"runtime.makeslice���¢�� type."".Paletted���´
��"runtime.newobject���Ú
��"runtime.racewrite���°�6runtime.writeBarrierEnabled���ê
��"runtime.racewrite���´
��,runtime.racewriterange���º
��"runtime.racewrite����6runtime.writeBarrierEnabled���Â
��(runtime.racefuncexit���ö
��.runtime.writebarrierptr���–
��.runtime.writebarrierptr���ª
��0runtime.morestack_noctxt���€°��"".autotmp_0915�?"type.*"".Paletted�"".autotmp_0914��type.int�"".autotmp_0912��type.int�"".autotmp_0911��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r2�p"type.*"".Paletted�"".p�@0type.image/color.Palette�"".r��"type."".Rectangle�°Í¯°3� �ö11MÆ �"�+®H¬&�Tgclocals·258ffe3b59f2d561d15d8bf865a43785�Tgclocals·85b708e0eb749713cb73a30a27c2999c���4/tmp/go/src/image/image.goþ$"".(*Uniform).RGBA�� ��šdH‹ %����H;avtHƒì(H‹\$(H‰$è����H‹\$0H‰$è����H‹\$0Hƒû�tEH‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$ ‹L$‹D$‰l$8‰T$<‰L$@‰D$Dè����HƒÄ(Éë·è����ésÿÿÿ
������:
��*runtime.racefuncenter���V
�� runtime.raceread���¦�������ì
��(runtime.racefuncexit���ˆ
��0runtime.morestack_noctxt���0P��
"".a�(type.uint32�"".b� type.uint32�"".g�type.uint32�"".r�type.uint32�"".c�� type.*"".Uniform�PkOP��:p �
�t�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���4/tmp/go/src/image/names.goþ0"".(*Uniform).ColorModel��À��®dH‹ %����H;av~Hƒì(H‹\$(H‰$è����1ÛH‰\$8H‰\$@H‹\$0H‰\$ H‹����1íH9ètH‹\$ H‰\$@H‰D$8è����HƒÄ(ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¸è����éiÿÿÿ
������:
��*runtime.racefuncenter���t��Jgo.itab.*"".Uniform.image/color.Model���ª
��(runtime.racefuncexit���Â�� type.*"".Uniform���Ø��,type.image/color.Model���ð��Jgo.itab.*"".Uniform.image/color.Model���„
�� runtime.typ2Itab���œ
��0runtime.morestack_noctxt���0P��"".autotmp_0925� type.*"".Uniform� "".~r0�,type.image/color.Model�"".c�� type.*"".Uniform�PJOPB� �B-'4��8-�Tgclocals·27f94a2fe0ff5b305b2385471201b6d7�Tgclocals·f891aedf0f80c97cb1c7cc75a7fd6349���4/tmp/go/src/image/names.goþ*"".(*Uniform).Convert��à��ØdH‹ %����H;avVHƒìH‹\$H‰$è����1ÛH‰\$(H‰\$0H‹\$H‰$è����H‹\$Hƒû�tH‹+H‰l$(H‹kH‰l$0è����HƒÄÉëáè����ë”
������:
��*runtime.racefuncenter���n
�� runtime.raceread���°
��(runtime.racefuncexit���Ì
��0runtime.morestack_noctxt���P�� "".~r1�0,type.image/color.Color�"".c�� type.*"".Uniform�M�p�J 8 ��;�Tgclocals·b9e2f210c3a206b5352d33144c6a1618�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/names.goþ("".(*Uniform).Bounds��€��ôdH‹ %����H;avdHƒì(H‹\$(H‰$è����1Û1ÛHÇÅ�6eÄHÇÂ�6eÄHÇÁ�ʚ;HÇÀ�ʚ;H‰l$H‰l$8H‰T$H‰T$@H‰L$H‰L$HH‰D$ H‰D$Pè����HƒÄ(Ãè����ë†
������:
��*runtime.racefuncenter���Ô
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���PP��"".autotmp_0928�?"type."".Rectangle� "".~r0�"type."".Rectangle�"".c�� type.*"".Uniform�P_OP �€�R€�
�d�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/names.goþ "".(*Uniform).At��à��ØdH‹ %����H;avVHƒìH‹\$H‰$è����1ÛH‰\$(H‰\$0H‹\$H‰$è����H‹\$Hƒû�tH‹+H‰l$(H‹kH‰l$0è����HƒÄÉëáè����ë”
������:
��*runtime.racefuncenter���n
�� runtime.raceread���°
��(runtime.racefuncexit���Ì
��0runtime.morestack_noctxt���P�� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".c�� type.*"".Uniform�M�p�Vp��;�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/names.goþ("".(*Uniform).Opaque��€��òdH‹ %����H;avcHƒì(H‹\$(H‰$è����H‹\$0H‰$è����H‹\$0Hƒû�t4H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ��”D$8è����HƒÄ(ÉëÈè����ë‡
������:
��*runtime.racefuncenter���V
�� runtime.raceread���¦�������Ê
��(runtime.racefuncexit���æ
��0runtime.morestack_noctxt��� P�� "".~r0�type.bool�"".c�� type.*"".Uniform�PZOP�€�\8�
�d�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad���4/tmp/go/src/image/names.goþ"".NewUniform��À��ªdH‹ %����H;av|HƒìH‹\$H‰$è����H����H‰$è����H‹D$H‰D$H‰$è����H‹\$H‹l$ H‰+H‹l$(€=�����uH‰kH‹\$H‰\$0è����HƒÄÃLCL‰$H‰l$è����ëØè����ékÿÿÿ
������:
��*runtime.racefuncenter���H��type."".Uniform���Z
��"runtime.newobject���€
��"runtime.racewrite���°�6runtime.writeBarrierEnabled���Ü
��(runtime.racefuncexit���Š
��.runtime.writebarrierptr���˜
��0runtime.morestack_noctxt���00��"".autotmp_0931� type.*"".Uniform� "".~r1�  type.*"".Uniform�"".c��,type.image/color.Color�0c/0)� �fx��#.�Tgclocals·fb59fd9ce9376dfcd2105aa0993acf24�Tgclocals·f891aedf0f80c97cb1c7cc75a7fd6349���4/tmp/go/src/image/names.goþ:"".YCbCrSubsampleRatio.String��€��údH‹ %����H;a† ��HƒìH‹\$H‰$è����1ÛH‹D$HƒøŽ���Hƒø�uH����H‰\$HÇD$ ���è����HƒÄÃHƒøuH����H‰\$HÇD$ ���è����HƒÄÃHƒøuH����H‰\$HÇD$ ���è����HƒÄÃH����H‰\$HÇD$ ���è����HƒÄÃHƒøuH����H‰\$HÇD$ ���è����HƒÄÃHƒøuH����H‰\$HÇD$ ���è����HƒÄÃHƒøu‘H����H‰\$HÇD$ ���è����HƒÄÃè����éÃþÿÿ"
������B
��*runtime.racefuncenter���~��Dgo.string."YCbCrSubsampleRatio444"���¤
��(runtime.racefuncexit���È��Dgo.string."YCbCrSubsampleRatio422"���î
��(runtime.racefuncexit���’��Dgo.string."YCbCrSubsampleRatio420"���¸
��(runtime.racefuncexit���Ð��Lgo.string."YCbCrSubsampleRatioUnknown"���ö
��(runtime.racefuncexit���š��Dgo.string."YCbCrSubsampleRatio440"���À
��(runtime.racefuncexit���ä��Dgo.string."YCbCrSubsampleRatio411"���Š
��(runtime.racefuncexit���®��Dgo.string."YCbCrSubsampleRatio410"���Ô
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���0�� "".~r0�type.string�"".s��6type."".YCbCrSubsampleRatio�BC$$$$$ �À�z0    �� 1ï�Tgclocals·bcdfbcd04eb70526d9504e97d9ef703d�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/ycbcr.goþ,"".(*YCbCr).ColorModel��à��ÌdH‹ %����H;avPHƒìH‹\$H‰$è����1ÛH‰\$H‰\$ H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃè����ëš
������:
��*runtime.racefuncenter���`��,image/color.YCbCrModel���r
�� runtime.raceread���€��,image/color.YCbCrModel���˜�,image/color.YCbCrModel���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0�� "".~r0�,type.image/color.Model�"".p��type.*"".YCbCr�K�p�~ 2��9�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/ycbcr.goþ$"".(*YCbCr).Bounds��À��¼dH‹ %����H;a†���HƒìH‹\$H‰$è����1ÛH‰\$ H‰\$(H‰\$0H‰\$8H‹\$H‰$Hƒ$`HÇD$ ���è����H‹\$Hƒû�t.H‹k`H‰l$ H‹khH‰l$(H‹kpH‰l$0H‹kxH‰l$8è����HƒÄÉëÎè����ébÿÿÿ
������B
��*runtime.racefuncenter���¦
��*runtime.racereadrange���Ž
��(runtime.racefuncexit���ª
��0runtime.morestack_noctxt���P �� "".~r0�"type."".Rectangle�"".p��type.*"".YCbCr� x � �†Y � � €�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/ycbcr.goþ"".(*YCbCr).At��À��¢dH‹ %����H;a†´���Hƒì@H‹\$@H‰$è����1ÛH‰\$`H‰\$hH‹\$HH‰$H‹\$PH‰\$H‹\$XH‰\$è����¶\$ˆ\$=¶\$ˆ\$>¶\$ˆ\$?H����H‰$H����H‰\$H����H‰\$H\$=H‰\$HÇD$ ����è����H‹\$(H‰\$`H‹\$0H‰\$hè����HƒÄ@Ãè����é/ÿÿÿ
������B
��*runtime.racefuncenter���ž
��&"".(*YCbCr).YCbCrAt���â��,type.image/color.YCbCr���ø��,type.image/color.Color�����Vgo.itab.image/color.YCbCr.image/color.Color���Ê
��runtime.convT2I���ü
��(runtime.racefuncexit���
��0runtime.morestack_noctxt���P€��
"".autotmp_0933�,type.image/color.YCbCr� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�€¯€�à�Ž1Œ�� #�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·69c1753bd5f81501d95132d08af04464���4/tmp/go/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt�� ��ŒdH‹ %����HD$èH;A†$��Hì˜���H‹œ$˜���H‰$è����1ۈœ$¸���ˆœ$¹���ˆœ$º���1ÛH‹œ$¨���H‰\$HH‹œ$°���H‰\$PH‹œ$ ���H‰$Hƒ$`HÇD$ ���è����L‹L$HL‹D$PH‹¼$ ���Hƒÿ�„—��H‹w`H‹WhH‰T$`H‹OpH‰L$hH‹GxH‰D$pH‰t$XL9Ώc��I9ɍZ��L9Q��I9ÀœÀ<�u01҈T$%ˆ”$¸���ˆT$&ˆ”$¹���ˆT$'ˆ”$º���è����HÄ˜���ÃH‹œ$¨���H‰\$8H‹œ$°���H‰\$0H‰|$xH‰<$Hƒ$`Hƒ$è����H‹\$xH‰$Hƒ$Hè����H‹\$xH‰$Hƒ$`è����H‹D$xH‹XhH‹l$0H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$8I)èLÃH‰\$(H‹œ$ ���H‰$H‹œ$¨���H‰\$H‹œ$°���H‰\$è����H‹\$H‰\$@1ۈ\$%ˆ\$&ˆ\$'H‹œ$ ���H‰$è����H‹œ$ ���H‹ H‹CH‹kH‰¬$���H‰Œ$€���H‹l$(H‰„$ˆ���H9Ńû��H)H‰$è����H‹”$ ���Hƒú�„Õ��H‹
H‹BH‹jH‰¬$���H‰Œ$€���H‹l$(H‰„$ˆ���H9ѝ��H)¶ˆ\$%H‰$Hƒ$è����H‹œ$ ���H‹KH‹C H‹k(H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9ŃC��H)H‰$è����H‹”$ ���Hƒú�„��H‹JH‹B H‹j(H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9Ńä���H)¶ˆ\$&H‰$Hƒ$0è����H‹œ$ ���H‹K0H‹C8H‹k@H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9ŃŠ���H)H‰$è����H‹œ$ ���Hƒû�tkH‹K0H‹C8H‹k@H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9Ås6H)¶H‰Ø¶\$%ˆœ$¸���¶\$&ˆœ$¹���ˆ„$º���è����HÄ˜���Ãè���� ‰ë‘è���� è���� ‰éÜþÿÿè���� è���� ‰é$þÿÿè���� 1Àé®üÿÿ‰ébüÿÿè����éºûÿÿ,
������X
��*runtime.racefuncenter���ü
��*runtime.racereadrange���–
��(runtime.racefuncexit���Š
�� runtime.raceread���°
�� runtime.raceread���Ö
�� runtime.raceread���Œ
��&"".(*YCbCr).COffset���Þ
�� runtime.raceread���ê
�� runtime.raceread���¢

�� runtime.raceread���° 
�� runtime.raceread���ê 
�� runtime.raceread���ø 
�� runtime.raceread���Ì
��(runtime.racefuncexit���æ
��$runtime.panicindex���ü
��$runtime.panicindex���Š
��$runtime.panicindex���¦
��$runtime.panicindex���´
��$runtime.panicindex���Ð
��$runtime.panicindex���ú
��0runtime.morestack_noctxt���@°��"".autotmp_0938��,type.image/color.YCbCr�"".autotmp_0936�å,type.image/color.YCbCr�"".autotmp_0934��type.int�"".y�Ïtype.int�"".x�¿type.int�"".p�?type.*"".YCbCr�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�
"".ci�¯type.int�
"".yi�ßtype.int� "".~r2�0,type.image/color.YCbCr�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�(°÷¯°Ú¯°^�Ð�Z– #ˆ5¥¤›, ��+™‹�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·83ead081cd909acab0dcd88a450c1878���4/tmp/go/src/image/ycbcr.goþ&"".(*YCbCr).YOffset��à��ÎdH‹ %����H;a†Š���HƒìH‹\$H‰$è����H‹\$H‰$Hƒ$`Hƒ$è����H‹\$H‰$Hƒ$Hè����H‹\$H‰$Hƒ$`è����H‹D$H‹XhH‹l$ H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$(è����HƒÄÃè����éYÿÿÿ
������B
��*runtime.racefuncenter���r
�� runtime.raceread���˜
�� runtime.raceread���¾
�� runtime.raceread���¨
��(runtime.racefuncexit���¼
��0runtime.morestack_noctxt���@�� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�…�°�´†� � �Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/ycbcr.goþ&"".(*YCbCr).COffset��à��ÂdH‹ %����H;a†D��HƒìH‹\$H‰$è����H‹\$ H‰$Hƒ$Xè����H‹L$ H‹iXHƒýë��Hƒý…���H‰ $Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$`Hƒ$è����H‹\$ H‰$Hƒ$Pè����H‹T$ L‹L$L‹D$(H‹ZhH‹l$0H)ÝH‰ëH‹jPH¯ÝL‰ÅHÁý?I)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8è����HƒÄÃHƒý…Ç���H‰ $Hƒ$`Hƒ$è����H‹D$ H‹hhH‰l$H‰$Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$Pè����L‹D$H‹l$0H‹L$(L‹L$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅL‹D$ HÑýH)ëI‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8è����HƒÄÃH‰ $Hƒ$`Hƒ$è����H‹\$ H‰$Hƒ$Pè����H‹\$ H‰$Hƒ$`è����H‹D$ H‹XhH‹l$0H)ÝH‰ëH‹hPH¯ÝH‹h`L‹D$(I)èLÃH‰\$8è����HƒÄÃHƒý…š���H‰ $Hƒ$`Hƒ$è����H‹D$ H‹hhH‰l$H‰$Hƒ$Pè����H‹\$ H‰$Hƒ$`è����H‹T$ H‹l$0L‹D$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹jPH¯ÝH‹j`L‹D$(I)èLÃH‰\$8è����HƒÄÃHƒý…¡���H‰ $Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$`Hƒ$è����H‹\$ H‰$Hƒ$Pè����H‹T$ H‹L$(H‹D$H‹ZhH‹l$0H)ÝH‰ëH‹jPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ÀIÁø?IÁè>IÀIÁøL)ÅHëH‰\$8è����HƒÄÃHƒý…4þÿÿH‰ $Hƒ$`Hƒ$è����H‹D$ H‹hhH‰l$H‰$Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$Pè����H‹t$H‹l$0H‹L$(L‹D$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅL‹D$ HÑýH)ëI‹hPH¯ÝH‰ÍHÁý?HÁí>HÍHÁýI‰ðIÁø?IÁè>IðIÁøL)ÅHëH‰\$8è����HƒÄÃè����éŸûÿÿ8
������B
��*runtime.racefuncenter���h
�� runtime.raceread���¾
�� runtime.raceread���€
�� runtime.raceread���¦
�� runtime.raceread���Ò
��(runtime.racefuncexit���–
�� runtime.raceread���Î
�� runtime.raceread���†
�� runtime.raceread���ô
��(runtime.racefuncexit���¤
�� runtime.raceread���Ê
�� runtime.raceread���ð
�� runtime.raceread���Ú
��(runtime.racefuncexit���ž 
�� runtime.raceread���Ö 
�� runtime.raceread���ü 
�� runtime.raceread���¢ 
��(runtime.racefuncexit���Ü 
�� runtime.raceread���ž 
�� runtime.raceread���Ä 
�� runtime.raceread���ø 
��(runtime.racefuncexit���¼
�� runtime.raceread���ô
�� runtime.raceread���¬
�� runtime.raceread���œ
��(runtime.racefuncexit���°
��0runtime.morestack_noctxt���@0��"".autotmp_0952��type.int�"".autotmp_0951��type.int�"".autotmp_0950��type.int�"".autotmp_0949��type.int�"".autotmp_0948�type.int�"".autotmp_0947��type.int�"".autotmp_0946�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�D0Ú/0Ð/0r/0£/0ª/0Ñ/0�ð�rÀ&
“
½s
 
—
 
¾� � Ð�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/ycbcr.goþ("".(*YCbCr).SubImage�� ��–dH‹ %����HD$ˆH;A†é��Hìø���H‹œ$ø���H‰$è����1ÛH‰œ$(��H‰œ$0��H‹œ$���H‰$Hƒ$`HÇD$ ���è����H‹œ$��H‰$H‹œ$��H‰\$H‹œ$��H‰\$H‹œ$ ��H‰\$H‹´$���Hƒþ�„T��H^`H|$ H‰Þè����è����H‹t$@H‹T$HH‹L$PH‹D$XH‰´$��H‰”$��H‰”$ˆ���H‰Œ$��H‰„$ ��H‰„$˜���H‰´$€���H‰Œ$���H9΍Õ��H9À<�„��H����H‰$è����H‹D$H‰„$¨���H‰$HÇD$€���è����H‹Œ$¨���H‰ÏHƒù�„·���1Àè����H‰ $Hƒ$Xè����H‹œ$���H‰$Hƒ$Xè����H‹„$¨���Hƒø�tzL‹„$���I‹hXH‰hXH‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$0��H‰„$(��è����HÄø���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�낉éBÿÿÿH‹Œ$���H‰t$pH‰T$hH‰Œ$ ���H‰ $Hƒ$`Hƒ$è����H‹œ$ ���H‰$Hƒ$Hè����H‹œ$ ���H‰$Hƒ$`è����H‹„$ ���H‹XhH‹l$hH)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$pI)èLÃH‰\$`H‹œ$���H‰$H‹œ$��H‰\$H‹œ$��H‰\$è����H‹\$H‰\$xH‹œ$���H‰$è����H‹„$���H‹l$`L‹@L‹HL9ŇÎ��L‹I)èI)éIƒù�tM*L‰„$è���L‰Œ$ð���L‰”$à���H‰$Hƒ$è����H‹„$���H‹l$xL‹@ L‹H(L9Ňp��L‹PI)èI)éIƒù�tM*L‰„$Ð���L‰Œ$Ø���L‰”$È���H‰$Hƒ$0è����H‹œ$���H‹l$xL‹C8L‹K@L9Ň��L‹S0I)èI)éIƒù�tM*L‰„$¸���L‰Œ$À���L‰”$°���H����H‰$è����H‹D$H‰„$¨���H‰$è����H‹œ$¨���H‹¬$è���H‰kH‹¬$ð���H‰kH‹¬$à���€=�����…w��H‰+H‹œ$¨���H‰$Hƒ$è����H‹œ$¨���H‹¬$Ð���H‰k H‹¬$Ø���H‰k(H‹¬$È���€=�����…��H‰kH‹œ$¨���H‰$Hƒ$0è����H‹œ$¨���H‹¬$¸���H‰k8H‹¬$À���H‰k@H‹¬$°���€=�����…¬��H‰k0H‹œ$¨���H‰$Hƒ$Xè����H‹œ$���H‰$Hƒ$Xè����H‹„$¨���Hƒø�„c��L‹„$���I‹hXH‰hXH‰$Hƒ$Hè����H‹œ$���H‰$Hƒ$Hè����H‹„$¨���Hƒø�„��L‹„$���I‹hHH‰hHH‰$Hƒ$Pè����H‹œ$���H‰$Hƒ$Pè����H‹„$¨���Hƒø�„É���L‹„$���I‹hPH‰hPH‰$Hƒ$`HÇD$ ���è����H‹„$¨���H‹¬$��H‰h`H‹¬$��H‰hhH‹¬$��H‰hpH‹¬$ ��H‰hxH‰„$¨���H‹����1íH9èt%H‹œ$¨���H‰œ$0��H‰„$(��è����HÄø���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�é0ÿÿÿ‰�éãþÿÿ‰�é–þÿÿLC0L‰$H‰l$è����éAþÿÿLCL‰$H‰l$è����éÛýÿÿH‰$H‰l$è����éyýÿÿè���� è���� è���� HÇÀ���é%úÿÿ‰é¥ùÿÿè����éõøÿÿh
������X
��*runtime.racefuncenter���º
��*runtime.racereadrange���æ
� runtime.duffcopy���ð
��,"".Rectangle.Intersect���Ô��type."".YCbCr���æ
��"runtime.newobject���¤
��,runtime.racewriterange���Ü
¨� runtime.duffzero���ø
��"runtime.racewrite���¤
�� runtime.raceread���þ��4go.itab.*"".YCbCr."".Image���Æ
��(runtime.racefuncexit���ä��type.*"".YCbCr���ú��type."".Image���’��4go.itab.*"".YCbCr."".Image���¦
�� runtime.typ2Itab���¤ 
�� runtime.raceread���Р
�� runtime.raceread���ü 
�� runtime.raceread���¸ 
��&"".(*YCbCr).COffset���î 
�� runtime.raceread���œ 
�� runtime.raceread���Ì
�� runtime.raceread���î��type."".YCbCr���€
��"runtime.newobject���¬
��"runtime.racewrite���ˆ�6runtime.writeBarrierEnabled���È
��"runtime.racewrite���¤�6runtime.writeBarrierEnabled���æ
��"runtime.racewrite���Â�6runtime.writeBarrierEnabled���„
��"runtime.racewrite���°
�� runtime.raceread���
��"runtime.racewrite���¼
�� runtime.raceread���œ
��"runtime.racewrite���È
�� runtime.raceread���º
��,runtime.racewriterange���È��4go.itab.*"".YCbCr."".Image���
��(runtime.racefuncexit���®��type.*"".YCbCr���Ä��type."".Image���Ü��4go.itab.*"".YCbCr."".Image���ð
�� runtime.typ2Itab���Ì
��.runtime.writebarrierptr���ú
��.runtime.writebarrierptr��� 
��.runtime.writebarrierptr���´
��$runtime.panicslice���Â
��$runtime.panicslice���Ð
��$runtime.panicslice���„
��0runtime.morestack_noctxt���pð��&"".autotmp_0966��type.*uint8�"".autotmp_0965��type.*"".YCbCr�"".autotmp_0964��type.int�"".autotmp_0961�Ÿtype.*"".YCbCr�"".autotmp_0959��type.*"".YCbCr�"".autotmp_0958�type.[]uint8�"".autotmp_0957�_type.[]uint8�"".autotmp_0956�/type.[]uint8�"".autotmp_0955��type.int�"".autotmp_0954��type.*"".YCbCr�"".y�Ÿtype.int�"".x�type.int�"".p�¯type.*"".YCbCr�"".r�ï"type."".Rectangle�
"".ci�ÿtype.int�
"".yi�¯type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".YCbCr�*ðÏïðäïð¼��¨æBŽW£- Œ5ZXX’8880'(-A �V�+¦‘0?ŠrXZNOOÆ0E
7�Tgclocals·7c5c95b88edaaa4fc9b93df09fd4a209�Tgclocals·c18700852ad91ab4d108572c607cfe30���4/tmp/go/src/image/ycbcr.goþ$"".(*YCbCr).Opaque��€��ndH‹ %����H;av!HƒìH‹\$H‰$è����ÆD$è����HƒÄÃè����ëÉ
������:
��*runtime.racefuncenter���N
��(runtime.racefuncexit���b
��0runtime.morestack_noctxt��� �� "".~r0�type.bool�"".p��type.*"".YCbCr��@�”�
�$�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/image/ycbcr.goþ"".NewYCbCr��à��ÒdH‹ %����HD$€H;A†G��Hì���H‹œ$���H‰$è����L‹”$��L‹Œ$ ��H‹¼$��H‹Œ$��L‰T$`L‰L$pH‰ÎH‰L$hH‰|$XH)þH‰|$xH‰Œ$ˆ���L‰ÊL‰Œ$���L‰”$€���H‹„$(��L)ÒHƒøê��Hƒø…{��HÿÁH‰ËHÁû?H)ÙHÑùH‰ýHÁý?I‰øI)èL‰ÅHÑýH)éH‰ÐH‰óH¯ÚHƒÃ�H‰\$HH‰óH¯ÚH‰ÍH¯èHëH‰\$@H‰óH‰t$0H¯ÚH‰ÍH‰L$PHÑåH¯èHëH‰ØH����H‰$H‰D$H‰D$8H‰D$è����H‹|$HH‹t$@H‹L$H‹T$ H‹D$(H‰”$¨���H9LJ»��H‰¼$ð���H‰¼$ø���H‰Œ$è���H‰õH9Ƈ��H9÷‡‡��H)ýI‰ÈHƒý�tM8H‰¬$Ø���H‰¬$à���L‰„$Ð���H‹l$8H‰„$°���H9ŇB��H9î‡9��H)õI‰ÈH‰Œ$ ���Hƒý�tM0H‰¬$À���H‰¬$È���L‰„$¸���H����H‰$è����H‹D$H‰„$˜���H‰$è����H‹œ$˜���H‹¬$ð���H‰kH‹¬$ø���H‰kH‹¬$è���€=�����…›��H‰+H‹œ$˜���H‰$Hƒ$è����H‹œ$˜���H‹¬$Ø���H‰k H‹¬$à���H‰k(H‹¬$Ð���€=�����…6��H‰kH‹œ$˜���H‰$Hƒ$0è����H‹œ$˜���H‹¬$À���H‰k8H‹¬$È���H‰k@H‹¬$¸���€=�����…Ð���H‰k0H‹œ$˜���H‰$Hƒ$Xè����H‹„$˜���H‹¬$(��H‰hXH‰$Hƒ$Hè����H‹„$˜���H‹l$0H‰hHH‰$Hƒ$Pè����H‹„$˜���H‹l$PH‰hPH‰$Hƒ$`HÇD$ ���è����H‹„$˜���H‹¬$��H‰h`H‹¬$��H‰hhH‹¬$��H‰hpH‹¬$ ��H‰hxH‰„$0��è����HÄ���ÃLC0L‰$H‰l$è����éÿÿÿLCL‰$H‰l$è����é·þÿÿH‰$H‰l$è����éUþÿÿè���� è���� è���� HƒøuTHÿÁH‰ËHÁû?H)ÙHÑùH‰ýHÁý?I‰øI)èL‰ÅHÑýH)éL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èéTüÿÿH‰ñH‰ÐéIüÿÿHƒøu1H‰ñL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èéüÿÿHƒøu3HƒÁ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‰ÙL‰ÈHÿÀH‰ÃHÁû?H)ØHÑøL‰ÕHÁý?M‰ÐI)èL‰ÅHÑýH)èésûÿÿè����é—úÿÿ0
������X
��*runtime.racefuncenter���¸��type.[]uint8���è
��"runtime.makeslice���’��type."".YCbCr���¤
��"runtime.newobject���Ð
��"runtime.racewrite���¬ �6runtime.writeBarrierEnabled���ì 
��"runtime.racewrite���È
�6runtime.writeBarrierEnabled���Š 
��"runtime.racewrite���æ �6runtime.writeBarrierEnabled���¨ 
��"runtime.racewrite���ì 
��"runtime.racewrite���ª 
��"runtime.racewrite���ú 
��,runtime.racewriterange���„
��(runtime.racefuncexit���¸
��.runtime.writebarrierptr���æ
��.runtime.writebarrierptr���Œ
��.runtime.writebarrierptr��� 
��$runtime.panicslice���®
��$runtime.panicslice���¼
��$runtime.panicslice�����0runtime.morestack_noctxt���`€��@"".autotmp_0992�Ïtype.*"".YCbCr�"".autotmp_0991��type.int�"".autotmp_0990��type.int�"".autotmp_0989��type.int�"".autotmp_0988��type.int�"".autotmp_0987��type.int�"".autotmp_0986��type.int�"".autotmp_0985��type.int�"".autotmp_0984��type.int�"".autotmp_0983��type.int�"".autotmp_0982��type.int�"".autotmp_0981��type.int�"".autotmp_0980��type.int�"".autotmp_0979��type.int�"".autotmp_0978��type.int�"".autotmp_0975��type.int�"".autotmp_0974��type.int�"".autotmp_0972�type.[]uint8�"".autotmp_0971�_type.[]uint8�"".autotmp_0970��type.[]uint8�"".autotmp_0969�/type.[]uint8�"".r�"type."".Rectangle�"".r�Ï"type."".Rectangle�"".b�¿type.[]uint8�
"".i2�type.int�
"".i1�ÿtype.int�
"".i0�ïtype.int�
"".cw�ßtype.int�"".w�Ÿtype.int� "".~r2�Ptype.*"".YCbCr�""".subsampleRatio�@6type."".YCbCrSubsampleRatio�"".r��"type."".Rectangle�€®ÿ€¢�ð
�²žP:

&$!@!=O³EFA+&))+
.) -�8�+æNOO®
á�Tgclocals·9bee0e0ddef505094e228c547e28a753�Tgclocals·1aecd0363e705c5bd33e230135d399c2���4/tmp/go/src/image/ycbcr.goþ"".init�� ��’dH‹ %����H;a†¬��HƒìPH‹\$PH‰$è����H����H‰$è����¶����€û�t-H����H‰$è����¶����€ûu
è����HƒÄPÃè���� H����H‰$è����Æ����è����è����è����è����H����H‰$HÇD$���è����H‹\$H‰\$@H‹\$H‰\$HH����H‰$è����H‹\$@H‰����H‹\$H€=�����…±��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$8H����H‰$è����H‹\$8€=�����… ��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$8H����H‰$è����H‹\$8€=�����…i��H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$8H����H‰$è����H‹\$8€=�����…Å���H‰����H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$8H����H‰$è����H‹\$8€=�����u(H‰����H����H‰$è����Æ����è����HƒÄPÃH-����H‰,$H‰\$è����ëÈH-����H‰,$H‰\$è����é(ÿÿÿH-����H‰,$H‰\$è����é„þÿÿH-����H‰,$H‰\$è����éàýÿÿH-����H‰,$H‰\$è����é<ýÿÿè����é7üÿÿž
������B
��*runtime.racefuncenter���P��"".initdone·���b
�� runtime.raceread���p��"".initdone·���ˆ��"".initdone·���š
�� runtime.raceread���¨��"".initdone·���¼
��(runtime.racefuncexit���Ð
��"runtime.throwinit���â��"".initdone·���ô
��"runtime.racewrite���€�"".initdone·���Œ
��bufio.init���–
��io.init��� 
�� image/color.init���ª
��strconv.init���¸��Bgo.string."image: unknown format"���Ü
��errors.New���’��"".ErrFormat���¤
��"runtime.racewrite���¼��"".ErrFormat���Ò�6runtime.writeBarrierEnabled���î�"".ErrFormat���ü��.type.image/color.Gray16���’��,type.image/color.Color���ª��Xgo.itab.image/color.Gray16.image/color.Color���Â��"image/color.Black���è
��runtime.convT2I���œ
��"".NewUniform���¾��"".Black���Ð
��"runtime.racewrite���æ�6runtime.writeBarrierEnabled���‚��"".Black�����.type.image/color.Gray16���¦��,type.image/color.Color���¾��Xgo.itab.image/color.Gray16.image/color.Color���Ö��"image/color.White���ü
��runtime.convT2I���°
��"".NewUniform���Ò��"".White���ä
��"runtime.racewrite���ú�6runtime.writeBarrierEnabled���–��"".White���¤��0type.image/color.Alpha16���º��,type.image/color.Color���Ò��Zgo.itab.image/color.Alpha16.image/color.Color���ê��.image/color.Transparent��� 
��runtime.convT2I���Ä 
��"".NewUniform���æ ��"".Transparent���ø 
��"runtime.racewrite���Ž
�6runtime.writeBarrierEnabled���ª
��"".Transparent���¸
��0type.image/color.Alpha16���Î
��,type.image/color.Color���æ
��Zgo.itab.image/color.Alpha16.image/color.Color���þ
��$image/color.Opaque���¤ 
��runtime.convT2I���Ø 
��"".NewUniform���ú ��"".Opaque���Œ 
��"runtime.racewrite���¢ �6runtime.writeBarrierEnabled���¶ ��"".Opaque���Ä ��"".initdone·���Ö 
��"runtime.racewrite���â �"".initdone·���î 
��(runtime.racefuncexit���† ��"".Opaque���¢ 
��.runtime.writebarrierptr���´ ��"".Transparent���Ð 
��.runtime.writebarrierptr���è ��"".White���„
��.runtime.writebarrierptr���œ��"".Black���¸
��.runtime.writebarrierptr���Ð�"".ErrFormat���ì
��.runtime.writebarrierptr���€
��0runtime.morestack_noctxt���� ��
"".autotmp_0997�� type.*"".Uniform�"".autotmp_0996�� type.*"".Uniform�"".autotmp_0995�� type.*"".Uniform�"".autotmp_0994�/ type.*"".Uniform�"".autotmp_0993�type.error�( OŸ ØŸ �.™b¤!N�bæ™ÇbŠŠŠ†¾!½¾ÁÊ�6� ±b4V4V4V4%¦�Tgclocals·7d2d5fca80364273fb07d5820a76fef4�Tgclocals·6910e19bd0d31b4222b21d8d53042f42���4/tmp/go/src/image/ycbcr.go6/tmp/go/src/image/format.go4/tmp/go/src/image/names.goþ"".Image.At�à��ÂdH‹ %����H;a†„���Hƒì8H‹Y H…Ût H|$@H9;uH‰#H‹\$8H‰$è����1ÛH‰\$`H‰\$hH‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hè����HƒÄ8Ãè����é_ÿÿÿ
������n
��*runtime.racefuncenter���Ú�������œ
��(runtime.racefuncexit���°
��0runtime.morestack_noctxt���`p��
"".autotmp_0998�,type.image/color.Color� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��type."".Image�pop�°�°��6W#�Tgclocals·b6338434a483b71ecf7a1963213f75e2�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ"".Image.Bounds�€��êdH‹ %����H;a†˜���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$XH‰$H‹\$PH‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$(H‰l$`H‰T$0H‰T$hH‰L$8H‰L$pH‰D$@H‰D$xè����HƒÄHÃè����éKÿÿÿ
������n
��*runtime.racefuncenter���Æ�������Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���`��"".autotmp_0999�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��type."".Image�“�À�À� �6Š�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".Image.ColorModel� ��’dH‹ %����H;avpHƒì(H‹Y H…Ût H|$0H9;uH‰#H‹\$(H‰$è����1ÛH‰\$@H‰\$HH‹\$8H‰$H‹\$0H‹[0ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$Hè����HƒÄ(Ãè����éwÿÿÿ
������f
��*runtime.racefuncenter���ª�������ì
��(runtime.racefuncexit���€
��0runtime.morestack_noctxt���@P��"".autotmp_1000�,type.image/color.Model� "".~r0� ,type.image/color.Model�""..this��type."".Image�PkOP����2C�Tgclocals·19b49d53e9c11805652fa4c0885cbb29�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ$"".(*Point).String�€��ödH‹ %����H;a†Þ���Hƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$HH‰$HÇD$���è����H‹t$HH‹H‰ $H‹NH‰L$è����H‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@Ãè����éÿÿÿ
������n
��*runtime.racefuncenter���¬��"go.string."image"���Ô��"go.string."Point"���þ��$go.string."String"���¤
��"runtime.panicwrap���Ö
��*runtime.racereadrange���Š
��"".Point.String���Ð
��(runtime.racefuncexit���ä
��0runtime.morestack_noctxt���0€��"".autotmp_1001�type.string� "".~r0�type.string�""..this��type.*"".Point�€Ù€�€�
€��6±�Tgclocals·69076ee43f1cead0792b9f36906b1b56�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ"".(*Point).Add�€��ôdH‹ %����H;a†��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����1ÛH‰œ$���H‰œ$˜���H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$xH‰$HÇD$���è����H‹\$xHƒû�tlH‹3H‹SH‹Œ$€���H‹„$ˆ���1Û1ÛH‰óH‰t$PH‰L$@HËH‰ÙH‰ÓH‰T$XH‰D$HHÃH‰L$`H‰\$hH‰L$0H‰Œ$���H‰\$8H‰œ$˜���è����HƒÄpÉëè����éÆþÿÿ
������n
��*runtime.racefuncenter���¸��"go.string."image"���à��"go.string."Point"���Š��go.string."Add"���°
��"runtime.panicwrap���â
��*runtime.racereadrange���Æ
��(runtime.racefuncexit���â
��0runtime.morestack_noctxt���Pà��"".autotmp_1002�type."".Point� "".~r1�type."".Point�"".q�_type."".Point�"".p�?type."".Point� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�à”ßà�À� À� �6Š�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Sub�€��ôdH‹ %����H;a†��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����1ÛH‰œ$���H‰œ$˜���H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$xH‰$HÇD$���è����H‹\$xHƒû�tlH‹3H‹SH‹Œ$€���H‹„$ˆ���1Û1ÛH‰óH‰t$PH‰L$@H)ËH‰ÙH‰ÓH‰T$XH‰D$HH)ÃH‰L$`H‰\$hH‰L$0H‰Œ$���H‰\$8H‰œ$˜���è����HƒÄpÉëè����éÆþÿÿ
������n
��*runtime.racefuncenter���¸��"go.string."image"���à��"go.string."Point"���Š��go.string."Sub"���°
��"runtime.panicwrap���â
��*runtime.racereadrange���Æ
��(runtime.racefuncexit���â
��0runtime.morestack_noctxt���Pà��"".autotmp_1003�type."".Point� "".~r1�type."".Point�"".q�_type."".Point�"".p�?type."".Point� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�à”ßà�À�À� �6Š�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Mul�à��ÂdH‹ %����H;a†��Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1ÛH‰\$xH‰œ$€���H‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$hH‰$HÇD$���è����H‹\$hHƒû�tVH‹ H‹SH‹D$p1Û1ÛH‰ËH‰L$@H¯ØH‰ÙH‰ÓH‰T$HH¯ØH‰L$PH‰\$XH‰L$0H‰L$xH‰\$8H‰œ$€���è����HƒÄ`Éë¦è����éßþÿÿ
������n
��*runtime.racefuncenter���²��"go.string."image"���Ú��"go.string."Point"���„��go.string."Mul"���ª
��"runtime.panicwrap���Ü
��*runtime.racereadrange���”
��(runtime.racefuncexit���°
��0runtime.morestack_noctxt���@À�� "".autotmp_1004�type."".Point� "".~r1�_type."".Point�"".p�?type."".Point� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�Àû¿À�°�°� �6ú�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Div� ��„dH‹ %����H;a†%��Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1ÛH‰\$xH‰œ$€���H‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$hH‰$HÇD$���è����H‹\$hHƒû�twH‹H‹{H‹L$p1Û1ÛH‰D$@HƒùÿtTH™H÷ùH‰ÃH‰ÞH‰|$HH‰øHƒùÿt3H™H÷ùH‰ÃH‰t$PH‰\$XH‰t$0H‰t$xH‰\$8H‰œ$€���è����HƒÄ`ÃH÷ØH‰ÃëÍH÷ØH‰Ã묉ë…è����é¾þÿÿ
������n
��*runtime.racefuncenter���²��"go.string."image"���Ú��"go.string."Point"���„��go.string."Div"���ª
��"runtime.panicwrap���Ü
��*runtime.racereadrange���¶
��(runtime.racefuncexit���ò
��0runtime.morestack_noctxt���@À�� "".autotmp_1005�type."".Point� "".~r1�_type."".Point�"".p�?type."".Point� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�ÀŒ¿À,�Ð�Ð� �6š�Tgclocals·2fccd208efe70893f9ac8d682812ae72�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).In�à��ÊdH‹ %����H;a†��Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����H‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$hH‰$HÇD$���è����H‹\$hHƒû�tiH‹ H‹CH‰D$8H‹\$pH‹|$xH‰|$HH‹´$€���H‰t$PH‹”$ˆ���H‰T$XH‰\$@H‰L$0H9Ë!H9ñ}H9ÇH9ÐœÀˆ„$���è����HƒÄ`Ã1Àëë‰ë“è����éÛþÿÿ
������n
��*runtime.racefuncenter���”��"go.string."image"���¼��"go.string."Point"���æ��go.string."In"���Œ
��"runtime.panicwrap���¾
��*runtime.racereadrange���”
��(runtime.racefuncexit���¸
��0runtime.morestack_noctxt���`À��
"".r�?"type."".Rectangle�"".p�_type."".Point� "".~r1�Ptype.bool�"".r�"type."".Rectangle�""..this��type.*"".Point�Àû¿À�°�°� �6ú�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Mod�à��ÞdH‹ %����H;a†��HƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‹\$X1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$XH‰$HÇD$���è����H‹t$XH‹H‰ $H‹NH‰L$H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$ H‹\$xH‰\$(è����H‹L$0H‹D$8H‰L$@H‰Œ$€���H‰D$HH‰„$ˆ���è����HƒÄPÃè����éÑþÿÿ
������n
��*runtime.racefuncenter���¸��"go.string."image"���à��"go.string."Point"���Š��go.string."Mod"���°
��"runtime.panicwrap���â
��*runtime.racereadrange���æ
��"".Point.Mod���¸
��(runtime.racefuncexit���Ì
��0runtime.morestack_noctxt���p ��"".autotmp_1007�type."".Point� "".~r1�Ptype."".Point�"".r�"type."".Rectangle�""..this��type.*"".Point� Ÿ  �°�°� �6ú�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ"".(*Point).Eq�à��ÐdH‹ %����H;a†‹��Hì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H‹œ$€���H‰$è����H‹œ$ˆ���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹œ$ˆ���H‰$HÇD$���è����H‹œ$ˆ���Hƒû�„Ó���H‹3H‹kH‹Œ$���H‹„$˜���H‰t$@H‰t$`H‰l$HH‰l$hH‰L$0H‰L$PH‰D$8H‰D$XH\$`H‰ØH\$PH‰\$pH‰D$xH‰$è����H‹\$pH‰$è����H‹D$xH‹L‹D$pI‹(H9ëuMH‰$Hƒ$è����H‹\$pH‰$Hƒ$è����H‹l$xH‹]L‹D$pI‹hH9ë”Àˆ„$ ���è����HÄ€���Ã1Àëè‰é&ÿÿÿè����éXþÿÿ
������€
��*runtime.racefuncenter���¬��"go.string."image"���Ô��"go.string."Point"���þ��go.string."Eq"���¤
��"runtime.panicwrap���Ü
��*runtime.racereadrange���¾
�� runtime.raceread���Ú
�� runtime.raceread��� 
�� runtime.raceread���Æ
�� runtime.raceread���Ž
��(runtime.racefuncexit���¾
��0runtime.morestack_noctxt���@€��"".autotmp_1012�type.*"".Point�"".autotmp_1011�type.*"".Point�"".autotmp_1009�_type."".Point�"".autotmp_1008�?type."".Point�"".q�Ÿtype."".Point�"".p�type."".Point� "".~r1�0type.bool�"".q�type."".Point�""..this��type.*"".Point�€øÿ€�°�°��?ßh*�Tgclocals·f47057354ec566066f8688a4970cff5a�Tgclocals·21a8f585a14d020f181242c5256583dc���<autogenerated>þ,"".(*Rectangle).String�€��údH‹ %����H;a†à���Hƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$HH‰$HÇD$ ���è����H‹t$HHƒþ�t5H‰çè����è����H‹L$ H‹D$(H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@ÉëÇè����éÿÿÿ
������n
��*runtime.racefuncenter���¬��"go.string."image"���Ô��*go.string."Rectangle"���þ��$go.string."String"���¤
��"runtime.panicwrap���Ö
��*runtime.racereadrange���ü
� runtime.duffcopy���†
��&"".Rectangle.String���Ì
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���0€��"".autotmp_1013�type.string� "".~r0�type.string�""..this��$type.*"".Rectangle�€×€�€�€��6¯�Tgclocals·69076ee43f1cead0792b9f36906b1b56�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ$"".(*Rectangle).Dx�€��èdH‹ %����H;a†×���HƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$XH‰$HÇD$ ���è����H‹\$XHƒû�t8H‹ H‹kH‰l$8H‹CH‹kH‰l$HH‰ÃH‰D$@H‰L$0H)ËH‰\$`è����HƒÄPÉëÄè����é ÿÿÿ
������n
��*runtime.racefuncenter���”��"go.string."image"���¼��*go.string."Rectangle"���æ��go.string."Dx"���Œ
��"runtime.panicwrap���¾
��*runtime.racereadrange���º
��(runtime.racefuncexit���Ö
��0runtime.morestack_noctxt���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle� ÎŸ �€�€� �6Ê�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).Dy�€��âdH‹ %����H;a†Ô���HƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$XH‰$HÇD$ ���è����H‹\$XHƒû�t5H‹+H‰l$0H‹KH‹kH‰l$@H‹[H‰\$HH‰L$8H)ËH‰\$`è����HƒÄPÉëÇè����éÿÿÿ
������n
��*runtime.racefuncenter���”��"go.string."image"���¼��*go.string."Rectangle"���æ��go.string."Dy"���Œ
��"runtime.panicwrap���¾
��*runtime.racereadrange���´
��(runtime.racefuncexit���Ð
��0runtime.morestack_noctxt���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle� ËŸ �€�€� �6Ê�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ("".(*Rectangle).Size�€��ädH‹ %����H;a†��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$xH‰$HÇD$ ���è����H‹\$xHƒû�tdH‹3H‹SH‹KH‹C1Û1ÛH‰ËH‰L$`H‰t$PH)óH‰ÙH‰ÃH‰D$hH‰T$XH)ÓH‰L$@H‰\$HH‰L$0H‰Œ$€���H‰\$8H‰œ$ˆ���è����HƒÄpÉë˜è����éÎþÿÿ
������n
��*runtime.racefuncenter���¸��"go.string."image"���à��*go.string."Rectangle"���Š�� go.string."Size"���°
��"runtime.panicwrap���â
��*runtime.racereadrange���¶
��(runtime.racefuncexit���Ò
��0runtime.morestack_noctxt���0�
"".autotmp_1016�_type."".Point� "".~r0�type."".Point�"".r�?"type."".Rectangle� "".~r0�type."".Point�""..this��$type.*"".Rectangle�àŒßà�À� À� �6Š�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".(*Rectangle).Add�€��þdH‹ %����HD$àH;A†��Hì ���H‹Y H…ÛtH¼$¨���H9;uH‰#H‹œ$ ���H‰$è����1ÛH‰œ$À���H‰œ$È���H‰œ$Ð���H‰œ$Ø���H‹œ$¨���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$¨���H‰$HÇD$ ���è����H‹œ$¨���Hƒû�„Ã���H‹3H‹SL‹CH‹{H‹Œ$°���H‹„$¸���1Û1ÛH‰óH‰t$`HËH‰ÞH‰ÓH‰T$hHÃH‰ÚL‰ÃL‰D$pH‰L$0HËH‰ÙH‰ûH‰|$xH‰D$8HÃH‰´$€���H‰”$ˆ���H‰Œ$���H‰œ$˜���H‰t$@H‰´$À���H‰T$HH‰”$È���H‰L$PH‰Œ$Ð���H‰\$XH‰œ$Ø���è����HÄ ���Éé6ÿÿÿè����éAþÿÿ
������Š
��*runtime.racefuncenter���ú��"go.string."image"���¢��*go.string."Rectangle"���Ì��go.string."Add"���ò
��"runtime.panicwrap���ª
��*runtime.racereadrange���Ä
��(runtime.racefuncexit���ì
��0runtime.morestack_noctxt���pÀ��"".autotmp_1017�?"type."".Rectangle� "".~r1�¿"type."".Rectangle�"".p�ßtype."".Point�"".r�"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�ÀŽ¿À�À�"À� �Dü�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ&"".(*Rectangle).Sub�€��þdH‹ %����HD$àH;A†��Hì ���H‹Y H…ÛtH¼$¨���H9;uH‰#H‹œ$ ���H‰$è����1ÛH‰œ$À���H‰œ$È���H‰œ$Ð���H‰œ$Ø���H‹œ$¨���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$¨���H‰$HÇD$ ���è����H‹œ$¨���Hƒû�„Ã���H‹3H‹SL‹CH‹{H‹Œ$°���H‹„$¸���1Û1ÛH‰óH‰t$`H)ËH‰ÞH‰ÓH‰T$hH)ÃH‰ÚL‰ÃL‰D$pH‰L$0H)ËH‰ÙH‰ûH‰|$xH‰D$8H)ÃH‰´$€���H‰”$ˆ���H‰Œ$���H‰œ$˜���H‰t$@H‰´$À���H‰T$HH‰”$È���H‰L$PH‰Œ$Ð���H‰\$XH‰œ$Ø���è����HÄ ���Éé6ÿÿÿè����éAþÿÿ
������Š
��*runtime.racefuncenter���ú��"go.string."image"���¢��*go.string."Rectangle"���Ì��go.string."Sub"���ò
��"runtime.panicwrap���ª
��*runtime.racereadrange���Ä
��(runtime.racefuncexit���ì
��0runtime.morestack_noctxt���pÀ��"".autotmp_1018�?"type."".Rectangle� "".~r1�¿"type."".Rectangle�"".p�ßtype."".Point�"".r�"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�ÀŽ¿À�À�$À� �Dü�Tgclocals·a041240a37ce609efec56707c330d1a4�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Inset� ��ŽdH‹ %����H;a†*��HƒìhH‹Y H…Ût H|$pH9;uH‰#H‹\$hH‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‰œ$���H‰œ$˜���H‹\$p1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$pH‰$HÇD$ ���è����H‹t$pHƒþ�tiH‰çè����H‹\$xH‰\$ è����H‹l$(H‹T$0H‹L$8H‹D$@H‰l$HH‰¬$€���H‰T$PH‰”$ˆ���H‰L$XH‰Œ$���H‰D$`H‰„$˜���è����HƒÄhÉë“è����é¹þÿÿ
������n
��*runtime.racefuncenter���Ø��"go.string."image"���€��*go.string."Rectangle"���ª��"go.string."Inset"���Ð
��"runtime.panicwrap���‚
��*runtime.racereadrange���¨
� runtime.duffcopy���Æ
��$"".Rectangle.Inset���à
��(runtime.racefuncexit���ü
��0runtime.morestack_noctxt���`Ð��"".autotmp_1019�?"type."".Rectangle� "".~r1� "type."".Rectangle�"".n�type.int�""..this��$type.*"".Rectangle�СÏÐ�Ð�&Ð� �6š�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ2"".(*Rectangle).Intersect� ��šdH‹ %����H;a†p��Hì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H‹œ$€���H‰$è����1ÛH‰œ$°���H‰œ$¸���H‰œ$À���H‰œ$È���H‹œ$ˆ���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$( ���è���� H‹œ$ˆ���H‰$HÇD$ ���è����H‹´$ˆ���Hƒþ�„–���H‰çè����H‹œ$���H‰\$ H‹œ$˜���H‰\$(H‹œ$ ���H‰\$0H‹œ$¨���H‰\$8è����H‹l$@H‹T$HH‹L$PH‹D$XH‰l$`H‰¬$°���H‰T$hH‰”$¸���H‰L$pH‰Œ$À���H‰D$xH‰„$È���è����HÄ€���Éécÿÿÿè����ésþÿÿ
������€
��*runtime.racefuncenter���ð��"go.string."image"���˜��*go.string."Rectangle"���Â��*go.string."Intersect"���è
��"runtime.panicwrap��� 
��*runtime.racereadrange���Ô
� runtime.duffcopy���Æ
��,"".Rectangle.Intersect���à
��(runtime.racefuncexit���ˆ
��0runtime.morestack_noctxt���€��"".autotmp_1020�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�€áÿ€��(� �?Ñ�Tgclocals·4d8bed7e4976e3d095a9230e496231af�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Union� ��šdH‹ %����H;a†p��Hì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H‹œ$€���H‰$è����1ÛH‰œ$°���H‰œ$¸���H‰œ$À���H‰œ$È���H‹œ$ˆ���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$ˆ���H‰$HÇD$ ���è����H‹´$ˆ���Hƒþ�„–���H‰çè����H‹œ$���H‰\$ H‹œ$˜���H‰\$(H‹œ$ ���H‰\$0H‹œ$¨���H‰\$8è����H‹l$@H‹T$HH‹L$PH‹D$XH‰l$`H‰¬$°���H‰T$hH‰”$¸���H‰L$pH‰Œ$À���H‰D$xH‰„$È���è����HÄ€���Éécÿÿÿè����ésþÿÿ
������€
��*runtime.racefuncenter���ð��"go.string."image"���˜��*go.string."Rectangle"���Â��"go.string."Union"���è
��"runtime.panicwrap��� 
��*runtime.racereadrange���Ô
� runtime.duffcopy���Æ
��$"".Rectangle.Union���à
��(runtime.racefuncexit���ˆ
��0runtime.morestack_noctxt���€��"".autotmp_1021�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�€áÿ€��*� �?Ñ�Tgclocals·4d8bed7e4976e3d095a9230e496231af�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Empty� ��‚dH‹ %����H;a†ä���HƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$XH‰$HÇD$ ���è����H‹\$XHƒû�tEH‹3H‹SH‰T$8H‹KH‹CH‰D$HH‰t$0H‰L$@H9Î}H9ÀˆD$`è����HƒÄPÃHÇÀ���ëé‰ë·è����éÿþÿÿ
������n
��*runtime.racefuncenter���”��"go.string."image"���¼��*go.string."Rectangle"���æ��"go.string."Empty"���Œ
��"runtime.panicwrap���¾
��*runtime.racereadrange���Â
��(runtime.racefuncexit���ð
��0runtime.morestack_noctxt���  ��"".r�?"type."".Rectangle� "".~r0�type.bool�""..this��$type.*"".Rectangle� ÒŸ &��,� �6Ú�Tgclocals·3f5c1f818fa7055d0400cecd34057162�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).Eq�à��ÆdH‹ %����H„$pÿÿÿH;A†¾��Hì��H‹Y H…ÛtH¼$��H9;uH‰#H‹œ$��H‰$è����H‹œ$��1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$��H‰$HÇD$ ���è����H‹œ$��Hƒû�„��L‹ L‹CH‹{H‹sH‹¬$ ��H‹”$(��H‹Œ$0��H‹„$8��L‰L$pL‰Œ$Ð���L‰D$xL‰„$Ø���H‰¼$€���H‰¼$à���H‰´$ˆ���H‰´$è���H‰l$0H‰¬$°���H‰T$8H‰”$¸���H‰L$@H‰Œ$À���H‰D$HH‰„$È���Hœ$Ð���H‰ØHœ$°���H‰„$��Hƒø�„=��H‰œ$���Hƒû�„$��H‰œ$ð���H‰„$ø���H‰$è����H‹œ$ð���H‰$è����H‹„$ø���H‹L‹„$ð���I‹(H9ë…Ô��H‰$Hƒ$è����H‹œ$ð���H‰$Hƒ$è����H‹¬$ø���H‹]L‹„$ð���I‹hH9ë”À<�„ƒ��H‹„$��Hƒø�„j��H‹Œ$���HƒÀHƒù�„M��HƒÁH‰Œ$ø���H‰„$ð���H‰$è����H‹œ$ø���H‰$è����H‹„$ð���H‹L‹„$ø���I‹(H9ë…ù���H‰$Hƒ$è����H‹œ$ø���H‰$Hƒ$è����H‹¬$ð���H‹]L‹„$ø���I‹hH9ë”À<�…¦���H‹\$pH‹T$xH‰T$XH‹Œ$€���H‹„$ˆ���H‰D$hH‰\$PH‰L$`H9Ë}jH9À<�t\H‹\$0H‹T$8H‰”$˜���H‹L$@H‹D$HH‰„$¨���H‰œ$���H‰Œ$ ���H9Ë}H9Àˆ„$@��è����HÄ��ÃHÇÀ���ëã1ÀëßHÇÀ���ë“HÇÀ���ëÍ1ÀéBÿÿÿ‰é¬þÿÿ‰�éþÿÿ1Àé-ÿÿÿ1Àégþÿÿ‰éÕýÿÿ‰�é¼ýÿÿ‰éóüÿÿè����éüÿÿ"
������
��*runtime.racefuncenter���¼��"go.string."image"���ä��*go.string."Rectangle"���Ž��go.string."Eq"���´
��"runtime.panicwrap���ì
��*runtime.racereadrange���ê
�� runtime.raceread���Œ
�� runtime.raceread���æ
�� runtime.raceread���’
�� runtime.raceread���è 
�� runtime.raceread���Š

�� runtime.raceread���ä

�� runtime.raceread��� 
�� runtime.raceread���ì 
��(runtime.racefuncexit���´
��0runtime.morestack_noctxt���` ��""".autotmp_1033��type.bool�"".autotmp_1032��type.bool�"".autotmp_1031��type.*"".Point�"".autotmp_1030��type.*"".Point�"".autotmp_1029�?type.*"".Point�"".autotmp_1028�/type.*"".Point�"".autotmp_1027�$type.*"".Rectangle�"".autotmp_1026�$type.*"".Rectangle�"".autotmp_1024�¿"type."".Rectangle�"".autotmp_1023�"type."".Rectangle�"".r�ÿ"type."".Rectangle�"".r�ÿ"type."".Rectangle�"".s�¿"type."".Rectangle�"".r�¿"type."".Rectangle� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�" ßŸ n�ð�.ð��Gí¿‚{�Tgclocals·adb3347b296419e60da36d67f8b7ce43�Tgclocals·406991e81a5d6b9f25174854f4bda0b5���<autogenerated>þ0"".(*Rectangle).Overlaps� ��ˆdH‹ %����H;a†ç���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H‹\$P1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$PH‰$HÇD$ ���è����H‹t$PHƒþ�tHH‰çè����H‹\$XH‰\$ H‹\$`H‰\$(H‹\$hH‰\$0H‹\$pH‰\$8è����¶\$@ˆ\$xè����HƒÄHÉë´è����éüþÿÿ
������n
��*runtime.racefuncenter���”��"go.string."image"���¼��*go.string."Rectangle"���æ��(go.string."Overlaps"���Œ
��"runtime.panicwrap���¾
��*runtime.racereadrange���ä
� runtime.duffcopy���¾
��*"".Rectangle.Overlaps���Ú
��(runtime.racefuncexit���ö
��0runtime.morestack_noctxt���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�Þ��0� �6Ú�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).In�À��²dH‹ %����HD$ðH;A†w��Hì���H‹Y H…ÛtH¼$˜���H9;uH‰#H‹œ$���H‰$è����H‹œ$˜���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$˜���H‰$HÇD$ ���è����H‹œ$˜���Hƒû�„¿���H‹;H‹sH‹SH‹KL‹¬$ ���L‰l$0L‹¤$¨���L‰d$8L‹œ$°���L‰\$@L‹”$¸���L‰T$HH‰|$PH‰t$XH‰t$xH‰T$`H‰L$hH‰Œ$ˆ���H‰|$pH‰”$€���H9×}@H9ΝÀ<�tHÇÀ���ˆ„$À���è����HÄ���ÃI9ýL9Ú I9ôL9ÑžÀëÕ1ÀëÑHÇÀ���뽉é:ÿÿÿè����égþÿÿ
������Š
��*runtime.racefuncenter���¶��"go.string."image"���Þ��*go.string."Rectangle"���ˆ��go.string."In"���®
��"runtime.panicwrap���æ
��*runtime.racereadrange���°
��(runtime.racefuncexit��� 
��0runtime.morestack_noctxt���` ��"".autotmp_1038��type.bool�"".r�?"type."".Rectangle�"".s�¿"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle� ÄŸ <� �2 � �DÜ�Tgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ*"".(*Rectangle).Canon�À��ÀdH‹ %����H;a†C��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‰œ$���H‰œ$˜���H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$xH‰$HÇD$ ���è����H‹\$xHƒû�tH‹3H‹SH‹KH‹C1ÛH9ñ} H‰õH‰ÎH‰éH9Ð} H‰ÕH‰ÂH‰èH‰t$PH‰T$XH‰L$`H‰D$hH‰t$0H‰´$€���H‰T$8H‰”$ˆ���H‰L$@H‰Œ$���H‰D$HH‰„$˜���è����HƒÄpÉézÿÿÿè����é þÿÿ
������n
��*runtime.racefuncenter���Ø��"go.string."image"���€��*go.string."Rectangle"���ª��"go.string."Canon"���Ð
��"runtime.panicwrap���‚
��*runtime.racereadrange���Œ
��(runtime.racefuncexit���®
��0runtime.morestack_noctxt���P�
"".autotmp_1040��type.int� "".~r0�"type."".Rectangle�"".r�?"type."".Rectangle� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�à·ßà�à�4à� �6ª�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ$"".(*Rectangle).At�à ��È dH‹ %����HD$ØH;A†B��Hì¨���H‹Y H…ÛtH¼$°���H9;uH‰#H‹œ$¨���H‰$è����1ÛH‰œ$È���H‰œ$Ð���H‹œ$°���1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹œ$°���H‰$HÇD$ ���è����H‹œ$°���Hƒû�„x��L‹H‹{H‹sH‹SH‹Œ$¸���H‹„$À���1ÛH‰œ$ˆ���H‰œ$���1ÛH‰D$@L‰D$hH‰|$pH‰|$PH‰t$xH‰t$XH‰”$€���H‰T$`L‰D$HH‰L$8I9ȏ���H9ñ÷���H9Ǐî���H9ÐœÀ<�„„���H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹L$(H‹D$0H‰Œ$˜���H‰„$ ���H‰Œ$ˆ���H‰Œ$È���H‰„$���H‰„$Ð���è����HÄ¨���ÃH����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H‹L$(H‹D$0H‰Œ$˜���H‰„$ ���éwÿÿÿ1Àéÿÿÿ‰éþÿÿè����éœýÿÿ&
������Š
��*runtime.racefuncenter���Ú��"go.string."image"���‚��*go.string."Rectangle"���¬��go.string."At"���Ò
��"runtime.panicwrap���Š
��*runtime.racereadrange���Þ��0type.image/color.Alpha16���ô��,type.image/color.Color���Œ��Zgo.itab.image/color.Alpha16.image/color.Color���¤��$image/color.Opaque���Ê
��runtime.convT2I���È
��(runtime.racefuncexit���æ��0type.image/color.Alpha16���ü��,type.image/color.Color���”��Zgo.itab.image/color.Alpha16.image/color.Color���¬��.image/color.Transparent���Ò
��runtime.convT2I���¶ 
��0runtime.morestack_noctxt���PÐ��"".autotmp_1043��,type.image/color.Color�"".autotmp_1042�,type.image/color.Color�"".r�¿"type."".Rectangle�"".p�ßtype."".Point� "".~r2�?,type.image/color.Color�"".r�"type."".Rectangle� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�""..this��$type.*"".Rectangle�ÐÐÏЀ�ð�6ð��DŸEH�Tgclocals·762ef64d066b6f51173413f25bf7cca5�Tgclocals·64ca935d1a2110a30e2d604686188539���<autogenerated>þ,"".(*Rectangle).Bounds� ��‚dH‹ %����H;a†$��HƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‰œ$���H‰œ$˜���H‹\$x1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(���è���� H‹\$xH‰$HÇD$ ���è����H‹\$xHƒû�tcH‹3H‹SH‹KH‹C1ÛH‰t$PH‰T$XH‰L$`H‰D$hH‰t$0H‰´$€���H‰T$8H‰”$ˆ���H‰L$@H‰Œ$���H‰D$HH‰„$˜���è����HƒÄpÉë™è����é¿þÿÿ
������n
��*runtime.racefuncenter���Ø��"go.string."image"���€��*go.string."Rectangle"���ª��$go.string."Bounds"���Ð
��"runtime.panicwrap���‚
��*runtime.racereadrange���Ô
��(runtime.racefuncexit���ð
��0runtime.morestack_noctxt���Pà�� "".~r0�"type."".Rectangle�"".r�?"type."".Rectangle� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�à›ßà�Ð�8Ð� �6š�Tgclocals·89fe65749ce0afc971c0982226501ff0�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ4"".(*Rectangle).ColorModel�€��ædH‹ %����H;a†��Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1ÛH‰\$pH‰\$xH‹\$h1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$ ���H����H‰\$ HÇD$(
���è���� H‹\$hH‰$HÇD$ ���è����H‹\$hHƒû�tkH‹+H‰l$0H‹kH‰l$8H‹kH‰l$@H‹kH‰l$H1ÛH‰\$PH‰\$XH����H‰$è����H‹ ����H‹����H‰L$PH‰L$pH‰D$XH‰D$xè����HƒÄ`Éë‘è����éÍþÿÿ
������n
��*runtime.racefuncenter���¬��"go.string."image"���Ô��*go.string."Rectangle"���þ��,go.string."ColorModel"���¤
��"runtime.panicwrap���Ö
��*runtime.racereadrange���Ø��0image/color.Alpha16Model���ê
�� runtime.raceread���ø��0image/color.Alpha16Model���†�0image/color.Alpha16Model���¸
��(runtime.racefuncexit���Ô
��0runtime.morestack_noctxt���0À�� "".~r0�,type.image/color.Model�"".r�_"type."".Rectangle� "".~r0�,type.image/color.Model�""..this��$type.*"".Rectangle�À¿À�À�:À��6å%�Tgclocals·cad14e25fd48dddd762418d02c031d67�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ(type..hash."".Config�à��ÖdH‹ %����H;a†Ž���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tcH‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$H‰D$0H‰D$HÇD$���è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëÁ‰%����ë”è����éUÿÿÿ
������B
��*runtime.racefuncenter���€
��"runtime.interhash���ä
��runtime.memhash���Œ
��(runtime.racefuncexit���Ä
��0runtime.morestack_noctxt���0@��"".autotmp_1045��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*"".Config�@w?@!�°�°� � �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���6/tmp/go/src/image/format.goþ$type..eq."".Config� ��†dH‹ %����H;a†f��HƒìHH‹\$HH‰$è����H‹\$XH‰$è����H‹\$XHƒû�„0��H‹+H‰l$8H‹kH‰l$@H‹\$PH‰$è����H‹T$8H‹\$PHƒû�„ö���H‹H‹KH‰L$0H‰D$(H9Ð…Í���H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�„¢���H‹\$PH‰$Hƒ$è����H‹\$XH‰$Hƒ$è����H‹D$PH‹XL‹D$XI‹hH9ëtÆD$`�è����HƒÄHÃH‰$Hƒ$è����H‹\$XH‰$Hƒ$è����H‹l$PH‹]L‹D$XI‹hH9ëtÆD$`�è����HƒÄHÃÆD$`è����HƒÄHÃÆD$`�è����HƒÄHÉéÿÿÿ‰éÉþÿÿè����é}þÿÿ
������B
��*runtime.racefuncenter���^
�� runtime.raceread���º
�� runtime.raceread���Ð
��runtime.ifaceeq���’
�� runtime.raceread���¸
�� runtime.raceread���ú
��(runtime.racefuncexit��� 
�� runtime.raceread���Æ
�� runtime.raceread���ˆ
��(runtime.racefuncexit���¦
��(runtime.racefuncexit���Ä
��(runtime.racefuncexit���ô
��0runtime.morestack_noctxt���0��
"".autotmp_1047�?,type.image/color.Model�"".autotmp_1046�,type.image/color.Model� "".~r2� type.bool�"".q�type.*"".Config�"".p��type.*"".Config�>îF%���� <Ké�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���6/tmp/go/src/image/format.goþ"".reader.Peek�€��ædH‹ %����H;a†Ö���Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1ÛH‰œ$€���H‰œ$ˆ���H‰œ$���1ÛH‰œ$˜���H‰œ$ ���H‹\$xH‰\$H‹\$pH‰$H‹\$hH‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$HH‰´$€���H‰l$PH‰¬$ˆ���H‰T$XH‰”$���H‰L$8H‰Œ$˜���H‰D$@H‰„$ ���è����HƒÄ`Ãè����é ÿÿÿ
������n
��*runtime.racefuncenter���†�������À
��(runtime.racefuncexit���Ô
��0runtime.morestack_noctxt���€À�� "".autotmp_1049�Otype.error�"".autotmp_1048�/type.[]uint8� "".~r2�`type.error� "".~r1�0type.[]uint8�""..anon0� type.int�""..this��type."".reader�ÀÑ¿À�€�<€��6©!�Tgclocals·dbd89ae4a4266b5bfeafd78285762b2a�Tgclocals·98a935522f11e180b06d5a082b7d09c1���<autogenerated>þ"".reader.Read� ��†dH‹ %����H;a†¦���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1Û1ÛH‰œ$€���H‰œ$ˆ���H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$XH‰$H‹\$PH‹[(ÿÓH‹D$ H‹T$(H‹L$0H‰D$xH‰T$8H‰”$€���H‰L$@H‰Œ$ˆ���è����HƒÄHÃè����é=ÿÿÿ
������n
��*runtime.racefuncenter���þ�������à
��(runtime.racefuncexit���ô
��0runtime.morestack_noctxt���€��
"".autotmp_1053�type.error� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".reader�¡�Ð�>Ð��6y!�Tgclocals·d2fd9951e910becfd07ba7f8ff7b525a�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ@"".(*YCbCrSubsampleRatio).String��à��ÒdH‹ %����H;a†Ì���Hƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����1ÛH‰\$PH‰\$XH‹\$H1íH9ëuEH����H‰$HÇD$���H����H‰\$HÇD$���H����H‰\$ HÇD$(���è���� H‹\$HH‰$è����H‹\$HH‹+H‰,$è����H‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@Ãè����éÿÿÿ
������n
��*runtime.racefuncenter���¬��"go.string."image"���Ô��>go.string."YCbCrSubsampleRatio"���þ��$go.string."String"���¤
��"runtime.panicwrap���Ä
�� runtime.raceread���æ
��:"".YCbCrSubsampleRatio.String���¬
��(runtime.racefuncexit�����0runtime.morestack_noctxt���0€��"".autotmp_1056�type.string� "".~r0�type.string�""..this��8type.*"".YCbCrSubsampleRatio�€Ç€�ð�@ð��6Ÿ�Tgclocals·69076ee43f1cead0792b9f36906b1b56�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ&"".PalettedImage.At�à��ÂdH‹ %����H;a†„���Hƒì8H‹Y H…Ût H|$@H9;uH‰#H‹\$8H‰$è����1ÛH‰\$`H‰\$hH‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hè����HƒÄ8Ãè����é_ÿÿÿ
������n
��*runtime.racefuncenter���Ú�������œ
��(runtime.racefuncexit���°
��0runtime.morestack_noctxt���`p��
"".autotmp_1057�,type.image/color.Color� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�pop�°�B°��6W#�Tgclocals·b6338434a483b71ecf7a1963213f75e2�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þ."".PalettedImage.Bounds�€��êdH‹ %����H;a†˜���HƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����1ÛH‰\$`H‰\$hH‰\$pH‰\$xH‹\$XH‰$H‹\$PH‹[(ÿÓH‹l$H‹T$H‹L$H‹D$ H‰l$(H‰l$`H‰T$0H‰T$hH‰L$8H‰L$pH‰D$@H‰D$xè����HƒÄHÃè����éKÿÿÿ
������n
��*runtime.racefuncenter���Æ�������Ä
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���`��"".autotmp_1058�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��*type."".PalettedImage�“�À�DÀ� �6Š�Tgclocals·d98f60bd8519d0c68364b2a1d83af357�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ:"".PalettedImage.ColorIndexAt�€��òdH‹ %����H;avcHƒì H‹Y H…Ût H|$(H9;uH‰#H‹\$ H‰$è����H‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$Hè����HƒÄ Ãè����ë‡
������f
��*runtime.racefuncenter���º�������Ò
��(runtime.racefuncexit���æ
��0runtime.morestack_noctxt���P@�� "".~r2�@type.uint8�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�@^?@�€�F€�
�2N�Tgclocals·1347047f6245a35b91e9a4f213167d52�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���<autogenerated>þ6"".PalettedImage.ColorModel� ��’dH‹ %����H;avpHƒì(H‹Y H…Ût H|$0H9;uH‰#H‹\$(H‰$è����1ÛH‰\$@H‰\$HH‹\$8H‰$H‹\$0H‹[8ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$Hè����HƒÄ(Ãè����éwÿÿÿ
������f
��*runtime.racefuncenter���ª�������ì
��(runtime.racefuncexit���€
��0runtime.morestack_noctxt���@P��"".autotmp_1060�,type.image/color.Model� "".~r0� ,type.image/color.Model�""..this��*type."".PalettedImage�PkOP��H��2C�Tgclocals·19b49d53e9c11805652fa4c0885cbb29�Tgclocals·c55cf99de9cdd8c8202a466952fa1a45���<autogenerated>þTgclocals·219d8d154da9b833882f5372d7b1af99�0��0��� �������¨��©������þTgclocals·61b167ad47cde17c5a09bf89f76e51ad�0��0������5���5���5���5����þ0>go.itab.*bufio.Reader."".reader�����þTgclocals·0318f4fe3c9ebb20c9b242b602ec92a7�`��`
�����������`����������������d�������þTgclocals·68c9fa00f2dd3a035f977db2d5190cf0�`��`
�������������������������������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·9ba22629e9611c66625b3db4800944b7� �� �������������þTgclocals·c29a587d9b6ca82553d1d08ff007a778�0��0�������������j�������þTgclocals·f62a41cb78c03c15bed464e78226a130�0��0���������������×����þTgclocals·89dd7cd510c646dd78bd230190fb8a36�Ð��Ð ���/�����������������€�����€������€�����€������������������������������������������@ ����þTgclocals·01125e2a5c0350eb923f65fb084fb0be�p��p ������������������������������������ß�������þTgclocals·3f96fc659bf6a949de7b329a27509890�à��à ���5�������������†����€�����€������€�����€���������d�����������������������������������������P���þTgclocals·404bd706b395d652fac0e702c80086b6�x��x ���
������������������������������������O������þ"go.string.hdr."("� �� ������������������go.string."("���þgo.string."("���(��þ"go.string.hdr.","� �� ������������������go.string.","���þgo.string.","���,��þ"go.string.hdr.")"� �� ������������������go.string.")"���þgo.string.")"���)��þTgclocals·4839c181b903023c3ae99be60aaf4271�(��(������������������þTgclocals·124a21249e8861ddbb76c8b0b45d3971�(��(������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·627bbca91efe935c3ac76737d2026ca6��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·21a8f585a14d020f181242c5256583dc� �� ��������������þTgclocals·98a935522f11e180b06d5a082b7d09c1� �� ���������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440��������������þ"go.string.hdr."-"� �� ������������������go.string."-"���þgo.string."-"���-��þTgclocals·4839c181b903023c3ae99be60aaf4271�(��(������������������þTgclocals·b2f74c392de0ed28f7e906de7ba4bab4�(��(������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·709a14768fab2805a378215c02f0d27f��������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c������
��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c������
��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·5f32766c99d383f833fae93d4e4d71d1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·5f32766c99d383f833fae93d4e4d71d1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·12fc1489b12fcdedb8fc818b7369b5d9��������������þTgclocals·406991e81a5d6b9f25174854f4bda0b5�(��(�����������������þTgclocals·bb62ddeba3b841c3b8407d8da49fbc51�(��(��� ����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1������ ��������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þ0Zgo.itab.image/color.Alpha16.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·aa63f3db2ec75827f6605d10a5453148� �� ����������À����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·8c067d5052c60a71dd2787c367bb278b� �� ����������0����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·895d0569a38a56443b84805daa09d838��������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.RGBA.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ02go.itab.*"".RGBA."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Xgo.itab.image/color.RGBA64.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ06go.itab.*"".RGBA64."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.NRGBA.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ04go.itab.*"".NRGBA."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Zgo.itab.image/color.NRGBA64.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ08go.itab.*"".NRGBA64."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.Alpha.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ04go.itab.*"".Alpha."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ08go.itab.*"".Alpha16."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·790e5cc5051fc0affc980ade09e929ec��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.Gray.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ02go.itab.*"".Gray."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Xgo.itab.image/color.Gray16.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ06go.itab.*"".Gray16."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Tgo.itab.image/color.CMYK.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·524aafe7d1228e5424d64f5d94771fbf� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ02go.itab.*"".CMYK."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·8c4115247b3638c79e08e0e295c9b378�8��8��������������������������þ0Zgo.itab.image/color.Palette.image/color.Model�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·f7103403aec01e4990bdf6681d1baac8�(��(������������������þTgclocals·9bafea7b2a19e2cc3d593c51cce7c661�(��(����������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·1b19623ccfd3351b9464338f230e8b94� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þ0:go.itab.*"".Paletted."".Image�����þTgclocals·6303a5fef1b34377e043c222d45020fc�@��@���������������������������þTgclocals·beaeb9c48e230c42df709f19dd51c03b�@��@������������a�������������þTgclocals·12b8aeecac339c1231ec601931927feb�(��(�����������������þTgclocals·f7309186bf9eeb0f8ece2eb16f2dc110�(��(����������������þTgclocals·85b708e0eb749713cb73a30a27c2999c�8��8������������������������þTgclocals·258ffe3b59f2d561d15d8bf865a43785�8��8����������������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þ0Jgo.itab.*"".Uniform.image/color.Model�����þTgclocals·f891aedf0f80c97cb1c7cc75a7fd6349�(��(������������������þTgclocals·27f94a2fe0ff5b305b2385471201b6d7�(��(����������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·b9e2f210c3a206b5352d33144c6a1618� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·23e8278e2b69a3a75fa59b23c49ed6ad��������������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·f891aedf0f80c97cb1c7cc75a7fd6349�(��(������������������þTgclocals·fb59fd9ce9376dfcd2105aa0993acf24�(��(����������������þLgo.string.hdr."YCbCrSubsampleRatio444"� �� ������������������Dgo.string."YCbCrSubsampleRatio444"���þDgo.string."YCbCrSubsampleRatio444"�0��.YCbCrSubsampleRatio444��þLgo.string.hdr."YCbCrSubsampleRatio422"� �� ������������������Dgo.string."YCbCrSubsampleRatio422"���þDgo.string."YCbCrSubsampleRatio422"�0��.YCbCrSubsampleRatio422��þLgo.string.hdr."YCbCrSubsampleRatio420"� �� ������������������Dgo.string."YCbCrSubsampleRatio420"���þDgo.string."YCbCrSubsampleRatio420"�0��.YCbCrSubsampleRatio420��þLgo.string.hdr."YCbCrSubsampleRatio440"� �� ������������������Dgo.string."YCbCrSubsampleRatio440"���þDgo.string."YCbCrSubsampleRatio440"�0��.YCbCrSubsampleRatio440��þLgo.string.hdr."YCbCrSubsampleRatio411"� �� ������������������Dgo.string."YCbCrSubsampleRatio411"���þDgo.string."YCbCrSubsampleRatio411"�0��.YCbCrSubsampleRatio411��þLgo.string.hdr."YCbCrSubsampleRatio410"� �� ������������������Dgo.string."YCbCrSubsampleRatio410"���þDgo.string."YCbCrSubsampleRatio410"�0��.YCbCrSubsampleRatio410��þTgo.string.hdr."YCbCrSubsampleRatioUnknown"� �� ������������������Lgo.string."YCbCrSubsampleRatioUnknown"���þLgo.string."YCbCrSubsampleRatioUnknown"�@��6YCbCrSubsampleRatioUnknown��þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·bcdfbcd04eb70526d9504e97d9ef703d� �� ��������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ0Vgo.itab.image/color.YCbCr.image/color.Color�����þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þTgclocals·83ead081cd909acab0dcd88a450c1878� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ04go.itab.*"".YCbCr."".Image�����þTgclocals·c18700852ad91ab4d108572c607cfe30�`��`
��� �������������������� ��$��&��&�������þTgclocals·7c5c95b88edaaa4fc9b93df09fd4a209�`��`
������������a�������������������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·1aecd0363e705c5bd33e230135d399c2�H��H��� ���������‘��‘��������������þTgclocals·9bee0e0ddef505094e228c547e28a753�H��H������������������������������ ����þJgo.string.hdr."image: unknown format"� �� ������������������Bgo.string."image: unknown format"���þBgo.string."image: unknown format"�0��,image: unknown format��þTgclocals·6910e19bd0d31b4222b21d8d53042f42�(��(�����������������þTgclocals·7d2d5fca80364273fb07d5820a76fef4�����������þ."".ErrFormat�� type.error���þ."".formats��0 type.[]"".format���þ0
"".ZP�� type."".Point���þ0
"".ZR��@"type."".Rectangle���þ."".Black�� type.*"".Uniform���þ."".White�� type.*"".Uniform���þ."".Transparent�� type.*"".Uniform���þ."".Opaque�� type.*"".Uniform���þ0"".initdone·��type.uint8���þ("".RegisterFormat·f��������������""".RegisterFormat���þ"".asReader·f��������������"".asReader���þ"".match·f��������������"".match���þ"".sniff·f��������������"".sniff���þ"".Decode·f��������������"".Decode���þ$"".DecodeConfig·f��������������"".DecodeConfig���þ$"".Point.String·f��������������"".Point.String���þ"".Point.Add·f��������������"".Point.Add���þ"".Point.Sub·f��������������"".Point.Sub���þ"".Point.Mul·f��������������"".Point.Mul���þ"".Point.Div·f��������������"".Point.Div���þ"".Point.In·f��������������"".Point.In���þ"".Point.Mod·f��������������"".Point.Mod���þ"".Point.Eq·f��������������"".Point.Eq���þ"".Pt·f��������������
"".Pt���þ,"".Rectangle.String·f��������������&"".Rectangle.String���þ$"".Rectangle.Dx·f��������������"".Rectangle.Dx���þ$"".Rectangle.Dy·f��������������"".Rectangle.Dy���þ("".Rectangle.Size·f��������������""".Rectangle.Size���þ&"".Rectangle.Add·f�������������� "".Rectangle.Add���þ&"".Rectangle.Sub·f�������������� "".Rectangle.Sub���þ*"".Rectangle.Inset·f��������������$"".Rectangle.Inset���þ2"".Rectangle.Intersect·f��������������,"".Rectangle.Intersect���þ*"".Rectangle.Union·f��������������$"".Rectangle.Union���þ*"".Rectangle.Empty·f��������������$"".Rectangle.Empty���þ$"".Rectangle.Eq·f��������������"".Rectangle.Eq���þ0"".Rectangle.Overlaps·f��������������*"".Rectangle.Overlaps���þ$"".Rectangle.In·f��������������"".Rectangle.In���þ*"".Rectangle.Canon·f��������������$"".Rectangle.Canon���þ$"".Rectangle.At·f��������������"".Rectangle.At���þ,"".Rectangle.Bounds·f��������������&"".Rectangle.Bounds���þ4"".Rectangle.ColorModel·f��������������."".Rectangle.ColorModel���þ"".Rect·f��������������"".Rect���þ0"".(*RGBA).ColorModel·f��������������*"".(*RGBA).ColorModel���þ("".(*RGBA).Bounds·f��������������""".(*RGBA).Bounds���þ "".(*RGBA).At·f��������������"".(*RGBA).At���þ("".(*RGBA).RGBAAt·f��������������""".(*RGBA).RGBAAt���þ."".(*RGBA).PixOffset·f��������������("".(*RGBA).PixOffset���þ""".(*RGBA).Set·f��������������"".(*RGBA).Set���þ*"".(*RGBA).SetRGBA·f��������������$"".(*RGBA).SetRGBA���þ,"".(*RGBA).SubImage·f��������������&"".(*RGBA).SubImage���þ("".(*RGBA).Opaque·f��������������""".(*RGBA).Opaque���þ"".NewRGBA·f��������������"".NewRGBA���þ4"".(*RGBA64).ColorModel·f��������������."".(*RGBA64).ColorModel���þ,"".(*RGBA64).Bounds·f��������������&"".(*RGBA64).Bounds���þ$"".(*RGBA64).At·f��������������"".(*RGBA64).At���þ0"".(*RGBA64).RGBA64At·f��������������*"".(*RGBA64).RGBA64At���þ2"".(*RGBA64).PixOffset·f��������������,"".(*RGBA64).PixOffset���þ&"".(*RGBA64).Set·f�������������� "".(*RGBA64).Set���þ2"".(*RGBA64).SetRGBA64·f��������������,"".(*RGBA64).SetRGBA64���þ0"".(*RGBA64).SubImage·f��������������*"".(*RGBA64).SubImage���þ,"".(*RGBA64).Opaque·f��������������&"".(*RGBA64).Opaque���þ"".NewRGBA64·f��������������"".NewRGBA64���þ2"".(*NRGBA).ColorModel·f��������������,"".(*NRGBA).ColorModel���þ*"".(*NRGBA).Bounds·f��������������$"".(*NRGBA).Bounds���þ""".(*NRGBA).At·f��������������"".(*NRGBA).At���þ,"".(*NRGBA).NRGBAAt·f��������������&"".(*NRGBA).NRGBAAt���þ0"".(*NRGBA).PixOffset·f��������������*"".(*NRGBA).PixOffset���þ$"".(*NRGBA).Set·f��������������"".(*NRGBA).Set���þ."".(*NRGBA).SetNRGBA·f��������������("".(*NRGBA).SetNRGBA���þ."".(*NRGBA).SubImage·f��������������("".(*NRGBA).SubImage���þ*"".(*NRGBA).Opaque·f��������������$"".(*NRGBA).Opaque���þ"".NewNRGBA·f��������������"".NewNRGBA���þ6"".(*NRGBA64).ColorModel·f��������������0"".(*NRGBA64).ColorModel���þ."".(*NRGBA64).Bounds·f��������������("".(*NRGBA64).Bounds���þ&"".(*NRGBA64).At·f�������������� "".(*NRGBA64).At���þ4"".(*NRGBA64).NRGBA64At·f��������������."".(*NRGBA64).NRGBA64At���þ4"".(*NRGBA64).PixOffset·f��������������."".(*NRGBA64).PixOffset���þ("".(*NRGBA64).Set·f��������������""".(*NRGBA64).Set���þ6"".(*NRGBA64).SetNRGBA64·f��������������0"".(*NRGBA64).SetNRGBA64���þ2"".(*NRGBA64).SubImage·f��������������,"".(*NRGBA64).SubImage���þ."".(*NRGBA64).Opaque·f��������������("".(*NRGBA64).Opaque���þ "".NewNRGBA64·f��������������"".NewNRGBA64���þ2"".(*Alpha).ColorModel·f��������������,"".(*Alpha).ColorModel���þ*"".(*Alpha).Bounds·f��������������$"".(*Alpha).Bounds���þ""".(*Alpha).At·f��������������"".(*Alpha).At���þ,"".(*Alpha).AlphaAt·f��������������&"".(*Alpha).AlphaAt���þ0"".(*Alpha).PixOffset·f��������������*"".(*Alpha).PixOffset���þ$"".(*Alpha).Set·f��������������"".(*Alpha).Set���þ."".(*Alpha).SetAlpha·f��������������("".(*Alpha).SetAlpha���þ."".(*Alpha).SubImage·f��������������("".(*Alpha).SubImage���þ*"".(*Alpha).Opaque·f��������������$"".(*Alpha).Opaque���þ"".NewAlpha·f��������������"".NewAlpha���þ6"".(*Alpha16).ColorModel·f��������������0"".(*Alpha16).ColorModel���þ."".(*Alpha16).Bounds·f��������������("".(*Alpha16).Bounds���þ&"".(*Alpha16).At·f�������������� "".(*Alpha16).At���þ4"".(*Alpha16).Alpha16At·f��������������."".(*Alpha16).Alpha16At���þ4"".(*Alpha16).PixOffset·f��������������."".(*Alpha16).PixOffset���þ("".(*Alpha16).Set·f��������������""".(*Alpha16).Set���þ6"".(*Alpha16).SetAlpha16·f��������������0"".(*Alpha16).SetAlpha16���þ2"".(*Alpha16).SubImage·f��������������,"".(*Alpha16).SubImage���þ."".(*Alpha16).Opaque·f��������������("".(*Alpha16).Opaque���þ "".NewAlpha16·f��������������"".NewAlpha16���þ0"".(*Gray).ColorModel·f��������������*"".(*Gray).ColorModel���þ("".(*Gray).Bounds·f��������������""".(*Gray).Bounds���þ "".(*Gray).At·f��������������"".(*Gray).At���þ("".(*Gray).GrayAt·f��������������""".(*Gray).GrayAt���þ."".(*Gray).PixOffset·f��������������("".(*Gray).PixOffset���þ""".(*Gray).Set·f��������������"".(*Gray).Set���þ*"".(*Gray).SetGray·f��������������$"".(*Gray).SetGray���þ,"".(*Gray).SubImage·f��������������&"".(*Gray).SubImage���þ("".(*Gray).Opaque·f��������������""".(*Gray).Opaque���þ"".NewGray·f��������������"".NewGray���þ4"".(*Gray16).ColorModel·f��������������."".(*Gray16).ColorModel���þ,"".(*Gray16).Bounds·f��������������&"".(*Gray16).Bounds���þ$"".(*Gray16).At·f��������������"".(*Gray16).At���þ0"".(*Gray16).Gray16At·f��������������*"".(*Gray16).Gray16At���þ2"".(*Gray16).PixOffset·f��������������,"".(*Gray16).PixOffset���þ&"".(*Gray16).Set·f�������������� "".(*Gray16).Set���þ2"".(*Gray16).SetGray16·f��������������,"".(*Gray16).SetGray16���þ0"".(*Gray16).SubImage·f��������������*"".(*Gray16).SubImage���þ,"".(*Gray16).Opaque·f��������������&"".(*Gray16).Opaque���þ"".NewGray16·f��������������"".NewGray16���þ0"".(*CMYK).ColorModel·f��������������*"".(*CMYK).ColorModel���þ("".(*CMYK).Bounds·f��������������""".(*CMYK).Bounds���þ "".(*CMYK).At·f��������������"".(*CMYK).At���þ("".(*CMYK).CMYKAt·f��������������""".(*CMYK).CMYKAt���þ."".(*CMYK).PixOffset·f��������������("".(*CMYK).PixOffset���þ""".(*CMYK).Set·f��������������"".(*CMYK).Set���þ*"".(*CMYK).SetCMYK·f��������������$"".(*CMYK).SetCMYK���þ,"".(*CMYK).SubImage·f��������������&"".(*CMYK).SubImage���þ("".(*CMYK).Opaque·f��������������""".(*CMYK).Opaque���þ"".NewCMYK·f��������������"".NewCMYK���þ8"".(*Paletted).ColorModel·f��������������2"".(*Paletted).ColorModel���þ0"".(*Paletted).Bounds·f��������������*"".(*Paletted).Bounds���þ("".(*Paletted).At·f��������������""".(*Paletted).At���þ6"".(*Paletted).PixOffset·f��������������0"".(*Paletted).PixOffset���þ*"".(*Paletted).Set·f��������������$"".(*Paletted).Set���þ<"".(*Paletted).ColorIndexAt·f��������������6"".(*Paletted).ColorIndexAt���þ>"".(*Paletted).SetColorIndex·f��������������8"".(*Paletted).SetColorIndex���þ4"".(*Paletted).SubImage·f��������������."".(*Paletted).SubImage���þ0"".(*Paletted).Opaque·f��������������*"".(*Paletted).Opaque���þ""".NewPaletted·f��������������"".NewPaletted���þ*"".(*Uniform).RGBA·f��������������$"".(*Uniform).RGBA���þ6"".(*Uniform).ColorModel·f��������������0"".(*Uniform).ColorModel���þ0"".(*Uniform).Convert·f��������������*"".(*Uniform).Convert���þ."".(*Uniform).Bounds·f��������������("".(*Uniform).Bounds���þ&"".(*Uniform).At·f�������������� "".(*Uniform).At���þ."".(*Uniform).Opaque·f��������������("".(*Uniform).Opaque���þ "".NewUniform·f��������������"".NewUniform���þ@"".YCbCrSubsampleRatio.String·f��������������:"".YCbCrSubsampleRatio.String���þ2"".(*YCbCr).ColorModel·f��������������,"".(*YCbCr).ColorModel���þ*"".(*YCbCr).Bounds·f��������������$"".(*YCbCr).Bounds���þ""".(*YCbCr).At·f��������������"".(*YCbCr).At���þ,"".(*YCbCr).YCbCrAt·f��������������&"".(*YCbCr).YCbCrAt���þ,"".(*YCbCr).YOffset·f��������������&"".(*YCbCr).YOffset���þ,"".(*YCbCr).COffset·f��������������&"".(*YCbCr).COffset���þ."".(*YCbCr).SubImage·f��������������("".(*YCbCr).SubImage���þ*"".(*YCbCr).Opaque·f��������������$"".(*YCbCr).Opaque���þ"".NewYCbCr·f��������������"".NewYCbCr���þ"".init·f��������������"".init���þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·b6338434a483b71ecf7a1963213f75e2� �� ���������3����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·19b49d53e9c11805652fa4c0885cbb29� �� �������������þ"runtime.gcbits.01����þTgo.string.hdr."func(int, int) color.Color"� �� ������������������Lgo.string."func(int, int) color.Color"���þLgo.string."func(int, int) color.Color"�@��6func(int, int) color.Color��þJtype.func(int, int) image/color.Color�°��°��������������‚ÌÛT�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.Color"���p��\go.weak.type.*func(int, int) image/color.Color���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.Color���Р�Jtype.func(int, int) image/color.Color���€��type.int�����type.int��� ��,type.image/color.Color���þŽgo.typelink.func(int, int) color.Color func(int, int) image/color.Color��������������Jtype.func(int, int) image/color.Color���þ8go.string.hdr."*image.Point"� �� �������� ����������0go.string."*image.Point"���þ0go.string."*image.Point"� ��*image.Point��þ*go.string.hdr."image"� �� ������������������"go.string."image"���þ"go.string."image"��� image��þ*go.string.hdr."Point"� �� ������������������"go.string."Point"���þ"go.string."Point"��� Point��þ,go.string.hdr."String"� �� ������������������$go.string."String"���þ$go.string."String"���String��þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·69076ee43f1cead0792b9f36906b1b56� �� �������������þ&go.string.hdr."Add"� �� ������������������go.string."Add"���þgo.string."Add"���Add��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ&go.string.hdr."Sub"� �� ������������������go.string."Sub"���þgo.string."Sub"���Sub��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ&go.string.hdr."Mul"� �� ������������������go.string."Mul"���þgo.string."Mul"���Mul��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ&go.string.hdr."Div"� �� ������������������go.string."Div"���þgo.string."Div"���Div��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·2fccd208efe70893f9ac8d682812ae72�������������þ$go.string.hdr."In"� �� ������������������go.string."In"���þgo.string."In"���In��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ&go.string.hdr."Mod"� �� ������������������go.string."Mod"���þgo.string."Mod"���Mod��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þ$go.string.hdr."Eq"� �� ������������������go.string."Eq"���þgo.string."Eq"���Eq��þTgclocals·21a8f585a14d020f181242c5256583dc� �� ��������������þTgclocals·f47057354ec566066f8688a4970cff5a� �� �������������þvgo.string.hdr."func(*image.Point, image.Point) image.Point"� �� ��������+����������ngo.string."func(*image.Point, image.Point) image.Point"���þngo.string."func(*image.Point, image.Point) image.Point"�`��Xfunc(*image.Point, image.Point) image.Point��þNtype.func(*"".Point, "".Point) "".Point�°��°��������������Ÿ.^�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Point, image.Point) image.Point"���p��`go.weak.type.*func(*"".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�Ntype.func(*"".Point, "".Point) "".Point���Р�Ntype.func(*"".Point, "".Point) "".Point���€��type.*"".Point�����type."".Point��� ��type."".Point���þ´go.typelink.func(*image.Point, image.Point) image.Point func(*"".Point, "".Point) "".Point��������������Ntype.func(*"".Point, "".Point) "".Point���þfgo.string.hdr."func(*image.Point, int) image.Point"� �� ��������#����������^go.string."func(*image.Point, int) image.Point"���þ^go.string."func(*image.Point, int) image.Point"�P��Hfunc(*image.Point, int) image.Point��þDtype.func(*"".Point, int) "".Point�°��°��������������3 �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Point, int) image.Point"���p��Vgo.weak.type.*func(*"".Point, int) "".Point���€��"runtime.zerovalue��� €�Dtype.func(*"".Point, int) "".Point���Р�Dtype.func(*"".Point, int) "".Point���€��type.*"".Point�����type.int��� ��type."".Point���þšgo.typelink.func(*image.Point, int) image.Point func(*"".Point, int) "".Point��������������Dtype.func(*"".Point, int) "".Point���þhgo.string.hdr."func(*image.Point, image.Point) bool"� �� ��������$����������`go.string."func(*image.Point, image.Point) bool"���þ`go.string."func(*image.Point, image.Point) bool"�P��Jfunc(*image.Point, image.Point) bool��þFtype.func(*"".Point, "".Point) bool�°��°��������������¯š¢�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Point, image.Point) bool"���p��Xgo.weak.type.*func(*"".Point, "".Point) bool���€��"runtime.zerovalue��� €�Ftype.func(*"".Point, "".Point) bool���Р�Ftype.func(*"".Point, "".Point) bool���€��type.*"".Point�����type."".Point��� ��type.bool���þžgo.typelink.func(*image.Point, image.Point) bool func(*"".Point, "".Point) bool��������������Ftype.func(*"".Point, "".Point) bool���þpgo.string.hdr."func(*image.Point, image.Rectangle) bool"� �� ��������(����������hgo.string."func(*image.Point, image.Rectangle) bool"���þhgo.string."func(*image.Point, image.Rectangle) bool"�`��Rfunc(*image.Point, image.Rectangle) bool��þNtype.func(*"".Point, "".Rectangle) bool�°��°��������������­âõ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Point, image.Rectangle) bool"���p��`go.weak.type.*func(*"".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ntype.func(*"".Point, "".Rectangle) bool���Р�Ntype.func(*"".Point, "".Rectangle) bool���€��type.*"".Point�����"type."".Rectangle��� ��type.bool���þ®go.typelink.func(*image.Point, image.Rectangle) bool func(*"".Point, "".Rectangle) bool��������������Ntype.func(*"".Point, "".Rectangle) bool���þ~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"� �� ��������/����������vgo.string."func(*image.Point, image.Rectangle) image.Point"���þvgo.string."func(*image.Point, image.Rectangle) image.Point"�`��`func(*image.Point, image.Rectangle) image.Point��þVtype.func(*"".Point, "".Rectangle) "".Point�°��°��������������«øõ„�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"���p��hgo.weak.type.*func(*"".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�Vtype.func(*"".Point, "".Rectangle) "".Point���Р�Vtype.func(*"".Point, "".Rectangle) "".Point���€��type.*"".Point�����"type."".Rectangle��� ��type."".Point���þÄgo.typelink.func(*image.Point, image.Rectangle) image.Point func(*"".Point, "".Rectangle) "".Point��������������Vtype.func(*"".Point, "".Rectangle) "".Point���þRgo.string.hdr."func(*image.Point) string"� �� ������������������Jgo.string."func(*image.Point) string"���þJgo.string."func(*image.Point) string"�@��4func(*image.Point) string��þ6type.func(*"".Point) string� �� ��������������Çu×á�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Point) string"���p��Hgo.weak.type.*func(*"".Point) string���€��"runtime.zerovalue��� €�6type.func(*"".Point) string���А�6type.func(*"".Point) string���€��type.*"".Point�����type.string���þxgo.typelink.func(*image.Point) string func(*"".Point) string��������������6type.func(*"".Point) string���þZgo.string.hdr."func(image.Point) image.Point"� �� ������������������Rgo.string."func(image.Point) image.Point"���þRgo.string."func(image.Point) image.Point"�@��<func(image.Point) image.Point��þ8type.func("".Point) "".Point� �� ��������������˜<Ñ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(image.Point) image.Point"���p��Jgo.weak.type.*func("".Point) "".Point���€��"runtime.zerovalue��� €�8type.func("".Point) "".Point���А�8type.func("".Point) "".Point���€��type."".Point�����type."".Point���þ‚go.typelink.func(image.Point) image.Point func("".Point) "".Point��������������8type.func("".Point) "".Point���þJgo.string.hdr."func(int) image.Point"� �� ������������������Bgo.string."func(int) image.Point"���þBgo.string."func(int) image.Point"�0��,func(int) image.Point��þ.type.func(int) "".Point� �� ��������������R§¸�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Jgo.string.hdr."func(int) image.Point"���p��@go.weak.type.*func(int) "".Point���€��"runtime.zerovalue��� €�.type.func(int) "".Point���А�.type.func(int) "".Point���€��type.int�����type."".Point���þhgo.typelink.func(int) image.Point func(int) "".Point��������������.type.func(int) "".Point���þLgo.string.hdr."func(image.Point) bool"� �� ������������������Dgo.string."func(image.Point) bool"���þDgo.string."func(image.Point) bool"�0��.func(image.Point) bool��þ0type.func("".Point) bool� �� ��������������—ËÆa�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(image.Point) bool"���p��Bgo.weak.type.*func("".Point) bool���€��"runtime.zerovalue��� €�0type.func("".Point) bool���А�0type.func("".Point) bool���€��type."".Point�����type.bool���þlgo.typelink.func(image.Point) bool func("".Point) bool��������������0type.func("".Point) bool���þTgo.string.hdr."func(image.Rectangle) bool"� �� ������������������Lgo.string."func(image.Rectangle) bool"���þLgo.string."func(image.Rectangle) bool"�@��6func(image.Rectangle) bool��þ8type.func("".Rectangle) bool� �� ��������������Á¬S�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(image.Rectangle) bool"���p��Jgo.weak.type.*func("".Rectangle) bool���€��"runtime.zerovalue��� €�8type.func("".Rectangle) bool���А�8type.func("".Rectangle) bool���€��"type."".Rectangle�����type.bool���þ|go.typelink.func(image.Rectangle) bool func("".Rectangle) bool��������������8type.func("".Rectangle) bool���þbgo.string.hdr."func(image.Rectangle) image.Point"� �� ��������!����������Zgo.string."func(image.Rectangle) image.Point"���þZgo.string."func(image.Rectangle) image.Point"�P��Dfunc(image.Rectangle) image.Point��þ@type.func("".Rectangle) "".Point� �� ��������������¯]Ek�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) image.Point"���p��Rgo.weak.type.*func("".Rectangle) "".Point���€��"runtime.zerovalue��� €�@type.func("".Rectangle) "".Point���А�@type.func("".Rectangle) "".Point���€��"type."".Rectangle�����type."".Point���þ’go.typelink.func(image.Rectangle) image.Point func("".Rectangle) "".Point��������������@type.func("".Rectangle) "".Point���þ:go.string.hdr."func() string"� �� �������� ����������2go.string."func() string"���þ2go.string."func() string"� ��func() string��þ$type.func() string�����������������¢mË�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þNgo.typelink.func() string func() string��������������$type.func() string���þtype.*"".Point��ð��ð��������������=‘5Ë�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.Point"���p��.go.weak.type.**"".Point���€��"runtime.zerovalue�����type."".Point���` �type.*"".Point���Àð�type.*"".Point���ð��&go.string.hdr."Add"�����8type.func("".Point) "".Point��� ��Ntype.func(*"".Point, "".Point) "".Point���°��"".(*Point).Add���À��"".(*Point).Add���Ð��&go.string.hdr."Div"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Div��� ��"".(*Point).Div���°��$go.string.hdr."Eq"���Ð��0type.func("".Point) bool���à��Ftype.func(*"".Point, "".Point) bool���ð��"".(*Point).Eq���€��"".(*Point).Eq�����$go.string.hdr."In"���°��8type.func("".Rectangle) bool���À��Ntype.func(*"".Point, "".Rectangle) bool���Ð��"".(*Point).In���à��"".(*Point).In���ð��&go.string.hdr."Mod"�����@type.func("".Rectangle) "".Point��� ��Vtype.func(*"".Point, "".Rectangle) "".Point���°��"".(*Point).Mod���À��"".(*Point).Mod���Ð��&go.string.hdr."Mul"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Mul��� ��"".(*Point).Mul���°��,go.string.hdr."String"���Ð��$type.func() string���à��6type.func(*"".Point) string���ð��$"".(*Point).String���€��$"".(*Point).String�����&go.string.hdr."Sub"���°��8type.func("".Point) "".Point���À��Ntype.func(*"".Point, "".Point) "".Point���Ð��"".(*Point).Sub���à��"".(*Point).Sub���þruntime.gcbits.������þ6go.string.hdr."image.Point"� �� �������� ����������.go.string."image.Point"���þ.go.string."image.Point"� ��image.Point��þ"go.string.hdr."X"� �� ������������������go.string."X"���þgo.string."X"���X��þ"go.string.hdr."Y"� �� ������������������go.string."Y"���þgo.string."Y"���Y��þtgo.string.hdr."func(image.Point, image.Point) image.Point"� �� ��������*����������lgo.string."func(image.Point, image.Point) image.Point"���þlgo.string."func(image.Point, image.Point) image.Point"�`��Vfunc(image.Point, image.Point) image.Point��þLtype.func("".Point, "".Point) "".Point�°��°��������������z„m{�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(image.Point, image.Point) image.Point"���p��^go.weak.type.*func("".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�Ltype.func("".Point, "".Point) "".Point���Р�Ltype.func("".Point, "".Point) "".Point���€��type."".Point�����type."".Point��� ��type."".Point���þ°go.typelink.func(image.Point, image.Point) image.Point func("".Point, "".Point) "".Point��������������Ltype.func("".Point, "".Point) "".Point���þdgo.string.hdr."func(image.Point, int) image.Point"� �� ��������"����������\go.string."func(image.Point, int) image.Point"���þ\go.string."func(image.Point, int) image.Point"�P��Ffunc(image.Point, int) image.Point��þBtype.func("".Point, int) "".Point�°��°��������������Ø(de�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(image.Point, int) image.Point"���p��Tgo.weak.type.*func("".Point, int) "".Point���€��"runtime.zerovalue��� €�Btype.func("".Point, int) "".Point���Р�Btype.func("".Point, int) "".Point���€��type."".Point�����type.int��� ��type."".Point���þ–go.typelink.func(image.Point, int) image.Point func("".Point, int) "".Point��������������Btype.func("".Point, int) "".Point���þfgo.string.hdr."func(image.Point, image.Point) bool"� �� ��������#����������^go.string."func(image.Point, image.Point) bool"���þ^go.string."func(image.Point, image.Point) bool"�P��Hfunc(image.Point, image.Point) bool��þDtype.func("".Point, "".Point) bool�°��°��������������ãÊÀ3�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(image.Point, image.Point) bool"���p��Vgo.weak.type.*func("".Point, "".Point) bool���€��"runtime.zerovalue��� €�Dtype.func("".Point, "".Point) bool���Р�Dtype.func("".Point, "".Point) bool���€��type."".Point�����type."".Point��� ��type.bool���þšgo.typelink.func(image.Point, image.Point) bool func("".Point, "".Point) bool��������������Dtype.func("".Point, "".Point) bool���þngo.string.hdr."func(image.Point, image.Rectangle) bool"� �� ��������'����������fgo.string."func(image.Point, image.Rectangle) bool"���þfgo.string."func(image.Point, image.Rectangle) bool"�P��Pfunc(image.Point, image.Rectangle) bool��þLtype.func("".Point, "".Rectangle) bool�°��°�������������� �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(image.Point, image.Rectangle) bool"���p��^go.weak.type.*func("".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ltype.func("".Point, "".Rectangle) bool���Р�Ltype.func("".Point, "".Rectangle) bool���€��type."".Point�����"type."".Rectangle��� ��type.bool���þªgo.typelink.func(image.Point, image.Rectangle) bool func("".Point, "".Rectangle) bool��������������Ltype.func("".Point, "".Rectangle) bool���þ|go.string.hdr."func(image.Point, image.Rectangle) image.Point"� �� ��������.����������tgo.string."func(image.Point, image.Rectangle) image.Point"���þtgo.string."func(image.Point, image.Rectangle) image.Point"�`��^func(image.Point, image.Rectangle) image.Point��þTtype.func("".Point, "".Rectangle) "".Point�°��°��������������$#Íò�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(image.Point, image.Rectangle) image.Point"���p��fgo.weak.type.*func("".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�Ttype.func("".Point, "".Rectangle) "".Point���Р�Ttype.func("".Point, "".Rectangle) "".Point���€��type."".Point�����"type."".Rectangle��� ��type."".Point���þÀgo.typelink.func(image.Point, image.Rectangle) image.Point func("".Point, "".Rectangle) "".Point��������������Ttype.func("".Point, "".Rectangle) "".Point���þPgo.string.hdr."func(image.Point) string"� �� ������������������Hgo.string."func(image.Point) string"���þHgo.string."func(image.Point) string"�@��2func(image.Point) string��þ4type.func("".Point) string� �� ��������������Û,|º�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(image.Point) string"���p��Fgo.weak.type.*func("".Point) string���€��"runtime.zerovalue��� €�4type.func("".Point) string���А�4type.func("".Point) string���€��type."".Point�����type.string���þtgo.typelink.func(image.Point) string func("".Point) string��������������4type.func("".Point) string���þ"go.importpath."".� �� ������������������"go.string."image"���þtype."".Point��° ��° ���������������V[¼�™�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������l0À� runtime.algarray���@��runtime.gcbits.���P��6go.string.hdr."image.Point"���p��type.*"".Point���€��"runtime.zerovalue���À�type."".Point���À��"go.string.hdr."X"���à��type.int�����"go.string.hdr."Y"���°��type.int���`à�type."".Point���à��*go.string.hdr."Point"���ð��"go.importpath."".���€°�type."".Point���°��&go.string.hdr."Add"���Ð��8type.func("".Point) "".Point���à��Ltype.func("".Point, "".Point) "".Point���ð��"".(*Point).Add���€��"".Point.Add�����&go.string.hdr."Div"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Div���à��"".Point.Div���ð��$go.string.hdr."Eq"�����0type.func("".Point) bool��� ��Dtype.func("".Point, "".Point) bool���°��"".(*Point).Eq���À��"".Point.Eq���Ð��$go.string.hdr."In"���ð��8type.func("".Rectangle) bool���€��Ltype.func("".Point, "".Rectangle) bool�����"".(*Point).In��� ��"".Point.In���°��&go.string.hdr."Mod"���Ð��@type.func("".Rectangle) "".Point���à��Ttype.func("".Point, "".Rectangle) "".Point���ð��"".(*Point).Mod���€��"".Point.Mod�����&go.string.hdr."Mul"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Mul���à��"".Point.Mul���ð��,go.string.hdr."String"�����$type.func() string��� ��4type.func("".Point) string���°��$"".(*Point).String���À��"".Point.String���Ð��&go.string.hdr."Sub"���ð��8type.func("".Point) "".Point���€ ��Ltype.func("".Point, "".Point) "".Point��� ��"".(*Point).Sub���  ��"".Point.Sub���þ type..hashfunc32� �� �������� ����������,runtime.memhash_varlen���þtype..eqfunc32� �� �������� ����������.runtime.memequal_varlen���þtype..alg32� �� ������������������� type..hashfunc32�����type..eqfunc32���þ@go.string.hdr."*image.Rectangle"� �� ������������������8go.string."*image.Rectangle"���þ8go.string."*image.Rectangle"�0��"*image.Rectangle��þ2go.string.hdr."Rectangle"� �� �������� ����������*go.string."Rectangle"���þ*go.string."Rectangle"� ��Rectangle��þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·69076ee43f1cead0792b9f36906b1b56� �� �������������þ$go.string.hdr."Dx"� �� ������������������go.string."Dx"���þgo.string."Dx"���Dx��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þ$go.string.hdr."Dy"� �� ������������������go.string."Dy"���þgo.string."Dy"���Dy��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þ(go.string.hdr."Size"� �� ������������������ go.string."Size"���þ go.string."Size"���
Size��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·a041240a37ce609efec56707c330d1a4�������������þ*go.string.hdr."Inset"� �� ������������������"go.string."Inset"���þ"go.string."Inset"��� Inset��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ2go.string.hdr."Intersect"� �� �������� ����������*go.string."Intersect"���þ*go.string."Intersect"� ��Intersect��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·4d8bed7e4976e3d095a9230e496231af������ �������þ*go.string.hdr."Union"� �� ������������������"go.string."Union"���þ"go.string."Union"��� Union��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·4d8bed7e4976e3d095a9230e496231af������ �������þ*go.string.hdr."Empty"� �� ������������������"go.string."Empty"���þ"go.string."Empty"��� Empty��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3f5c1f818fa7055d0400cecd34057162�������������þTgclocals·406991e81a5d6b9f25174854f4bda0b5�(��(�����������������þTgclocals·adb3347b296419e60da36d67f8b7ce43�(��(����������������þ0go.string.hdr."Overlaps"� �� ������������������(go.string."Overlaps"���þ(go.string."Overlaps"� ��Overlaps��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a�������������þ*go.string.hdr."Canon"� �� ������������������"go.string."Canon"���þ"go.string."Canon"��� Canon��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ$go.string.hdr."At"� �� ������������������go.string."At"���þgo.string."At"���At��þTgclocals·64ca935d1a2110a30e2d604686188539� �� ���������������þTgclocals·762ef64d066b6f51173413f25bf7cca5� �� �������������þ,go.string.hdr."Bounds"� �� ������������������$go.string."Bounds"���þ$go.string."Bounds"���Bounds��þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·89fe65749ce0afc971c0982226501ff0�������������þ4go.string.hdr."ColorModel"� �� ��������
����������,go.string."ColorModel"���þ,go.string."ColorModel"� ��ColorModel��þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·cad14e25fd48dddd762418d02c031d67� �� �������������þ†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"� �� ��������3����������~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���þ~go.string."func(*image.Rectangle, image.Point) image.Rectangle"�p��hfunc(*image.Rectangle, image.Point) image.Rectangle��þ^type.func(*"".Rectangle, "".Point) "".Rectangle�°��°��������������7Øút�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��†go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"���p��pgo.weak.type.*func(*"".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�^type.func(*"".Rectangle, "".Point) "".Rectangle���Р�^type.func(*"".Rectangle, "".Point) "".Rectangle���€��$type.*"".Rectangle�����type."".Point��� ��"type."".Rectangle���þÔgo.typelink.func(*image.Rectangle, image.Point) image.Rectangle func(*"".Rectangle, "".Point) "".Rectangle��������������^type.func(*"".Rectangle, "".Point) "".Rectangle���þxgo.string.hdr."func(*image.Rectangle, int, int) color.Color"� �� ��������,����������pgo.string."func(*image.Rectangle, int, int) color.Color"���þpgo.string."func(*image.Rectangle, int, int) color.Color"�`��Zfunc(*image.Rectangle, int, int) color.Color��þhtype.func(*"".Rectangle, int, int) image/color.Color�À��À��������������K¸Öœ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Rectangle, int, int) color.Color"���p��zgo.weak.type.*func(*"".Rectangle, int, int) image/color.Color���€��"runtime.zerovalue��� €�htype.func(*"".Rectangle, int, int) image/color.Color���а�htype.func(*"".Rectangle, int, int) image/color.Color���€��$type.*"".Rectangle�����type.int��� ��type.int���°��,type.image/color.Color���þÐgo.typelink.func(*image.Rectangle, int, int) color.Color func(*"".Rectangle, int, int) image/color.Color��������������htype.func(*"".Rectangle, int, int) image/color.Color���þlgo.string.hdr."func(*image.Rectangle) image.Rectangle"� �� ��������&����������dgo.string."func(*image.Rectangle) image.Rectangle"���þdgo.string."func(*image.Rectangle) image.Rectangle"�P��Nfunc(*image.Rectangle) image.Rectangle��þJtype.func(*"".Rectangle) "".Rectangle� �� ��������������ŒP2]�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Rectangle) image.Rectangle"���p��\go.weak.type.*func(*"".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Jtype.func(*"".Rectangle) "".Rectangle���А�Jtype.func(*"".Rectangle) "".Rectangle���€��$type.*"".Rectangle�����"type."".Rectangle���þ¦go.typelink.func(*image.Rectangle) image.Rectangle func(*"".Rectangle) "".Rectangle��������������Jtype.func(*"".Rectangle) "".Rectangle���þdgo.string.hdr."func(*image.Rectangle) color.Model"� �� ��������"����������\go.string."func(*image.Rectangle) color.Model"���þ\go.string."func(*image.Rectangle) color.Model"�P��Ffunc(*image.Rectangle) color.Model��þTtype.func(*"".Rectangle) image/color.Model� �� ��������������§Õ]�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Rectangle) color.Model"���p��fgo.weak.type.*func(*"".Rectangle) image/color.Model���€��"runtime.zerovalue��� €�Ttype.func(*"".Rectangle) image/color.Model���А�Ttype.func(*"".Rectangle) image/color.Model���€��$type.*"".Rectangle�����,type.image/color.Model���þ¨go.typelink.func(*image.Rectangle) color.Model func(*"".Rectangle) image/color.Model��������������Ttype.func(*"".Rectangle) image/color.Model���þTgo.string.hdr."func(*image.Rectangle) int"� �� ������������������Lgo.string."func(*image.Rectangle) int"���þLgo.string."func(*image.Rectangle) int"�@��6func(*image.Rectangle) int��þ8type.func(*"".Rectangle) int� �� ��������������áç§@�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*image.Rectangle) int"���p��Jgo.weak.type.*func(*"".Rectangle) int���€��"runtime.zerovalue��� €�8type.func(*"".Rectangle) int���А�8type.func(*"".Rectangle) int���€��$type.*"".Rectangle�����type.int���þ|go.typelink.func(*image.Rectangle) int func(*"".Rectangle) int��������������8type.func(*"".Rectangle) int���þVgo.string.hdr."func(*image.Rectangle) bool"� �� ������������������Ngo.string."func(*image.Rectangle) bool"���þNgo.string."func(*image.Rectangle) bool"�@��8func(*image.Rectangle) bool��þ:type.func(*"".Rectangle) bool� �� ��������������ro��3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(*image.Rectangle) bool"���p��Lgo.weak.type.*func(*"".Rectangle) bool���€��"runtime.zerovalue��� €�:type.func(*"".Rectangle) bool���А�:type.func(*"".Rectangle) bool���€��$type.*"".Rectangle�����type.bool���þ€go.typelink.func(*image.Rectangle) bool func(*"".Rectangle) bool��������������:type.func(*"".Rectangle) bool���þxgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"� �� ��������,����������pgo.string."func(*image.Rectangle, image.Rectangle) bool"���þpgo.string."func(*image.Rectangle, image.Rectangle) bool"�`��Zfunc(*image.Rectangle, image.Rectangle) bool��þVtype.func(*"".Rectangle, "".Rectangle) bool�°��°��������������‹ @¶�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"���p��hgo.weak.type.*func(*"".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�Vtype.func(*"".Rectangle, "".Rectangle) bool���Р�Vtype.func(*"".Rectangle, "".Rectangle) bool���€��$type.*"".Rectangle�����"type."".Rectangle��� ��type.bool���þ¾go.typelink.func(*image.Rectangle, image.Rectangle) bool func(*"".Rectangle, "".Rectangle) bool��������������Vtype.func(*"".Rectangle, "".Rectangle) bool���þvgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"� �� ��������+����������ngo.string."func(*image.Rectangle, int) image.Rectangle"���þngo.string."func(*image.Rectangle, int) image.Rectangle"�`��Xfunc(*image.Rectangle, int) image.Rectangle��þTtype.func(*"".Rectangle, int) "".Rectangle�°��°��������������Ògš�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"���p��fgo.weak.type.*func(*"".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�Ttype.func(*"".Rectangle, int) "".Rectangle���Р�Ttype.func(*"".Rectangle, int) "".Rectangle���€��$type.*"".Rectangle�����type.int��� ��"type."".Rectangle���þºgo.typelink.func(*image.Rectangle, int) image.Rectangle func(*"".Rectangle, int) "".Rectangle��������������Ttype.func(*"".Rectangle, int) "".Rectangle���þŽgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"� �� ��������7����������†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"���þ†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"�p��pfunc(*image.Rectangle, image.Rectangle) image.Rectangle��þftype.func(*"".Rectangle, "".Rectangle) "".Rectangle�°��°��������������:çÃ¥�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Žgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"���p��xgo.weak.type.*func(*"".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���Р�ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���€��$type.*"".Rectangle�����"type."".Rectangle��� ��"type."".Rectangle���þägo.typelink.func(*image.Rectangle, image.Rectangle) image.Rectangle func(*"".Rectangle, "".Rectangle) "".Rectangle��������������ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���þdgo.string.hdr."func(*image.Rectangle) image.Point"� �� ��������"����������\go.string."func(*image.Rectangle) image.Point"���þ\go.string."func(*image.Rectangle) image.Point"�P��Ffunc(*image.Rectangle) image.Point��þBtype.func(*"".Rectangle) "".Point� �� ��������������v÷I�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Rectangle) image.Point"���p��Tgo.weak.type.*func(*"".Rectangle) "".Point���€��"runtime.zerovalue��� €�Btype.func(*"".Rectangle) "".Point���А�Btype.func(*"".Rectangle) "".Point���€��$type.*"".Rectangle�����type."".Point���þ–go.typelink.func(*image.Rectangle) image.Point func(*"".Rectangle) "".Point��������������Btype.func(*"".Rectangle) "".Point���þZgo.string.hdr."func(*image.Rectangle) string"� �� ������������������Rgo.string."func(*image.Rectangle) string"���þRgo.string."func(*image.Rectangle) string"�@��<func(*image.Rectangle) string��þ>type.func(*"".Rectangle) string� �� ��������������€_5�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.Rectangle) string"���p��Pgo.weak.type.*func(*"".Rectangle) string���€��"runtime.zerovalue��� €�>type.func(*"".Rectangle) string���А�>type.func(*"".Rectangle) string���€��$type.*"".Rectangle�����type.string���þˆgo.typelink.func(*image.Rectangle) string func(*"".Rectangle) string��������������>type.func(*"".Rectangle) string���þbgo.string.hdr."func(image.Point) image.Rectangle"� �� ��������!����������Zgo.string."func(image.Point) image.Rectangle"���þZgo.string."func(image.Point) image.Rectangle"�P��Dfunc(image.Point) image.Rectangle��þ@type.func("".Point) "".Rectangle� �� ��������������ÇmËQ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Point) image.Rectangle"���p��Rgo.weak.type.*func("".Point) "".Rectangle���€��"runtime.zerovalue��� €�@type.func("".Point) "".Rectangle���А�@type.func("".Point) "".Rectangle���€��type."".Point�����"type."".Rectangle���þ’go.typelink.func(image.Point) image.Rectangle func("".Point) "".Rectangle��������������@type.func("".Point) "".Rectangle���þDgo.string.hdr."func() color.Model"� �� ������������������<go.string."func() color.Model"���þ<go.string."func() color.Model"�0��&func() color.Model��þ:type.func() image/color.Model�����������������‚{#�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func() color.Model"���p��Lgo.weak.type.*func() image/color.Model���€��"runtime.zerovalue��� €�:type.func() image/color.Model���Ѐ�:type.func() image/color.Model���€��,type.image/color.Model���þngo.typelink.func() color.Model func() image/color.Model��������������:type.func() image/color.Model���þ4go.string.hdr."func() int"� �� ��������
����������,go.string."func() int"���þ,go.string."func() int"� ��func() int��þtype.func() int�����������������å†9à�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."func() int"���p��0go.weak.type.*func() int���€��"runtime.zerovalue��� €�type.func() int���Ѐ�type.func() int���€��type.int���þBgo.typelink.func() int func() int��������������type.func() int���þ6go.string.hdr."func() bool"� �� �������� ����������.go.string."func() bool"���þ.go.string."func() bool"� ��func() bool��þ type.func() bool�����������������TËx�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."func() bool"���p��2go.weak.type.*func() bool���€��"runtime.zerovalue��� €� type.func() bool���Ѐ� type.func() bool���€��type.bool���þFgo.typelink.func() bool func() bool�������������� type.func() bool���þRgo.string.hdr."func(int) image.Rectangle"� �� ������������������Jgo.string."func(int) image.Rectangle"���þJgo.string."func(int) image.Rectangle"�@��4func(int) image.Rectangle��þ6type.func(int) "".Rectangle� �� ��������������À¹,e�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int) image.Rectangle"���p��Hgo.weak.type.*func(int) "".Rectangle���€��"runtime.zerovalue��� €�6type.func(int) "".Rectangle���А�6type.func(int) "".Rectangle���€��type.int�����"type."".Rectangle���þxgo.typelink.func(int) image.Rectangle func(int) "".Rectangle��������������6type.func(int) "".Rectangle���þjgo.string.hdr."func(image.Rectangle) image.Rectangle"� �� ��������%����������bgo.string."func(image.Rectangle) image.Rectangle"���þbgo.string."func(image.Rectangle) image.Rectangle"�P��Lfunc(image.Rectangle) image.Rectangle��þHtype.func("".Rectangle) "".Rectangle� �� ��������������a? B�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(image.Rectangle) image.Rectangle"���p��Zgo.weak.type.*func("".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func("".Rectangle) "".Rectangle���А�Htype.func("".Rectangle) "".Rectangle���€��"type."".Rectangle�����"type."".Rectangle���þ¢go.typelink.func(image.Rectangle) image.Rectangle func("".Rectangle) "".Rectangle��������������Htype.func("".Rectangle) "".Rectangle���þDgo.string.hdr."func() image.Point"� �� ������������������<go.string."func() image.Point"���þ<go.string."func() image.Point"�0��&func() image.Point��þ(type.func() "".Point�����������������$*|õ�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func() image.Point"���p��:go.weak.type.*func() "".Point���€��"runtime.zerovalue��� €�(type.func() "".Point���Ѐ�(type.func() "".Point���€��type."".Point���þ\go.typelink.func() image.Point func() "".Point��������������(type.func() "".Point���þ$type.*"".Rectangle��Ð��Ð��������������DðÊ�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������º0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."*image.Rectangle"���p��6go.weak.type.**"".Rectangle���€��"runtime.zerovalue�����"type."".Rectangle���` �$type.*"".Rectangle���Àð�$type.*"".Rectangle���ð��&go.string.hdr."Add"�����@type.func("".Point) "".Rectangle��� ��^type.func(*"".Rectangle, "".Point) "".Rectangle���°��&"".(*Rectangle).Add���À��&"".(*Rectangle).Add���Ð��$go.string.hdr."At"���ð��Jtype.func(int, int) image/color.Color���€��htype.func(*"".Rectangle, int, int) image/color.Color�����$"".(*Rectangle).At��� ��$"".(*Rectangle).At���°��,go.string.hdr."Bounds"���Ð��0type.func() "".Rectangle���à��Jtype.func(*"".Rectangle) "".Rectangle���ð��,"".(*Rectangle).Bounds���€��,"".(*Rectangle).Bounds�����*go.string.hdr."Canon"���°��0type.func() "".Rectangle���À��Jtype.func(*"".Rectangle) "".Rectangle���Ð��*"".(*Rectangle).Canon���à��*"".(*Rectangle).Canon���ð��4go.string.hdr."ColorModel"�����:type.func() image/color.Model��� ��Ttype.func(*"".Rectangle) image/color.Model���°��4"".(*Rectangle).ColorModel���À��4"".(*Rectangle).ColorModel���Ð��$go.string.hdr."Dx"���ð��type.func() int���€��8type.func(*"".Rectangle) int�����$"".(*Rectangle).Dx��� ��$"".(*Rectangle).Dx���°��$go.string.hdr."Dy"���Ð��type.func() int���à��8type.func(*"".Rectangle) int���ð��$"".(*Rectangle).Dy���€��$"".(*Rectangle).Dy�����*go.string.hdr."Empty"���°�� type.func() bool���À��:type.func(*"".Rectangle) bool���Ð��*"".(*Rectangle).Empty���à��*"".(*Rectangle).Empty���ð��$go.string.hdr."Eq"�����8type.func("".Rectangle) bool��� ��Vtype.func(*"".Rectangle, "".Rectangle) bool���°��$"".(*Rectangle).Eq���À��$"".(*Rectangle).Eq���Ð��$go.string.hdr."In"���ð��8type.func("".Rectangle) bool���€ ��Vtype.func(*"".Rectangle, "".Rectangle) bool��� ��$"".(*Rectangle).In���  ��$"".(*Rectangle).In���° ��*go.string.hdr."Inset"���Ð ��6type.func(int) "".Rectangle���à ��Ttype.func(*"".Rectangle, int) "".Rectangle���ð ��*"".(*Rectangle).Inset���€
��*"".(*Rectangle).Inset���
��2go.string.hdr."Intersect"���°
��Htype.func("".Rectangle) "".Rectangle�����ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���Ð
��2"".(*Rectangle).Intersect���à
��2"".(*Rectangle).Intersect���ð
��0go.string.hdr."Overlaps"��� ��8type.func("".Rectangle) bool���  ��Vtype.func(*"".Rectangle, "".Rectangle) bool���° ��0"".(*Rectangle).Overlaps���À ��0"".(*Rectangle).Overlaps���Ð ��(go.string.hdr."Size"���ð ��(type.func() "".Point���€ ��Btype.func(*"".Rectangle) "".Point��� ��("".(*Rectangle).Size���  ��("".(*Rectangle).Size���° ��,go.string.hdr."String"���Ð ��$type.func() string���à ��>type.func(*"".Rectangle) string���ð ��,"".(*Rectangle).String���€ ��,"".(*Rectangle).String��� ��&go.string.hdr."Sub"���° ��@type.func("".Point) "".Rectangle���À ��^type.func(*"".Rectangle, "".Point) "".Rectangle���Ð ��&"".(*Rectangle).Sub���à ��&"".(*Rectangle).Sub���ð ��*go.string.hdr."Union"�����Htype.func("".Rectangle) "".Rectangle��� ��ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���°��*"".(*Rectangle).Union���À��*"".(*Rectangle).Union���þ>go.string.hdr."image.Rectangle"� �� ������������������6go.string."image.Rectangle"���þ6go.string."image.Rectangle"� �� image.Rectangle��þ&go.string.hdr."Min"� �� ������������������go.string."Min"���þgo.string."Min"���Min��þ&go.string.hdr."Max"� �� ������������������go.string."Max"���þgo.string."Max"���Max��þ„go.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"� �� ��������2����������|go.string."func(image.Rectangle, image.Point) image.Rectangle"���þ|go.string."func(image.Rectangle, image.Point) image.Rectangle"�p��ffunc(image.Rectangle, image.Point) image.Rectangle��þ\type.func("".Rectangle, "".Point) "".Rectangle�°��°��������������·ç�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"���p��ngo.weak.type.*func("".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�\type.func("".Rectangle, "".Point) "".Rectangle���Р�\type.func("".Rectangle, "".Point) "".Rectangle���€��"type."".Rectangle�����type."".Point��� ��"type."".Rectangle���þÐgo.typelink.func(image.Rectangle, image.Point) image.Rectangle func("".Rectangle, "".Point) "".Rectangle��������������\type.func("".Rectangle, "".Point) "".Rectangle���þvgo.string.hdr."func(image.Rectangle, int, int) color.Color"� �� ��������+����������ngo.string."func(image.Rectangle, int, int) color.Color"���þngo.string."func(image.Rectangle, int, int) color.Color"�`��Xfunc(image.Rectangle, int, int) color.Color��þftype.func("".Rectangle, int, int) image/color.Color�À��À���������������ÛÑ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(image.Rectangle, int, int) color.Color"���p��xgo.weak.type.*func("".Rectangle, int, int) image/color.Color���€��"runtime.zerovalue��� €�ftype.func("".Rectangle, int, int) image/color.Color���а�ftype.func("".Rectangle, int, int) image/color.Color���€��"type."".Rectangle�����type.int��� ��type.int���°��,type.image/color.Color���þÌgo.typelink.func(image.Rectangle, int, int) color.Color func("".Rectangle, int, int) image/color.Color��������������ftype.func("".Rectangle, int, int) image/color.Color���þbgo.string.hdr."func(image.Rectangle) color.Model"� �� ��������!����������Zgo.string."func(image.Rectangle) color.Model"���þZgo.string."func(image.Rectangle) color.Model"�P��Dfunc(image.Rectangle) color.Model��þRtype.func("".Rectangle) image/color.Model� �� ��������������‰aßÕ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) color.Model"���p��dgo.weak.type.*func("".Rectangle) image/color.Model���€��"runtime.zerovalue��� €�Rtype.func("".Rectangle) image/color.Model���А�Rtype.func("".Rectangle) image/color.Model���€��"type."".Rectangle�����,type.image/color.Model���þ¤go.typelink.func(image.Rectangle) color.Model func("".Rectangle) image/color.Model��������������Rtype.func("".Rectangle) image/color.Model���þRgo.string.hdr."func(image.Rectangle) int"� �� ������������������Jgo.string."func(image.Rectangle) int"���þJgo.string."func(image.Rectangle) int"�@��4func(image.Rectangle) int��þ6type.func("".Rectangle) int� �� ��������������ç9Y¼�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(image.Rectangle) int"���p��Hgo.weak.type.*func("".Rectangle) int���€��"runtime.zerovalue��� €�6type.func("".Rectangle) int���А�6type.func("".Rectangle) int���€��"type."".Rectangle�����type.int���þxgo.typelink.func(image.Rectangle) int func("".Rectangle) int��������������6type.func("".Rectangle) int���þvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"� �� ��������+����������ngo.string."func(image.Rectangle, image.Rectangle) bool"���þngo.string."func(image.Rectangle, image.Rectangle) bool"�`��Xfunc(image.Rectangle, image.Rectangle) bool��þTtype.func("".Rectangle, "".Rectangle) bool�°��°��������������ÿ˜8Ñ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"���p��fgo.weak.type.*func("".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ttype.func("".Rectangle, "".Rectangle) bool���Р�Ttype.func("".Rectangle, "".Rectangle) bool���€��"type."".Rectangle�����"type."".Rectangle��� ��type.bool���þºgo.typelink.func(image.Rectangle, image.Rectangle) bool func("".Rectangle, "".Rectangle) bool��������������Ttype.func("".Rectangle, "".Rectangle) bool���þtgo.string.hdr."func(image.Rectangle, int) image.Rectangle"� �� ��������*����������lgo.string."func(image.Rectangle, int) image.Rectangle"���þlgo.string."func(image.Rectangle, int) image.Rectangle"�`��Vfunc(image.Rectangle, int) image.Rectangle��þRtype.func("".Rectangle, int) "".Rectangle�°��°��������������}dÎ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(image.Rectangle, int) image.Rectangle"���p��dgo.weak.type.*func("".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�Rtype.func("".Rectangle, int) "".Rectangle���Р�Rtype.func("".Rectangle, int) "".Rectangle���€��"type."".Rectangle�����type.int��� ��"type."".Rectangle���þ¶go.typelink.func(image.Rectangle, int) image.Rectangle func("".Rectangle, int) "".Rectangle��������������Rtype.func("".Rectangle, int) "".Rectangle���þŒgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"� �� ��������6����������„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���þ„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"�p��nfunc(image.Rectangle, image.Rectangle) image.Rectangle��þdtype.func("".Rectangle, "".Rectangle) "".Rectangle�°��°��������������M_Eå�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Œgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"���p��vgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�dtype.func("".Rectangle, "".Rectangle) "".Rectangle���Р�dtype.func("".Rectangle, "".Rectangle) "".Rectangle���€��"type."".Rectangle�����"type."".Rectangle��� ��"type."".Rectangle���þàgo.typelink.func(image.Rectangle, image.Rectangle) image.Rectangle func("".Rectangle, "".Rectangle) "".Rectangle��������������dtype.func("".Rectangle, "".Rectangle) "".Rectangle���þXgo.string.hdr."func(image.Rectangle) string"� �� ������������������Pgo.string."func(image.Rectangle) string"���þPgo.string."func(image.Rectangle) string"�@��:func(image.Rectangle) string��þ<type.func("".Rectangle) string� �� ��������������¨Ü7b�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(image.Rectangle) string"���p��Ngo.weak.type.*func("".Rectangle) string���€��"runtime.zerovalue��� €�<type.func("".Rectangle) string���А�<type.func("".Rectangle) string���€��"type."".Rectangle�����type.string���þ„go.typelink.func(image.Rectangle) string func("".Rectangle) string��������������<type.func("".Rectangle) string���þ"type."".Rectangle���� ���������������£•—É�™�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Æ0��type..alg32���@��runtime.gcbits.���P��>go.string.hdr."image.Rectangle"���p��$type.*"".Rectangle���€��"runtime.zerovalue���À�"type."".Rectangle���À��&go.string.hdr."Min"���à��type."".Point�����&go.string.hdr."Max"���°��type."".Point���`à�"type."".Rectangle���à��2go.string.hdr."Rectangle"���ð��"go.importpath."".���€°�"type."".Rectangle���°��&go.string.hdr."Add"���Ð��@type.func("".Point) "".Rectangle���à��\type.func("".Rectangle, "".Point) "".Rectangle���ð��&"".(*Rectangle).Add���€�� "".Rectangle.Add�����$go.string.hdr."At"���°��Jtype.func(int, int) image/color.Color���À��ftype.func("".Rectangle, int, int) image/color.Color���Ð��$"".(*Rectangle).At���à��"".Rectangle.At���ð��,go.string.hdr."Bounds"�����0type.func() "".Rectangle��� ��Htype.func("".Rectangle) "".Rectangle���°��,"".(*Rectangle).Bounds���À��&"".Rectangle.Bounds���Ð��*go.string.hdr."Canon"���ð��0type.func() "".Rectangle���€��Htype.func("".Rectangle) "".Rectangle�����*"".(*Rectangle).Canon��� ��$"".Rectangle.Canon���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Rtype.func("".Rectangle) image/color.Model���ð��4"".(*Rectangle).ColorModel���€��."".Rectangle.ColorModel�����$go.string.hdr."Dx"���°��type.func() int���À��6type.func("".Rectangle) int���Ð��$"".(*Rectangle).Dx���à��"".Rectangle.Dx���ð��$go.string.hdr."Dy"�����type.func() int��� ��6type.func("".Rectangle) int���°��$"".(*Rectangle).Dy���À��"".Rectangle.Dy���Ð��*go.string.hdr."Empty"���ð�� type.func() bool���€ ��8type.func("".Rectangle) bool��� ��*"".(*Rectangle).Empty���  ��$"".Rectangle.Empty���° ��$go.string.hdr."Eq"���Ð ��8type.func("".Rectangle) bool���à ��Ttype.func("".Rectangle, "".Rectangle) bool���ð ��$"".(*Rectangle).Eq���€
��"".Rectangle.Eq���
��$go.string.hdr."In"���°
��8type.func("".Rectangle) bool�����Ttype.func("".Rectangle, "".Rectangle) bool���Ð
��$"".(*Rectangle).In���à
��"".Rectangle.In���ð
��*go.string.hdr."Inset"��� ��6type.func(int) "".Rectangle���  ��Rtype.func("".Rectangle, int) "".Rectangle���° ��*"".(*Rectangle).Inset���À ��$"".Rectangle.Inset���Ð ��2go.string.hdr."Intersect"���ð ��Htype.func("".Rectangle) "".Rectangle���€ ��dtype.func("".Rectangle, "".Rectangle) "".Rectangle��� ��2"".(*Rectangle).Intersect���  ��,"".Rectangle.Intersect���° ��0go.string.hdr."Overlaps"���Ð ��8type.func("".Rectangle) bool���à ��Ttype.func("".Rectangle, "".Rectangle) bool���ð ��0"".(*Rectangle).Overlaps���€ ��*"".Rectangle.Overlaps��� ��(go.string.hdr."Size"���° ��(type.func() "".Point���À ��@type.func("".Rectangle) "".Point���Ð ��("".(*Rectangle).Size���à ��""".Rectangle.Size���ð ��,go.string.hdr."String"�����$type.func() string��� ��<type.func("".Rectangle) string���°��,"".(*Rectangle).String���À��&"".Rectangle.String���Ð��&go.string.hdr."Sub"���ð��@type.func("".Point) "".Rectangle���€��\type.func("".Rectangle, "".Point) "".Rectangle�����&"".(*Rectangle).Sub��� �� "".Rectangle.Sub���°��*go.string.hdr."Union"���Ð��Htype.func("".Rectangle) "".Rectangle���à��dtype.func("".Rectangle, "".Rectangle) "".Rectangle���ð��*"".(*Rectangle).Union���€��$"".Rectangle.Union���þLgo.string.hdr."func() image.Rectangle"� �� ������������������Dgo.string."func() image.Rectangle"���þDgo.string."func() image.Rectangle"�0��.func() image.Rectangle��þ0type.func() "".Rectangle�����������������ìÍ´e�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func() image.Rectangle"���p��Bgo.weak.type.*func() "".Rectangle���€��"runtime.zerovalue��� €�0type.func() "".Rectangle���Ѐ�0type.func() "".Rectangle���€��"type."".Rectangle���þlgo.typelink.func() image.Rectangle func() "".Rectangle��������������0type.func() "".Rectangle���þ8go.string.hdr."*image.Image"� �� �������� ����������0go.string."*image.Image"���þ0go.string."*image.Image"� ��*image.Image��þtype.*"".Image�� �� ��������������CL¨è�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.Image"���p��.go.weak.type.**"".Image���€��"runtime.zerovalue�����type."".Image���þ"runtime.gcbits.03����þ6go.string.hdr."image.Image"� �� �������� ����������.go.string."image.Image"���þ.go.string."image.Image"� ��image.Image��þ*go.string.hdr."Image"� �� ������������������"go.string."Image"���þ"go.string."Image"��� Image��þtype."".Image�� �� ��������������ÜSÍ®��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.03���P��6go.string.hdr."image.Image"���p��type.*"".Image���€��"runtime.zerovalue���À�type."".Image���À��$go.string.hdr."At"���à��Jtype.func(int, int) image/color.Color���ð��,go.string.hdr."Bounds"�����0type.func() "".Rectangle��� ��4go.string.hdr."ColorModel"���À��:type.func() image/color.Model���`Ð�type."".Image���Ð��*go.string.hdr."Image"���à��"go.importpath."".���ð �type."".Image���þhgo.string.hdr."func(io.Reader) (image.Image, error)"� �� ��������$����������`go.string."func(io.Reader) (image.Image, error)"���þ`go.string."func(io.Reader) (image.Image, error)"�P��Jfunc(io.Reader) (image.Image, error)��þLtype.func(io.Reader) ("".Image, error)�°��°��������������‚ïº@�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(io.Reader) (image.Image, error)"���p��^go.weak.type.*func(io.Reader) ("".Image, error)���€��"runtime.zerovalue��� €�Ltype.func(io.Reader) ("".Image, error)���А�Ltype.func(io.Reader) ("".Image, error)���€��type.io.Reader�����type."".Image��� ��type.error���þ¤go.typelink.func(io.Reader) (image.Image, error) func(io.Reader) ("".Image, error)��������������Ltype.func(io.Reader) ("".Image, error)���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ0type..hashfunc."".Config��������������(type..hash."".Config���þ,type..eqfunc."".Config��������������$type..eq."".Config���þ&type..alg."".Config� �� �������������������0type..hashfunc."".Config�����,type..eqfunc."".Config���þ:go.string.hdr."*image.Config"� �� �������� ����������2go.string."*image.Config"���þ2go.string."*image.Config"� ��*image.Config��þtype.*"".Config�� �� ��������������³`y�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.Config"���p��0go.weak.type.**"".Config���€��"runtime.zerovalue�����type."".Config���þ8go.string.hdr."image.Config"� �� �������� ����������0go.string."image.Config"���þ0go.string."image.Config"� ��image.Config��þ*go.string.hdr."Width"� �� ������������������"go.string."Width"���þ"go.string."Width"��� Width��þ,go.string.hdr."Height"� �� ������������������$go.string."Height"���þ$go.string."Height"���Height��þ,go.string.hdr."Config"� �� ������������������$go.string."Config"���þ$go.string."Config"���Config��þtype."".Config��€��€ ��������������Y³¯g������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� 0��&type..alg."".Config���@��"runtime.gcbits.03���P��8go.string.hdr."image.Config"���p��type.*"".Config���€��"runtime.zerovalue���À�type."".Config���À��4go.string.hdr."ColorModel"���à��,type.image/color.Model�����*go.string.hdr."Width"���°��type.int���à��,go.string.hdr."Height"���€��type.int���`°�type."".Config���°��,go.string.hdr."Config"���À��"go.importpath."".���Ѐ�type."".Config���þjgo.string.hdr."func(io.Reader) (image.Config, error)"� �� ��������%����������bgo.string."func(io.Reader) (image.Config, error)"���þbgo.string."func(io.Reader) (image.Config, error)"�P��Lfunc(io.Reader) (image.Config, error)��þNtype.func(io.Reader) ("".Config, error)�°��°��������������ã3/ö�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(io.Reader) (image.Config, error)"���p��`go.weak.type.*func(io.Reader) ("".Config, error)���€��"runtime.zerovalue��� €�Ntype.func(io.Reader) ("".Config, error)���А�Ntype.func(io.Reader) ("".Config, error)���€��type.io.Reader�����type."".Config��� ��type.error���þ¨go.typelink.func(io.Reader) (image.Config, error) func(io.Reader) ("".Config, error)��������������Ntype.func(io.Reader) ("".Config, error)���þ:go.string.hdr."*image.format"� �� �������� ����������2go.string."*image.format"���þ2go.string."*image.format"� ��*image.format��þtype.*"".format�� �� ��������������ÃQ@M�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.format"���p��0go.weak.type.**"".format���€��"runtime.zerovalue�����type."".format���þ"runtime.gcbits.35���5�þ8go.string.hdr."image.format"� �� �������� ����������0go.string."image.format"���þ0go.string."image.format"� ��image.format��þ(go.string.hdr."name"� �� ������������������ go.string."name"���þ go.string."name"���
name��þ*go.string.hdr."magic"� �� ������������������"go.string."magic"���þ"go.string."magic"��� magic��þ,go.string.hdr."decode"� �� ������������������$go.string."decode"���þ$go.string."decode"���decode��þ8go.string.hdr."decodeConfig"� �� �������� ����������0go.string."decodeConfig"���þ0go.string."decodeConfig"� ��decodeConfig��þ,go.string.hdr."format"� �� ������������������$go.string."format"���þ$go.string."format"���format��þtype."".format��Ð��Ð0�������0�������ˆ@7¨�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������(�����������������������������������������������,0à� runtime.algarray���@��"runtime.gcbits.35���P��8go.string.hdr."image.format"���p��type.*"".format���€��"runtime.zerovalue���À�type."".format���À��(go.string.hdr."name"���Ð��"go.importpath."".���à��type.string�����*go.string.hdr."magic"��� ��"go.importpath."".���°��type.string���à��,go.string.hdr."decode"���ð��"go.importpath."".���€��Ltype.func(io.Reader) ("".Image, error)���°��8go.string.hdr."decodeConfig"���À��"go.importpath."".���Ð��Ntype.func(io.Reader) ("".Config, error)���`€�type."".format���€��,go.string.hdr."format"�����"go.importpath."".��� Ð�type."".format���þ<go.string.hdr."[]image.format"� �� ������������������4go.string."[]image.format"���þ4go.string."[]image.format"� ��[]image.format��þ type.[]"".format� �� ��������������2{1��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."[]image.format"���p��2go.weak.type.*[]"".format���€��"runtime.zerovalue�����type."".format���þLgo.typelink.[]image.format []"".format�������������� type.[]"".format���þTgclocals·98a935522f11e180b06d5a082b7d09c1� �� ���������������þTgclocals·dbd89ae4a4266b5bfeafd78285762b2a� �� ���������Ë����þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·d2fd9951e910becfd07ba7f8ff7b525a� �� ���������Ç����þ.go.string.hdr."[]uint8"� �� ������������������&go.string."[]uint8"���þ&go.string."[]uint8"���[]uint8��þtype.[]uint8� �� ��������������ß~.8��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8 []uint8��������������type.[]uint8���þTgo.string.hdr."func(int) ([]uint8, error)"� �� ������������������Lgo.string."func(int) ([]uint8, error)"���þLgo.string."func(int) ([]uint8, error)"�@��6func(int) ([]uint8, error)��þ>type.func(int) ([]uint8, error)�°��°��������������<bCË�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int) ([]uint8, error)"���p��Pgo.weak.type.*func(int) ([]uint8, error)���€��"runtime.zerovalue��� €�>type.func(int) ([]uint8, error)���А�>type.func(int) ([]uint8, error)���€��type.int�����type.[]uint8��� ��type.error���þ‚go.typelink.func(int) ([]uint8, error) func(int) ([]uint8, error)��������������>type.func(int) ([]uint8, error)���þTgo.string.hdr."func([]uint8) (int, error)"� �� ������������������Lgo.string."func([]uint8) (int, error)"���þLgo.string."func([]uint8) (int, error)"�@��6func([]uint8) (int, error)��þ>type.func([]uint8) (int, error)�°��°��������������„N4P�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func([]uint8) (int, error)"���p��Pgo.weak.type.*func([]uint8) (int, error)���€��"runtime.zerovalue��� €�>type.func([]uint8) (int, error)���А�>type.func([]uint8) (int, error)���€��type.[]uint8�����type.int��� ��type.error���þ‚go.typelink.func([]uint8) (int, error) func([]uint8) (int, error)��������������>type.func([]uint8) (int, error)���þ:go.string.hdr."*image.reader"� �� �������� ����������2go.string."*image.reader"���þ2go.string."*image.reader"� ��*image.reader��þtype.*"".reader�� �� ��������������Œˆ–�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.reader"���p��0go.weak.type.**"".reader���€��"runtime.zerovalue�����type."".reader���þ8go.string.hdr."image.reader"� �� �������� ����������0go.string."image.reader"���þ0go.string."image.reader"� ��image.reader��þ(go.string.hdr."Peek"� �� ������������������ go.string."Peek"���þ go.string."Peek"���
Peek��þ(go.string.hdr."Read"� �� ������������������ go.string."Read"���þ go.string."Read"���
Read��þ,go.string.hdr."reader"� �� ������������������$go.string."reader"���þ$go.string."reader"���reader��þtype."".reader��ð��ð�������������� ²€���������������������������������������������������������������������������������������������������������������������������������������������������������������0à� runtime.algarray���@��"runtime.gcbits.03���P��8go.string.hdr."image.reader"���p��type.*"".reader���€��"runtime.zerovalue���À�type."".reader���À��(go.string.hdr."Peek"���à��>type.func(int) ([]uint8, error)���ð��(go.string.hdr."Read"�����>type.func([]uint8) (int, error)���` �type."".reader��� ��,go.string.hdr."reader"���°��"go.importpath."".���Àð�type."".reader���þ4go.string.hdr."image.RGBA"� �� ��������
����������,go.string."image.RGBA"���þ,go.string."image.RGBA"� ��image.RGBA��þ&go.string.hdr."Pix"� �� ������������������go.string."Pix"���þgo.string."Pix"���Pix��þ,go.string.hdr."Stride"� �� ������������������$go.string."Stride"���þ$go.string."Stride"���Stride��þ(go.string.hdr."Rect"� �� ������������������ go.string."Rect"���þ go.string."Rect"���
Rect��þ(go.string.hdr."RGBA"� �� ������������������ go.string."RGBA"���þ go.string."RGBA"���
RGBA��þtype."".RGBA��€��€@��������������>#VÄ�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."image.RGBA"���p��type.*"".RGBA���€��"runtime.zerovalue���À�type."".RGBA���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".RGBA���°��(go.string.hdr."RGBA"���À��"go.importpath."".���Ѐ�type."".RGBA���þ6go.string.hdr."*image.RGBA"� �� �������� ����������.go.string."*image.RGBA"���þ.go.string."*image.RGBA"� ��*image.RGBA��þngo.string.hdr."func(*image.RGBA, int, int) color.Color"� �� ��������'����������fgo.string."func(*image.RGBA, int, int) color.Color"���þfgo.string."func(*image.RGBA, int, int) color.Color"�P��Pfunc(*image.RGBA, int, int) color.Color��þ^type.func(*"".RGBA, int, int) image/color.Color�À��À��������������ì‡;ƒ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.RGBA, int, int) color.Color"���p��pgo.weak.type.*func(*"".RGBA, int, int) image/color.Color���€��"runtime.zerovalue��� €�^type.func(*"".RGBA, int, int) image/color.Color���а�^type.func(*"".RGBA, int, int) image/color.Color���€��type.*"".RGBA�����type.int��� ��type.int���°��,type.image/color.Color���þ¼go.typelink.func(*image.RGBA, int, int) color.Color func(*"".RGBA, int, int) image/color.Color��������������^type.func(*"".RGBA, int, int) image/color.Color���þbgo.string.hdr."func(*image.RGBA) image.Rectangle"� �� ��������!����������Zgo.string."func(*image.RGBA) image.Rectangle"���þZgo.string."func(*image.RGBA) image.Rectangle"�P��Dfunc(*image.RGBA) image.Rectangle��þ@type.func(*"".RGBA) "".Rectangle� �� ��������������VbX �3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.RGBA) image.Rectangle"���p��Rgo.weak.type.*func(*"".RGBA) "".Rectangle���€��"runtime.zerovalue��� €�@type.func(*"".RGBA) "".Rectangle���А�@type.func(*"".RGBA) "".Rectangle���€��type.*"".RGBA�����"type."".Rectangle���þ’go.typelink.func(*image.RGBA) image.Rectangle func(*"".RGBA) "".Rectangle��������������@type.func(*"".RGBA) "".Rectangle���þZgo.string.hdr."func(*image.RGBA) color.Model"� �� ������������������Rgo.string."func(*image.RGBA) color.Model"���þRgo.string."func(*image.RGBA) color.Model"�@��<func(*image.RGBA) color.Model��þJtype.func(*"".RGBA) image/color.Model� �� ��������������;àmì�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.RGBA) color.Model"���p��\go.weak.type.*func(*"".RGBA) image/color.Model���€��"runtime.zerovalue��� €�Jtype.func(*"".RGBA) image/color.Model���А�Jtype.func(*"".RGBA) image/color.Model���€��type.*"".RGBA�����,type.image/color.Model���þ”go.typelink.func(*image.RGBA) color.Model func(*"".RGBA) image/color.Model��������������Jtype.func(*"".RGBA) image/color.Model���þLgo.string.hdr."func(*image.RGBA) bool"� �� ������������������Dgo.string."func(*image.RGBA) bool"���þDgo.string."func(*image.RGBA) bool"�0��.func(*image.RGBA) bool��þ0type.func(*"".RGBA) bool� �� �������������� ÆÇ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.RGBA) bool"���p��Bgo.weak.type.*func(*"".RGBA) bool���€��"runtime.zerovalue��� €�0type.func(*"".RGBA) bool���А�0type.func(*"".RGBA) bool���€��type.*"".RGBA�����type.bool���þlgo.typelink.func(*image.RGBA) bool func(*"".RGBA) bool��������������0type.func(*"".RGBA) bool���þ^go.string.hdr."func(*image.RGBA, int, int) int"� �� ������������������Vgo.string."func(*image.RGBA, int, int) int"���þVgo.string."func(*image.RGBA, int, int) int"�@��@func(*image.RGBA, int, int) int��þBtype.func(*"".RGBA, int, int) int�À��À��������������Óãf·�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.RGBA, int, int) int"���p��Tgo.weak.type.*func(*"".RGBA, int, int) int���€��"runtime.zerovalue��� €�Btype.func(*"".RGBA, int, int) int���а�Btype.func(*"".RGBA, int, int) int���€��type.*"".RGBA�����type.int��� ��type.int���°��type.int���þgo.typelink.func(*image.RGBA, int, int) int func(*"".RGBA, int, int) int��������������Btype.func(*"".RGBA, int, int) int���þlgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"� �� ��������&����������dgo.string."func(*image.RGBA, int, int) color.RGBA"���þdgo.string."func(*image.RGBA, int, int) color.RGBA"�P��Nfunc(*image.RGBA, int, int) color.RGBA��þ\type.func(*"".RGBA, int, int) image/color.RGBA�À��À��������������:-�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"���p��ngo.weak.type.*func(*"".RGBA, int, int) image/color.RGBA���€��"runtime.zerovalue��� €�\type.func(*"".RGBA, int, int) image/color.RGBA���а�\type.func(*"".RGBA, int, int) image/color.RGBA���€��type.*"".RGBA�����type.int��� ��type.int���°��*type.image/color.RGBA���þ¸go.typelink.func(*image.RGBA, int, int) color.RGBA func(*"".RGBA, int, int) image/color.RGBA��������������\type.func(*"".RGBA, int, int) image/color.RGBA���þpgo.string.hdr."func(*image.RGBA, int, int, color.Color)"� �� ��������(����������hgo.string."func(*image.RGBA, int, int, color.Color)"���þhgo.string."func(*image.RGBA, int, int, color.Color)"�`��Rfunc(*image.RGBA, int, int, color.Color)��þ`type.func(*"".RGBA, int, int, image/color.Color)�À��À��������������ÿâ¤�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.RGBA, int, int, color.Color)"���p��rgo.weak.type.*func(*"".RGBA, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`type.func(*"".RGBA, int, int, image/color.Color)���ÐÀ�`type.func(*"".RGBA, int, int, image/color.Color)���€��type.*"".RGBA�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.RGBA, int, int, color.Color) func(*"".RGBA, int, int, image/color.Color)��������������`type.func(*"".RGBA, int, int, image/color.Color)���þngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"� �� ��������'����������fgo.string."func(*image.RGBA, int, int, color.RGBA)"���þfgo.string."func(*image.RGBA, int, int, color.RGBA)"�P��Pfunc(*image.RGBA, int, int, color.RGBA)��þ^type.func(*"".RGBA, int, int, image/color.RGBA)�À��À��������������çe1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"���p��pgo.weak.type.*func(*"".RGBA, int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�^type.func(*"".RGBA, int, int, image/color.RGBA)���ÐÀ�^type.func(*"".RGBA, int, int, image/color.RGBA)���€��type.*"".RGBA�����type.int��� ��type.int���°��*type.image/color.RGBA���þ¼go.typelink.func(*image.RGBA, int, int, color.RGBA) func(*"".RGBA, int, int, image/color.RGBA)��������������^type.func(*"".RGBA, int, int, image/color.RGBA)���þ|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"� �� ��������.����������tgo.string."func(*image.RGBA, image.Rectangle) image.Image"���þtgo.string."func(*image.RGBA, image.Rectangle) image.Image"�`��^func(*image.RGBA, image.Rectangle) image.Image��þTtype.func(*"".RGBA, "".Rectangle) "".Image�°��°�������������� ˬ‹�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".RGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ttype.func(*"".RGBA, "".Rectangle) "".Image���Р�Ttype.func(*"".RGBA, "".Rectangle) "".Image���€��type.*"".RGBA�����"type."".Rectangle��� ��type."".Image���þÀgo.typelink.func(*image.RGBA, image.Rectangle) image.Image func(*"".RGBA, "".Rectangle) "".Image��������������Ttype.func(*"".RGBA, "".Rectangle) "".Image���þ,go.string.hdr."Opaque"� �� ������������������$go.string."Opaque"���þ$go.string."Opaque"���Opaque��þ2go.string.hdr."PixOffset"� �� �������� ����������*go.string."PixOffset"���þ*go.string."PixOffset"� ��PixOffset��þDgo.string.hdr."func(int, int) int"� �� ������������������<go.string."func(int, int) int"���þ<go.string."func(int, int) int"�0��&func(int, int) int��þ.type.func(int, int) int�°��°��������������ÌBu�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."func(int, int) int"���p��@go.weak.type.*func(int, int) int���€��"runtime.zerovalue��� €�.type.func(int, int) int���Р�.type.func(int, int) int���€��type.int�����type.int��� ��type.int���þbgo.typelink.func(int, int) int func(int, int) int��������������.type.func(int, int) int���þ,go.string.hdr."RGBAAt"� �� ������������������$go.string."RGBAAt"���þ$go.string."RGBAAt"���RGBAAt��þRgo.string.hdr."func(int, int) color.RGBA"� �� ������������������Jgo.string."func(int, int) color.RGBA"���þJgo.string."func(int, int) color.RGBA"�@��4func(int, int) color.RGBA��þHtype.func(int, int) image/color.RGBA�°��°��������������M‹g�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.RGBA"���p��Zgo.weak.type.*func(int, int) image/color.RGBA���€��"runtime.zerovalue��� €�Htype.func(int, int) image/color.RGBA���Р�Htype.func(int, int) image/color.RGBA���€��type.int�����type.int��� ��*type.image/color.RGBA���þŠgo.typelink.func(int, int) color.RGBA func(int, int) image/color.RGBA��������������Htype.func(int, int) image/color.RGBA���þ&go.string.hdr."Set"� �� ������������������go.string."Set"���þgo.string."Set"���Set��þVgo.string.hdr."func(int, int, color.Color)"� �� ������������������Ngo.string."func(int, int, color.Color)"���þNgo.string."func(int, int, color.Color)"�@��8func(int, int, color.Color)��þLtype.func(int, int, image/color.Color)�°��°��������������md~Õ�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.Color)"���p��^go.weak.type.*func(int, int, image/color.Color)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.Color)���а�Ltype.func(int, int, image/color.Color)���€��type.int�����type.int��� ��,type.image/color.Color���þ’go.typelink.func(int, int, color.Color) func(int, int, image/color.Color)��������������Ltype.func(int, int, image/color.Color)���þ.go.string.hdr."SetRGBA"� �� ������������������&go.string."SetRGBA"���þ&go.string."SetRGBA"���SetRGBA��þTgo.string.hdr."func(int, int, color.RGBA)"� �� ������������������Lgo.string."func(int, int, color.RGBA)"���þLgo.string."func(int, int, color.RGBA)"�@��6func(int, int, color.RGBA)��þJtype.func(int, int, image/color.RGBA)�°��°��������������qÌ$�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.RGBA)"���p��\go.weak.type.*func(int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�Jtype.func(int, int, image/color.RGBA)���а�Jtype.func(int, int, image/color.RGBA)���€��type.int�����type.int��� ��*type.image/color.RGBA���þŽgo.typelink.func(int, int, color.RGBA) func(int, int, image/color.RGBA)��������������Jtype.func(int, int, image/color.RGBA)���þ0go.string.hdr."SubImage"� �� ������������������(go.string."SubImage"���þ(go.string."SubImage"� ��SubImage��þbgo.string.hdr."func(image.Rectangle) image.Image"� �� ��������!����������Zgo.string."func(image.Rectangle) image.Image"���þZgo.string."func(image.Rectangle) image.Image"�P��Dfunc(image.Rectangle) image.Image��þ@type.func("".Rectangle) "".Image� �� ��������������wûÁ£�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(image.Rectangle) image.Image"���p��Rgo.weak.type.*func("".Rectangle) "".Image���€��"runtime.zerovalue��� €�@type.func("".Rectangle) "".Image���А�@type.func("".Rectangle) "".Image���€��"type."".Rectangle�����type."".Image���þ’go.typelink.func(image.Rectangle) image.Image func("".Rectangle) "".Image��������������@type.func("".Rectangle) "".Image���þtype.*"".RGBA��Ð��Ð��������������çª�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.RGBA"���p��,go.weak.type.**"".RGBA���€��"runtime.zerovalue�����type."".RGBA���` �type.*"".RGBA���Àð�type.*"".RGBA���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".RGBA, int, int) image/color.Color���°��"".(*RGBA).At���À��"".(*RGBA).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".RGBA) "".Rectangle�����""".(*RGBA).Bounds��� ��""".(*RGBA).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".RGBA) image/color.Model���ð��*"".(*RGBA).ColorModel���€��*"".(*RGBA).ColorModel�����,go.string.hdr."Opaque"���°�� type.func() bool���À��0type.func(*"".RGBA) bool���Ð��""".(*RGBA).Opaque���à��""".(*RGBA).Opaque���ð��2go.string.hdr."PixOffset"�����.type.func(int, int) int��� ��Btype.func(*"".RGBA, int, int) int���°��("".(*RGBA).PixOffset���À��("".(*RGBA).PixOffset���Ð��,go.string.hdr."RGBAAt"���ð��Htype.func(int, int) image/color.RGBA���€��\type.func(*"".RGBA, int, int) image/color.RGBA�����""".(*RGBA).RGBAAt��� ��""".(*RGBA).RGBAAt���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".RGBA, int, int, image/color.Color)���ð��"".(*RGBA).Set���€��"".(*RGBA).Set�����.go.string.hdr."SetRGBA"���°��Jtype.func(int, int, image/color.RGBA)���À��^type.func(*"".RGBA, int, int, image/color.RGBA)���Ð��$"".(*RGBA).SetRGBA���à��$"".(*RGBA).SetRGBA���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".RGBA, "".Rectangle) "".Image���°��&"".(*RGBA).SubImage���À��&"".(*RGBA).SubImage���þ8go.string.hdr."image.RGBA64"� �� �������� ����������0go.string."image.RGBA64"���þ0go.string."image.RGBA64"� ��image.RGBA64��þ,go.string.hdr."RGBA64"� �� ������������������$go.string."RGBA64"���þ$go.string."RGBA64"���RGBA64��þtype."".RGBA64��€��€@��������������Z˜4…�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."image.RGBA64"���p��type.*"".RGBA64���€��"runtime.zerovalue���À�type."".RGBA64���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".RGBA64���°��,go.string.hdr."RGBA64"���À��"go.importpath."".���Ѐ�type."".RGBA64���þ:go.string.hdr."*image.RGBA64"� �� �������� ����������2go.string."*image.RGBA64"���þ2go.string."*image.RGBA64"� ��*image.RGBA64��þrgo.string.hdr."func(*image.RGBA64, int, int) color.Color"� �� ��������)����������jgo.string."func(*image.RGBA64, int, int) color.Color"���þjgo.string."func(*image.RGBA64, int, int) color.Color"�`��Tfunc(*image.RGBA64, int, int) color.Color��þbtype.func(*"".RGBA64, int, int) image/color.Color�À��À��������������¸ØIx�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.RGBA64, int, int) color.Color"���p��tgo.weak.type.*func(*"".RGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�btype.func(*"".RGBA64, int, int) image/color.Color���а�btype.func(*"".RGBA64, int, int) image/color.Color���€��type.*"".RGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þÄgo.typelink.func(*image.RGBA64, int, int) color.Color func(*"".RGBA64, int, int) image/color.Color��������������btype.func(*"".RGBA64, int, int) image/color.Color���þfgo.string.hdr."func(*image.RGBA64) image.Rectangle"� �� ��������#����������^go.string."func(*image.RGBA64) image.Rectangle"���þ^go.string."func(*image.RGBA64) image.Rectangle"�P��Hfunc(*image.RGBA64) image.Rectangle��þDtype.func(*"".RGBA64) "".Rectangle� �� ��������������LÜç�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.RGBA64) image.Rectangle"���p��Vgo.weak.type.*func(*"".RGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".RGBA64) "".Rectangle���А�Dtype.func(*"".RGBA64) "".Rectangle���€��type.*"".RGBA64�����"type."".Rectangle���þšgo.typelink.func(*image.RGBA64) image.Rectangle func(*"".RGBA64) "".Rectangle��������������Dtype.func(*"".RGBA64) "".Rectangle���þ^go.string.hdr."func(*image.RGBA64) color.Model"� �� ������������������Vgo.string."func(*image.RGBA64) color.Model"���þVgo.string."func(*image.RGBA64) color.Model"�@��@func(*image.RGBA64) color.Model��þNtype.func(*"".RGBA64) image/color.Model� �� ��������������M\a�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.RGBA64) color.Model"���p��`go.weak.type.*func(*"".RGBA64) image/color.Model���€��"runtime.zerovalue��� €�Ntype.func(*"".RGBA64) image/color.Model���А�Ntype.func(*"".RGBA64) image/color.Model���€��type.*"".RGBA64�����,type.image/color.Model���þœgo.typelink.func(*image.RGBA64) color.Model func(*"".RGBA64) image/color.Model��������������Ntype.func(*"".RGBA64) image/color.Model���þPgo.string.hdr."func(*image.RGBA64) bool"� �� ������������������Hgo.string."func(*image.RGBA64) bool"���þHgo.string."func(*image.RGBA64) bool"�@��2func(*image.RGBA64) bool��þ4type.func(*"".RGBA64) bool� �� ��������������`Ù �3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(*image.RGBA64) bool"���p��Fgo.weak.type.*func(*"".RGBA64) bool���€��"runtime.zerovalue��� €�4type.func(*"".RGBA64) bool���А�4type.func(*"".RGBA64) bool���€��type.*"".RGBA64�����type.bool���þtgo.typelink.func(*image.RGBA64) bool func(*"".RGBA64) bool��������������4type.func(*"".RGBA64) bool���þbgo.string.hdr."func(*image.RGBA64, int, int) int"� �� ��������!����������Zgo.string."func(*image.RGBA64, int, int) int"���þZgo.string."func(*image.RGBA64, int, int) int"�P��Dfunc(*image.RGBA64, int, int) int��þFtype.func(*"".RGBA64, int, int) int�À��À��������������‡ ¹ë�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.RGBA64, int, int) int"���p��Xgo.weak.type.*func(*"".RGBA64, int, int) int���€��"runtime.zerovalue��� €�Ftype.func(*"".RGBA64, int, int) int���а�Ftype.func(*"".RGBA64, int, int) int���€��type.*"".RGBA64�����type.int��� ��type.int���°��type.int���þ˜go.typelink.func(*image.RGBA64, int, int) int func(*"".RGBA64, int, int) int��������������Ftype.func(*"".RGBA64, int, int) int���þtgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"� �� ��������*����������lgo.string."func(*image.RGBA64, int, int) color.RGBA64"���þlgo.string."func(*image.RGBA64, int, int) color.RGBA64"�`��Vfunc(*image.RGBA64, int, int) color.RGBA64��þdtype.func(*"".RGBA64, int, int) image/color.RGBA64�À��À��������������ÿ·c6�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"���p��vgo.weak.type.*func(*"".RGBA64, int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�dtype.func(*"".RGBA64, int, int) image/color.RGBA64���а�dtype.func(*"".RGBA64, int, int) image/color.RGBA64���€��type.*"".RGBA64�����type.int��� ��type.int���°��.type.image/color.RGBA64���þÈgo.typelink.func(*image.RGBA64, int, int) color.RGBA64 func(*"".RGBA64, int, int) image/color.RGBA64��������������dtype.func(*"".RGBA64, int, int) image/color.RGBA64���þtgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"� �� ��������*����������lgo.string."func(*image.RGBA64, int, int, color.Color)"���þlgo.string."func(*image.RGBA64, int, int, color.Color)"�`��Vfunc(*image.RGBA64, int, int, color.Color)��þdtype.func(*"".RGBA64, int, int, image/color.Color)�À��À��������������”Ò1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"���p��vgo.weak.type.*func(*"".RGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�dtype.func(*"".RGBA64, int, int, image/color.Color)���ÐÀ�dtype.func(*"".RGBA64, int, int, image/color.Color)���€��type.*"".RGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þÈgo.typelink.func(*image.RGBA64, int, int, color.Color) func(*"".RGBA64, int, int, image/color.Color)��������������dtype.func(*"".RGBA64, int, int, image/color.Color)���þvgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"� �� ��������+����������ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"���þngo.string."func(*image.RGBA64, int, int, color.RGBA64)"�`��Xfunc(*image.RGBA64, int, int, color.RGBA64)��þftype.func(*"".RGBA64, int, int, image/color.RGBA64)�À��À��������������H‹¥ÿ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"���p��xgo.weak.type.*func(*"".RGBA64, int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���ÐÀ�ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���€��type.*"".RGBA64�����type.int��� ��type.int���°��.type.image/color.RGBA64���þÌgo.typelink.func(*image.RGBA64, int, int, color.RGBA64) func(*"".RGBA64, int, int, image/color.RGBA64)��������������ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���þ€go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"� �� ��������0����������xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���þxgo.string."func(*image.RGBA64, image.Rectangle) image.Image"�p��bfunc(*image.RGBA64, image.Rectangle) image.Image��þXtype.func(*"".RGBA64, "".Rectangle) "".Image�°��°��������������9»z¥�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��€go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".RGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Xtype.func(*"".RGBA64, "".Rectangle) "".Image���Р�Xtype.func(*"".RGBA64, "".Rectangle) "".Image���€��type.*"".RGBA64�����"type."".Rectangle��� ��type."".Image���þÈgo.typelink.func(*image.RGBA64, image.Rectangle) image.Image func(*"".RGBA64, "".Rectangle) "".Image��������������Xtype.func(*"".RGBA64, "".Rectangle) "".Image���þ0go.string.hdr."RGBA64At"� �� ������������������(go.string."RGBA64At"���þ(go.string."RGBA64At"� ��RGBA64At��þVgo.string.hdr."func(int, int) color.RGBA64"� �� ������������������Ngo.string."func(int, int) color.RGBA64"���þNgo.string."func(int, int) color.RGBA64"�@��8func(int, int) color.RGBA64��þLtype.func(int, int) image/color.RGBA64�°��°��������������BÆ»�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int) color.RGBA64"���p��^go.weak.type.*func(int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�Ltype.func(int, int) image/color.RGBA64���Р�Ltype.func(int, int) image/color.RGBA64���€��type.int�����type.int��� ��.type.image/color.RGBA64���þ’go.typelink.func(int, int) color.RGBA64 func(int, int) image/color.RGBA64��������������Ltype.func(int, int) image/color.RGBA64���þ2go.string.hdr."SetRGBA64"� �� �������� ����������*go.string."SetRGBA64"���þ*go.string."SetRGBA64"� ��SetRGBA64��þXgo.string.hdr."func(int, int, color.RGBA64)"� �� ������������������Pgo.string."func(int, int, color.RGBA64)"���þPgo.string."func(int, int, color.RGBA64)"�@��:func(int, int, color.RGBA64)��þNtype.func(int, int, image/color.RGBA64)�°��°��������������$‹àw�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int, color.RGBA64)"���p��`go.weak.type.*func(int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�Ntype.func(int, int, image/color.RGBA64)���а�Ntype.func(int, int, image/color.RGBA64)���€��type.int�����type.int��� ��.type.image/color.RGBA64���þ–go.typelink.func(int, int, color.RGBA64) func(int, int, image/color.RGBA64)��������������Ntype.func(int, int, image/color.RGBA64)���þtype.*"".RGBA64��Ð��Ð��������������‰Ò§�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.RGBA64"���p��0go.weak.type.**"".RGBA64���€��"runtime.zerovalue�����type."".RGBA64���` �type.*"".RGBA64���Àð�type.*"".RGBA64���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".RGBA64, int, int) image/color.Color���°��"".(*RGBA64).At���À��"".(*RGBA64).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".RGBA64) "".Rectangle�����&"".(*RGBA64).Bounds��� ��&"".(*RGBA64).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".RGBA64) image/color.Model���ð��."".(*RGBA64).ColorModel���€��."".(*RGBA64).ColorModel�����,go.string.hdr."Opaque"���°�� type.func() bool���À��4type.func(*"".RGBA64) bool���Ð��&"".(*RGBA64).Opaque���à��&"".(*RGBA64).Opaque���ð��2go.string.hdr."PixOffset"�����.type.func(int, int) int��� ��Ftype.func(*"".RGBA64, int, int) int���°��,"".(*RGBA64).PixOffset���À��,"".(*RGBA64).PixOffset���Ð��0go.string.hdr."RGBA64At"���ð��Ltype.func(int, int) image/color.RGBA64���€��dtype.func(*"".RGBA64, int, int) image/color.RGBA64�����*"".(*RGBA64).RGBA64At��� ��*"".(*RGBA64).RGBA64At���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".RGBA64, int, int, image/color.Color)���ð�� "".(*RGBA64).Set���€�� "".(*RGBA64).Set�����2go.string.hdr."SetRGBA64"���°��Ntype.func(int, int, image/color.RGBA64)���À��ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���Ð��,"".(*RGBA64).SetRGBA64���à��,"".(*RGBA64).SetRGBA64���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".RGBA64, "".Rectangle) "".Image���°��*"".(*RGBA64).SubImage���À��*"".(*RGBA64).SubImage���þ6go.string.hdr."image.NRGBA"� �� �������� ����������.go.string."image.NRGBA"���þ.go.string."image.NRGBA"� ��image.NRGBA��þ*go.string.hdr."NRGBA"� �� ������������������"go.string."NRGBA"���þ"go.string."NRGBA"��� NRGBA��þtype."".NRGBA��€��€@��������������‘ü�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."image.NRGBA"���p��type.*"".NRGBA���€��"runtime.zerovalue���À�type."".NRGBA���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".NRGBA���°��*go.string.hdr."NRGBA"���À��"go.importpath."".���Ѐ�type."".NRGBA���þ8go.string.hdr."*image.NRGBA"� �� �������� ����������0go.string."*image.NRGBA"���þ0go.string."*image.NRGBA"� ��*image.NRGBA��þpgo.string.hdr."func(*image.NRGBA, int, int) color.Color"� �� ��������(����������hgo.string."func(*image.NRGBA, int, int) color.Color"���þhgo.string."func(*image.NRGBA, int, int) color.Color"�`��Rfunc(*image.NRGBA, int, int) color.Color��þ`type.func(*"".NRGBA, int, int) image/color.Color�À��À�������������� Ó÷ì�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.NRGBA, int, int) color.Color"���p��rgo.weak.type.*func(*"".NRGBA, int, int) image/color.Color���€��"runtime.zerovalue��� €�`type.func(*"".NRGBA, int, int) image/color.Color���а�`type.func(*"".NRGBA, int, int) image/color.Color���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.NRGBA, int, int) color.Color func(*"".NRGBA, int, int) image/color.Color��������������`type.func(*"".NRGBA, int, int) image/color.Color���þdgo.string.hdr."func(*image.NRGBA) image.Rectangle"� �� ��������"����������\go.string."func(*image.NRGBA) image.Rectangle"���þ\go.string."func(*image.NRGBA) image.Rectangle"�P��Ffunc(*image.NRGBA) image.Rectangle��þBtype.func(*"".NRGBA) "".Rectangle� �� ��������������>÷La�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.NRGBA) image.Rectangle"���p��Tgo.weak.type.*func(*"".NRGBA) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".NRGBA) "".Rectangle���А�Btype.func(*"".NRGBA) "".Rectangle���€��type.*"".NRGBA�����"type."".Rectangle���þ–go.typelink.func(*image.NRGBA) image.Rectangle func(*"".NRGBA) "".Rectangle��������������Btype.func(*"".NRGBA) "".Rectangle���þ\go.string.hdr."func(*image.NRGBA) color.Model"� �� ������������������Tgo.string."func(*image.NRGBA) color.Model"���þTgo.string."func(*image.NRGBA) color.Model"�@��>func(*image.NRGBA) color.Model��þLtype.func(*"".NRGBA) image/color.Model� �� ��������������˜™×@�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.NRGBA) color.Model"���p��^go.weak.type.*func(*"".NRGBA) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".NRGBA) image/color.Model���А�Ltype.func(*"".NRGBA) image/color.Model���€��type.*"".NRGBA�����,type.image/color.Model���þ˜go.typelink.func(*image.NRGBA) color.Model func(*"".NRGBA) image/color.Model��������������Ltype.func(*"".NRGBA) image/color.Model���þpgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"� �� ��������(����������hgo.string."func(*image.NRGBA, int, int) color.NRGBA"���þhgo.string."func(*image.NRGBA, int, int) color.NRGBA"�`��Rfunc(*image.NRGBA, int, int) color.NRGBA��þ`type.func(*"".NRGBA, int, int) image/color.NRGBA�À��À��������������¼\ƒÈ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"���p��rgo.weak.type.*func(*"".NRGBA, int, int) image/color.NRGBA���€��"runtime.zerovalue��� €�`type.func(*"".NRGBA, int, int) image/color.NRGBA���а�`type.func(*"".NRGBA, int, int) image/color.NRGBA���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.NRGBA���þÀgo.typelink.func(*image.NRGBA, int, int) color.NRGBA func(*"".NRGBA, int, int) image/color.NRGBA��������������`type.func(*"".NRGBA, int, int) image/color.NRGBA���þNgo.string.hdr."func(*image.NRGBA) bool"� �� ������������������Fgo.string."func(*image.NRGBA) bool"���þFgo.string."func(*image.NRGBA) bool"�0��0func(*image.NRGBA) bool��þ2type.func(*"".NRGBA) bool� �� ��������������ڏ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.NRGBA) bool"���p��Dgo.weak.type.*func(*"".NRGBA) bool���€��"runtime.zerovalue��� €�2type.func(*"".NRGBA) bool���А�2type.func(*"".NRGBA) bool���€��type.*"".NRGBA�����type.bool���þpgo.typelink.func(*image.NRGBA) bool func(*"".NRGBA) bool��������������2type.func(*"".NRGBA) bool���þ`go.string.hdr."func(*image.NRGBA, int, int) int"� �� �������� ����������Xgo.string."func(*image.NRGBA, int, int) int"���þXgo.string."func(*image.NRGBA, int, int) int"�P��Bfunc(*image.NRGBA, int, int) int��þDtype.func(*"".NRGBA, int, int) int�À��À��������������¿¹�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.NRGBA, int, int) int"���p��Vgo.weak.type.*func(*"".NRGBA, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".NRGBA, int, int) int���а�Dtype.func(*"".NRGBA, int, int) int���€��type.*"".NRGBA�����type.int��� ��type.int���°��type.int���þ”go.typelink.func(*image.NRGBA, int, int) int func(*"".NRGBA, int, int) int��������������Dtype.func(*"".NRGBA, int, int) int���þrgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"� �� ��������)����������jgo.string."func(*image.NRGBA, int, int, color.Color)"���þjgo.string."func(*image.NRGBA, int, int, color.Color)"�`��Tfunc(*image.NRGBA, int, int, color.Color)��þbtype.func(*"".NRGBA, int, int, image/color.Color)�À��À��������������Ý»ìû�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)���€��"runtime.zerovalue��� €�btype.func(*"".NRGBA, int, int, image/color.Color)���ÐÀ�btype.func(*"".NRGBA, int, int, image/color.Color)���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.Color���þÄgo.typelink.func(*image.NRGBA, int, int, color.Color) func(*"".NRGBA, int, int, image/color.Color)��������������btype.func(*"".NRGBA, int, int, image/color.Color)���þrgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"� �� ��������)����������jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"���þjgo.string."func(*image.NRGBA, int, int, color.NRGBA)"�`��Tfunc(*image.NRGBA, int, int, color.NRGBA)��þbtype.func(*"".NRGBA, int, int, image/color.NRGBA)�À��À��������������ÏƛÈ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�btype.func(*"".NRGBA, int, int, image/color.NRGBA)���ÐÀ�btype.func(*"".NRGBA, int, int, image/color.NRGBA)���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.NRGBA���þÄgo.typelink.func(*image.NRGBA, int, int, color.NRGBA) func(*"".NRGBA, int, int, image/color.NRGBA)��������������btype.func(*"".NRGBA, int, int, image/color.NRGBA)���þ~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"� �� ��������/����������vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"���þvgo.string."func(*image.NRGBA, image.Rectangle) image.Image"�`��`func(*image.NRGBA, image.Rectangle) image.Image��þVtype.func(*"".NRGBA, "".Rectangle) "".Image�°��°��������������Drӂ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".NRGBA, "".Rectangle) "".Image���Р�Vtype.func(*"".NRGBA, "".Rectangle) "".Image���€��type.*"".NRGBA�����"type."".Rectangle��� ��type."".Image���þÄgo.typelink.func(*image.NRGBA, image.Rectangle) image.Image func(*"".NRGBA, "".Rectangle) "".Image��������������Vtype.func(*"".NRGBA, "".Rectangle) "".Image���þ.go.string.hdr."NRGBAAt"� �� ������������������&go.string."NRGBAAt"���þ&go.string."NRGBAAt"���NRGBAAt��þTgo.string.hdr."func(int, int) color.NRGBA"� �� ������������������Lgo.string."func(int, int) color.NRGBA"���þLgo.string."func(int, int) color.NRGBA"�@��6func(int, int) color.NRGBA��þJtype.func(int, int) image/color.NRGBA�°��°��������������Ä �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.NRGBA"���p��\go.weak.type.*func(int, int) image/color.NRGBA���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.NRGBA���Р�Jtype.func(int, int) image/color.NRGBA���€��type.int�����type.int��� ��,type.image/color.NRGBA���þŽgo.typelink.func(int, int) color.NRGBA func(int, int) image/color.NRGBA��������������Jtype.func(int, int) image/color.NRGBA���þ0go.string.hdr."SetNRGBA"� �� ������������������(go.string."SetNRGBA"���þ(go.string."SetNRGBA"� ��SetNRGBA��þVgo.string.hdr."func(int, int, color.NRGBA)"� �� ������������������Ngo.string."func(int, int, color.NRGBA)"���þNgo.string."func(int, int, color.NRGBA)"�@��8func(int, int, color.NRGBA)��þLtype.func(int, int, image/color.NRGBA)�°��°�������������� ‚�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.NRGBA)"���p��^go.weak.type.*func(int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.NRGBA)���а�Ltype.func(int, int, image/color.NRGBA)���€��type.int�����type.int��� ��,type.image/color.NRGBA���þ’go.typelink.func(int, int, color.NRGBA) func(int, int, image/color.NRGBA)��������������Ltype.func(int, int, image/color.NRGBA)���þtype.*"".NRGBA��Ð��Ð�������������� ö“*�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.NRGBA"���p��.go.weak.type.**"".NRGBA���€��"runtime.zerovalue�����type."".NRGBA���` �type.*"".NRGBA���Àð�type.*"".NRGBA���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".NRGBA, int, int) image/color.Color���°��"".(*NRGBA).At���À��"".(*NRGBA).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".NRGBA) "".Rectangle�����$"".(*NRGBA).Bounds��� ��$"".(*NRGBA).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ltype.func(*"".NRGBA) image/color.Model���ð��,"".(*NRGBA).ColorModel���€��,"".(*NRGBA).ColorModel�����.go.string.hdr."NRGBAAt"���°��Jtype.func(int, int) image/color.NRGBA���À��`type.func(*"".NRGBA, int, int) image/color.NRGBA���Ð��&"".(*NRGBA).NRGBAAt���à��&"".(*NRGBA).NRGBAAt���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��2type.func(*"".NRGBA) bool���°��$"".(*NRGBA).Opaque���À��$"".(*NRGBA).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".NRGBA, int, int) int�����*"".(*NRGBA).PixOffset��� ��*"".(*NRGBA).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".NRGBA, int, int, image/color.Color)���ð��"".(*NRGBA).Set���€��"".(*NRGBA).Set�����0go.string.hdr."SetNRGBA"���°��Ltype.func(int, int, image/color.NRGBA)���À��btype.func(*"".NRGBA, int, int, image/color.NRGBA)���Ð��("".(*NRGBA).SetNRGBA���à��("".(*NRGBA).SetNRGBA���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".NRGBA, "".Rectangle) "".Image���°��("".(*NRGBA).SubImage���À��("".(*NRGBA).SubImage���þ:go.string.hdr."image.NRGBA64"� �� �������� ����������2go.string."image.NRGBA64"���þ2go.string."image.NRGBA64"� ��image.NRGBA64��þ.go.string.hdr."NRGBA64"� �� ������������������&go.string."NRGBA64"���þ&go.string."NRGBA64"���NRGBA64��þtype."".NRGBA64��€��€@��������������Ûr»ò�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."image.NRGBA64"���p�� type.*"".NRGBA64���€��"runtime.zerovalue���À�type."".NRGBA64���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".NRGBA64���°��.go.string.hdr."NRGBA64"���À��"go.importpath."".���Ѐ�type."".NRGBA64���þ<go.string.hdr."*image.NRGBA64"� �� ������������������4go.string."*image.NRGBA64"���þ4go.string."*image.NRGBA64"� ��*image.NRGBA64��þtgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"� �� ��������*����������lgo.string."func(*image.NRGBA64, int, int) color.Color"���þlgo.string."func(*image.NRGBA64, int, int) color.Color"�`��Vfunc(*image.NRGBA64, int, int) color.Color��þdtype.func(*"".NRGBA64, int, int) image/color.Color�À��À��������������;m¬&�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"���p��vgo.weak.type.*func(*"".NRGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".NRGBA64, int, int) image/color.Color���а�dtype.func(*"".NRGBA64, int, int) image/color.Color���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þÈgo.typelink.func(*image.NRGBA64, int, int) color.Color func(*"".NRGBA64, int, int) image/color.Color��������������dtype.func(*"".NRGBA64, int, int) image/color.Color���þhgo.string.hdr."func(*image.NRGBA64) image.Rectangle"� �� ��������$����������`go.string."func(*image.NRGBA64) image.Rectangle"���þ`go.string."func(*image.NRGBA64) image.Rectangle"�P��Jfunc(*image.NRGBA64) image.Rectangle��þFtype.func(*"".NRGBA64) "".Rectangle� �� ��������������Éa�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.NRGBA64) image.Rectangle"���p��Xgo.weak.type.*func(*"".NRGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".NRGBA64) "".Rectangle���А�Ftype.func(*"".NRGBA64) "".Rectangle���€�� type.*"".NRGBA64�����"type."".Rectangle���þžgo.typelink.func(*image.NRGBA64) image.Rectangle func(*"".NRGBA64) "".Rectangle��������������Ftype.func(*"".NRGBA64) "".Rectangle���þ`go.string.hdr."func(*image.NRGBA64) color.Model"� �� �������� ����������Xgo.string."func(*image.NRGBA64) color.Model"���þXgo.string."func(*image.NRGBA64) color.Model"�P��Bfunc(*image.NRGBA64) color.Model��þPtype.func(*"".NRGBA64) image/color.Model� �� ��������������Ãòlz�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.NRGBA64) color.Model"���p��bgo.weak.type.*func(*"".NRGBA64) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".NRGBA64) image/color.Model���А�Ptype.func(*"".NRGBA64) image/color.Model���€�� type.*"".NRGBA64�����,type.image/color.Model���þ go.typelink.func(*image.NRGBA64) color.Model func(*"".NRGBA64) image/color.Model��������������Ptype.func(*"".NRGBA64) image/color.Model���þxgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"� �� ��������,����������pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"���þpgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"�`��Zfunc(*image.NRGBA64, int, int) color.NRGBA64��þhtype.func(*"".NRGBA64, int, int) image/color.NRGBA64�À��À��������������RbK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"���p��zgo.weak.type.*func(*"".NRGBA64, int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���а�htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��0type.image/color.NRGBA64���þÐgo.typelink.func(*image.NRGBA64, int, int) color.NRGBA64 func(*"".NRGBA64, int, int) image/color.NRGBA64��������������htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���þRgo.string.hdr."func(*image.NRGBA64) bool"� �� ������������������Jgo.string."func(*image.NRGBA64) bool"���þJgo.string."func(*image.NRGBA64) bool"�@��4func(*image.NRGBA64) bool��þ6type.func(*"".NRGBA64) bool� �� ��������������\U¸�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.NRGBA64) bool"���p��Hgo.weak.type.*func(*"".NRGBA64) bool���€��"runtime.zerovalue��� €�6type.func(*"".NRGBA64) bool���А�6type.func(*"".NRGBA64) bool���€�� type.*"".NRGBA64�����type.bool���þxgo.typelink.func(*image.NRGBA64) bool func(*"".NRGBA64) bool��������������6type.func(*"".NRGBA64) bool���þdgo.string.hdr."func(*image.NRGBA64, int, int) int"� �� ��������"����������\go.string."func(*image.NRGBA64, int, int) int"���þ\go.string."func(*image.NRGBA64, int, int) int"�P��Ffunc(*image.NRGBA64, int, int) int��þHtype.func(*"".NRGBA64, int, int) int�À��À��������������³rY�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.NRGBA64, int, int) int"���p��Zgo.weak.type.*func(*"".NRGBA64, int, int) int���€��"runtime.zerovalue��� €�Htype.func(*"".NRGBA64, int, int) int���а�Htype.func(*"".NRGBA64, int, int) int���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��type.int���þœgo.typelink.func(*image.NRGBA64, int, int) int func(*"".NRGBA64, int, int) int��������������Htype.func(*"".NRGBA64, int, int) int���þvgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"� �� ��������+����������ngo.string."func(*image.NRGBA64, int, int, color.Color)"���þngo.string."func(*image.NRGBA64, int, int, color.Color)"�`��Xfunc(*image.NRGBA64, int, int, color.Color)��þftype.func(*"".NRGBA64, int, int, image/color.Color)�À��À��������������…Ém�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"���p��xgo.weak.type.*func(*"".NRGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�ftype.func(*"".NRGBA64, int, int, image/color.Color)���ÐÀ�ftype.func(*"".NRGBA64, int, int, image/color.Color)���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þÌgo.typelink.func(*image.NRGBA64, int, int, color.Color) func(*"".NRGBA64, int, int, image/color.Color)��������������ftype.func(*"".NRGBA64, int, int, image/color.Color)���þzgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"� �� ��������-����������rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"���þrgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"�`��\func(*image.NRGBA64, int, int, color.NRGBA64)��þjtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)�À��À��������������ëFL|�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"���p��|go.weak.type.*func(*"".NRGBA64, int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���ÐÀ�jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��0type.image/color.NRGBA64���þÔgo.typelink.func(*image.NRGBA64, int, int, color.NRGBA64) func(*"".NRGBA64, int, int, image/color.NRGBA64)��������������jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���þ‚go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"� �� ��������1����������zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���þzgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"�p��dfunc(*image.NRGBA64, image.Rectangle) image.Image��þZtype.func(*"".NRGBA64, "".Rectangle) "".Image�°��°��������������hÀî¦�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��‚go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".NRGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���Р�Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���€�� type.*"".NRGBA64�����"type."".Rectangle��� ��type."".Image���þÌgo.typelink.func(*image.NRGBA64, image.Rectangle) image.Image func(*"".NRGBA64, "".Rectangle) "".Image��������������Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���þ2go.string.hdr."NRGBA64At"� �� �������� ����������*go.string."NRGBA64At"���þ*go.string."NRGBA64At"� ��NRGBA64At��þXgo.string.hdr."func(int, int) color.NRGBA64"� �� ������������������Pgo.string."func(int, int) color.NRGBA64"���þPgo.string."func(int, int) color.NRGBA64"�@��:func(int, int) color.NRGBA64��þNtype.func(int, int) image/color.NRGBA64�°��°��������������|¨c0�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int) color.NRGBA64"���p��`go.weak.type.*func(int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�Ntype.func(int, int) image/color.NRGBA64���Р�Ntype.func(int, int) image/color.NRGBA64���€��type.int�����type.int��� ��0type.image/color.NRGBA64���þ–go.typelink.func(int, int) color.NRGBA64 func(int, int) image/color.NRGBA64��������������Ntype.func(int, int) image/color.NRGBA64���þ4go.string.hdr."SetNRGBA64"� �� ��������
����������,go.string."SetNRGBA64"���þ,go.string."SetNRGBA64"� ��SetNRGBA64��þZgo.string.hdr."func(int, int, color.NRGBA64)"� �� ������������������Rgo.string."func(int, int, color.NRGBA64)"���þRgo.string."func(int, int, color.NRGBA64)"�@��<func(int, int, color.NRGBA64)��þPtype.func(int, int, image/color.NRGBA64)�°��°��������������·M;s�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(int, int, color.NRGBA64)"���p��bgo.weak.type.*func(int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�Ptype.func(int, int, image/color.NRGBA64)���а�Ptype.func(int, int, image/color.NRGBA64)���€��type.int�����type.int��� ��0type.image/color.NRGBA64���þšgo.typelink.func(int, int, color.NRGBA64) func(int, int, image/color.NRGBA64)��������������Ptype.func(int, int, image/color.NRGBA64)���þ type.*"".NRGBA64��Ð��Ð��������������ôOR�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.NRGBA64"���p��2go.weak.type.**"".NRGBA64���€��"runtime.zerovalue�����type."".NRGBA64���` � type.*"".NRGBA64���Àð� type.*"".NRGBA64���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".NRGBA64, int, int) image/color.Color���°�� "".(*NRGBA64).At���À�� "".(*NRGBA64).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".NRGBA64) "".Rectangle�����("".(*NRGBA64).Bounds��� ��("".(*NRGBA64).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".NRGBA64) image/color.Model���ð��0"".(*NRGBA64).ColorModel���€��0"".(*NRGBA64).ColorModel�����2go.string.hdr."NRGBA64At"���°��Ntype.func(int, int) image/color.NRGBA64���À��htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���Ð��."".(*NRGBA64).NRGBA64At���à��."".(*NRGBA64).NRGBA64At���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��6type.func(*"".NRGBA64) bool���°��("".(*NRGBA64).Opaque���À��("".(*NRGBA64).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".NRGBA64, int, int) int�����."".(*NRGBA64).PixOffset��� ��."".(*NRGBA64).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".NRGBA64, int, int, image/color.Color)���ð��""".(*NRGBA64).Set���€��""".(*NRGBA64).Set�����4go.string.hdr."SetNRGBA64"���°��Ptype.func(int, int, image/color.NRGBA64)���À��jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���Ð��0"".(*NRGBA64).SetNRGBA64���à��0"".(*NRGBA64).SetNRGBA64���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���°��,"".(*NRGBA64).SubImage���À��,"".(*NRGBA64).SubImage���þ6go.string.hdr."image.Alpha"� �� �������� ����������.go.string."image.Alpha"���þ.go.string."image.Alpha"� ��image.Alpha��þ*go.string.hdr."Alpha"� �� ������������������"go.string."Alpha"���þ"go.string."Alpha"��� Alpha��þtype."".Alpha��€��€@��������������×,=Ò�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."image.Alpha"���p��type.*"".Alpha���€��"runtime.zerovalue���À�type."".Alpha���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".Alpha���°��*go.string.hdr."Alpha"���À��"go.importpath."".���Ѐ�type."".Alpha���þ8go.string.hdr."*image.Alpha"� �� �������� ����������0go.string."*image.Alpha"���þ0go.string."*image.Alpha"� ��*image.Alpha��þpgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"� �� ��������(����������hgo.string."func(*image.Alpha, int, int) color.Alpha"���þhgo.string."func(*image.Alpha, int, int) color.Alpha"�`��Rfunc(*image.Alpha, int, int) color.Alpha��þ`type.func(*"".Alpha, int, int) image/color.Alpha�À��À��������������Š>ˆ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"���p��rgo.weak.type.*func(*"".Alpha, int, int) image/color.Alpha���€��"runtime.zerovalue��� €�`type.func(*"".Alpha, int, int) image/color.Alpha���а�`type.func(*"".Alpha, int, int) image/color.Alpha���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Alpha���þÀgo.typelink.func(*image.Alpha, int, int) color.Alpha func(*"".Alpha, int, int) image/color.Alpha��������������`type.func(*"".Alpha, int, int) image/color.Alpha���þpgo.string.hdr."func(*image.Alpha, int, int) color.Color"� �� ��������(����������hgo.string."func(*image.Alpha, int, int) color.Color"���þhgo.string."func(*image.Alpha, int, int) color.Color"�`��Rfunc(*image.Alpha, int, int) color.Color��þ`type.func(*"".Alpha, int, int) image/color.Color�À��À��������������™dfú�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Alpha, int, int) color.Color"���p��rgo.weak.type.*func(*"".Alpha, int, int) image/color.Color���€��"runtime.zerovalue��� €�`type.func(*"".Alpha, int, int) image/color.Color���а�`type.func(*"".Alpha, int, int) image/color.Color���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.Alpha, int, int) color.Color func(*"".Alpha, int, int) image/color.Color��������������`type.func(*"".Alpha, int, int) image/color.Color���þdgo.string.hdr."func(*image.Alpha) image.Rectangle"� �� ��������"����������\go.string."func(*image.Alpha) image.Rectangle"���þ\go.string."func(*image.Alpha) image.Rectangle"�P��Ffunc(*image.Alpha) image.Rectangle��þBtype.func(*"".Alpha) "".Rectangle� �� ��������������ӓôt�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Alpha) image.Rectangle"���p��Tgo.weak.type.*func(*"".Alpha) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".Alpha) "".Rectangle���А�Btype.func(*"".Alpha) "".Rectangle���€��type.*"".Alpha�����"type."".Rectangle���þ–go.typelink.func(*image.Alpha) image.Rectangle func(*"".Alpha) "".Rectangle��������������Btype.func(*"".Alpha) "".Rectangle���þ\go.string.hdr."func(*image.Alpha) color.Model"� �� ������������������Tgo.string."func(*image.Alpha) color.Model"���þTgo.string."func(*image.Alpha) color.Model"�@��>func(*image.Alpha) color.Model��þLtype.func(*"".Alpha) image/color.Model� �� ��������������ë‹çY�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.Alpha) color.Model"���p��^go.weak.type.*func(*"".Alpha) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".Alpha) image/color.Model���А�Ltype.func(*"".Alpha) image/color.Model���€��type.*"".Alpha�����,type.image/color.Model���þ˜go.typelink.func(*image.Alpha) color.Model func(*"".Alpha) image/color.Model��������������Ltype.func(*"".Alpha) image/color.Model���þNgo.string.hdr."func(*image.Alpha) bool"� �� ������������������Fgo.string."func(*image.Alpha) bool"���þFgo.string."func(*image.Alpha) bool"�0��0func(*image.Alpha) bool��þ2type.func(*"".Alpha) bool� �� ��������������ÂgPO�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.Alpha) bool"���p��Dgo.weak.type.*func(*"".Alpha) bool���€��"runtime.zerovalue��� €�2type.func(*"".Alpha) bool���А�2type.func(*"".Alpha) bool���€��type.*"".Alpha�����type.bool���þpgo.typelink.func(*image.Alpha) bool func(*"".Alpha) bool��������������2type.func(*"".Alpha) bool���þ`go.string.hdr."func(*image.Alpha, int, int) int"� �� �������� ����������Xgo.string."func(*image.Alpha, int, int) int"���þXgo.string."func(*image.Alpha, int, int) int"�P��Bfunc(*image.Alpha, int, int) int��þDtype.func(*"".Alpha, int, int) int�À��À��������������—½ìw�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Alpha, int, int) int"���p��Vgo.weak.type.*func(*"".Alpha, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".Alpha, int, int) int���а�Dtype.func(*"".Alpha, int, int) int���€��type.*"".Alpha�����type.int��� ��type.int���°��type.int���þ”go.typelink.func(*image.Alpha, int, int) int func(*"".Alpha, int, int) int��������������Dtype.func(*"".Alpha, int, int) int���þrgo.string.hdr."func(*image.Alpha, int, int, color.Color)"� �� ��������)����������jgo.string."func(*image.Alpha, int, int, color.Color)"���þjgo.string."func(*image.Alpha, int, int, color.Color)"�`��Tfunc(*image.Alpha, int, int, color.Color)��þbtype.func(*"".Alpha, int, int, image/color.Color)�À��À��������������¾ª}�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Alpha, int, int, color.Color)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)���€��"runtime.zerovalue��� €�btype.func(*"".Alpha, int, int, image/color.Color)���ÐÀ�btype.func(*"".Alpha, int, int, image/color.Color)���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Color���þÄgo.typelink.func(*image.Alpha, int, int, color.Color) func(*"".Alpha, int, int, image/color.Color)��������������btype.func(*"".Alpha, int, int, image/color.Color)���þrgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"� �� ��������)����������jgo.string."func(*image.Alpha, int, int, color.Alpha)"���þjgo.string."func(*image.Alpha, int, int, color.Alpha)"�`��Tfunc(*image.Alpha, int, int, color.Alpha)��þbtype.func(*"".Alpha, int, int, image/color.Alpha)�À��À��������������¿L1�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�btype.func(*"".Alpha, int, int, image/color.Alpha)���ÐÀ�btype.func(*"".Alpha, int, int, image/color.Alpha)���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Alpha���þÄgo.typelink.func(*image.Alpha, int, int, color.Alpha) func(*"".Alpha, int, int, image/color.Alpha)��������������btype.func(*"".Alpha, int, int, image/color.Alpha)���þ~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"� �� ��������/����������vgo.string."func(*image.Alpha, image.Rectangle) image.Image"���þvgo.string."func(*image.Alpha, image.Rectangle) image.Image"�`��`func(*image.Alpha, image.Rectangle) image.Image��þVtype.func(*"".Alpha, "".Rectangle) "".Image�°��°��������������ۀŸ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".Alpha, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".Alpha, "".Rectangle) "".Image���Р�Vtype.func(*"".Alpha, "".Rectangle) "".Image���€��type.*"".Alpha�����"type."".Rectangle��� ��type."".Image���þÄgo.typelink.func(*image.Alpha, image.Rectangle) image.Image func(*"".Alpha, "".Rectangle) "".Image��������������Vtype.func(*"".Alpha, "".Rectangle) "".Image���þ.go.string.hdr."AlphaAt"� �� ������������������&go.string."AlphaAt"���þ&go.string."AlphaAt"���AlphaAt��þTgo.string.hdr."func(int, int) color.Alpha"� �� ������������������Lgo.string."func(int, int) color.Alpha"���þLgo.string."func(int, int) color.Alpha"�@��6func(int, int) color.Alpha��þJtype.func(int, int) image/color.Alpha�°��°��������������t=¼ü�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.Alpha"���p��\go.weak.type.*func(int, int) image/color.Alpha���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.Alpha���Р�Jtype.func(int, int) image/color.Alpha���€��type.int�����type.int��� ��,type.image/color.Alpha���þŽgo.typelink.func(int, int) color.Alpha func(int, int) image/color.Alpha��������������Jtype.func(int, int) image/color.Alpha���þ0go.string.hdr."SetAlpha"� �� ������������������(go.string."SetAlpha"���þ(go.string."SetAlpha"� ��SetAlpha��þVgo.string.hdr."func(int, int, color.Alpha)"� �� ������������������Ngo.string."func(int, int, color.Alpha)"���þNgo.string."func(int, int, color.Alpha)"�@��8func(int, int, color.Alpha)��þLtype.func(int, int, image/color.Alpha)�°��°��������������5·CP�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int, color.Alpha)"���p��^go.weak.type.*func(int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.Alpha)���а�Ltype.func(int, int, image/color.Alpha)���€��type.int�����type.int��� ��,type.image/color.Alpha���þ’go.typelink.func(int, int, color.Alpha) func(int, int, image/color.Alpha)��������������Ltype.func(int, int, image/color.Alpha)���þtype.*"".Alpha��Ð��Ð��������������Úܸ�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.Alpha"���p��.go.weak.type.**"".Alpha���€��"runtime.zerovalue�����type."".Alpha���` �type.*"".Alpha���Àð�type.*"".Alpha���ð��.go.string.hdr."AlphaAt"�����Jtype.func(int, int) image/color.Alpha��� ��`type.func(*"".Alpha, int, int) image/color.Alpha���°��&"".(*Alpha).AlphaAt���À��&"".(*Alpha).AlphaAt���Ð��$go.string.hdr."At"���ð��Jtype.func(int, int) image/color.Color���€��`type.func(*"".Alpha, int, int) image/color.Color�����"".(*Alpha).At��� ��"".(*Alpha).At���°��,go.string.hdr."Bounds"���Ð��0type.func() "".Rectangle���à��Btype.func(*"".Alpha) "".Rectangle���ð��$"".(*Alpha).Bounds���€��$"".(*Alpha).Bounds�����4go.string.hdr."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".Alpha) image/color.Model���Ð��,"".(*Alpha).ColorModel���à��,"".(*Alpha).ColorModel���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��2type.func(*"".Alpha) bool���°��$"".(*Alpha).Opaque���À��$"".(*Alpha).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".Alpha, int, int) int�����*"".(*Alpha).PixOffset��� ��*"".(*Alpha).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".Alpha, int, int, image/color.Color)���ð��"".(*Alpha).Set���€��"".(*Alpha).Set�����0go.string.hdr."SetAlpha"���°��Ltype.func(int, int, image/color.Alpha)���À��btype.func(*"".Alpha, int, int, image/color.Alpha)���Ð��("".(*Alpha).SetAlpha���à��("".(*Alpha).SetAlpha���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".Alpha, "".Rectangle) "".Image���°��("".(*Alpha).SubImage���À��("".(*Alpha).SubImage���þ:go.string.hdr."image.Alpha16"� �� �������� ����������2go.string."image.Alpha16"���þ2go.string."image.Alpha16"� ��image.Alpha16��þ.go.string.hdr."Alpha16"� �� ������������������&go.string."Alpha16"���þ&go.string."Alpha16"���Alpha16��þtype."".Alpha16��€��€@��������������àD·{�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."image.Alpha16"���p�� type.*"".Alpha16���€��"runtime.zerovalue���À�type."".Alpha16���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".Alpha16���°��.go.string.hdr."Alpha16"���À��"go.importpath."".���Ѐ�type."".Alpha16���þ<go.string.hdr."*image.Alpha16"� �� ������������������4go.string."*image.Alpha16"���þ4go.string."*image.Alpha16"� ��*image.Alpha16��þxgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"� �� ��������,����������pgo.string."func(*image.Alpha16, int, int) color.Alpha16"���þpgo.string."func(*image.Alpha16, int, int) color.Alpha16"�`��Zfunc(*image.Alpha16, int, int) color.Alpha16��þhtype.func(*"".Alpha16, int, int) image/color.Alpha16�À��À��������������iÀ•¾�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"���p��zgo.weak.type.*func(*"".Alpha16, int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�htype.func(*"".Alpha16, int, int) image/color.Alpha16���а�htype.func(*"".Alpha16, int, int) image/color.Alpha16���€�� type.*"".Alpha16�����type.int��� ��type.int���°��0type.image/color.Alpha16���þÐgo.typelink.func(*image.Alpha16, int, int) color.Alpha16 func(*"".Alpha16, int, int) image/color.Alpha16��������������htype.func(*"".Alpha16, int, int) image/color.Alpha16���þtgo.string.hdr."func(*image.Alpha16, int, int) color.Color"� �� ��������*����������lgo.string."func(*image.Alpha16, int, int) color.Color"���þlgo.string."func(*image.Alpha16, int, int) color.Color"�`��Vfunc(*image.Alpha16, int, int) color.Color��þdtype.func(*"".Alpha16, int, int) image/color.Color�À��À��������������¿[€­�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Alpha16, int, int) color.Color"���p��vgo.weak.type.*func(*"".Alpha16, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".Alpha16, int, int) image/color.Color���а�dtype.func(*"".Alpha16, int, int) image/color.Color���€�� type.*"".Alpha16�����type.int��� ��type.int���°��,type.image/color.Color���þÈgo.typelink.func(*image.Alpha16, int, int) color.Color func(*"".Alpha16, int, int) image/color.Color��������������dtype.func(*"".Alpha16, int, int) image/color.Color���þhgo.string.hdr."func(*image.Alpha16) image.Rectangle"� �� ��������$����������`go.string."func(*image.Alpha16) image.Rectangle"���þ`go.string."func(*image.Alpha16) image.Rectangle"�P��Jfunc(*image.Alpha16) image.Rectangle��þFtype.func(*"".Alpha16) "".Rectangle� �� ��������������„„^;�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Alpha16) image.Rectangle"���p��Xgo.weak.type.*func(*"".Alpha16) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Alpha16) "".Rectangle���А�Ftype.func(*"".Alpha16) "".Rectangle���€�� type.*"".Alpha16�����"type."".Rectangle���þžgo.typelink.func(*image.Alpha16) image.Rectangle func(*"".Alpha16) "".Rectangle��������������Ftype.func(*"".Alpha16) "".Rectangle���þ`go.string.hdr."func(*image.Alpha16) color.Model"� �� �������� ����������Xgo.string."func(*image.Alpha16) color.Model"���þXgo.string."func(*image.Alpha16) color.Model"�P��Bfunc(*image.Alpha16) color.Model��þPtype.func(*"".Alpha16) image/color.Model� �� ��������������#*ëN�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Alpha16) color.Model"���p��bgo.weak.type.*func(*"".Alpha16) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".Alpha16) image/color.Model���А�Ptype.func(*"".Alpha16) image/color.Model���€�� type.*"".Alpha16�����,type.image/color.Model���þ go.typelink.func(*image.Alpha16) color.Model func(*"".Alpha16) image/color.Model��������������Ptype.func(*"".Alpha16) image/color.Model���þRgo.string.hdr."func(*image.Alpha16) bool"� �� ������������������Jgo.string."func(*image.Alpha16) bool"���þJgo.string."func(*image.Alpha16) bool"�@��4func(*image.Alpha16) bool��þ6type.func(*"".Alpha16) bool� �� ��������������‘bcÁ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Alpha16) bool"���p��Hgo.weak.type.*func(*"".Alpha16) bool���€��"runtime.zerovalue��� €�6type.func(*"".Alpha16) bool���А�6type.func(*"".Alpha16) bool���€�� type.*"".Alpha16�����type.bool���þxgo.typelink.func(*image.Alpha16) bool func(*"".Alpha16) bool��������������6type.func(*"".Alpha16) bool���þdgo.string.hdr."func(*image.Alpha16, int, int) int"� �� ��������"����������\go.string."func(*image.Alpha16, int, int) int"���þ\go.string."func(*image.Alpha16, int, int) int"�P��Ffunc(*image.Alpha16, int, int) int��þHtype.func(*"".Alpha16, int, int) int�À��À��������������¶ žK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.Alpha16, int, int) int"���p��Zgo.weak.type.*func(*"".Alpha16, int, int) int���€��"runtime.zerovalue��� €�Htype.func(*"".Alpha16, int, int) int���а�Htype.func(*"".Alpha16, int, int) int���€�� type.*"".Alpha16�����type.int��� ��type.int���°��type.int���þœgo.typelink.func(*image.Alpha16, int, int) int func(*"".Alpha16, int, int) int��������������Htype.func(*"".Alpha16, int, int) int���þvgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"� �� ��������+����������ngo.string."func(*image.Alpha16, int, int, color.Color)"���þngo.string."func(*image.Alpha16, int, int, color.Color)"�`��Xfunc(*image.Alpha16, int, int, color.Color)��þftype.func(*"".Alpha16, int, int, image/color.Color)�À��À��������������Ž°¢h�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"���p��xgo.weak.type.*func(*"".Alpha16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�ftype.func(*"".Alpha16, int, int, image/color.Color)���ÐÀ�ftype.func(*"".Alpha16, int, int, image/color.Color)���€�� type.*"".Alpha16�����type.int��� ��type.int���°��,type.image/color.Color���þÌgo.typelink.func(*image.Alpha16, int, int, color.Color) func(*"".Alpha16, int, int, image/color.Color)��������������ftype.func(*"".Alpha16, int, int, image/color.Color)���þzgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"� �� ��������-����������rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"���þrgo.string."func(*image.Alpha16, int, int, color.Alpha16)"�`��\func(*image.Alpha16, int, int, color.Alpha16)��þjtype.func(*"".Alpha16, int, int, image/color.Alpha16)�À��À�������������� &œõ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"���p��|go.weak.type.*func(*"".Alpha16, int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���ÐÀ�jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���€�� type.*"".Alpha16�����type.int��� ��type.int���°��0type.image/color.Alpha16���þÔgo.typelink.func(*image.Alpha16, int, int, color.Alpha16) func(*"".Alpha16, int, int, image/color.Alpha16)��������������jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���þ‚go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"� �� ��������1����������zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���þzgo.string."func(*image.Alpha16, image.Rectangle) image.Image"�p��dfunc(*image.Alpha16, image.Rectangle) image.Image��þZtype.func(*"".Alpha16, "".Rectangle) "".Image�°��°��������������i—8 �3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��‚go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".Alpha16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ztype.func(*"".Alpha16, "".Rectangle) "".Image���Р�Ztype.func(*"".Alpha16, "".Rectangle) "".Image���€�� type.*"".Alpha16�����"type."".Rectangle��� ��type."".Image���þÌgo.typelink.func(*image.Alpha16, image.Rectangle) image.Image func(*"".Alpha16, "".Rectangle) "".Image��������������Ztype.func(*"".Alpha16, "".Rectangle) "".Image���þ2go.string.hdr."Alpha16At"� �� �������� ����������*go.string."Alpha16At"���þ*go.string."Alpha16At"� ��Alpha16At��þXgo.string.hdr."func(int, int) color.Alpha16"� �� ������������������Pgo.string."func(int, int) color.Alpha16"���þPgo.string."func(int, int) color.Alpha16"�@��:func(int, int) color.Alpha16��þNtype.func(int, int) image/color.Alpha16�°��°��������������AŒd!�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int) color.Alpha16"���p��`go.weak.type.*func(int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�Ntype.func(int, int) image/color.Alpha16���Р�Ntype.func(int, int) image/color.Alpha16���€��type.int�����type.int��� ��0type.image/color.Alpha16���þ–go.typelink.func(int, int) color.Alpha16 func(int, int) image/color.Alpha16��������������Ntype.func(int, int) image/color.Alpha16���þ4go.string.hdr."SetAlpha16"� �� ��������
����������,go.string."SetAlpha16"���þ,go.string."SetAlpha16"� ��SetAlpha16��þZgo.string.hdr."func(int, int, color.Alpha16)"� �� ������������������Rgo.string."func(int, int, color.Alpha16)"���þRgo.string."func(int, int, color.Alpha16)"�@��<func(int, int, color.Alpha16)��þPtype.func(int, int, image/color.Alpha16)�°��°��������������ø­Z|�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(int, int, color.Alpha16)"���p��bgo.weak.type.*func(int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�Ptype.func(int, int, image/color.Alpha16)���а�Ptype.func(int, int, image/color.Alpha16)���€��type.int�����type.int��� ��0type.image/color.Alpha16���þšgo.typelink.func(int, int, color.Alpha16) func(int, int, image/color.Alpha16)��������������Ptype.func(int, int, image/color.Alpha16)���þ type.*"".Alpha16��Ð��Ð��������������6L”æ�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.Alpha16"���p��2go.weak.type.**"".Alpha16���€��"runtime.zerovalue�����type."".Alpha16���` � type.*"".Alpha16���Àð� type.*"".Alpha16���ð��2go.string.hdr."Alpha16At"�����Ntype.func(int, int) image/color.Alpha16��� ��htype.func(*"".Alpha16, int, int) image/color.Alpha16���°��."".(*Alpha16).Alpha16At���À��."".(*Alpha16).Alpha16At���Ð��$go.string.hdr."At"���ð��Jtype.func(int, int) image/color.Color���€��dtype.func(*"".Alpha16, int, int) image/color.Color����� "".(*Alpha16).At��� �� "".(*Alpha16).At���°��,go.string.hdr."Bounds"���Ð��0type.func() "".Rectangle���à��Ftype.func(*"".Alpha16) "".Rectangle���ð��("".(*Alpha16).Bounds���€��("".(*Alpha16).Bounds�����4go.string.hdr."ColorModel"���°��:type.func() image/color.Model���À��Ptype.func(*"".Alpha16) image/color.Model���Ð��0"".(*Alpha16).ColorModel���à��0"".(*Alpha16).ColorModel���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��6type.func(*"".Alpha16) bool���°��("".(*Alpha16).Opaque���À��("".(*Alpha16).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".Alpha16, int, int) int�����."".(*Alpha16).PixOffset��� ��."".(*Alpha16).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".Alpha16, int, int, image/color.Color)���ð��""".(*Alpha16).Set���€��""".(*Alpha16).Set�����4go.string.hdr."SetAlpha16"���°��Ptype.func(int, int, image/color.Alpha16)���À��jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���Ð��0"".(*Alpha16).SetAlpha16���à��0"".(*Alpha16).SetAlpha16���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".Alpha16, "".Rectangle) "".Image���°��,"".(*Alpha16).SubImage���À��,"".(*Alpha16).SubImage���þ4go.string.hdr."image.Gray"� �� ��������
����������,go.string."image.Gray"���þ,go.string."image.Gray"� ��image.Gray��þ(go.string.hdr."Gray"� �� ������������������ go.string."Gray"���þ go.string."Gray"���
Gray��þtype."".Gray��€��€@��������������a>ä1�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."image.Gray"���p��type.*"".Gray���€��"runtime.zerovalue���À�type."".Gray���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".Gray���°��(go.string.hdr."Gray"���À��"go.importpath."".���Ѐ�type."".Gray���þ6go.string.hdr."*image.Gray"� �� �������� ����������.go.string."*image.Gray"���þ.go.string."*image.Gray"� ��*image.Gray��þngo.string.hdr."func(*image.Gray, int, int) color.Color"� �� ��������'����������fgo.string."func(*image.Gray, int, int) color.Color"���þfgo.string."func(*image.Gray, int, int) color.Color"�P��Pfunc(*image.Gray, int, int) color.Color��þ^type.func(*"".Gray, int, int) image/color.Color�À��À��������������9kK�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.Gray, int, int) color.Color"���p��pgo.weak.type.*func(*"".Gray, int, int) image/color.Color���€��"runtime.zerovalue��� €�^type.func(*"".Gray, int, int) image/color.Color���а�^type.func(*"".Gray, int, int) image/color.Color���€��type.*"".Gray�����type.int��� ��type.int���°��,type.image/color.Color���þ¼go.typelink.func(*image.Gray, int, int) color.Color func(*"".Gray, int, int) image/color.Color��������������^type.func(*"".Gray, int, int) image/color.Color���þbgo.string.hdr."func(*image.Gray) image.Rectangle"� �� ��������!����������Zgo.string."func(*image.Gray) image.Rectangle"���þZgo.string."func(*image.Gray) image.Rectangle"�P��Dfunc(*image.Gray) image.Rectangle��þ@type.func(*"".Gray) "".Rectangle� �� ��������������°¸e�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Gray) image.Rectangle"���p��Rgo.weak.type.*func(*"".Gray) "".Rectangle���€��"runtime.zerovalue��� €�@type.func(*"".Gray) "".Rectangle���А�@type.func(*"".Gray) "".Rectangle���€��type.*"".Gray�����"type."".Rectangle���þ’go.typelink.func(*image.Gray) image.Rectangle func(*"".Gray) "".Rectangle��������������@type.func(*"".Gray) "".Rectangle���þZgo.string.hdr."func(*image.Gray) color.Model"� �� ������������������Rgo.string."func(*image.Gray) color.Model"���þRgo.string."func(*image.Gray) color.Model"�@��<func(*image.Gray) color.Model��þJtype.func(*"".Gray) image/color.Model� �� ��������������ý·áò�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.Gray) color.Model"���p��\go.weak.type.*func(*"".Gray) image/color.Model���€��"runtime.zerovalue��� €�Jtype.func(*"".Gray) image/color.Model���А�Jtype.func(*"".Gray) image/color.Model���€��type.*"".Gray�����,type.image/color.Model���þ”go.typelink.func(*image.Gray) color.Model func(*"".Gray) image/color.Model��������������Jtype.func(*"".Gray) image/color.Model���þlgo.string.hdr."func(*image.Gray, int, int) color.Gray"� �� ��������&����������dgo.string."func(*image.Gray, int, int) color.Gray"���þdgo.string."func(*image.Gray, int, int) color.Gray"�P��Nfunc(*image.Gray, int, int) color.Gray��þ\type.func(*"".Gray, int, int) image/color.Gray�À��À��������������Š½žh�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Gray, int, int) color.Gray"���p��ngo.weak.type.*func(*"".Gray, int, int) image/color.Gray���€��"runtime.zerovalue��� €�\type.func(*"".Gray, int, int) image/color.Gray���а�\type.func(*"".Gray, int, int) image/color.Gray���€��type.*"".Gray�����type.int��� ��type.int���°��*type.image/color.Gray���þ¸go.typelink.func(*image.Gray, int, int) color.Gray func(*"".Gray, int, int) image/color.Gray��������������\type.func(*"".Gray, int, int) image/color.Gray���þLgo.string.hdr."func(*image.Gray) bool"� �� ������������������Dgo.string."func(*image.Gray) bool"���þDgo.string."func(*image.Gray) bool"�0��.func(*image.Gray) bool��þ0type.func(*"".Gray) bool� �� ��������������PdT`�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.Gray) bool"���p��Bgo.weak.type.*func(*"".Gray) bool���€��"runtime.zerovalue��� €�0type.func(*"".Gray) bool���А�0type.func(*"".Gray) bool���€��type.*"".Gray�����type.bool���þlgo.typelink.func(*image.Gray) bool func(*"".Gray) bool��������������0type.func(*"".Gray) bool���þ^go.string.hdr."func(*image.Gray, int, int) int"� �� ������������������Vgo.string."func(*image.Gray, int, int) int"���þVgo.string."func(*image.Gray, int, int) int"�@��@func(*image.Gray, int, int) int��þBtype.func(*"".Gray, int, int) int�À��À��������������Cþ0ò�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.Gray, int, int) int"���p��Tgo.weak.type.*func(*"".Gray, int, int) int���€��"runtime.zerovalue��� €�Btype.func(*"".Gray, int, int) int���а�Btype.func(*"".Gray, int, int) int���€��type.*"".Gray�����type.int��� ��type.int���°��type.int���þgo.typelink.func(*image.Gray, int, int) int func(*"".Gray, int, int) int��������������Btype.func(*"".Gray, int, int) int���þpgo.string.hdr."func(*image.Gray, int, int, color.Color)"� �� ��������(����������hgo.string."func(*image.Gray, int, int, color.Color)"���þhgo.string."func(*image.Gray, int, int, color.Color)"�`��Rfunc(*image.Gray, int, int, color.Color)��þ`type.func(*"".Gray, int, int, image/color.Color)�À��À��������������¿KNo�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.Gray, int, int, color.Color)"���p��rgo.weak.type.*func(*"".Gray, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`type.func(*"".Gray, int, int, image/color.Color)���ÐÀ�`type.func(*"".Gray, int, int, image/color.Color)���€��type.*"".Gray�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.Gray, int, int, color.Color) func(*"".Gray, int, int, image/color.Color)��������������`type.func(*"".Gray, int, int, image/color.Color)���þngo.string.hdr."func(*image.Gray, int, int, color.Gray)"� �� ��������'����������fgo.string."func(*image.Gray, int, int, color.Gray)"���þfgo.string."func(*image.Gray, int, int, color.Gray)"�P��Pfunc(*image.Gray, int, int, color.Gray)��þ^type.func(*"".Gray, int, int, image/color.Gray)�À��À��������������ƒhMæ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.Gray, int, int, color.Gray)"���p��pgo.weak.type.*func(*"".Gray, int, int, image/color.Gray)���€��"runtime.zerovalue��� €�^type.func(*"".Gray, int, int, image/color.Gray)���ÐÀ�^type.func(*"".Gray, int, int, image/color.Gray)���€��type.*"".Gray�����type.int��� ��type.int���°��*type.image/color.Gray���þ¼go.typelink.func(*image.Gray, int, int, color.Gray) func(*"".Gray, int, int, image/color.Gray)��������������^type.func(*"".Gray, int, int, image/color.Gray)���þ|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"� �� ��������.����������tgo.string."func(*image.Gray, image.Rectangle) image.Image"���þtgo.string."func(*image.Gray, image.Rectangle) image.Image"�`��^func(*image.Gray, image.Rectangle) image.Image��þTtype.func(*"".Gray, "".Rectangle) "".Image�°��°��������������7I–�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".Gray, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ttype.func(*"".Gray, "".Rectangle) "".Image���Р�Ttype.func(*"".Gray, "".Rectangle) "".Image���€��type.*"".Gray�����"type."".Rectangle��� ��type."".Image���þÀgo.typelink.func(*image.Gray, image.Rectangle) image.Image func(*"".Gray, "".Rectangle) "".Image��������������Ttype.func(*"".Gray, "".Rectangle) "".Image���þ,go.string.hdr."GrayAt"� �� ������������������$go.string."GrayAt"���þ$go.string."GrayAt"���GrayAt��þRgo.string.hdr."func(int, int) color.Gray"� �� ������������������Jgo.string."func(int, int) color.Gray"���þJgo.string."func(int, int) color.Gray"�@��4func(int, int) color.Gray��þHtype.func(int, int) image/color.Gray�°��°��������������šÜ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.Gray"���p��Zgo.weak.type.*func(int, int) image/color.Gray���€��"runtime.zerovalue��� €�Htype.func(int, int) image/color.Gray���Р�Htype.func(int, int) image/color.Gray���€��type.int�����type.int��� ��*type.image/color.Gray���þŠgo.typelink.func(int, int) color.Gray func(int, int) image/color.Gray��������������Htype.func(int, int) image/color.Gray���þ.go.string.hdr."SetGray"� �� ������������������&go.string."SetGray"���þ&go.string."SetGray"���SetGray��þTgo.string.hdr."func(int, int, color.Gray)"� �� ������������������Lgo.string."func(int, int, color.Gray)"���þLgo.string."func(int, int, color.Gray)"�@��6func(int, int, color.Gray)��þJtype.func(int, int, image/color.Gray)�°��°��������������ð=qŠ�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.Gray)"���p��\go.weak.type.*func(int, int, image/color.Gray)���€��"runtime.zerovalue��� €�Jtype.func(int, int, image/color.Gray)���а�Jtype.func(int, int, image/color.Gray)���€��type.int�����type.int��� ��*type.image/color.Gray���þŽgo.typelink.func(int, int, color.Gray) func(int, int, image/color.Gray)��������������Jtype.func(int, int, image/color.Gray)���þtype.*"".Gray��Ð��Ð��������������~ ßì�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.Gray"���p��,go.weak.type.**"".Gray���€��"runtime.zerovalue�����type."".Gray���` �type.*"".Gray���Àð�type.*"".Gray���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".Gray, int, int) image/color.Color���°��"".(*Gray).At���À��"".(*Gray).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".Gray) "".Rectangle�����""".(*Gray).Bounds��� ��""".(*Gray).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".Gray) image/color.Model���ð��*"".(*Gray).ColorModel���€��*"".(*Gray).ColorModel�����,go.string.hdr."GrayAt"���°��Htype.func(int, int) image/color.Gray���À��\type.func(*"".Gray, int, int) image/color.Gray���Ð��""".(*Gray).GrayAt���à��""".(*Gray).GrayAt���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��0type.func(*"".Gray) bool���°��""".(*Gray).Opaque���À��""".(*Gray).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Btype.func(*"".Gray, int, int) int�����("".(*Gray).PixOffset��� ��("".(*Gray).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".Gray, int, int, image/color.Color)���ð��"".(*Gray).Set���€��"".(*Gray).Set�����.go.string.hdr."SetGray"���°��Jtype.func(int, int, image/color.Gray)���À��^type.func(*"".Gray, int, int, image/color.Gray)���Ð��$"".(*Gray).SetGray���à��$"".(*Gray).SetGray���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".Gray, "".Rectangle) "".Image���°��&"".(*Gray).SubImage���À��&"".(*Gray).SubImage���þ8go.string.hdr."image.Gray16"� �� �������� ����������0go.string."image.Gray16"���þ0go.string."image.Gray16"� ��image.Gray16��þ,go.string.hdr."Gray16"� �� ������������������$go.string."Gray16"���þ$go.string."Gray16"���Gray16��þtype."".Gray16��€��€@��������������jn~%�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."image.Gray16"���p��type.*"".Gray16���€��"runtime.zerovalue���À�type."".Gray16���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".Gray16���°��,go.string.hdr."Gray16"���À��"go.importpath."".���Ѐ�type."".Gray16���þ:go.string.hdr."*image.Gray16"� �� �������� ����������2go.string."*image.Gray16"���þ2go.string."*image.Gray16"� ��*image.Gray16��þrgo.string.hdr."func(*image.Gray16, int, int) color.Color"� �� ��������)����������jgo.string."func(*image.Gray16, int, int) color.Color"���þjgo.string."func(*image.Gray16, int, int) color.Color"�`��Tfunc(*image.Gray16, int, int) color.Color��þbtype.func(*"".Gray16, int, int) image/color.Color�À��À��������������I{±÷�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��rgo.string.hdr."func(*image.Gray16, int, int) color.Color"���p��tgo.weak.type.*func(*"".Gray16, int, int) image/color.Color���€��"runtime.zerovalue��� €�btype.func(*"".Gray16, int, int) image/color.Color���а�btype.func(*"".Gray16, int, int) image/color.Color���€��type.*"".Gray16�����type.int��� ��type.int���°��,type.image/color.Color���þÄgo.typelink.func(*image.Gray16, int, int) color.Color func(*"".Gray16, int, int) image/color.Color��������������btype.func(*"".Gray16, int, int) image/color.Color���þfgo.string.hdr."func(*image.Gray16) image.Rectangle"� �� ��������#����������^go.string."func(*image.Gray16) image.Rectangle"���þ^go.string."func(*image.Gray16) image.Rectangle"�P��Hfunc(*image.Gray16) image.Rectangle��þDtype.func(*"".Gray16) "".Rectangle� �� ��������������Í!ʋ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Gray16) image.Rectangle"���p��Vgo.weak.type.*func(*"".Gray16) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".Gray16) "".Rectangle���А�Dtype.func(*"".Gray16) "".Rectangle���€��type.*"".Gray16�����"type."".Rectangle���þšgo.typelink.func(*image.Gray16) image.Rectangle func(*"".Gray16) "".Rectangle��������������Dtype.func(*"".Gray16) "".Rectangle���þ^go.string.hdr."func(*image.Gray16) color.Model"� �� ������������������Vgo.string."func(*image.Gray16) color.Model"���þVgo.string."func(*image.Gray16) color.Model"�@��@func(*image.Gray16) color.Model��þNtype.func(*"".Gray16) image/color.Model� �� ��������������<Oç�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.Gray16) color.Model"���p��`go.weak.type.*func(*"".Gray16) image/color.Model���€��"runtime.zerovalue��� €�Ntype.func(*"".Gray16) image/color.Model���А�Ntype.func(*"".Gray16) image/color.Model���€��type.*"".Gray16�����,type.image/color.Model���þœgo.typelink.func(*image.Gray16) color.Model func(*"".Gray16) image/color.Model��������������Ntype.func(*"".Gray16) image/color.Model���þtgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"� �� ��������*����������lgo.string."func(*image.Gray16, int, int) color.Gray16"���þlgo.string."func(*image.Gray16, int, int) color.Gray16"�`��Vfunc(*image.Gray16, int, int) color.Gray16��þdtype.func(*"".Gray16, int, int) image/color.Gray16�À��À��������������ùKµ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"���p��vgo.weak.type.*func(*"".Gray16, int, int) image/color.Gray16���€��"runtime.zerovalue��� €�dtype.func(*"".Gray16, int, int) image/color.Gray16���а�dtype.func(*"".Gray16, int, int) image/color.Gray16���€��type.*"".Gray16�����type.int��� ��type.int���°��.type.image/color.Gray16���þÈgo.typelink.func(*image.Gray16, int, int) color.Gray16 func(*"".Gray16, int, int) image/color.Gray16��������������dtype.func(*"".Gray16, int, int) image/color.Gray16���þPgo.string.hdr."func(*image.Gray16) bool"� �� ������������������Hgo.string."func(*image.Gray16) bool"���þHgo.string."func(*image.Gray16) bool"�@��2func(*image.Gray16) bool��þ4type.func(*"".Gray16) bool� �� ��������������Òò®w�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(*image.Gray16) bool"���p��Fgo.weak.type.*func(*"".Gray16) bool���€��"runtime.zerovalue��� €�4type.func(*"".Gray16) bool���А�4type.func(*"".Gray16) bool���€��type.*"".Gray16�����type.bool���þtgo.typelink.func(*image.Gray16) bool func(*"".Gray16) bool��������������4type.func(*"".Gray16) bool���þbgo.string.hdr."func(*image.Gray16, int, int) int"� �� ��������!����������Zgo.string."func(*image.Gray16, int, int) int"���þZgo.string."func(*image.Gray16, int, int) int"�P��Dfunc(*image.Gray16, int, int) int��þFtype.func(*"".Gray16, int, int) int�À��À��������������ìÎI½�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Gray16, int, int) int"���p��Xgo.weak.type.*func(*"".Gray16, int, int) int���€��"runtime.zerovalue��� €�Ftype.func(*"".Gray16, int, int) int���а�Ftype.func(*"".Gray16, int, int) int���€��type.*"".Gray16�����type.int��� ��type.int���°��type.int���þ˜go.typelink.func(*image.Gray16, int, int) int func(*"".Gray16, int, int) int��������������Ftype.func(*"".Gray16, int, int) int���þtgo.string.hdr."func(*image.Gray16, int, int, color.Color)"� �� ��������*����������lgo.string."func(*image.Gray16, int, int, color.Color)"���þlgo.string."func(*image.Gray16, int, int, color.Color)"�`��Vfunc(*image.Gray16, int, int, color.Color)��þdtype.func(*"".Gray16, int, int, image/color.Color)�À��À��������������¾ôHª�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Gray16, int, int, color.Color)"���p��vgo.weak.type.*func(*"".Gray16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�dtype.func(*"".Gray16, int, int, image/color.Color)���ÐÀ�dtype.func(*"".Gray16, int, int, image/color.Color)���€��type.*"".Gray16�����type.int��� ��type.int���°��,type.image/color.Color���þÈgo.typelink.func(*image.Gray16, int, int, color.Color) func(*"".Gray16, int, int, image/color.Color)��������������dtype.func(*"".Gray16, int, int, image/color.Color)���þvgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"� �� ��������+����������ngo.string."func(*image.Gray16, int, int, color.Gray16)"���þngo.string."func(*image.Gray16, int, int, color.Gray16)"�`��Xfunc(*image.Gray16, int, int, color.Gray16)��þftype.func(*"".Gray16, int, int, image/color.Gray16)�À��À��������������]æ8�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"���p��xgo.weak.type.*func(*"".Gray16, int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�ftype.func(*"".Gray16, int, int, image/color.Gray16)���ÐÀ�ftype.func(*"".Gray16, int, int, image/color.Gray16)���€��type.*"".Gray16�����type.int��� ��type.int���°��.type.image/color.Gray16���þÌgo.typelink.func(*image.Gray16, int, int, color.Gray16) func(*"".Gray16, int, int, image/color.Gray16)��������������ftype.func(*"".Gray16, int, int, image/color.Gray16)���þ€go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"� �� ��������0����������xgo.string."func(*image.Gray16, image.Rectangle) image.Image"���þxgo.string."func(*image.Gray16, image.Rectangle) image.Image"�p��bfunc(*image.Gray16, image.Rectangle) image.Image��þXtype.func(*"".Gray16, "".Rectangle) "".Image�°��°��������������<'k)�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��€go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".Gray16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Xtype.func(*"".Gray16, "".Rectangle) "".Image���Р�Xtype.func(*"".Gray16, "".Rectangle) "".Image���€��type.*"".Gray16�����"type."".Rectangle��� ��type."".Image���þÈgo.typelink.func(*image.Gray16, image.Rectangle) image.Image func(*"".Gray16, "".Rectangle) "".Image��������������Xtype.func(*"".Gray16, "".Rectangle) "".Image���þ0go.string.hdr."Gray16At"� �� ������������������(go.string."Gray16At"���þ(go.string."Gray16At"� ��Gray16At��þVgo.string.hdr."func(int, int) color.Gray16"� �� ������������������Ngo.string."func(int, int) color.Gray16"���þNgo.string."func(int, int) color.Gray16"�@��8func(int, int) color.Gray16��þLtype.func(int, int) image/color.Gray16�°��°��������������ÄX}8�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func(int, int) color.Gray16"���p��^go.weak.type.*func(int, int) image/color.Gray16���€��"runtime.zerovalue��� €�Ltype.func(int, int) image/color.Gray16���Р�Ltype.func(int, int) image/color.Gray16���€��type.int�����type.int��� ��.type.image/color.Gray16���þ’go.typelink.func(int, int) color.Gray16 func(int, int) image/color.Gray16��������������Ltype.func(int, int) image/color.Gray16���þ2go.string.hdr."SetGray16"� �� �������� ����������*go.string."SetGray16"���þ*go.string."SetGray16"� ��SetGray16��þXgo.string.hdr."func(int, int, color.Gray16)"� �� ������������������Pgo.string."func(int, int, color.Gray16)"���þPgo.string."func(int, int, color.Gray16)"�@��:func(int, int, color.Gray16)��þNtype.func(int, int, image/color.Gray16)�°��°��������������SL(�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(int, int, color.Gray16)"���p��`go.weak.type.*func(int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�Ntype.func(int, int, image/color.Gray16)���а�Ntype.func(int, int, image/color.Gray16)���€��type.int�����type.int��� ��.type.image/color.Gray16���þ–go.typelink.func(int, int, color.Gray16) func(int, int, image/color.Gray16)��������������Ntype.func(int, int, image/color.Gray16)���þtype.*"".Gray16��Ð��Ð��������������–þÝ�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."*image.Gray16"���p��0go.weak.type.**"".Gray16���€��"runtime.zerovalue�����type."".Gray16���` �type.*"".Gray16���Àð�type.*"".Gray16���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".Gray16, int, int) image/color.Color���°��"".(*Gray16).At���À��"".(*Gray16).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".Gray16) "".Rectangle�����&"".(*Gray16).Bounds��� ��&"".(*Gray16).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".Gray16) image/color.Model���ð��."".(*Gray16).ColorModel���€��."".(*Gray16).ColorModel�����0go.string.hdr."Gray16At"���°��Ltype.func(int, int) image/color.Gray16���À��dtype.func(*"".Gray16, int, int) image/color.Gray16���Ð��*"".(*Gray16).Gray16At���à��*"".(*Gray16).Gray16At���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��4type.func(*"".Gray16) bool���°��&"".(*Gray16).Opaque���À��&"".(*Gray16).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Ftype.func(*"".Gray16, int, int) int�����,"".(*Gray16).PixOffset��� ��,"".(*Gray16).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".Gray16, int, int, image/color.Color)���ð�� "".(*Gray16).Set���€�� "".(*Gray16).Set�����2go.string.hdr."SetGray16"���°��Ntype.func(int, int, image/color.Gray16)���À��ftype.func(*"".Gray16, int, int, image/color.Gray16)���Ð��,"".(*Gray16).SetGray16���à��,"".(*Gray16).SetGray16���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".Gray16, "".Rectangle) "".Image���°��*"".(*Gray16).SubImage���À��*"".(*Gray16).SubImage���þ4go.string.hdr."image.CMYK"� �� ��������
����������,go.string."image.CMYK"���þ,go.string."image.CMYK"� ��image.CMYK��þ(go.string.hdr."CMYK"� �� ������������������ go.string."CMYK"���þ go.string."CMYK"���
CMYK��þtype."".CMYK��€��€@��������������ÖÝ3v�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� 0à� runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."image.CMYK"���p��type.*"".CMYK���€��"runtime.zerovalue���À�type."".CMYK���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���`°�type."".CMYK���°��(go.string.hdr."CMYK"���À��"go.importpath."".���Ѐ�type."".CMYK���þ6go.string.hdr."*image.CMYK"� �� �������� ����������.go.string."*image.CMYK"���þ.go.string."*image.CMYK"� ��*image.CMYK��þngo.string.hdr."func(*image.CMYK, int, int) color.Color"� �� ��������'����������fgo.string."func(*image.CMYK, int, int) color.Color"���þfgo.string."func(*image.CMYK, int, int) color.Color"�P��Pfunc(*image.CMYK, int, int) color.Color��þ^type.func(*"".CMYK, int, int) image/color.Color�À��À��������������¶¬�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.CMYK, int, int) color.Color"���p��pgo.weak.type.*func(*"".CMYK, int, int) image/color.Color���€��"runtime.zerovalue��� €�^type.func(*"".CMYK, int, int) image/color.Color���а�^type.func(*"".CMYK, int, int) image/color.Color���€��type.*"".CMYK�����type.int��� ��type.int���°��,type.image/color.Color���þ¼go.typelink.func(*image.CMYK, int, int) color.Color func(*"".CMYK, int, int) image/color.Color��������������^type.func(*"".CMYK, int, int) image/color.Color���þbgo.string.hdr."func(*image.CMYK) image.Rectangle"� �� ��������!����������Zgo.string."func(*image.CMYK) image.Rectangle"���þZgo.string."func(*image.CMYK) image.Rectangle"�P��Dfunc(*image.CMYK) image.Rectangle��þ@type.func(*"".CMYK) "".Rectangle� �� ��������������|U@‚�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.CMYK) image.Rectangle"���p��Rgo.weak.type.*func(*"".CMYK) "".Rectangle���€��"runtime.zerovalue��� €�@type.func(*"".CMYK) "".Rectangle���А�@type.func(*"".CMYK) "".Rectangle���€��type.*"".CMYK�����"type."".Rectangle���þ’go.typelink.func(*image.CMYK) image.Rectangle func(*"".CMYK) "".Rectangle��������������@type.func(*"".CMYK) "".Rectangle���þlgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"� �� ��������&����������dgo.string."func(*image.CMYK, int, int) color.CMYK"���þdgo.string."func(*image.CMYK, int, int) color.CMYK"�P��Nfunc(*image.CMYK, int, int) color.CMYK��þ\type.func(*"".CMYK, int, int) image/color.CMYK�À��À��������������£+�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"���p��ngo.weak.type.*func(*"".CMYK, int, int) image/color.CMYK���€��"runtime.zerovalue��� €�\type.func(*"".CMYK, int, int) image/color.CMYK���а�\type.func(*"".CMYK, int, int) image/color.CMYK���€��type.*"".CMYK�����type.int��� ��type.int���°��*type.image/color.CMYK���þ¸go.typelink.func(*image.CMYK, int, int) color.CMYK func(*"".CMYK, int, int) image/color.CMYK��������������\type.func(*"".CMYK, int, int) image/color.CMYK���þZgo.string.hdr."func(*image.CMYK) color.Model"� �� ������������������Rgo.string."func(*image.CMYK) color.Model"���þRgo.string."func(*image.CMYK) color.Model"�@��<func(*image.CMYK) color.Model��þJtype.func(*"".CMYK) image/color.Model� �� ��������������UžÏÿ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(*image.CMYK) color.Model"���p��\go.weak.type.*func(*"".CMYK) image/color.Model���€��"runtime.zerovalue��� €�Jtype.func(*"".CMYK) image/color.Model���А�Jtype.func(*"".CMYK) image/color.Model���€��type.*"".CMYK�����,type.image/color.Model���þ”go.typelink.func(*image.CMYK) color.Model func(*"".CMYK) image/color.Model��������������Jtype.func(*"".CMYK) image/color.Model���þLgo.string.hdr."func(*image.CMYK) bool"� �� ������������������Dgo.string."func(*image.CMYK) bool"���þDgo.string."func(*image.CMYK) bool"�0��.func(*image.CMYK) bool��þ0type.func(*"".CMYK) bool� �� ��������������-YêE�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Lgo.string.hdr."func(*image.CMYK) bool"���p��Bgo.weak.type.*func(*"".CMYK) bool���€��"runtime.zerovalue��� €�0type.func(*"".CMYK) bool���А�0type.func(*"".CMYK) bool���€��type.*"".CMYK�����type.bool���þlgo.typelink.func(*image.CMYK) bool func(*"".CMYK) bool��������������0type.func(*"".CMYK) bool���þ^go.string.hdr."func(*image.CMYK, int, int) int"� �� ������������������Vgo.string."func(*image.CMYK, int, int) int"���þVgo.string."func(*image.CMYK, int, int) int"�@��@func(*image.CMYK, int, int) int��þBtype.func(*"".CMYK, int, int) int�À��À��������������œ*éž�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*image.CMYK, int, int) int"���p��Tgo.weak.type.*func(*"".CMYK, int, int) int���€��"runtime.zerovalue��� €�Btype.func(*"".CMYK, int, int) int���а�Btype.func(*"".CMYK, int, int) int���€��type.*"".CMYK�����type.int��� ��type.int���°��type.int���þgo.typelink.func(*image.CMYK, int, int) int func(*"".CMYK, int, int) int��������������Btype.func(*"".CMYK, int, int) int���þpgo.string.hdr."func(*image.CMYK, int, int, color.Color)"� �� ��������(����������hgo.string."func(*image.CMYK, int, int, color.Color)"���þhgo.string."func(*image.CMYK, int, int, color.Color)"�`��Rfunc(*image.CMYK, int, int, color.Color)��þ`type.func(*"".CMYK, int, int, image/color.Color)�À��À��������������_üÆÿ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.CMYK, int, int, color.Color)"���p��rgo.weak.type.*func(*"".CMYK, int, int, image/color.Color)���€��"runtime.zerovalue��� €�`type.func(*"".CMYK, int, int, image/color.Color)���ÐÀ�`type.func(*"".CMYK, int, int, image/color.Color)���€��type.*"".CMYK�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.CMYK, int, int, color.Color) func(*"".CMYK, int, int, image/color.Color)��������������`type.func(*"".CMYK, int, int, image/color.Color)���þngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"� �� ��������'����������fgo.string."func(*image.CMYK, int, int, color.CMYK)"���þfgo.string."func(*image.CMYK, int, int, color.CMYK)"�P��Pfunc(*image.CMYK, int, int, color.CMYK)��þ^type.func(*"".CMYK, int, int, image/color.CMYK)�À��À��������������új¯8�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"���p��pgo.weak.type.*func(*"".CMYK, int, int, image/color.CMYK)���€��"runtime.zerovalue��� €�^type.func(*"".CMYK, int, int, image/color.CMYK)���ÐÀ�^type.func(*"".CMYK, int, int, image/color.CMYK)���€��type.*"".CMYK�����type.int��� ��type.int���°��*type.image/color.CMYK���þ¼go.typelink.func(*image.CMYK, int, int, color.CMYK) func(*"".CMYK, int, int, image/color.CMYK)��������������^type.func(*"".CMYK, int, int, image/color.CMYK)���þ|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"� �� ��������.����������tgo.string."func(*image.CMYK, image.Rectangle) image.Image"���þtgo.string."func(*image.CMYK, image.Rectangle) image.Image"�`��^func(*image.CMYK, image.Rectangle) image.Image��þTtype.func(*"".CMYK, "".Rectangle) "".Image�°��°��������������} ‚i�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".CMYK, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ttype.func(*"".CMYK, "".Rectangle) "".Image���Р�Ttype.func(*"".CMYK, "".Rectangle) "".Image���€��type.*"".CMYK�����"type."".Rectangle��� ��type."".Image���þÀgo.typelink.func(*image.CMYK, image.Rectangle) image.Image func(*"".CMYK, "".Rectangle) "".Image��������������Ttype.func(*"".CMYK, "".Rectangle) "".Image���þ,go.string.hdr."CMYKAt"� �� ������������������$go.string."CMYKAt"���þ$go.string."CMYKAt"���CMYKAt��þRgo.string.hdr."func(int, int) color.CMYK"� �� ������������������Jgo.string."func(int, int) color.CMYK"���þJgo.string."func(int, int) color.CMYK"�@��4func(int, int) color.CMYK��þHtype.func(int, int) image/color.CMYK�°��°��������������ûÕ�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(int, int) color.CMYK"���p��Zgo.weak.type.*func(int, int) image/color.CMYK���€��"runtime.zerovalue��� €�Htype.func(int, int) image/color.CMYK���Р�Htype.func(int, int) image/color.CMYK���€��type.int�����type.int��� ��*type.image/color.CMYK���þŠgo.typelink.func(int, int) color.CMYK func(int, int) image/color.CMYK��������������Htype.func(int, int) image/color.CMYK���þ.go.string.hdr."SetCMYK"� �� ������������������&go.string."SetCMYK"���þ&go.string."SetCMYK"���SetCMYK��þTgo.string.hdr."func(int, int, color.CMYK)"� �� ������������������Lgo.string."func(int, int, color.CMYK)"���þLgo.string."func(int, int, color.CMYK)"�@��6func(int, int, color.CMYK)��þJtype.func(int, int, image/color.CMYK)�°��°��������������ÌÕ_¹�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int, color.CMYK)"���p��\go.weak.type.*func(int, int, image/color.CMYK)���€��"runtime.zerovalue��� €�Jtype.func(int, int, image/color.CMYK)���а�Jtype.func(int, int, image/color.CMYK)���€��type.int�����type.int��� ��*type.image/color.CMYK���þŽgo.typelink.func(int, int, color.CMYK) func(int, int, image/color.CMYK)��������������Jtype.func(int, int, image/color.CMYK)���þtype.*"".CMYK��Ð��Ð��������������`nº•�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*image.CMYK"���p��,go.weak.type.**"".CMYK���€��"runtime.zerovalue�����type."".CMYK���` �type.*"".CMYK���Àð�type.*"".CMYK���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".CMYK, int, int) image/color.Color���°��"".(*CMYK).At���À��"".(*CMYK).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".CMYK) "".Rectangle�����""".(*CMYK).Bounds��� ��""".(*CMYK).Bounds���°��,go.string.hdr."CMYKAt"���Ð��Htype.func(int, int) image/color.CMYK���à��\type.func(*"".CMYK, int, int) image/color.CMYK���ð��""".(*CMYK).CMYKAt���€��""".(*CMYK).CMYKAt�����4go.string.hdr."ColorModel"���°��:type.func() image/color.Model���À��Jtype.func(*"".CMYK) image/color.Model���Ð��*"".(*CMYK).ColorModel���à��*"".(*CMYK).ColorModel���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��0type.func(*"".CMYK) bool���°��""".(*CMYK).Opaque���À��""".(*CMYK).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Btype.func(*"".CMYK, int, int) int�����("".(*CMYK).PixOffset��� ��("".(*CMYK).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".CMYK, int, int, image/color.Color)���ð��"".(*CMYK).Set���€��"".(*CMYK).Set�����.go.string.hdr."SetCMYK"���°��Jtype.func(int, int, image/color.CMYK)���À��^type.func(*"".CMYK, int, int, image/color.CMYK)���Ð��$"".(*CMYK).SetCMYK���à��$"".(*CMYK).SetCMYK���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".CMYK, "".Rectangle) "".Image���°��&"".(*CMYK).SubImage���À��&"".(*CMYK).SubImage���þ&runtime.gcbits.0101����þ<go.string.hdr."image.Paletted"� �� ������������������4go.string."image.Paletted"���þ4go.string."image.Paletted"� ��image.Paletted��þ.go.string.hdr."Palette"� �� ������������������&go.string."Palette"���þ&go.string."Palette"���Palette��þ0go.string.hdr."Paletted"� �� ������������������(go.string."Paletted"���þ(go.string."Paletted"� ��Paletted��þ type."".Paletted��Ð��ÐX�������H�������LÕ`�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������@�����������������������������������������������$0à� runtime.algarray���@��&runtime.gcbits.0101���P��<go.string.hdr."image.Paletted"���p��"type.*"".Paletted���€��"runtime.zerovalue���À� type."".Paletted���À��&go.string.hdr."Pix"���à��type.[]uint8�����,go.string.hdr."Stride"���°��type.int���à��(go.string.hdr."Rect"���€��"type."".Rectangle���°��.go.string.hdr."Palette"���Ð��0type.image/color.Palette���`€� type."".Paletted���€��0go.string.hdr."Paletted"�����"go.importpath."".��� Ð� type."".Paletted���þ>go.string.hdr."*image.Paletted"� �� ������������������6go.string."*image.Paletted"���þ6go.string."*image.Paletted"� �� *image.Paletted��þvgo.string.hdr."func(*image.Paletted, int, int) color.Color"� �� ��������+����������ngo.string."func(*image.Paletted, int, int) color.Color"���þngo.string."func(*image.Paletted, int, int) color.Color"�`��Xfunc(*image.Paletted, int, int) color.Color��þftype.func(*"".Paletted, int, int) image/color.Color�À��À��������������_ú|r�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��vgo.string.hdr."func(*image.Paletted, int, int) color.Color"���p��xgo.weak.type.*func(*"".Paletted, int, int) image/color.Color���€��"runtime.zerovalue��� €�ftype.func(*"".Paletted, int, int) image/color.Color���а�ftype.func(*"".Paletted, int, int) image/color.Color���€��"type.*"".Paletted�����type.int��� ��type.int���°��,type.image/color.Color���þÌgo.typelink.func(*image.Paletted, int, int) color.Color func(*"".Paletted, int, int) image/color.Color��������������ftype.func(*"".Paletted, int, int) image/color.Color���þjgo.string.hdr."func(*image.Paletted) image.Rectangle"� �� ��������%����������bgo.string."func(*image.Paletted) image.Rectangle"���þbgo.string."func(*image.Paletted) image.Rectangle"�P��Lfunc(*image.Paletted) image.Rectangle��þHtype.func(*"".Paletted) "".Rectangle� �� ��������������bOæÝ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(*image.Paletted) image.Rectangle"���p��Zgo.weak.type.*func(*"".Paletted) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func(*"".Paletted) "".Rectangle���А�Htype.func(*"".Paletted) "".Rectangle���€��"type.*"".Paletted�����"type."".Rectangle���þ¢go.typelink.func(*image.Paletted) image.Rectangle func(*"".Paletted) "".Rectangle��������������Htype.func(*"".Paletted) "".Rectangle���þjgo.string.hdr."func(*image.Paletted, int, int) uint8"� �� ��������%����������bgo.string."func(*image.Paletted, int, int) uint8"���þbgo.string."func(*image.Paletted, int, int) uint8"�P��Lfunc(*image.Paletted, int, int) uint8��þNtype.func(*"".Paletted, int, int) uint8�À��À��������������S­)Š�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��jgo.string.hdr."func(*image.Paletted, int, int) uint8"���p��`go.weak.type.*func(*"".Paletted, int, int) uint8���€��"runtime.zerovalue��� €�Ntype.func(*"".Paletted, int, int) uint8���а�Ntype.func(*"".Paletted, int, int) uint8���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.uint8���þ¨go.typelink.func(*image.Paletted, int, int) uint8 func(*"".Paletted, int, int) uint8��������������Ntype.func(*"".Paletted, int, int) uint8���þbgo.string.hdr."func(*image.Paletted) color.Model"� �� ��������!����������Zgo.string."func(*image.Paletted) color.Model"���þZgo.string."func(*image.Paletted) color.Model"�P��Dfunc(*image.Paletted) color.Model��þRtype.func(*"".Paletted) image/color.Model� �� ��������������ô¯ö�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func(*image.Paletted) color.Model"���p��dgo.weak.type.*func(*"".Paletted) image/color.Model���€��"runtime.zerovalue��� €�Rtype.func(*"".Paletted) image/color.Model���А�Rtype.func(*"".Paletted) image/color.Model���€��"type.*"".Paletted�����,type.image/color.Model���þ¤go.typelink.func(*image.Paletted) color.Model func(*"".Paletted) image/color.Model��������������Rtype.func(*"".Paletted) image/color.Model���þTgo.string.hdr."func(*image.Paletted) bool"� �� ������������������Lgo.string."func(*image.Paletted) bool"���þLgo.string."func(*image.Paletted) bool"�@��6func(*image.Paletted) bool��þ8type.func(*"".Paletted) bool� �� ��������������m•k�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(*image.Paletted) bool"���p��Jgo.weak.type.*func(*"".Paletted) bool���€��"runtime.zerovalue��� €�8type.func(*"".Paletted) bool���А�8type.func(*"".Paletted) bool���€��"type.*"".Paletted�����type.bool���þ|go.typelink.func(*image.Paletted) bool func(*"".Paletted) bool��������������8type.func(*"".Paletted) bool���þfgo.string.hdr."func(*image.Paletted, int, int) int"� �� ��������#����������^go.string."func(*image.Paletted, int, int) int"���þ^go.string."func(*image.Paletted, int, int) int"�P��Hfunc(*image.Paletted, int, int) int��þJtype.func(*"".Paletted, int, int) int�À��À��������������† KL�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*image.Paletted, int, int) int"���p��\go.weak.type.*func(*"".Paletted, int, int) int���€��"runtime.zerovalue��� €�Jtype.func(*"".Paletted, int, int) int���а�Jtype.func(*"".Paletted, int, int) int���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.int���þ go.typelink.func(*image.Paletted, int, int) int func(*"".Paletted, int, int) int��������������Jtype.func(*"".Paletted, int, int) int���þxgo.string.hdr."func(*image.Paletted, int, int, color.Color)"� �� ��������,����������pgo.string."func(*image.Paletted, int, int, color.Color)"���þpgo.string."func(*image.Paletted, int, int, color.Color)"�`��Zfunc(*image.Paletted, int, int, color.Color)��þhtype.func(*"".Paletted, int, int, image/color.Color)�À��À��������������–íqÎ�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��xgo.string.hdr."func(*image.Paletted, int, int, color.Color)"���p��zgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)���€��"runtime.zerovalue��� €�htype.func(*"".Paletted, int, int, image/color.Color)���ÐÀ�htype.func(*"".Paletted, int, int, image/color.Color)���€��"type.*"".Paletted�����type.int��� ��type.int���°��,type.image/color.Color���þÐgo.typelink.func(*image.Paletted, int, int, color.Color) func(*"".Paletted, int, int, image/color.Color)��������������htype.func(*"".Paletted, int, int, image/color.Color)���þlgo.string.hdr."func(*image.Paletted, int, int, uint8)"� �� ��������&����������dgo.string."func(*image.Paletted, int, int, uint8)"���þdgo.string."func(*image.Paletted, int, int, uint8)"�P��Nfunc(*image.Paletted, int, int, uint8)��þPtype.func(*"".Paletted, int, int, uint8)�À��À��������������ÆþÁ®�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(*image.Paletted, int, int, uint8)"���p��bgo.weak.type.*func(*"".Paletted, int, int, uint8)���€��"runtime.zerovalue��� €�Ptype.func(*"".Paletted, int, int, uint8)���ÐÀ�Ptype.func(*"".Paletted, int, int, uint8)���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.uint8���þ¬go.typelink.func(*image.Paletted, int, int, uint8) func(*"".Paletted, int, int, uint8)��������������Ptype.func(*"".Paletted, int, int, uint8)���þ„go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"� �� ��������2����������|go.string."func(*image.Paletted, image.Rectangle) image.Image"���þ|go.string."func(*image.Paletted, image.Rectangle) image.Image"�p��ffunc(*image.Paletted, image.Rectangle) image.Image��þ\type.func(*"".Paletted, "".Rectangle) "".Image�°��°��������������÷m•´�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��„go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"���p��ngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�\type.func(*"".Paletted, "".Rectangle) "".Image���Р�\type.func(*"".Paletted, "".Rectangle) "".Image���€��"type.*"".Paletted�����"type."".Rectangle��� ��type."".Image���þÐgo.typelink.func(*image.Paletted, image.Rectangle) image.Image func(*"".Paletted, "".Rectangle) "".Image��������������\type.func(*"".Paletted, "".Rectangle) "".Image���þ8go.string.hdr."ColorIndexAt"� �� �������� ����������0go.string."ColorIndexAt"���þ0go.string."ColorIndexAt"� ��ColorIndexAt��þHgo.string.hdr."func(int, int) uint8"� �� ������������������@go.string."func(int, int) uint8"���þ@go.string."func(int, int) uint8"�0��*func(int, int) uint8��þ2type.func(int, int) uint8�°��°��������������Jc_�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."func(int, int) uint8"���p��Dgo.weak.type.*func(int, int) uint8���€��"runtime.zerovalue��� €�2type.func(int, int) uint8���Р�2type.func(int, int) uint8���€��type.int�����type.int��� ��type.uint8���þjgo.typelink.func(int, int) uint8 func(int, int) uint8��������������2type.func(int, int) uint8���þ:go.string.hdr."SetColorIndex"� �� �������� ����������2go.string."SetColorIndex"���þ2go.string."SetColorIndex"� ��SetColorIndex��þJgo.string.hdr."func(int, int, uint8)"� �� ������������������Bgo.string."func(int, int, uint8)"���þBgo.string."func(int, int, uint8)"�0��,func(int, int, uint8)��þ4type.func(int, int, uint8)�°��°��������������ÌÌl�3������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Jgo.string.hdr."func(int, int, uint8)"���p��Fgo.weak.type.*func(int, int, uint8)���€��"runtime.zerovalue��� €�4type.func(int, int, uint8)���а�4type.func(int, int, uint8)���€��type.int�����type.int��� ��type.uint8���þngo.typelink.func(int, int, uint8) func(int, int, uint8)��������������4type.func(int, int, uint8)���þ"type.*"".Paletted��Ð��Ð��������������ÉNYû�6�������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j0 � runtime.algarray���@��"runtime.gcbits.01���P��>go.string.hdr."*image.Paletted"���p��4go.weak.type.**"".Paletted���€��"runtime.zerovalue����� type."".Paletted���` �"type.*"".Paletted���Àð�"type.*"".Paletted���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��ftype.func(*"".Paletted, int, int) image/color.Color���°��""".(*Paletted).At���À��""".(*Paletted).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Htype.func(*"".Paletted) "".Rectangle�����*"".(*Paletted).Bounds��� ��*"".(*Paletted).Bounds���°��8go.string.hdr."ColorIndexAt"���Ð��2type.func(int, int) uint8���à��Ntype.func(*"".Paletted, int, int) uint8���ð��6"".(*Paletted).ColorIndexAt���€��6"".(*Paletted).ColorIndexAt�����4go.string.hdr."ColorModel"���°��:type.func() image/color.Model���À��Rtype.func(*"".Paletted) image/color.Model���Ð��2"".(*Paletted).ColorModel���à��2"".(*Paletted).ColorModel���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��8type.func(*"".Paletted) bool���°��*"".(*Paletted).Opaque���À��*"".(*Paletted).Opaque���Ð��2go.string.hdr."PixOffset"���ð��.type.func(int, int) int���€��Jtype.func(*"".Paletted, int, int) int�����0"".(*Paletted).PixOffset��� ��0"".(*Paletted).PixOffset���°��&go.string.hdr."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��htype.func(*"".Paletted, int, int, image/color.Color)���ð��$"".(*Paletted).Set���€��$"".(*Paletted).Set�����:go.string.hdr."SetColorIndex"���°��4type.func(int, int, uint8)���À��Ptype.func(*"".Paletted, int, int, uint8)���Ð��8"".(*Paletted).SetColorIndex���à��8"".(*Paletted).SetColorIndex���ð��0go.string.hdr."SubImage"�����@type.func("".Rectangle) "".Image��� ��\type.func(*"".Paletted, "".Rectangle) "".Image���°��."".(*Paletted).SubImage���À��."".(*Paletted).SubImage���þ,go.string.hdr."[]bool"� �� ������������������$go.string."[]bool"���þ$go.string."[]bool"���[]bool��þtype.[]bool� �� ��������������±åç��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��,go.string.hdr."[]bool"���p��(go.weak.type.*[]bool���€��"runtime.zerovalue�����type.bool���þ2go.typelink.[]bool []bool��������������type.[]bool���þ"type..hashfunc256� �� ������������������,runtime.memhash_varlen���þtype..eqfunc256� �� ������������������.runtime.memequal_varlen���þtype..alg256� �� �������������������"type..hashfunc256�����type..eqfunc256���þ2go.string.hdr."[256]bool"� �� �������� ����������*go.string."[256]bool"���þ*go.string."[256]bool"� ��[256]bool��þtype.[256]bool�À��À���������������°Ä'k�‘�����������������������������������������������������������������������0��type..alg256���@��runtime.gcbits.���P��2go.string.hdr."[256]bool"���p��.go.weak.type.*[256]bool���€��"runtime.zerovalue�����type.bool��� ��type.[]bool���þ>go.typelink.[256]bool [256]bool��������������type.[256]bool���þ:go.string.hdr."image.Uniform"� �� �������� ����������2go.string."image.Uniform"���þ2go.string."image.Uniform"� ��image.Uniform��þ"go.string.hdr."C"� �� ������������������go.string."C"���þgo.string."C"���C��þ.go.string.hdr."Uniform"� �� ������������������&go.string."Uniform"���þ&go.string."Uniform"���Uniform��þtype."".Uniform��à��à��������������ö=á�������������������������������������������������������������������������������������������������������������������������������������������������������0à� runtime.algarray���@��"runtime.gcbits.03���P��:go.string.hdr."image.Uniform"���p�� type.*"".Uniform���€��"runtime.zerovalue���À�type."".Uniform���À��"go.string.hdr."C"���à��,type.image/color.Color���`�type."".Uniform�����.go.string.hdr."Uniform"��� ��"go.importpath."".���°à�type."".Uniform���þ<go.string.hdr."*image.Uniform"� �� ������������������4go.string."*image.Uniform"���þ4go.string."*image.Uniform"� ��*image.Uniform��þtgo.string.hdr."func(*image.Uniform, int, int) color.Color"� �� ��������*����������lgo.string."func(*image.Uniform, int, int) color.Color"���þlgo.string."func(*image.Uniform, int, int) color.Color"�`��Vfunc(*image.Uniform, int, int) color.Color��þdtype.func(*"".Uniform, int, int) image/color.Color�À��À��������������„Œp�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��tgo.string.hdr."func(*image.Uniform, int, int) color.Color"���p��vgo.weak.type.*func(*"".Uniform, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".Uniform, int, int) image/color.Color���а�dtype.func(*"".Uniform, int, int) image/color.Color���€�� type.*"".Uniform�����type.int��� ��type.int���°��,type.image/color.Color���þÈgo.typelink.func(*image.Uniform, int, int) color.Color func(*"".Uniform, int, int) image/color.Color��������������dtype.func(*"".Uniform, int, int) image/color.Color���þhgo.string.hdr."func(*image.Uniform) image.Rectangle"� �� ��������$����������`go.string."func(*image.Uniform) image.Rectangle"���þ`go.string."func(*image.Uniform) image.Rectangle"�P��Jfunc(*image.Uniform) image.Rectangle��þFtype.func(*"".Uniform) "".Rectangle� �� ��������������2[è|�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��hgo.string.hdr."func(*image.Uniform) image.Rectangle"���p��Xgo.weak.type.*func(*"".Uniform) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Uniform) "".Rectangle���А�Ftype.func(*"".Uniform) "".Rectangle���€�� type.*"".Uniform�����"type."".Rectangle���þžgo.typelink.func(*image.Uniform) image.Rectangle func(*"".Uniform) "".Rectangle��������������Ftype.func(*"".Uniform) "".Rectangle���þ`go.string.hdr."func(*image.Uniform) color.Model"� �� �������� ����������Xgo.string."func(*image.Uniform) color.Model"���þXgo.string."func(*image.Uniform) color.Model"�P��Bfunc(*image.Uniform) color.Model��þPtype.func(*"".Uniform) image/color.Model� �� ��������������"ÈáÐ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.Uniform) color.Model"���p��bgo.weak.type.*func(*"".Uniform) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".Uniform) image/color.Model���А�Ptype.func(*"".Uniform) image/color.Model���€�� type.*"".Uniform�����,type.image/color.Model���þ go.typelink.func(*image.Uniform) color.Model func(*"".Uniform) image/color.Model��������������Ptype.func(*"".Uniform) image/color.Model���þzgo.string.hdr."func(*image.Uniform, color.Color) color.Color"� �� ��������-����������rgo.string."func(*image.Uniform, color.Color) color.Color"���þrgo.string."func(*image.Uniform, color.Color) color.Color"�`��\func(*image.Uniform, color.Color) color.Color��þvtype.func(*"".Uniform, image/color.Color) image/color.Color�°��°��������������@AÂ2�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(*image.Uniform, color.Color) color.Color"���p��ˆgo.weak.type.*func(*"".Uniform, image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�vtype.func(*"".Uniform, image/color.Color) image/color.Color���Р�vtype.func(*"".Uniform, image/color.Color) image/color.Color���€�� type.*"".Uniform�����,type.image/color.Color��� ��,type.image/color.Color���þàgo.typelink.func(*image.Uniform, color.Color) color.Color func(*"".Uniform, image/color.Color) image/color.Color��������������vtype.func(*"".Uniform, image/color.Color) image/color.Color���þRgo.string.hdr."func(*image.Uniform) bool"� �� ������������������Jgo.string."func(*image.Uniform) bool"���þJgo.string."func(*image.Uniform) bool"�@��4func(*image.Uniform) bool��þ6type.func(*"".Uniform) bool� �� ��������������èñ»?�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Rgo.string.hdr."func(*image.Uniform) bool"���p��Hgo.weak.type.*func(*"".Uniform) bool���€��"runtime.zerovalue��� €�6type.func(*"".Uniform) bool���А�6type.func(*"".Uniform) bool���€�� type.*"".Uniform�����type.bool���þxgo.typelink.func(*image.Uniform) bool func(*"".Uniform) bool��������������6type.func(*"".Uniform) bool���þŠgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"� �� ��������5����������‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���þ‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"�p��lfunc(*image.Uniform) (uint32, uint32, uint32, uint32)��þntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�Ð��Ð��������������N¸V�3��������������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Šgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���p��€go.weak.type.*func(*"".Uniform) (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)���А�ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)���€�� type.*"".Uniform�����type.uint32��� ��type.uint32���°��type.uint32���À��type.uint32���þègo.typelink.func(*image.Uniform) (uint32, uint32, uint32, uint32) func(*"".Uniform) (uint32, uint32, uint32, uint32)��������������ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)���þ.go.string.hdr."Convert"� �� ������������������&go.string."Convert"���þ&go.string."Convert"���Convert��þZgo.string.hdr."func(color.Color) color.Color"� �� ������������������Rgo.string."func(color.Color) color.Color"���þRgo.string."func(color.Color) color.Color"�@��<func(color.Color) color.Color��þ\type.func(image/color.Color) image/color.Color� �� ��������������õr¹�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Zgo.string.hdr."func(color.Color) color.Color"���p��ngo.weak.type.*func(image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�\type.func(image/color.Color) image/color.Color���А�\type.func(image/color.Color) image/color.Color���€��,type.image/color.Color�����,type.image/color.Color���þ¦go.typelink.func(color.Color) color.Color func(image/color.Color) image/color.Color��������������\type.func(image/color.Color) image/color.Color���þngo.string.hdr."func() (uint32, uint32, uint32, uint32)"� �� ��������'����������fgo.string."func() (uint32, uint32, uint32, uint32)"���þfgo.string."func() (uint32, uint32, uint32, uint32)"�P��Pfunc() (uint32, uint32, uint32, uint32)��þXtype.func() (uint32, uint32, uint32, uint32)�À��À��������������ÌǤè�3��������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func() (uint32, uint32, uint32, uint32)"���p��jgo.weak.type.*func() (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�Xtype.func() (uint32, uint32, uint32, uint32)���Ѐ�Xtype.func() (uint32, uint32, uint32, uint32)���€��type.uint32�����type.uint32��� ��type.uint32���°��type.uint32���þ¶go.typelink.func() (uint32, uint32, uint32, uint32) func() (uint32, uint32, uint32, uint32)��������������Xtype.func() (uint32, uint32, uint32, uint32)���þ type.*"".Uniform��°��°��������������®Q f�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*image.Uniform"���p��2go.weak.type.**"".Uniform���€��"runtime.zerovalue�����type."".Uniform���` � type.*"".Uniform���Àð� type.*"".Uniform���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".Uniform, int, int) image/color.Color���°�� "".(*Uniform).At���À�� "".(*Uniform).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".Uniform) "".Rectangle�����("".(*Uniform).Bounds��� ��("".(*Uniform).Bounds���°��4go.string.hdr."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".Uniform) image/color.Model���ð��0"".(*Uniform).ColorModel���€��0"".(*Uniform).ColorModel�����.go.string.hdr."Convert"���°��\type.func(image/color.Color) image/color.Color���À��vtype.func(*"".Uniform, image/color.Color) image/color.Color���Ð��*"".(*Uniform).Convert���à��*"".(*Uniform).Convert���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��6type.func(*"".Uniform) bool���°��("".(*Uniform).Opaque���À��("".(*Uniform).Opaque���Ð��(go.string.hdr."RGBA"���ð��Xtype.func() (uint32, uint32, uint32, uint32)���€��ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�����$"".(*Uniform).RGBA��� ��$"".(*Uniform).RGBA���þTgo.string.hdr."*image.YCbCrSubsampleRatio"� �� ������������������Lgo.string."*image.YCbCrSubsampleRatio"���þLgo.string."*image.YCbCrSubsampleRatio"�@��6*image.YCbCrSubsampleRatio��þFgo.string.hdr."YCbCrSubsampleRatio"� �� ������������������>go.string."YCbCrSubsampleRatio"���þ>go.string."YCbCrSubsampleRatio"�0��(YCbCrSubsampleRatio��þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·69076ee43f1cead0792b9f36906b1b56� �� �������������þngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"� �� ��������'����������fgo.string."func(*image.YCbCrSubsampleRatio) string"���þfgo.string."func(*image.YCbCrSubsampleRatio) string"�P��Pfunc(*image.YCbCrSubsampleRatio) string��þRtype.func(*"".YCbCrSubsampleRatio) string� �� ��������������u!Ad�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��ngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"���p��dgo.weak.type.*func(*"".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Rtype.func(*"".YCbCrSubsampleRatio) string���А�Rtype.func(*"".YCbCrSubsampleRatio) string���€��8type.*"".YCbCrSubsampleRatio�����type.string���þ°go.typelink.func(*image.YCbCrSubsampleRatio) string func(*"".YCbCrSubsampleRatio) string��������������Rtype.func(*"".YCbCrSubsampleRatio) string���þ8type.*"".YCbCrSubsampleRatio��Ð��Ð��������������˜àË&�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."*image.YCbCrSubsampleRatio"���p��Jgo.weak.type.**"".YCbCrSubsampleRatio���€��"runtime.zerovalue�����6type."".YCbCrSubsampleRatio���` �8type.*"".YCbCrSubsampleRatio���Àð�8type.*"".YCbCrSubsampleRatio���ð��,go.string.hdr."String"�����$type.func() string��� ��Rtype.func(*"".YCbCrSubsampleRatio) string���°��@"".(*YCbCrSubsampleRatio).String���À��@"".(*YCbCrSubsampleRatio).String���þRgo.string.hdr."image.YCbCrSubsampleRatio"� �� ������������������Jgo.string."image.YCbCrSubsampleRatio"���þJgo.string."image.YCbCrSubsampleRatio"�@��4image.YCbCrSubsampleRatio��þlgo.string.hdr."func(image.YCbCrSubsampleRatio) string"� �� ��������&����������dgo.string."func(image.YCbCrSubsampleRatio) string"���þdgo.string."func(image.YCbCrSubsampleRatio) string"�P��Nfunc(image.YCbCrSubsampleRatio) string��þPtype.func("".YCbCrSubsampleRatio) string� �� ��������������ËO‚Ê�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��lgo.string.hdr."func(image.YCbCrSubsampleRatio) string"���p��bgo.weak.type.*func("".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Ptype.func("".YCbCrSubsampleRatio) string���А�Ptype.func("".YCbCrSubsampleRatio) string���€��6type."".YCbCrSubsampleRatio�����type.string���þ¬go.typelink.func(image.YCbCrSubsampleRatio) string func("".YCbCrSubsampleRatio) string��������������Ptype.func("".YCbCrSubsampleRatio) string���þ6type."".YCbCrSubsampleRatio��À��À���������������ªX)â�‚��������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��Rgo.string.hdr."image.YCbCrSubsampleRatio"���p��8type.*"".YCbCrSubsampleRatio���€��"runtime.zerovalue���`�6type."".YCbCrSubsampleRatio�����Fgo.string.hdr."YCbCrSubsampleRatio"��� ��"go.importpath."".���°à�6type."".YCbCrSubsampleRatio���à��,go.string.hdr."String"���€��$type.func() string�����Ptype.func("".YCbCrSubsampleRatio) string��� ��@"".(*YCbCrSubsampleRatio).String���°��:"".YCbCrSubsampleRatio.String���þ"runtime.gcbits.49���I�þ6go.string.hdr."image.YCbCr"� �� �������� ����������.go.string."image.YCbCr"���þ.go.string."image.YCbCr"� ��image.YCbCr��þ$go.string.hdr."Cb"� �� ������������������go.string."Cb"���þgo.string."Cb"���Cb��þ$go.string.hdr."Cr"� �� ������������������go.string."Cr"���þgo.string."Cr"���Cr��þ.go.string.hdr."YStride"� �� ������������������&go.string."YStride"���þ&go.string."YStride"���YStride��þ.go.string.hdr."CStride"� �� ������������������&go.string."CStride"���þ&go.string."CStride"���CStride��þ<go.string.hdr."SubsampleRatio"� �� ������������������4go.string."SubsampleRatio"���þ4go.string."SubsampleRatio"� ��SubsampleRatio��þ*go.string.hdr."YCbCr"� �� ������������������"go.string."YCbCr"���þ"go.string."YCbCr"��� YCbCr��þtype."".YCbCr��À��À€�������8�������¼Ãa¯��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`�����������������������������������������������00à� runtime.algarray���@��"runtime.gcbits.49���P��6go.string.hdr."image.YCbCr"���p��type.*"".YCbCr���€��"runtime.zerovalue���À�type."".YCbCr���À��"go.string.hdr."Y"���à��type.[]uint8�����$go.string.hdr."Cb"���°��type.[]uint8���à��$go.string.hdr."Cr"���€��type.[]uint8���°��.go.string.hdr."YStride"���Ð��type.int���€��.go.string.hdr."CStride"��� ��type.int���Ð��<go.string.hdr."SubsampleRatio"���ð��6type."".YCbCrSubsampleRatio��� ��(go.string.hdr."Rect"���À��"type."".Rectangle���`ð�type."".YCbCr���ð��*go.string.hdr."YCbCr"���€��"go.importpath."".���À�type."".YCbCr���þ8go.string.hdr."*image.YCbCr"� �� �������� ����������0go.string."*image.YCbCr"���þ0go.string."*image.YCbCr"� ��*image.YCbCr��þpgo.string.hdr."func(*image.YCbCr, int, int) color.Color"� �� ��������(����������hgo.string."func(*image.YCbCr, int, int) color.Color"���þhgo.string."func(*image.YCbCr, int, int) color.Color"�`��Rfunc(*image.YCbCr, int, int) color.Color��þ`type.func(*"".YCbCr, int, int) image/color.Color�À��À��������������óGÏ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.YCbCr, int, int) color.Color"���p��rgo.weak.type.*func(*"".YCbCr, int, int) image/color.Color���€��"runtime.zerovalue��� €�`type.func(*"".YCbCr, int, int) image/color.Color���а�`type.func(*"".YCbCr, int, int) image/color.Color���€��type.*"".YCbCr�����type.int��� ��type.int���°��,type.image/color.Color���þÀgo.typelink.func(*image.YCbCr, int, int) color.Color func(*"".YCbCr, int, int) image/color.Color��������������`type.func(*"".YCbCr, int, int) image/color.Color���þdgo.string.hdr."func(*image.YCbCr) image.Rectangle"� �� ��������"����������\go.string."func(*image.YCbCr) image.Rectangle"���þ\go.string."func(*image.YCbCr) image.Rectangle"�P��Ffunc(*image.YCbCr) image.Rectangle��þBtype.func(*"".YCbCr) "".Rectangle� �� ��������������5;»�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*image.YCbCr) image.Rectangle"���p��Tgo.weak.type.*func(*"".YCbCr) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".YCbCr) "".Rectangle���А�Btype.func(*"".YCbCr) "".Rectangle���€��type.*"".YCbCr�����"type."".Rectangle���þ–go.typelink.func(*image.YCbCr) image.Rectangle func(*"".YCbCr) "".Rectangle��������������Btype.func(*"".YCbCr) "".Rectangle���þ`go.string.hdr."func(*image.YCbCr, int, int) int"� �� �������� ����������Xgo.string."func(*image.YCbCr, int, int) int"���þXgo.string."func(*image.YCbCr, int, int) int"�P��Bfunc(*image.YCbCr, int, int) int��þDtype.func(*"".YCbCr, int, int) int�À��À��������������?@ÛÒ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*image.YCbCr, int, int) int"���p��Vgo.weak.type.*func(*"".YCbCr, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".YCbCr, int, int) int���а�Dtype.func(*"".YCbCr, int, int) int���€��type.*"".YCbCr�����type.int��� ��type.int���°��type.int���þ”go.typelink.func(*image.YCbCr, int, int) int func(*"".YCbCr, int, int) int��������������Dtype.func(*"".YCbCr, int, int) int���þ\go.string.hdr."func(*image.YCbCr) color.Model"� �� ������������������Tgo.string."func(*image.YCbCr) color.Model"���þTgo.string."func(*image.YCbCr) color.Model"�@��>func(*image.YCbCr) color.Model��þLtype.func(*"".YCbCr) image/color.Model� �� �������������� Zp�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��\go.string.hdr."func(*image.YCbCr) color.Model"���p��^go.weak.type.*func(*"".YCbCr) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".YCbCr) image/color.Model���А�Ltype.func(*"".YCbCr) image/color.Model���€��type.*"".YCbCr�����,type.image/color.Model���þ˜go.typelink.func(*image.YCbCr) color.Model func(*"".YCbCr) image/color.Model��������������Ltype.func(*"".YCbCr) image/color.Model���þNgo.string.hdr."func(*image.YCbCr) bool"� �� ������������������Fgo.string."func(*image.YCbCr) bool"���þFgo.string."func(*image.YCbCr) bool"�0��0func(*image.YCbCr) bool��þ2type.func(*"".YCbCr) bool� �� ��������������¬›�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func(*image.YCbCr) bool"���p��Dgo.weak.type.*func(*"".YCbCr) bool���€��"runtime.zerovalue��� €�2type.func(*"".YCbCr) bool���А�2type.func(*"".YCbCr) bool���€��type.*"".YCbCr�����type.bool���þpgo.typelink.func(*image.YCbCr) bool func(*"".YCbCr) bool��������������2type.func(*"".YCbCr) bool���þ~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"� �� ��������/����������vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"���þvgo.string."func(*image.YCbCr, image.Rectangle) image.Image"�`��`func(*image.YCbCr, image.Rectangle) image.Image��þVtype.func(*"".YCbCr, "".Rectangle) "".Image�°��°��������������÷NY¡�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".YCbCr, "".Rectangle) "".Image���Р�Vtype.func(*"".YCbCr, "".Rectangle) "".Image���€��type.*"".YCbCr�����"type."".Rectangle��� ��type."".Image���þÄgo.typelink.func(*image.YCbCr, image.Rectangle) image.Image func(*"".YCbCr, "".Rectangle) "".Image��������������Vtype.func(*"".YCbCr, "".Rectangle) "".Image���þpgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"� �� ��������(����������hgo.string."func(*image.YCbCr, int, int) color.YCbCr"���þhgo.string."func(*image.YCbCr, int, int) color.YCbCr"�`��Rfunc(*image.YCbCr, int, int) color.YCbCr��þ`type.func(*"".YCbCr, int, int) image/color.YCbCr�À��À��������������ߚØ�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��pgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"���p��rgo.weak.type.*func(*"".YCbCr, int, int) image/color.YCbCr���€��"runtime.zerovalue��� €�`type.func(*"".YCbCr, int, int) image/color.YCbCr���а�`type.func(*"".YCbCr, int, int) image/color.YCbCr���€��type.*"".YCbCr�����type.int��� ��type.int���°��,type.image/color.YCbCr���þÀgo.typelink.func(*image.YCbCr, int, int) color.YCbCr func(*"".YCbCr, int, int) image/color.YCbCr��������������`type.func(*"".YCbCr, int, int) image/color.YCbCr���þ.go.string.hdr."COffset"� �� ������������������&go.string."COffset"���þ&go.string."COffset"���COffset��þ.go.string.hdr."YCbCrAt"� �� ������������������&go.string."YCbCrAt"���þ&go.string."YCbCrAt"���YCbCrAt��þTgo.string.hdr."func(int, int) color.YCbCr"� �� ������������������Lgo.string."func(int, int) color.YCbCr"���þLgo.string."func(int, int) color.YCbCr"�@��6func(int, int) color.YCbCr��þJtype.func(int, int) image/color.YCbCr�°��°��������������´Áþå�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Tgo.string.hdr."func(int, int) color.YCbCr"���p��\go.weak.type.*func(int, int) image/color.YCbCr���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.YCbCr���Р�Jtype.func(int, int) image/color.YCbCr���€��type.int�����type.int��� ��,type.image/color.YCbCr���þŽgo.typelink.func(int, int) color.YCbCr func(int, int) image/color.YCbCr��������������Jtype.func(int, int) image/color.YCbCr���þ.go.string.hdr."YOffset"� �� ������������������&go.string."YOffset"���þ&go.string."YOffset"���YOffset��þtype.*"".YCbCr��ð��ð��������������2öЫ�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."*image.YCbCr"���p��.go.weak.type.**"".YCbCr���€��"runtime.zerovalue�����type."".YCbCr���` �type.*"".YCbCr���Àð�type.*"".YCbCr���ð��$go.string.hdr."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".YCbCr, int, int) image/color.Color���°��"".(*YCbCr).At���À��"".(*YCbCr).At���Ð��,go.string.hdr."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".YCbCr) "".Rectangle�����$"".(*YCbCr).Bounds��� ��$"".(*YCbCr).Bounds���°��.go.string.hdr."COffset"���Ð��.type.func(int, int) int���à��Dtype.func(*"".YCbCr, int, int) int���ð��&"".(*YCbCr).COffset���€��&"".(*YCbCr).COffset�����4go.string.hdr."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".YCbCr) image/color.Model���Ð��,"".(*YCbCr).ColorModel���à��,"".(*YCbCr).ColorModel���ð��,go.string.hdr."Opaque"����� type.func() bool��� ��2type.func(*"".YCbCr) bool���°��$"".(*YCbCr).Opaque���À��$"".(*YCbCr).Opaque���Ð��0go.string.hdr."SubImage"���ð��@type.func("".Rectangle) "".Image���€��Vtype.func(*"".YCbCr, "".Rectangle) "".Image�����("".(*YCbCr).SubImage��� ��("".(*YCbCr).SubImage���°��.go.string.hdr."YCbCrAt"���Ð��Jtype.func(int, int) image/color.YCbCr���à��`type.func(*"".YCbCr, int, int) image/color.YCbCr���ð��&"".(*YCbCr).YCbCrAt���€��&"".(*YCbCr).YCbCrAt�����.go.string.hdr."YOffset"���°��.type.func(int, int) int���À��Dtype.func(*"".YCbCr, int, int) int���Ð��&"".(*YCbCr).YOffset���à��&"".(*YCbCr).YOffset���þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·b6338434a483b71ecf7a1963213f75e2� �� ���������3����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·d98f60bd8519d0c68364b2a1d83af357�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·1347047f6245a35b91e9a4f213167d52�������������þTgclocals·c55cf99de9cdd8c8202a466952fa1a45� �� ���������������þTgclocals·19b49d53e9c11805652fa4c0885cbb29� �� �������������þHgo.string.hdr."*image.PalettedImage"� �� ������������������@go.string."*image.PalettedImage"���þ@go.string."*image.PalettedImage"�0��**image.PalettedImage��þ,type.*"".PalettedImage�� �� ��������������íº�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."*image.PalettedImage"���p��>go.weak.type.**"".PalettedImage���€��"runtime.zerovalue�����*type."".PalettedImage���þFgo.string.hdr."image.PalettedImage"� �� ������������������>go.string."image.PalettedImage"���þ>go.string."image.PalettedImage"�0��(image.PalettedImage��þ:go.string.hdr."PalettedImage"� �� �������� ����������2go.string."PalettedImage"���þ2go.string."PalettedImage"� ��PalettedImage��þ*type."".PalettedImage��Ð��Ð��������������¶©���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$0à� runtime.algarray���@��"runtime.gcbits.03���P��Fgo.string.hdr."image.PalettedImage"���p��,type.*"".PalettedImage���€��"runtime.zerovalue���À�*type."".PalettedImage���À��$go.string.hdr."At"���à��Jtype.func(int, int) image/color.Color���ð��,go.string.hdr."Bounds"�����0type.func() "".Rectangle��� ��8go.string.hdr."ColorIndexAt"���À��2type.func(int, int) uint8���Ð��4go.string.hdr."ColorModel"���ð��:type.func() image/color.Model���`€�*type."".PalettedImage���€��:go.string.hdr."PalettedImage"�����"go.importpath."".��� Ð�*type."".PalettedImage���þ.go.string.hdr."runtime"� �� ������������������&go.string."runtime"���þ&go.string."runtime"���runtime��þ,go.importpath.runtime.� �� ������������������&go.string."runtime"���þ*go.string.hdr."bufio"� �� ������������������"go.string."bufio"���þ"go.string."bufio"��� bufio��þ(go.importpath.bufio.� �� ������������������"go.string."bufio"���þ,go.string.hdr."errors"� �� ������������������$go.string."errors"���þ$go.string."errors"���errors��þ*go.importpath.errors.� �� ������������������$go.string."errors"���þ$go.string.hdr."io"� �� ������������������go.string."io"���þgo.string."io"���io��þ"go.importpath.io.� �� ������������������go.string."io"���þ6go.string.hdr."image/color"� �� �������� ����������.go.string."image/color"���þ.go.string."image/color"� ��image/color��þ4go.importpath.image/color.� �� �������� ����������.go.string."image/color"���þ.go.string.hdr."strconv"� �� ������������������&go.string."strconv"���þ&go.string."strconv"���strconv��þ,go.importpath.strconv.� �� ������������������&go.string."strconv"���þ"".Image.At·f��������������"".Image.At���þ$"".Image.Bounds·f��������������"".Image.Bounds���þ,"".Image.ColorModel·f��������������&"".Image.ColorModel���þ*"".(*Point).String·f��������������$"".(*Point).String���þ$"".(*Point).Add·f��������������"".(*Point).Add���þ$"".(*Point).Sub·f��������������"".(*Point).Sub���þ$"".(*Point).Mul·f��������������"".(*Point).Mul���þ$"".(*Point).Div·f��������������"".(*Point).Div���þ""".(*Point).In·f��������������"".(*Point).In���þ$"".(*Point).Mod·f��������������"".(*Point).Mod���þ""".(*Point).Eq·f��������������"".(*Point).Eq���þ2"".(*Rectangle).String·f��������������,"".(*Rectangle).String���þ*"".(*Rectangle).Dx·f��������������$"".(*Rectangle).Dx���þ*"".(*Rectangle).Dy·f��������������$"".(*Rectangle).Dy���þ."".(*Rectangle).Size·f��������������("".(*Rectangle).Size���þ,"".(*Rectangle).Add·f��������������&"".(*Rectangle).Add���þ,"".(*Rectangle).Sub·f��������������&"".(*Rectangle).Sub���þ0"".(*Rectangle).Inset·f��������������*"".(*Rectangle).Inset���þ8"".(*Rectangle).Intersect·f��������������2"".(*Rectangle).Intersect���þ0"".(*Rectangle).Union·f��������������*"".(*Rectangle).Union���þ0"".(*Rectangle).Empty·f��������������*"".(*Rectangle).Empty���þ*"".(*Rectangle).Eq·f��������������$"".(*Rectangle).Eq���þ6"".(*Rectangle).Overlaps·f��������������0"".(*Rectangle).Overlaps���þ*"".(*Rectangle).In·f��������������$"".(*Rectangle).In���þ0"".(*Rectangle).Canon·f��������������*"".(*Rectangle).Canon���þ*"".(*Rectangle).At·f��������������$"".(*Rectangle).At���þ2"".(*Rectangle).Bounds·f��������������,"".(*Rectangle).Bounds���þ:"".(*Rectangle).ColorModel·f��������������4"".(*Rectangle).ColorModel���þ.type..hash."".Config·f��������������(type..hash."".Config���þ*type..eq."".Config·f��������������$type..eq."".Config���þ""".reader.Peek·f��������������"".reader.Peek���þ""".reader.Read·f��������������"".reader.Read���þF"".(*YCbCrSubsampleRatio).String·f��������������@"".(*YCbCrSubsampleRatio).String���þ,"".PalettedImage.At·f��������������&"".PalettedImage.At���þ4"".PalettedImage.Bounds·f��������������."".PalettedImage.Bounds���þ@"".PalettedImage.ColorIndexAt·f��������������:"".PalettedImage.ColorIndexAt���þ<"".PalettedImage.ColorModel·f��������������6"".PalettedImage.ColorModel���þ"runtime.zerovalue������ÿÿgo13ld�