blob: deb1a1ec203edc7e081d7272af222f8772668aea [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 20021 `
go object windows amd64 go1.4.2 X:precisestack
$$
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.X == @"".q·3.X && @"".p·2.Y == @"".q·3.Y }
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 @"".Rectangle struct { Min @"".Point; Max @"".Point }
func (@"".r·2 @"".Rectangle) Add (@"".p·3 @"".Point) (? @"".Rectangle)
func (@"".r·2 @"".Rectangle) Canon () (? @"".Rectangle)
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)
func (@"".r·2 @"".Rectangle) In (@"".s·3 @"".Rectangle) (? bool)
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)
func (@"".r·2 @"".Rectangle) Union (@"".s·3 @"".Rectangle) (? @"".Rectangle)
type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
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)
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)
type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".RGBA "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel }
func (@"".p·2 *@"".RGBA "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".RGBA "esc:0x0") 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:0x0") RGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA)
func (@"".p·1 *@"".RGBA "esc:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA "esc:0x0") SetRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA)
func (@"".p·2 *@"".RGBA) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA (@"".r·2 @"".Rectangle) (? *@"".RGBA)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA64 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA64 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model }
func (@"".p·2 *@"".RGBA64 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".RGBA64 "esc:0x0") 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:0x0") RGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA64)
func (@"".p·1 *@"".RGBA64 "esc:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA64 "esc:0x0") SetRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA64)
func (@"".p·2 *@"".RGBA64) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA64 (@"".r·2 @"".Rectangle) (? *@"".RGBA64)
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)
type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel }
func (@"".p·2 *@"".NRGBA "esc:0x0") NRGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA "esc:0x0") SetNRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA (@"".r·2 @"".Rectangle) (? *@"".NRGBA)
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)
type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") NRGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA64 "esc:0x0") SetNRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA64 (@"".r·2 @"".Rectangle) (? *@"".NRGBA64)
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:0x0") AlphaAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha)
func (@"".p·2 *@"".Alpha "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel }
func (@"".p·2 *@"".Alpha "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Alpha "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha "esc:0x0") SetAlpha (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha)
func (@"".p·2 *@"".Alpha) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha (@"".r·2 @"".Rectangle) (? *@"".Alpha)
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:0x0") Alpha16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16 "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha16 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha16 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
func (@"".p·2 *@"".Alpha16 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Alpha16 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha16 "esc:0x0") SetAlpha16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha16 (@"".r·2 @"".Rectangle) (? *@"".Alpha16)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel }
func (@"".p·2 *@"".Gray "esc:0x0") GrayAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray)
func (@"".p·2 *@"".Gray "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray "esc:0x0") SetGray (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray)
func (@"".p·2 *@"".Gray) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray (@"".r·2 @"".Rectangle) (? *@"".Gray)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray16 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray16 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model }
func (@"".p·2 *@"".Gray16 "esc:0x0") Gray16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray16)
func (@"".p·2 *@"".Gray16 "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray16 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray16 "esc:0x0") SetGray16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray16)
func (@"".p·2 *@"".Gray16) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray16 (@"".r·2 @"".Rectangle) (? *@"".Gray16)
type @"image/color".Palette []@"image/color".Color
func (@"image/color".p·2 @"image/color".Palette "esc:0x0") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color)
func (@"image/color".p·2 @"image/color".Palette "esc:0x0") 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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Paletted "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Paletted "esc:0x0") ColorIndexAt (@"".x·3 int, @"".y·4 int) (? uint8)
func (@"".p·2 *@"".Paletted "esc:0x1") ColorModel () (? @"image/color".Model) { return @"".p·2.Palette }
func (@"".p·2 *@"".Paletted "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Paletted "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Paletted "esc:0x0") SetColorIndex (@"".x·2 int, @"".y·3 int, @"".index·4 uint8)
func (@"".p·2 *@"".Paletted) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewPaletted (@"".r·2 @"".Rectangle, @"".p·3 @"image/color".Palette) (? *@"".Paletted)
type @"".Uniform struct { C @"image/color".Color }
func (@"".c·2 *@"".Uniform "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform "esc:0x0") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:-0x3B9ACA00, Y:-0x3B9ACA00 }), Max:(@"".Point{ X:0x3B9ACA00, Y:0x3B9ACA00 }) }) }
func (@"".c·2 *@"".Uniform "esc:0x2") ColorModel () (? @"image/color".Model) { return @"".c·2 }
func (@"".c·2 *@"".Uniform "esc:0x1") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform) Opaque () (? bool)
func (@"".c·5 *@"".Uniform) 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
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".YCbCr "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".YCbCr "esc:0x0") COffset (@"".x·3 int, @"".y·4 int) (? int)
func (@"".p·2 *@"".YCbCr "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel }
func (@"".p·2 *@"".YCbCr "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".YCbCr) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func (@"".p·2 *@"".YCbCr "esc:0x0") YCbCrAt (@"".x·3 int, @"".y·4 int) (? @"image/color".YCbCr)
func (@"".p·2 *@"".YCbCr "esc:0x0") 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 ()
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".Alpha16Model @"image/color".Model
var @"image/color".GrayModel @"image/color".Model
var @"image/color".Gray16Model @"image/color".Model
var @"image/color".YCbCrModel @"image/color".Model
$$
�_go_.6 0 0 0 644 364474 `
go object windows amd64 go1.4.2 X:precisestack
!
��go13ldbufio.aerrors.aio.astrconv.aimage/color.a�þ""".RegisterFormat��€��øeH‹ %(���H‹‰����HD$àH;Awè����ëÞHì ���H|$p1Àè����H‹œ$¨���H‰\$pH‹œ$°���H‰\$xH‹œ$¸���H‰œ$€���H‹œ$À���H‰œ$ˆ���H‹œ$È���H‰œ$���H‹œ$Ð���H‰œ$˜���H‹����H‹ ����H‹����H‰ØH)ËHƒû}FH����H‰$H‰T$@H‰T$H‰L$HH‰L$H‰D$PH‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÎHÿÆH‰t$HH‰D$PH����H‰$H‰ÓH‰T$@H‰ÍHkí0HëH‰\$H\$pH‰\$è����H‹T$@H‹L$HH‹D$PH����H‰$H‰T$XH‰T$H‰L$`H‰L$H‰D$hH‰D$è����HÄ ���Ã������8��0runtime.morestack_noctxt���bè� runtime.duffzero���¤��"".formats���²�"".formats���À �"".formats���æ�� type.[]"".format���Æ��"runtime.growslice���’��type."".format���æ��.runtime.writebarrierfat���’��"".formats���à��2runtime.writebarrierslice���`À��"".autotmp_0002�¿ type.[]"".format�"".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�)ÀÒ¿�€�B)Ë ��âP=�Tgclocals·124193b742c54128cb6ed959c23825aa�Tgclocals·689951afea2aec1a1892a98ed10a0c65���2c:/go/src/image/format.goþ"".asReader��€��îeH‹ %(���H‹‰����H;awè����ëãHƒìHHÇD$`����HÇD$h����H����H‰$H‹\$PH‰\$H‹\$XH‰\$è����H‹T$H‰T$8H‹L$ H‰L$@¶\$(€û�tH‰T$`H‰L$hHƒÄHÃH‹\$PH‰$H‹\$XH‰\$è����H‹\$H‰\$0H‹����1íH9ètH‹\$0H‰\$hH‰D$`HƒÄHÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë½������.��0runtime.morestack_noctxt���l��type."".reader���¦��$runtime.assertI2I2���°��bufio.NewReader���Ò��>go.itab.*bufio.Reader."".reader���–��$type.*bufio.Reader���¬��type."".reader���Ä��>go.itab.*bufio.Reader."".reader���Ø�� runtime.typ2Itab���@��"".autotmp_0010�/$type.*bufio.Reader�
"".rr�type."".reader� "".~r1� type."".reader�"".r��type.io.Reader�$!bC8�€�X3B|��R™�Tgclocals·3873aede0e2b4d1c469235ed370ff191�Tgclocals·61e2515c69061b8fed0e66ece719f936���2c:/go/src/image/format.goþ"".match��À��ªeH‹ %(���H‹‰����H;awè����ëãH‹t$ L‹L$H‹|$H9÷tÆD$0�ÃH‹L$H‹\$(1ÀI‰òL9Ð}6¶)H9øs;I¶@8ëtH9øs#I¶€û?tÆD$0�ÃHÿÁHÿÀL9Ð|ÊÆD$0Ãè���� è���� ������.��0runtime.morestack_noctxt�����$runtime.panicindex���ž��$runtime.panicindex���`���
"".autotmp_0017��type.int�"".autotmp_0016��type.int� "".~r2�Ptype.bool�"".b� type.[]uint8�"".magic��type.string� � �&h,"
� �‡�Tgclocals·0f53758b92f935584caadf34297c3fcc�Tgclocals·3280bececceccd33cb74587feedb1f9f���2c:/go/src/image/format.goþ"".sniff�� ��šeH‹ %(���H‹‰����H„$`ÿÿÿH;Awè����ëÛHì ��H¼$8��1Àè����H‹ ����H‹����H‹����H‰œ$ˆ���1ÒH‰„$€���H‰D$8H‰L$xH‰ÈH‹l$8H9ê��H‰D$HHƒø�„:��H¬$ð���H‰ïH‰Æè����H‰T$@Hœ$ð���H¬$���H‰ïH‰Þè����H‹œ$¨���H‰\$H‹œ$0��H‰$H‹œ$(��H‹[ ÿÓL‹L$L‰L$`L‹D$L‰D$hH‹T$ H‰T$pH‹D$(H‹\$0H‰\$XHƒø�H‰D$PuWHœ$ ���H,$H‰ïH‰ÞH¥H¥L‰L$L‰D$H‰T$ è����¶\$(€û�t#Hœ$���H¬$8��H‰ïH‰Þè����HÄ ��ÃH‹D$HH‹T$@HƒÀ0HÿÂH‹l$8H9êŒéþÿÿH¼$À���1Àè����Hœ$À���H¬$8��H‰ïH‰Þè����HÄ ��É�é¿þÿÿ������>��0runtime.morestack_noctxt���nè� runtime.duffzero���|��"".formats���Š�"".formats���˜ �"".formats���¶Ø� runtime.duffcopy���öØ� runtime.duffcopy���È�
������ˆ��"".match���ÒØ� runtime.duffcopy���¾è� runtime.duffzero���ôØ� runtime.duffcopy���€À��"".autotmp_0027�¿type."".format�"".autotmp_0026�_type."".format�"".autotmp_0025�¯type.*"".format�"".autotmp_0024�Ïtype.int�"".autotmp_0023�¿type.int�"".autotmp_0020�Ï type.[]"".format� "".err�Ÿtype.error�"".b�ÿtype.[]uint8�"".f�Ÿtype."".format� "".~r1� type."".format�"".r��type."".reader�&,ÀÈ¿ÀP¿À
�Ð�&‚;„T?# 2
��äì�Tgclocals·baf985c43624001cee46a8835a947fc7�Tgclocals·ad04ee8da0f8bb0366ff7cbe0f9323dd���2c:/go/src/image/format.goþ"".Decode��À��´eH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���HDŽ$È�������HDŽ$Ð�������HDŽ$Ø�������HDŽ$à�������HDŽ$è�������HDŽ$ð�������H‹œ$¸���H‰$H‹œ$À���H‰\$è����H‹T$H‹D$H‰T$@H‰$H‰D$HH‰D$è����H\$H¬$€���H‰ïH‰Þè����Hœ$€���Hl$PH‰ïH‰Þè����H‹\$p1íH9ëuVHDŽ$È�������HDŽ$Ð�������HDŽ$Ø�������HDŽ$à�������H‹����H‰œ$è���H‹����H‰œ$ð���HÄ°���ÃH����H‰$H‹\$@H‰\$H‹\$HH‰\$è����H\$H,$H‰ïH‰ÞH¥H¥H‹T$pH‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰¬$È���H‰”$Ð���H‹\$PH‰œ$Ø���H‹\$XH‰œ$à���H‰Œ$è���H‰„$ð���HÄ°���Ã������8��0runtime.morestack_noctxt���–��"".asReader���Ú��"".sniff���ŠØ� runtime.duffcopy���ºØ� runtime.duffcopy���À��"".ErrFormat���Þ�"".ErrFormat���Œ��type.io.Reader���Æ��runtime.convI2I���„�
������€à��"".autotmp_0029�_type."".format�"".f�¿type."".format�
"".rr�ßtype."".reader� "".~r3�`type.error� "".~r2�@type.string� "".~r1� type."".Image�"".r��type.io.Reader�")à™ßà–ß�à� žq(H VUH��Š"¶~�Tgclocals·15a9b70f3d57ed4dc7f43eee6af9b1db�Tgclocals·3d5078ce684344684d23e08b24b946af���2c:/go/src/image/format.goþ"".DecodeConfig��€��þeH‹ %(���H‹‰����HD$H;Awè����ëÞHìð���H¼$��1Àè����HDŽ$(������HDŽ$0������HDŽ$8������HDŽ$@������H‹œ$ø���H‰$H‹œ$���H‰\$è����H‹T$H‹D$H‰T$@H‰$H‰D$HH‰D$è����H\$H¬$À���H‰ïH‰Þè����Hœ$À���H¬$���H‰ïH‰Þè����H‹œ$¸���1íH9ëubH|$p1Àè����H\$pH¬$��H‰ïH‰Þè����HDŽ$(������HDŽ$0������H‹����H‰œ$8��H‹����H‰œ$@��HÄð���ÃH����H‰$H‹\$@H‰\$H‹\$HH‰\$è����H\$H,$H‰ïH‰ÞH¥H¥H‹”$¸���H‹ÿÓH\$PHl$H‰ßH‰îè����H‹T$0H‹D$8H\$PH¬$��H‰ïH‰Þè����H‹œ$���H‰œ$(��H‹œ$˜���H‰œ$0��H‰”$8��H‰„$@��HÄð���à ������8��0runtime.morestack_noctxt���hð� runtime.duffzero���„��"".asReader���È��"".sniff���øØ� runtime.duffcopy���®Ø� runtime.duffcopy���äð� runtime.duffzero���”� runtime.duffcopy���Ò��"".ErrFormat���ð�"".ErrFormat���ž��type.io.Reader���Ø��runtime.convI2I���œ�
������� runtime.duffcopy���†� runtime.duffcopy��� à��"".autotmp_0032�ÿtype."".Config�"".autotmp_0031�_type."".format�"".c�¿type."".Config�"".f�¿type."".format�
"".rr�ßtype."".reader� "".~r3�€type.error� "".~r2�`type.string� "".~r1� type."".Config�"".r��type.io.Reader�")à¢ßà²ß�€� ºh(KbcQ��"È•�Tgclocals·049fdf22d8465bb89a8497d987971252�Tgclocals·31381dadbad2ef3b40a292b9dc6507e8���2c:/go/src/image/format.goþ"".Point.String�� ��’eH‹ %(���H‹‰����H;awè����ëãHì€���HDŽ$˜�������HDŽ$ �������H‹œ$ˆ���H‰$è����H‹\$H‰\$pH‹\$H‰\$xH‹œ$���H‰$è����H‹L$H‹D$H����H,$H‰ïH‰ÞH¥H¥H‹\$pH‰\$H‹t$xH‰t$H5����Hl$ H‰ïH¥H¥H‰L$`H‰L$0H‰D$hH‰D$8H����Hl$@H‰ïH‰ÞH¥H¥è����H‹\$PH‰œ$˜���H‹\$XH‰œ$ ���HÄ€���Ã������.��0runtime.morestack_noctxt���’��strconv.Itoa���Ü��strconv.Itoa���þ��go.string."("���Ð��go.string.","���ž��go.string.")"���Æ��*runtime.concatstring5���@€��"".autotmp_0034�?type.string�"".autotmp_0033�type.string� "".~r0� type.string�"".p��type."".Point�$€äÿ�� $<Ô��H%u.�Tgclocals·fadf43fe6eb488109b787d0108700970�Tgclocals·a1d8257ee5fc09a16c1a87509e9dfc59���.c:/go/src/image/geom.goþ"".Point.Add��`��JH‹L$H‹l$H‹D$HéH‹l$ HèH‰L$(H‰D$0Ã�`��� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0�0�00��Tgclocals·ad59828090211c542efac4951edd4e76�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.Sub��`��JH‹L$H‹l$H‹D$H)éH‹l$ H)èH‰L$(H‰D$0Ã�`��� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�0�0�:0��Tgclocals·ad59828090211c542efac4951edd4e76�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.Mul��`��DH‹D$H‹L$H‹\$H¯ÈH¯ØH‰L$ H‰\$(Ã�P��� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�0�0�
B+��Tgclocals·754250e8590c282610f2a6c293641cbe�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.Div�� ��’H‹t$H‹D$Hƒþÿt1H™H÷þH‰ÃH‹D$H‰ÙHƒþÿtH™H÷þH‰ÃH‰L$ H‰\$(ÃH÷ØH‰ÃëíH÷ØH‰ÃëÏ�P��� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�P�P�
LK��Tgclocals·754250e8590c282610f2a6c293641cbe�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.In��€��~H‹L$H‹D$H‹\$H9Ë$H‹l$(H9é}H‹\$ H9ÃH‹l$0H9è}ÆD$8ÃÆD$8�ëø�p��� "".~r1�`type.bool�"".r� "type."".Rectangle�"".p��type."".Point�@�@�
V
6��Tgclocals·8d7f7c65c6a60d601440989e93ddcf2d�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.Mod��À��¦Hƒì@H\$XH,$H‰ïH‰Þè����H‹T$H‹<$H)úH\$XH|$ H‰Þè����H‹t$8H‹l$(H)îH‰×H‹\$HH‹T$PH‹L$XH‹D$`H)ËI‰ÐI)ÀH‰ØHƒÿÿtcH™H÷ÿH‰ÓH‰ÙHƒû�}HùL‰ÀHƒþÿtBH™H÷þH‰ÓH‰ØHƒû�}HðH‰ËH‰ÂH‹L$XH‹D$`HËH‰ÙH‰ÓHÃH‰L$xH‰œ$€���HƒÄ@Ã1ÛëÂ1Ûë¡(� runtime.duffcopy���d� runtime.duffcopy���€€��"".autotmp_0046��type."".Point�"".autotmp_0043��type.int�"".autotmp_0042��type.int�"".autotmp_0040��type.int�"".autotmp_0039��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�`type."".Point�"".r� "type."".Rectangle�"".p��type."".Point�€Æ€�à�2dB.��Tgclocals·37a3af65680ebdf26777b2f1e884d20d�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Point.Eq��`��VH‹\$H‹l$H9ëuH‹\$H‹l$ H9ëuÆD$(ÃÆD$(�ëø�P��� "".~r1�@type.bool�"".q� type."".Point�"".p��type."".Point�0�0�„0��Tgclocals·f097843b827f64f2379e22321b5e9b17�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ
"".Pt��@��*H‹L$H‹D$H‰L$H‰D$ Ã�@��� "".~r2� type."".Point�"".Y�type.int�"".X��type.int� � �” ��Tgclocals·693fd2e6f4da98598ef49a51d91c93cd�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ&"".Rectangle.String��à��ÄeH‹ %(���H‹‰����H;awè����ëãHƒì`HDŽ$ˆ�������HDŽ$�������H\$hH,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$PH‹t$H‰t$XHt$xH,$H‰ïH¥H¥è����H‹L$H‹D$H‹\$PH‰$H‹t$XH‰t$H5����Hl$H‰ïH¥H¥H‰L$@H‰L$ H‰D$HH‰D$(è����H‹\$0H‰œ$ˆ���H‹\$8H‰œ$���HƒÄ`à ������.��0runtime.morestack_noctxt���š��"".Point.String���ì��"".Point.String���´��go.string."-"���þ��*runtime.concatstring3���`À��"".autotmp_0049�?type.string�"".autotmp_0048�type.string� "".~r0�@type.string�"".r��"type."".Rectangle�!ÀÀ¿�ð�¬9·��L)I2�Tgclocals·7bd192a35638da49d6dc2406cbd9296b�Tgclocals·a1d8257ee5fc09a16c1a87509e9dfc59���.c:/go/src/image/geom.goþ"".Rectangle.Dx��@��&H‹\$H‹l$H)ëH‰\$(Ã�P��� "".~r0�@type.int�"".r��"type."".Rectangle� � �¸ ��Tgclocals·f097843b827f64f2379e22321b5e9b17�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Rectangle.Dy��@��&H‹\$ H‹l$H)ëH‰\$(Ã�P��� "".~r0�@type.int�"".r��"type."".Rectangle� � � ��Tgclocals·f097843b827f64f2379e22321b5e9b17�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ""".Rectangle.Size��`��JH‹L$H‹l$H‹D$ H)éH‹l$H)èH‰L$(H‰D$0Ã�`��� "".~r0�@type."".Point�"".r��"type."".Rectangle�0�0� Ì��Tgclocals·ad59828090211c542efac4951edd4e76�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ "".Rectangle.Add��à��ÜHƒì H‹t$HH‹T$PH|$X1Àè����H<$1Àè����H‹\$(HóH‰$H‹\$0HÓH‰\$H‹\$8HóH‰\$H‹t$@HÖH‰t$H4$Hl$XH‰ïè����HƒÄ Ã,ð� runtime.duffzero���Bð� runtime.duffzero���ʐ� runtime.duffcopy��� @��"".autotmp_0051�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�@i?�p�Ú>��Tgclocals·65130bbc8ae989bf0239d29d75c3de0a�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ "".Rectangle.Sub��à��ÜHƒì H‹t$HH‹T$PH|$X1Àè����H<$1Àè����H‹\$(H)óH‰$H‹\$0H)ÓH‰\$H‹\$8H)óH‰\$H‹t$@H)ÖH‰t$H4$Hl$XH‰ïè����HƒÄ Ã,ð� runtime.duffzero���Bð� runtime.duffzero���ʐ� runtime.duffcopy��� @��"".autotmp_0052�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�@i?�p�ê>��Tgclocals·65130bbc8ae989bf0239d29d75c3de0a�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ$"".Rectangle.Inset��À��¼Hƒì@H‹T$hH|$p1Àè����H\$HH,$H‰ïH‰Þè����H‹\$H‹,$H)ëH‰ÕHÑåH9덻���H‹\$HH‹l$XHëH‰ÝHÁû?H)ÝH‰ëHÑûH‰\$HH‹\$HH‰\$XH\$HHl$ H‰ïH‰Þè����H‹\$8H‹l$(H)ëH‰ÕHÑåH9ë}FH‹\$PH‹l$`HëH‰ÝHÁû?H)ÝH‰ëHÑûH‰\$PH‹\$PH‰\$`H\$HHl$pH‰ïH‰Þè����HƒÄ@ÃH‹\$PHÓH‰\$PH‹\$`H)ÓH‰\$`ëÊH‹\$HHÓH‰\$HH‹\$XH)ÓH‰\$XéRÿÿÿ"ð� runtime.duffzero���J� runtime.duffcopy���‚� runtime.duffcopy���´� runtime.duffcopy���€��"".autotmp_0060��type.int�"".autotmp_0059��type.int�"".autotmp_0058��type.int�"".autotmp_0056��type.int�"".autotmp_0055��type.int�"".autotmp_0054��type.int�"".autotmp_0053��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�P"type."".Rectangle�"".n�@type.int�"".r��"type."".Rectangle�€Þ€=� �<þ/"
-"
    ��Tgclocals·9914f6859f5490a9727d8fd4ecc4be29�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ,"".Rectangle.Intersect��à��ÐL‹D$(H‹t$0H‹T$8H‹L$@H|$H1Àè����H‹\$L9Ã}L‰D$H‹\$H9ó}H‰t$H‹\$H9Ó~H‰T$H‹\$ H9Ë~H‰L$ H‹\$H‹l$H9ë%H‹\$H‹l$ H9ëH\$Hl$HH‰ïH‰Þè����ÃH����Hl$HH‰ïH‰Þè����Ã8ð� runtime.duffzero���–� runtime.duffcopy���¦��
"".ZR���Ɛ� runtime.duffcopy���À��� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�°�°�4¦ 



 ��Tgclocals·fdae9ae37d4dce05f8eacbdf3c2442e4�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ$"".Rectangle.Union��€��äL‹L$(L‹D$0H‹t$8H‹T$@H|$H1Àè����H‹\$L9Ë~L‰L$H‹\$L9Ã~L‰D$H‹\$H9ó}H‰t$H‹\$ H9Ó}H‰T$ H\$Hl$HH‰ïH‰Þè����Ã8ð� runtime.duffzero���ڐ� runtime.duffcopy���À��� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�€�€�,Î 



$��Tgclocals·fdae9ae37d4dce05f8eacbdf3c2442e4�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ$"".Rectangle.Empty��`��VH‹\$H‹l$H9ë}H‹\$H‹l$ H9ë}ÆD$(�ÃÆD$(ëø�P��� "".~r0�@type.bool�"".r��"type."".Rectangle�0�0�ò0��Tgclocals·f097843b827f64f2379e22321b5e9b17�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Rectangle.Eq�� ��’H‹\$H‹l$(H9ëu3H‹\$H‹l$0H9ëu$H‹\$H‹l$8H9ëuH‹\$ H‹l$@H9ëuÆD$HÃÆD$H�ëø���� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�P�P�þP��Tgclocals·c599caa25db968b6ca75a357ce3b4973�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ*"".Rectangle.Overlaps�� ��’H‹\$H‹l$8H9ë}3H‹\$(H‹l$H9ë}$H‹\$H‹l$@H9ë}H‹\$0H‹l$ H9ë}ÆD$HÃÆD$H�ëø���� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�P�P�ŠP��Tgclocals·c599caa25db968b6ca75a357ce3b4973�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Rectangle.In��À��¶Hƒì H\$(H,$H‰ïH‰Þè����H‹$H‹l$H9ë}lH‹\$H‹l$H9ë}]1À<�t
ÆD$hHƒÄ ÃH‹\$HH‹l$(H9ë7H‹\$8H‹l$XH9ë(H‹\$PH‹l$0H9ëH‹\$@H‹l$`H9ë
ÆD$hHƒÄ ÃÆD$h�ëôHÇÀ���ëœ(� runtime.duffcopy���@��"".r�?"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�@@?@E?@� �’7
M ��Tgclocals·c599caa25db968b6ca75a357ce3b4973�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ$"".Rectangle.Canon��à��ÐH|$(1Àè����H‹\$H‹l$H9ë}H‹D$H‹\$H‰\$H‰D$H‹\$ H‹l$H9ë}H‹D$H‹\$ H‰\$H‰D$ H\$Hl$(H‰ïH‰Þè����Ãð� runtime.duffzero���Ɛ� runtime.duffcopy���€���"".autotmp_0063��type.int� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�p�p�ª ��Tgclocals·2d6db49a78b1c16f35de9603885ed131�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ"".Rect��€��îHƒì L‹L$(L‹D$8H‹t$0H‹T$@H|$H1Àè����M9Á~ L‰ÈM‰ÁI‰ÀH9Ö~ H‰ðH‰ÖH‰ÂH<$1Àè����L‰ $H‰t$L‰D$H‰T$H$Hl$HH‰ïH‰Þè����HƒÄ Ã@ð� runtime.duffzero���Žð� runtime.duffzero���ܐ� runtime.duffcopy���€@��"".autotmp_0066�?"type."".Rectangle�"".autotmp_0065��type.int� "".~r4�@"type."".Rectangle�
"".y1�0type.int�
"".x1� type.int�
"".y0�type.int�
"".x0��type.int�@r?
�€�Æ$  @��Tgclocals·2d6db49a78b1c16f35de9603885ed131�Tgclocals·3280bececceccd33cb74587feedb1f9f���.c:/go/src/image/geom.goþ*"".(*RGBA).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��*image/color.RGBAModel����*image/color.RGBAModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA� � �Ž ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*RGBA).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA�0�0�’0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*RGBA).At�� ��ˆeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$4¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$4H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��""".(*RGBA).RGBAAt���ø��*type.image/color.RGBA���Ž��,type.image/color.Color���¦��Tgo.itab.image/color.RGBA.image/color.Color���Î��runtime.convT2I���Pp��
"".autotmp_0067�*type.image/color.RGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�!p¢o �Ð�–3� �P€�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*RGBA).RGBAAt��À��²eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„X��Hj H$H‰ßH‰îè����H‹$L9ӏ1��H‹l$I9ê#��H‹\$L9ˏ��H‹l$I9é��HÇÀ���<�u1í1Ò1É1À@ˆl$@ˆT$AˆL$BˆD$CHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÁåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9σ–���H>¶I‰ÚH‰ÇHÿÇH‹2H‹JL‹BH9ÏsoH>¶I‰ÙH‰ÇHƒÇH‹2H‹JL‹BH9ÏsGH>¶H‰ßH‰ÆHƒÆH‹
H‹BL‹BH9ÆsH1¶DˆT$@DˆL$A@ˆ|$Bˆ\$CHƒÄ Ãè���� è���� è���� è���� 1Àéùþÿÿ‰é¡þÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���à��$runtime.panicindex���î��$runtime.panicindex���ü��$runtime.panicindex���Š��$runtime.panicindex���@@��"".autotmp_0072��*type.image/color.RGBA�"".autotmp_0070��type.int�"".r�?"type."".Rectangle� "".~r2�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�!@‹?@Á?@1� �ž0_&¸� �ï1�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*RGBA).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�@�@� ²;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*RGBA).Set��À��²eH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„Ì��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏž��H‹l$PI9ꍐ��H‹\$HL9ˏ‚��H‹l$XI9ét��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����H‹L$xH‹D$(¶\$I‰Û¶\$I‰Ú¶\$I‰Ù¶\$H‰ßI‰ÀIƒÀ�Hƒù�„”���H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆ H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H@ˆ;HƒÄpÃè���� è���� è���� è���� ‰éeÿÿÿ1ÀéŒþÿÿA‰�é,þÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���â�*image/color.RGBAModel���ø��*image/color.RGBAModel���ˆ�
������¦��*type.image/color.RGBA���à��"runtime.assertI2T���Ð��$runtime.panicindex���Þ��$runtime.panicindex���ì��$runtime.panicindex���ú��$runtime.panicindex���Pà��"".autotmp_0089��type.int�"".autotmp_0088��type.int�"".autotmp_0087��type.int�"".autotmp_0086��type.int�"".autotmp_0084��type.int�"".autotmp_0082�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�(!à„ßàÀßà9� �Bº6k.Š(! ��„œ�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ$"".(*RGBA).SetRGBA��€��ðeH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„7��Hj H$H‰ßH‰îè����H‹$L9ӏ��H‹l$I9ê��H‹\$L9ˏô���H‹l$I9éæ���HÇÀ���<�uHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÏH)ßH‹jH¯ýH‰ÍHÁåHïH‰øHƒÇ�H‹2H‹JH‹jH9σŽ���H>¶l$@@ˆ+H‰ÇHÿÇH‹2H‹JH‹jH9ÏseH>¶l$A@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9Ïs;H>¶l$B@ˆ+H‰ÆHƒÆH‹
H‹BH‹jH9ÆsH1¶l$C@ˆ+HƒÄ Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éÂþÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���ž��$runtime.panicindex���¬��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���@@��"".autotmp_0100��type.int�"".autotmp_0099��type.int�"".autotmp_0098��type.int�"".autotmp_0097��type.int�"".autotmp_0095��type.int�"".r�?"type."".Rectangle�"".c�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�!@r?@¹?@2�€�<Ò0_&'"##� �Î2�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*RGBA).SubImage��à ��Ð eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„·��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë7��H‹\$pH‹¬$€���H9ë!��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÁåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÕýÿÿ‰éBýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".RGBA���”��"runtime.newobject���¾à� runtime.duffzero���Ü��2go.itab.*"".RGBA."".Image���¸��type.*"".RGBA���Î��type."".Image���æ��2go.itab.*"".RGBA."".Image���ú�� runtime.typ2Itab���ž��type."".RGBA���°��"runtime.newobject���¸ ��2runtime.writebarrierslice���¤
� runtime.duffcopy���Â
��2go.itab.*"".RGBA."".Image���ž ��type.*"".RGBA���´ ��type."".Image���Ì ��2go.itab.*"".RGBA."".Image���à �� runtime.typ2Itab���ž ��$runtime.panicslice���p��"".autotmp_0118��type.*uint8�"".autotmp_0114��type.*"".RGBA�"".autotmp_0113��type.int�"".autotmp_0112��type.int�"".autotmp_0109�?type.*"".RGBA�"".autotmp_0107��type.*"".RGBA�"".autotmp_0106��type.*"".RGBA�"".autotmp_0105�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA�()¯òd�°�DìArKŽ@­ - � �{[„³"�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ""".(*RGBA).Opaque�� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„��Hj H$H‰ßH‰îè����H‹$H‹l$H9ëß���H‹\$H‹l$H9ëÌ���1À<�t
ÆD$PHƒÄ@ÃHƒú�„«���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éHÁáIÇÂ���L‹J(H‹Z8L9Ë~]L‰ÐH9È}5Hƒú�t`H‹:H‹rL‹BH9ðsIH¶€ûÿt
ÆD$P�HƒÄ@ÃHƒÀH9È|ËH‹ZLÓI‰ÚH‹ZHËH‰ÙIÿÁH‹Z8L9Ë£ÆD$PHƒÄ@Ãè���� ‰뜉éNÿÿÿHÇÀ���é*ÿÿÿ‰ééþÿÿ
������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���Æ��$runtime.panicindex��� €��"".autotmp_0132��type.int�"".autotmp_0131��type.int�"".autotmp_0128��type.int�"".autotmp_0127��type.int�"".autotmp_0126��type.int�"".autotmp_0125��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p��type.*"".RGBA�*!€V€v€2€.�Ð�DŽ&H
6 "



� �¢.�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewRGBA��À��¨eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�tbH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÁçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë•������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Œ��type.[]uint8���²��"runtime.makeslice���Ž��type."".RGBA��� ��"runtime.newobject���¢��2runtime.writebarrierslice���î� runtime.duffcopy���P°��"".autotmp_0140�?type.*"".RGBA�"".autotmp_0139��type.int�"".autotmp_0137��type.int�"".autotmp_0136��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA�"".r��"type."".Rectangle�)°¡¯°�à�²)GTœ��˜7AP�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ."".(*RGBA64).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��.image/color.RGBA64Model����.image/color.RGBA64Model���0��� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA64� � �Ô ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*RGBA64).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA64�0�0�Ø0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*RGBA64).At�� ��˜eH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$0H·\$f‰\$2H·\$f‰\$4H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$0H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��*"".(*RGBA64).RGBA64At���ˆ��.type.image/color.RGBA64���ž��,type.image/color.Color���¶��Xgo.itab.image/color.RGBA64.image/color.Color���Þ��runtime.convT2I���Pp��
"".autotmp_0141�.type.image/color.RGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�!pªo�Ð�Ü3� �P€�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*RGBA64).RGBA64At��à ��Ø eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„+��Hj H$H‰ßH‰îè����H‹$L9ӏ��H‹l$I9êö��H‹\$L9ˏè��H‹l$I9éÚ��HÇÀ���<�u!1í1Ò1É1Àf‰l$@f‰T$Bf‰L$Df‰D$FHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÁåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9σf��H>f¶HÁãH‰ÇHÿÇH‹2H‹JL‹JH9σ9��H,>f¶m�H ëI‰ÜH‰ÇHƒÇH‹2H‹JL‹BH9σ��H>f¶HÁãH‰ÇHƒÇH‹2H‹JL‹JH9σÚ���H,>f¶m�H ëI‰ÛH‰ÇHƒÇH‹2H‹JL‹BH9σ©���H>f¶HÁãH‰ÇHƒÇH‹2H‹JL‹JH9ÏsH,>f¶m�H ëI‰ÚH‰ÇHƒÇH‹2H‹JL‹BH9ÏsRH>f¶HÁãH‰ÆHƒÆH‹
H‹BL‹JH9Æs(H,1f¶m�H ëfD‰d$@fD‰\$BfD‰T$Df‰\$FHƒÄ Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àé&þÿÿ‰éÎýÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���Î��$runtime.panicindex���Ü��$runtime.panicindex���ê��$runtime.panicindex���ø��$runtime.panicindex���† ��$runtime.panicindex���” ��$runtime.panicindex���¢ ��$runtime.panicindex���° ��$runtime.panicindex���@@��"".autotmp_0146��.type.image/color.RGBA64�"".autotmp_0144��type.int�"".r�?"type."".Rectangle� "".~r2�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�!@Ž?@õ?@J�ð�&ä0_!&´
 8� �¦J�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ,"".(*RGBA64).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�@�@� ‚;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ "".(*RGBA64).Set��À ��À eH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„“��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏe��H‹l$PI9êW��H‹\$HL9ˏI��H‹l$XI9é;��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����H‹L$xH‹D$(H·\$I‰ÙH·\$H‰ßH·\$H‰ÞH·\$H‰ÚI‰ÃIƒÃ�Hƒù�„W��H‹L‹QH‹iM9Óƒ<��JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ ��JDˆ I‰ÂIƒÂH‹L‹IH‹iM9ʃä���JH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´���J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹���J H‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J @ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹ H‹CH‹kH9Æs H1ˆHƒÄpÃè���� è���� è���� è���� è���� è���� è���� è���� ‰é¢þÿÿ1ÀéÅýÿÿA‰�éeýÿÿ ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���â�.image/color.RGBA64Model���ø��.image/color.RGBA64Model���ˆ�
������¦��.type.image/color.RGBA64���à��"runtime.assertI2T���¦
��$runtime.panicindex���´
��$runtime.panicindex���Â
��$runtime.panicindex���Ð
��$runtime.panicindex���Þ
��$runtime.panicindex���ì
��$runtime.panicindex���ú
��$runtime.panicindex���ˆ ��$runtime.panicindex���Pà��""".autotmp_0175��type.int�"".autotmp_0174��type.int�"".autotmp_0173��type.int�"".autotmp_0172��type.int�"".autotmp_0171��type.int�"".autotmp_0170��type.int�"".autotmp_0169��type.int�"".autotmp_0168��type.int�"".autotmp_0166��type.int�"".autotmp_0164�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�(!à„ßàëßàN�à�bŠ6k.Ž3!)")%  ��„Ü�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ,"".(*RGBA64).SetRGBA64��€ ��øeH‹ %(���H‹‰����H;awè����ëãHƒì L‹t$0L‹l$8L·d$@L·\$BL·T$DL·L$FH‹T$(Hƒú�„ã��Hj H$H‰ßH‰îè����H‹$L9ó¼��H‹l$I9��H‹\$L9돠��H‹l$I9퍒��HÇÀ���<�uHƒÄ ÃH‹Z L‰ñH)ÙH‹Z(L‰ïH)ßH‹jH¯ýH‰ÍHÁåHïH‰øHƒÇ�H‹2H‹JH‹jH9σ:��H>L‰åfÁí@ˆ+H‰ÇHÿÇH‹2H‹JH‹jH9σ ��H>Dˆ#H‰ÇHƒÇH‹2H‹JH‹jH9σâ���H>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9σ²���H>DˆH‰ÇHƒÇH‹2H‹JH‹jH9σ‰���H>L‰ÕfÁí@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9Ïs]H>DˆH‰ÇHƒÇH‹2H‹JH‹jH9Ïs8H>L‰ÍfÁí@ˆ+H‰ÆHƒÆH‹
H‹BH‹jH9Æs H1Dˆ HƒÄ Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àénþÿÿ‰éþÿÿ������.��0runtime.morestack_noctxt���� runtime.duffcopy���î��$runtime.panicindex���ü��$runtime.panicindex���Š��$runtime.panicindex���˜��$runtime.panicindex���¦��$runtime.panicindex���´��$runtime.panicindex���Â��$runtime.panicindex���Ð��$runtime.panicindex���@@��"".autotmp_0194��type.int�"".autotmp_0193��type.int�"".autotmp_0192��type.int�"".autotmp_0191��type.int�"".autotmp_0190��type.int�"".autotmp_0189��type.int�"".autotmp_0188��type.int�"".autotmp_0187��type.int�"".autotmp_0185��type.int�"".r�?"type."".Rectangle�"".c�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�!@Š?@É?@J�À�\ªH_&)!)")%� �öJ�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*RGBA64).SubImage��à ��Ð eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„·��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë7��H‹\$pH‹¬$€���H9ë!��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÁåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÕýÿÿ‰éBýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".RGBA64���”��"runtime.newobject���¾à� runtime.duffzero���Ü��6go.itab.*"".RGBA64."".Image���¸��type.*"".RGBA64���Î��type."".Image���æ��6go.itab.*"".RGBA64."".Image���ú�� runtime.typ2Itab���ž��type."".RGBA64���°��"runtime.newobject���¸ ��2runtime.writebarrierslice���¤
� runtime.duffcopy���Â
��6go.itab.*"".RGBA64."".Image���ž ��type.*"".RGBA64���´ ��type."".Image���Ì ��6go.itab.*"".RGBA64."".Image���à �� runtime.typ2Itab���ž ��$runtime.panicslice���p��"".autotmp_0216��type.*uint8�"".autotmp_0212��type.*"".RGBA64�"".autotmp_0211��type.int�"".autotmp_0210��type.int�"".autotmp_0207�?type.*"".RGBA64�"".autotmp_0205��type.*"".RGBA64�"".autotmp_0204��type.*"".RGBA64�"".autotmp_0203�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA64�()¯òd�°�DÌArKŽ@­ - � �{[„³"�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ&"".(*RGBA64).Opaque�� ��„eH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„K��Hj H$H‰ßH‰îè����H‹$H‹l$H9ë��H‹\$H‹l$H9ë��1À<�t
ÆD$PHƒÄ@ÃHƒú�„æ���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éHÁáIÇÃ���L‹R(H‹Z8L9ÓŽ€���L‰ØH9È}XI‰ÁIƒÁ�Hƒú�„‰���H‹:H‹rL‹BI9ñsrJ¶€ûÿuUI‰ÁIÿÁH‹:H‹rL‹BI9ñsIJ¶€ûÿu3HƒÀH9È|¨H‹ZLÛI‰ÛH‹ZHËH‰ÙIÿÂH‹Z8L9Ó€ÆD$PHƒÄ@ÃÆD$P�HƒÄ@Ãè���� è���� ‰épÿÿÿ‰éÿÿÿHÇÀ���éïþÿÿ‰é®þÿÿ ������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���¨��$runtime.panicindex���¶��$runtime.panicindex��� €��"".autotmp_0230��type.int�"".autotmp_0229��type.int�"".autotmp_0226��type.int�"".autotmp_0225��type.int�"".autotmp_0224��type.int�"".autotmp_0223��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p��type.*"".RGBA64�,!€V€Ð€ €=��Dî&H
6O


!� �Ó=�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewRGBA64��À��¨eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�tbH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÁçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë•������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Œ��type.[]uint8���²��"runtime.makeslice���Ž��type."".RGBA64��� ��"runtime.newobject���¢��2runtime.writebarrierslice���î� runtime.duffcopy���P°��"".autotmp_0241�?type.*"".RGBA64�"".autotmp_0240��type.int�"".autotmp_0238��type.int�"".autotmp_0237��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA64�"".r��"type."".Rectangle�)°¡¯°�à�’)GTœ��˜7AP�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ,"".(*NRGBA).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��,image/color.NRGBAModel����,image/color.NRGBAModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".NRGBA� � �´ ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ$"".(*NRGBA).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".NRGBA�0�0�¸0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*NRGBA).At�� ��ˆeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$4¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$4H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��&"".(*NRGBA).NRGBAAt���ø��,type.image/color.NRGBA���Ž��,type.image/color.Color���¦��Vgo.itab.image/color.NRGBA.image/color.Color���Î��runtime.convT2I���Pp��
"".autotmp_0242�,type.image/color.NRGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�!p¢o �Ð�¼3� �P€�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*NRGBA).NRGBAAt��À��²eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„X��Hj H$H‰ßH‰îè����H‹$L9ӏ1��H‹l$I9ê#��H‹\$L9ˏ��H‹l$I9é��HÇÀ���<�u1í1Ò1É1À@ˆl$@ˆT$AˆL$BˆD$CHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÁåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9σ–���H>¶I‰ÚH‰ÇHÿÇH‹2H‹JL‹BH9ÏsoH>¶I‰ÙH‰ÇHƒÇH‹2H‹JL‹BH9ÏsGH>¶H‰ßH‰ÆHƒÆH‹
H‹BL‹BH9ÆsH1¶DˆT$@DˆL$A@ˆ|$Bˆ\$CHƒÄ Ãè���� è���� è���� è���� 1Àéùþÿÿ‰é¡þÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���à��$runtime.panicindex���î��$runtime.panicindex���ü��$runtime.panicindex���Š��$runtime.panicindex���@@��"".autotmp_0247��,type.image/color.NRGBA�"".autotmp_0245��type.int�"".r�?"type."".Rectangle� "".~r2�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�!@‹?@Á?@1� �Ä0_&¸� �ï1�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*NRGBA).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�@�@� Ø;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*NRGBA).Set��À��²eH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„Ì��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏž��H‹l$PI9ꍐ��H‹\$HL9ˏ‚��H‹l$XI9ét��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����H‹L$xH‹D$(¶\$I‰Û¶\$I‰Ú¶\$I‰Ù¶\$H‰ßI‰ÀIƒÀ�Hƒù�„”���H‹1H‹QH‹iI9Ðs}JDˆI‰ÀIÿÀH‹1H‹QH‹iI9ÐsYJDˆI‰ÀIƒÀH‹1H‹QH‹iI9Ðs4JDˆ H‰ÂHƒÂH‰ËH‹ H‹CH‹kH9Âs H@ˆ;HƒÄpÃè���� è���� è���� è���� ‰éeÿÿÿ1ÀéŒþÿÿA‰�é,þÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���â�,image/color.NRGBAModel���ø��,image/color.NRGBAModel���ˆ�
������¦��,type.image/color.NRGBA���à��"runtime.assertI2T���Ð��$runtime.panicindex���Þ��$runtime.panicindex���ì��$runtime.panicindex���ú��$runtime.panicindex���Pà��"".autotmp_0264��type.int�"".autotmp_0263��type.int�"".autotmp_0262��type.int�"".autotmp_0261��type.int�"".autotmp_0259��type.int�"".autotmp_0257�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�(!à„ßàÀßà9� �Bà6k.Š(! ��„œ�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ("".(*NRGBA).SetNRGBA��€��ðeH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„7��Hj H$H‰ßH‰îè����H‹$L9ӏ��H‹l$I9ê��H‹\$L9ˏô���H‹l$I9éæ���HÇÀ���<�uHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÏH)ßH‹jH¯ýH‰ÍHÁåHïH‰øHƒÇ�H‹2H‹JH‹jH9σŽ���H>¶l$@@ˆ+H‰ÇHÿÇH‹2H‹JH‹jH9ÏseH>¶l$A@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9Ïs;H>¶l$B@ˆ+H‰ÆHƒÆH‹
H‹BH‹jH9ÆsH1¶l$C@ˆ+HƒÄ Ãè���� è���� è���� è���� 1Àéÿÿÿ‰éÂþÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���ž��$runtime.panicindex���¬��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���@@��"".autotmp_0275��type.int�"".autotmp_0274��type.int�"".autotmp_0273��type.int�"".autotmp_0272��type.int�"".autotmp_0270��type.int�"".r�?"type."".Rectangle�"".c�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�!@r?@¹?@2�€�<ø0_&'"##� �Î2�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*NRGBA).SubImage��à ��Ð eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„·��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë7��H‹\$pH‹¬$€���H9ë!��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÁåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÕýÿÿ‰éBýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".NRGBA���”��"runtime.newobject���¾à� runtime.duffzero���Ü��4go.itab.*"".NRGBA."".Image���¸��type.*"".NRGBA���Î��type."".Image���æ��4go.itab.*"".NRGBA."".Image���ú�� runtime.typ2Itab���ž��type."".NRGBA���°��"runtime.newobject���¸ ��2runtime.writebarrierslice���¤
� runtime.duffcopy���Â
��4go.itab.*"".NRGBA."".Image���ž ��type.*"".NRGBA���´ ��type."".Image���Ì ��4go.itab.*"".NRGBA."".Image���à �� runtime.typ2Itab���ž ��$runtime.panicslice���p��"".autotmp_0293��type.*uint8�"".autotmp_0289��type.*"".NRGBA�"".autotmp_0288��type.int�"".autotmp_0287��type.int�"".autotmp_0284�?type.*"".NRGBA�"".autotmp_0282��type.*"".NRGBA�"".autotmp_0281��type.*"".NRGBA�"".autotmp_0280�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".NRGBA�()¯òd�°�D’ArKŽ@­ - � �{[„³"�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ$"".(*NRGBA).Opaque�� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„��Hj H$H‰ßH‰îè����H‹$H‹l$H9ëß���H‹\$H‹l$H9ëÌ���1À<�t
ÆD$PHƒÄ@ÃHƒú�„«���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éHÁáIÇÂ���L‹J(H‹Z8L9Ë~]L‰ÐH9È}5Hƒú�t`H‹:H‹rL‹BH9ðsIH¶€ûÿt
ÆD$P�HƒÄ@ÃHƒÀH9È|ËH‹ZLÓI‰ÚH‹ZHËH‰ÙIÿÁH‹Z8L9Ë£ÆD$PHƒÄ@Ãè���� ‰뜉éNÿÿÿHÇÀ���é*ÿÿÿ‰ééþÿÿ
������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���Æ��$runtime.panicindex��� €��"".autotmp_0307��type.int�"".autotmp_0306��type.int�"".autotmp_0303��type.int�"".autotmp_0302��type.int�"".autotmp_0301��type.int�"".autotmp_0300��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p��type.*"".NRGBA�*!€V€v€2€.�Ð�D´&H
6 "



� �¢.�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewNRGBA��À��¨eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�tbH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÁçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë•������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Œ��type.[]uint8���²��"runtime.makeslice���Ž��type."".NRGBA��� ��"runtime.newobject���¢��2runtime.writebarrierslice���î� runtime.duffcopy���P°��"".autotmp_0315�?type.*"".NRGBA�"".autotmp_0314��type.int�"".autotmp_0312��type.int�"".autotmp_0311��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".NRGBA�"".r��"type."".Rectangle�)°¡¯°�à�Ø)GTœ��˜7AP�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ0"".(*NRGBA64).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��0image/color.NRGBA64Model����0image/color.NRGBA64Model���0��� "".~r0�,type.image/color.Model�"".p�� type.*"".NRGBA64� � �ú ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*NRGBA64).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p�� type.*"".NRGBA64�0�0�þ0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ "".(*NRGBA64).At�� ��˜eH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$0H·\$f‰\$2H·\$f‰\$4H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$0H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��."".(*NRGBA64).NRGBA64At���ˆ��0type.image/color.NRGBA64���ž��,type.image/color.Color���¶��Zgo.itab.image/color.NRGBA64.image/color.Color���Þ��runtime.convT2I���Pp��
"".autotmp_0316�0type.image/color.NRGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�!pªo�Ð�‚3� �P€�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ."".(*NRGBA64).NRGBA64At��à ��Ø eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„+��Hj H$H‰ßH‰îè����H‹$L9ӏ��H‹l$I9êö��H‹\$L9ˏè��H‹l$I9éÚ��HÇÀ���<�u!1í1Ò1É1Àf‰l$@f‰T$Bf‰L$Df‰D$FHƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÁåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9σf��H>f¶HÁãH‰ÇHÿÇH‹2H‹JL‹JH9σ9��H,>f¶m�H ëI‰ÜH‰ÇHƒÇH‹2H‹JL‹BH9σ��H>f¶HÁãH‰ÇHƒÇH‹2H‹JL‹JH9σÚ���H,>f¶m�H ëI‰ÛH‰ÇHƒÇH‹2H‹JL‹BH9σ©���H>f¶HÁãH‰ÇHƒÇH‹2H‹JL‹JH9ÏsH,>f¶m�H ëI‰ÚH‰ÇHƒÇH‹2H‹JL‹BH9ÏsRH>f¶HÁãH‰ÆHƒÆH‹
H‹BL‹JH9Æs(H,1f¶m�H ëfD‰d$@fD‰\$BfD‰T$Df‰\$FHƒÄ Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àé&þÿÿ‰éÎýÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���Î��$runtime.panicindex���Ü��$runtime.panicindex���ê��$runtime.panicindex���ø��$runtime.panicindex���† ��$runtime.panicindex���” ��$runtime.panicindex���¢ ��$runtime.panicindex���° ��$runtime.panicindex���@@��"".autotmp_0321��0type.image/color.NRGBA64�"".autotmp_0319��type.int�"".r�?"type."".Rectangle� "".~r2�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�!@Ž?@õ?@J�ð�&Š0_!&´
 8� �¦J�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ."".(*NRGBA64).PixOffset��€��pH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÁåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�@�@� ¨;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*NRGBA64).Set��À ��À eH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„“��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏe��H‹l$PI9êW��H‹\$HL9ˏI��H‹l$XI9é;��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÁåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����H‹L$xH‹D$(H·\$I‰ÙH·\$H‰ßH·\$H‰ÞH·\$H‰ÚI‰ÃIƒÃ�Hƒù�„W��H‹L‹QH‹iM9Óƒ<��JL‰ÍfÁí@ˆ+I‰ÃIÿÃH‹L‹QH‹iM9Óƒ ��JDˆ I‰ÂIƒÂH‹L‹IH‹iM9ʃä���JH‰ýfÁí@ˆ+I‰ÂIƒÂH‹L‹IH‹iM9ʃ´���J@ˆ;I‰ÁIƒÁH‹H‹yH‹iI9ùƒ‹���J H‰õfÁí@ˆ+I‰ÁIƒÁH‹H‹yH‹iI9ùs_J @ˆ3I‰ÀIƒÀH‹9H‹qH‹iI9ðs:JH‰ÕfÁí@ˆ+H‰ÆHƒÆH‰ËH‹ H‹CH‹kH9Æs H1ˆHƒÄpÃè���� è���� è���� è���� è���� è���� è���� è���� ‰é¢þÿÿ1ÀéÅýÿÿA‰�éeýÿÿ ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���â�0image/color.NRGBA64Model���ø��0image/color.NRGBA64Model���ˆ�
������¦��0type.image/color.NRGBA64���à��"runtime.assertI2T���¦
��$runtime.panicindex���´
��$runtime.panicindex���Â
��$runtime.panicindex���Ð
��$runtime.panicindex���Þ
��$runtime.panicindex���ì
��$runtime.panicindex���ú
��$runtime.panicindex���ˆ ��$runtime.panicindex���Pà��""".autotmp_0350��type.int�"".autotmp_0349��type.int�"".autotmp_0348��type.int�"".autotmp_0347��type.int�"".autotmp_0346��type.int�"".autotmp_0345��type.int�"".autotmp_0344��type.int�"".autotmp_0343��type.int�"".autotmp_0341��type.int�"".autotmp_0339�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�(!à„ßàëßàN�à�b°6k.Ž3!)")%  ��„Ü�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64��€ ��øeH‹ %(���H‹‰����H;awè����ëãHƒì L‹t$0L‹l$8L·d$@L·\$BL·T$DL·L$FH‹T$(Hƒú�„ã��Hj H$H‰ßH‰îè����H‹$L9ó¼��H‹l$I9��H‹\$L9돠��H‹l$I9퍒��HÇÀ���<�uHƒÄ ÃH‹Z L‰ñH)ÙH‹Z(L‰ïH)ßH‹jH¯ýH‰ÍHÁåHïH‰øHƒÇ�H‹2H‹JH‹jH9σ:��H>L‰åfÁí@ˆ+H‰ÇHÿÇH‹2H‹JH‹jH9σ ��H>Dˆ#H‰ÇHƒÇH‹2H‹JH‹jH9σâ���H>L‰ÝfÁí@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9σ²���H>DˆH‰ÇHƒÇH‹2H‹JH‹jH9σ‰���H>L‰ÕfÁí@ˆ+H‰ÇHƒÇH‹2H‹JH‹jH9Ïs]H>DˆH‰ÇHƒÇH‹2H‹JH‹jH9Ïs8H>L‰ÍfÁí@ˆ+H‰ÆHƒÆH‹
H‹BH‹jH9Æs H1Dˆ HƒÄ Ãè���� è���� è���� è���� è���� è���� è���� è���� 1Àénþÿÿ‰éþÿÿ������.��0runtime.morestack_noctxt���� runtime.duffcopy���î��$runtime.panicindex���ü��$runtime.panicindex���Š��$runtime.panicindex���˜��$runtime.panicindex���¦��$runtime.panicindex���´��$runtime.panicindex���Â��$runtime.panicindex���Ð��$runtime.panicindex���@@��"".autotmp_0369��type.int�"".autotmp_0368��type.int�"".autotmp_0367��type.int�"".autotmp_0366��type.int�"".autotmp_0365��type.int�"".autotmp_0364��type.int�"".autotmp_0363��type.int�"".autotmp_0362��type.int�"".autotmp_0360��type.int�"".r�?"type."".Rectangle�"".c�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�!@Š?@É?@J�À�\ÐH_&)!)")%� �öJ�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ,"".(*NRGBA64).SubImage��à ��Ð eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„·��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë7��H‹\$pH‹¬$€���H9ë!��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÁåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÕýÿÿ‰éBýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".NRGBA64���”��"runtime.newobject���¾à� runtime.duffzero���Ü��8go.itab.*"".NRGBA64."".Image���¸�� type.*"".NRGBA64���Î��type."".Image���æ��8go.itab.*"".NRGBA64."".Image���ú�� runtime.typ2Itab���ž��type."".NRGBA64���°��"runtime.newobject���¸ ��2runtime.writebarrierslice���¤
� runtime.duffcopy���Â
��8go.itab.*"".NRGBA64."".Image���ž �� type.*"".NRGBA64���´ ��type."".Image���Ì ��8go.itab.*"".NRGBA64."".Image���à �� runtime.typ2Itab���ž ��$runtime.panicslice���p��"".autotmp_0391��type.*uint8�"".autotmp_0387�� type.*"".NRGBA64�"".autotmp_0386��type.int�"".autotmp_0385��type.int�"".autotmp_0382�? type.*"".NRGBA64�"".autotmp_0380�� type.*"".NRGBA64�"".autotmp_0379�� type.*"".NRGBA64�"".autotmp_0378�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".NRGBA64�()¯òd�°�DòArKŽ@­ - � �{[„³"�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ("".(*NRGBA64).Opaque�� ��„eH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„K��Hj H$H‰ßH‰îè����H‹$H‹l$H9ë��H‹\$H‹l$H9ë��1À<�t
ÆD$PHƒÄ@ÃHƒú�„æ���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éHÁáIÇÃ���L‹R(H‹Z8L9ÓŽ€���L‰ØH9È}XI‰ÁIƒÁ�Hƒú�„‰���H‹:H‹rL‹BI9ñsrJ¶€ûÿuUI‰ÁIÿÁH‹:H‹rL‹BI9ñsIJ¶€ûÿu3HƒÀH9È|¨H‹ZLÛI‰ÛH‹ZHËH‰ÙIÿÂH‹Z8L9Ó€ÆD$PHƒÄ@ÃÆD$P�HƒÄ@Ãè���� è���� ‰épÿÿÿ‰éÿÿÿHÇÀ���éïþÿÿ‰é®þÿÿ ������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���¨��$runtime.panicindex���¶��$runtime.panicindex��� €��"".autotmp_0405��type.int�"".autotmp_0404��type.int�"".autotmp_0401��type.int�"".autotmp_0400��type.int�"".autotmp_0399��type.int�"".autotmp_0398��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p�� type.*"".NRGBA64�,!€V€Ð€ €=��D”&H
6O


!� �Ó=�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewNRGBA64��À��¨eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�tbH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÁçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë•������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Œ��type.[]uint8���²��"runtime.makeslice���Ž��type."".NRGBA64��� ��"runtime.newobject���¢��2runtime.writebarrierslice���î� runtime.duffcopy���P°��"".autotmp_0416�? type.*"".NRGBA64�"".autotmp_0415��type.int�"".autotmp_0413��type.int�"".autotmp_0412��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".NRGBA64�"".r��"type."".Rectangle�)°¡¯°�à�¸)GTœ��˜7AP�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ,"".(*Alpha).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��,image/color.AlphaModel����,image/color.AlphaModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Alpha� � �Ú ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ$"".(*Alpha).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".Alpha�0�0�Þ0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*Alpha).At��à��ÒeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$7H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��&"".(*Alpha).AlphaAt���Â��,type.image/color.Alpha���Ø��,type.image/color.Color���ð��Vgo.itab.image/color.Alpha.image/color.Color���˜��runtime.convT2I���Pp��
"".autotmp_0417�,type.image/color.Alpha� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�!p‡o�°� â3}�
�P`�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*Alpha).AlphaAt��À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„š���Ii H$H‰ßH‰îè����H‹$L9ÓzH‹l$I9ê}pH‹\$L9ÃfH‹l$I9è}\HÇÀ���<�u 1ÀˆD$@HƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AM‹AH9ÂsH¶ˆ\$@HƒÄ Ãè���� 1Àë§A‰é^ÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���”��$runtime.panicindex���@@��"".autotmp_0422��,type.image/color.Alpha�"".autotmp_0420��type.int�"".r�?"type."".Rectangle� "".~r2�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�!@h?@>?@�à�ê0O '� �É�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*Alpha).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�@�@� þ;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*Alpha).Set��€��üeH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„1��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏ��H‹l$PI9êõ���H‹\$HL9ˏç���H‹l$XI9éÙ���HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝHËH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹\$ L����L‰$H‰L$`H‰L$H‰\$hH‰\$è����Hl$¶]�H‹l$xHƒý�t)H‹M�H‹EL‹EL‹D$(I9Às J,ˆ]�HƒÄpÃè���� ‰E�ëÒ1Àé'ÿÿÿA‰�éÇþÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���Ô�,image/color.AlphaModel���ê��,image/color.AlphaModel���ú�
������˜��,type.image/color.Alpha���Ò��"runtime.assertI2T���È��$runtime.panicindex���Pà��"".autotmp_0427��type.int�"".autotmp_0425�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�(!à„ßà¼ßà�€�&†6k'‘ ��ýƒ�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ("".(*Alpha).SetAlpha��À��®eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„•���Ii H$H‰ßH‰îè����H‹$L9ÓuH‹l$I9ê}kH‹\$L9ÃaH‹l$I9è}WHÇÀ���<�uHƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9ÂsH¶l$@@ˆ+HƒÄ Ãè���� 1Àë¬A‰écÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���Š��$runtime.panicindex���@@�� "".autotmp_0431��type.int�"".r�?"type."".Rectangle�"".c�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�!@b?@??@�à�$–0O� �Ä�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*Alpha).SubImage��à �� eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„°��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë0��H‹\$pH‹¬$€���H9ë��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝHÓH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÜýÿÿ‰éIýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".Alpha���”��"runtime.newobject���¾à� runtime.duffzero���Ü��4go.itab.*"".Alpha."".Image���¸��type.*"".Alpha���Î��type."".Image���æ��4go.itab.*"".Alpha."".Image���ú�� runtime.typ2Itab�����type."".Alpha���¢��"runtime.newobject���ª ��2runtime.writebarrierslice���–
� runtime.duffcopy���´
��4go.itab.*"".Alpha."".Image��� ��type.*"".Alpha���¦ ��type."".Image���¾ ��4go.itab.*"".Alpha."".Image���Ò �� runtime.typ2Itab��� ��$runtime.panicslice���p��"".autotmp_0447��type.*uint8�"".autotmp_0443��type.*"".Alpha�"".autotmp_0442��type.int�"".autotmp_0441��type.int�"".autotmp_0438�?type.*"".Alpha�"".autotmp_0436��type.*"".Alpha�"".autotmp_0435��type.*"".Alpha�"".autotmp_0434�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Alpha�()¯ëk�°�DªArKŽ9­ - � �{T„³)�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ$"".(*Alpha).Opaque��€��üeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„��Hj H$H‰ßH‰îè����H‹$H‹l$H9ëÖ���H‹\$H‹l$H9ëÃ���1À<�t
ÆD$PHƒÄ@ÃHƒú�„¢���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éE1ÒL‹J(H‹Z8L9Ë~\L‰ÐH9È}4Hƒú�t_H‹:H‹rL‹BH9ðsHH¶€ûÿt
ÆD$P�HƒÄ@ÃHÿÀH9È|ÌH‹ZLÓI‰ÚH‹ZHËH‰ÙIÿÁH‹Z8L9ˤÆD$PHƒÄ@Ãè���� ‰띉éWÿÿÿHÇÀ���é3ÿÿÿ‰éòþÿÿ
������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���´��$runtime.panicindex��� €��"".autotmp_0460��type.int�"".autotmp_0457��type.int�"".autotmp_0456��type.int�"".autotmp_0455��type.int�"".autotmp_0454��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p��type.*"".Alpha�*!€V€n€1€'�À�DÌ&H
. "



� �™'�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewAlpha�� ��˜eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�t^H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0H‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë™������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���„��type.[]uint8���ª��"runtime.makeslice���†��type."".Alpha���˜��"runtime.newobject���š��2runtime.writebarrierslice���ސ� runtime.duffcopy���P°��"".autotmp_0468�?type.*"".Alpha�"".autotmp_0467��type.int�"".autotmp_0465��type.int�"".autotmp_0464��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Alpha�"".r��"type."".Rectangle�)°™¯° �Ð�ð)GP��”7AD�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ0"".(*Alpha16).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��0image/color.Alpha16Model����0image/color.Alpha16Model���0��� "".~r0�,type.image/color.Model�"".p�� type.*"".Alpha16� � �’ ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*Alpha16).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p�� type.*"".Alpha16�0�0�– 0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ "".(*Alpha16).At��à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$6H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��."".(*Alpha16).Alpha16At���Æ��0type.image/color.Alpha16���Ü��,type.image/color.Color���ô��Zgo.itab.image/color.Alpha16.image/color.Color���œ��runtime.convT2I���Pp��
"".autotmp_0469�0type.image/color.Alpha16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�!p‰o�°� š 3}�
�P`�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ."".(*Alpha16).Alpha16At��à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„ê���Hj H$H‰ßH‰îè����H‹$L9ӏÃ���H‹l$I9ꍵ���H‹\$L9ˏ§���H‹l$I9鍙���HÇÀ���<�u 1Àf‰D$@HƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÑåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9Ïs?H>f¶HÁãH‰ÆHÿÆH‹
H‹BL‹JH9ÆsH,1f¶m�H ëf‰\$@HƒÄ Ãè���� è���� 1Àégÿÿÿ‰éÿÿÿ
������.��0runtime.morestack_noctxt���’� runtime.duffcopy��� ��$runtime.panicindex���®��$runtime.panicindex���@@��"".autotmp_0474��0type.image/color.Alpha16�"".autotmp_0472��type.int�"".r�?"type."".Rectangle� "".~r2�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�!@y?@s?@!�°�¢ 0_ %]� �!�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ."".(*Alpha16).PixOffset��€��nH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�@�@� ¶ ;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*Alpha16).Set��€��èeH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„g��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏ9��H‹l$PI9ê+��H‹\$HL9ˏ��H‹l$XI9é��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÑåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����L‹L$xH‹t$(H·\$H‰ØH‰÷HƒÆ�Iƒù�tMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9Îs H2ˆHƒÄpÃè���� è���� A‰ë®1ÀéñþÿÿA‰�é‘þÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���à�0image/color.Alpha16Model���ö��0image/color.Alpha16Model���†�
������¤��0type.image/color.Alpha16���Þ��"runtime.assertI2T���¦��$runtime.panicindex���´��$runtime.panicindex���Pà��"".autotmp_0485��type.int�"".autotmp_0484��type.int�"".autotmp_0482��type.int�"".autotmp_0480�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�(!à„ßàëßà.�À�0¾ 6k-s+ ��ƒ½�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ0"".(*Alpha16).SetAlpha16��à��ÄeH‹ %(���H‹‰����H;awè����ëãHƒì L‹\$0L‹T$8L·L$@H‹T$(Hƒú�„Û���Hj H$H‰ßH‰îè����H‹$L9ۏ´���H‹l$I9덦���H‹\$L9ӏ˜���H‹l$I9ꍊ���HÇÀ���<�uHƒÄ ÃH‹Z L‰ÙH)ÙH‹Z(L‰×H)ßH‹jH¯ýH‰ÍHÑåHïH‰øHƒÇ�H‹2H‹JH‹jH9Ïs7H>L‰ÍfÁí@ˆ+H‰ÆHÿÆH‹
H‹BH‹jH9Æs H1Dˆ HƒÄ Ãè���� è���� 1Àévÿÿÿ‰éÿÿÿ
������.��0runtime.morestack_noctxt���ž� runtime.duffcopy���Ž��$runtime.panicindex���œ��$runtime.panicindex���@@��"".autotmp_0492��type.int�"".autotmp_0491��type.int�"".autotmp_0489��type.int�"".r�?"type."".Rectangle�"".c�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�!@x?@k?@*�°�,Ò 6_%%� �†*�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ,"".(*Alpha16).SubImage��à ��Î eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„¶��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë6��H‹\$pH‹¬$€���H9ë ��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÑåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÖýÿÿ‰éCýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".Alpha16���”��"runtime.newobject���¾à� runtime.duffzero���Ü��8go.itab.*"".Alpha16."".Image���¸�� type.*"".Alpha16���Î��type."".Image���æ��8go.itab.*"".Alpha16."".Image���ú�� runtime.typ2Itab���œ��type."".Alpha16���®��"runtime.newobject���¶ ��2runtime.writebarrierslice���¢
� runtime.duffcopy���À
��8go.itab.*"".Alpha16."".Image���œ �� type.*"".Alpha16���² ��type."".Image���Ê ��8go.itab.*"".Alpha16."".Image���Þ �� runtime.typ2Itab���œ ��$runtime.panicslice���p��"".autotmp_0508��type.*uint8�"".autotmp_0504�� type.*"".Alpha16�"".autotmp_0503��type.int�"".autotmp_0502��type.int�"".autotmp_0499�? type.*"".Alpha16�"".autotmp_0497�� type.*"".Alpha16�"".autotmp_0496�� type.*"".Alpha16�"".autotmp_0495�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".Alpha16�()¯ñe�°�Dè ArKŽ?­ - � �{Z„³#�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ("".(*Alpha16).Opaque��€��úeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹T$HHƒú�„F��Hj H$H‰ßH‰îè����H‹$H‹l$H9ë��H‹\$H‹l$H9ë��1À<�t
ÆD$PHƒÄ@ÃHƒú�„á���Hj H\$ H‰ßH‰îè����H‹L$0H‹l$ H)éHÑáE1ÛL‹R(H‹Z8L9ÓŽ€���L‰ØH9È}XI‰ÁIƒÁ�Hƒú�„‰���H‹:H‹rL‹BI9ñsrJ¶€ûÿuUI‰ÁIÿÁH‹:H‹rL‹BI9ñsIJ¶€ûÿu3HƒÀH9È|¨H‹ZLÛI‰ÛH‹ZHËH‰ÙIÿÂH‹Z8L9Ó€ÆD$PHƒÄ@ÃÆD$P�HƒÄ@Ãè���� è���� ‰épÿÿÿ‰éÿÿÿHÇÀ���éôþÿÿ‰é³þÿÿ ������.��0runtime.morestack_noctxt���~� runtime.duffcopy���¤� runtime.duffcopy���ž��$runtime.panicindex���¬��$runtime.panicindex��� €��"".autotmp_0522��type.int�"".autotmp_0521��type.int�"".autotmp_0518��type.int�"".autotmp_0517��type.int�"".autotmp_0516��type.int�"".autotmp_0515��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r0�type.bool�"".p�� type.*"".Alpha16�,!€V€Ë€ €2�€�DŠ
&H
1O


� �Î2�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewAlpha16��À��¤eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�taH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÑçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë–������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Š��type.[]uint8���°��"runtime.makeslice���Œ��type."".Alpha16���ž��"runtime.newobject��� ��2runtime.writebarrierslice���ê� runtime.duffcopy���P°��"".autotmp_0533�? type.*"".Alpha16�"".autotmp_0532��type.int�"".autotmp_0530��type.int�"".autotmp_0529��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".Alpha16�"".r��"type."".Rectangle�)°Ÿ¯°�à�®
)GS��—7AQ�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ*"".(*Gray).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��*image/color.GrayModel����*image/color.GrayModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Gray� � �Ð
��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*Gray).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".Gray�0�0�Ô
0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*Gray).At��à��ÒeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$7H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��""".(*Gray).GrayAt���Â��*type.image/color.Gray���Ø��,type.image/color.Color���ð��Tgo.itab.image/color.Gray.image/color.Color���˜��runtime.convT2I���Pp��
"".autotmp_0534�*type.image/color.Gray� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�!p‡o�°� Ø
3}�
�P`�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*Gray).GrayAt��À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„š���Ii H$H‰ßH‰îè����H‹$L9ÓzH‹l$I9ê}pH‹\$L9ÃfH‹l$I9è}\HÇÀ���<�u 1ÀˆD$@HƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AM‹AH9ÂsH¶ˆ\$@HƒÄ Ãè���� 1Àë§A‰é^ÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���”��$runtime.panicindex���@@��"".autotmp_0539��*type.image/color.Gray�"".autotmp_0537��type.int�"".r�?"type."".Rectangle� "".~r2�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�!@h?@>?@�à�à
0O '� �É�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ("".(*Gray).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�@�@� ô
;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*Gray).Set��€��üeH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„1��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏ��H‹l$PI9êõ���H‹\$HL9ˏç���H‹l$XI9éÙ���HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝHËH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹\$ L����L‰$H‰L$`H‰L$H‰\$hH‰\$è����Hl$¶]�H‹l$xHƒý�t)H‹M�H‹EL‹EL‹D$(I9Às J,ˆ]�HƒÄpÃè���� ‰E�ëÒ1Àé'ÿÿÿA‰�éÇþÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���Ô�*image/color.GrayModel���ê��*image/color.GrayModel���ú�
������˜��*type.image/color.Gray���Ò��"runtime.assertI2T���È��$runtime.panicindex���Pà��"".autotmp_0544��type.int�"".autotmp_0542�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�(!à„ßà¼ßà�€�&ü
6k'‘ ��ýƒ�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ$"".(*Gray).SetGray��À��®eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„•���Ii H$H‰ßH‰îè����H‹$L9ÓuH‹l$I9ê}kH‹\$L9ÃaH‹l$I9è}WHÇÀ���<�uHƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9ÂsH¶l$@@ˆ+HƒÄ Ãè���� 1Àë¬A‰écÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���Š��$runtime.panicindex���@@�� "".autotmp_0548��type.int�"".r�?"type."".Rectangle�"".c�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�!@b?@??@�à�$Œ 0O� �Ä�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*Gray).SubImage��à �� eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„°��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë0��H‹\$pH‹¬$€���H9ë��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝHÓH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÜýÿÿ‰éIýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".Gray���”��"runtime.newobject���¾à� runtime.duffzero���Ü��2go.itab.*"".Gray."".Image���¸��type.*"".Gray���Î��type."".Image���æ��2go.itab.*"".Gray."".Image���ú�� runtime.typ2Itab�����type."".Gray���¢��"runtime.newobject���ª ��2runtime.writebarrierslice���–
� runtime.duffcopy���´
��2go.itab.*"".Gray."".Image��� ��type.*"".Gray���¦ ��type."".Image���¾ ��2go.itab.*"".Gray."".Image���Ò �� runtime.typ2Itab��� ��$runtime.panicslice���p��"".autotmp_0564��type.*uint8�"".autotmp_0560��type.*"".Gray�"".autotmp_0559��type.int�"".autotmp_0558��type.int�"".autotmp_0555�?type.*"".Gray�"".autotmp_0553��type.*"".Gray�"".autotmp_0552��type.*"".Gray�"".autotmp_0551�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray�()¯ëk�°�D  ArKŽ9­ - � �{T„³)�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ""".(*Gray).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".Gray���Ä ��Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewGray�� ��˜eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�t^H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0H‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë™������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���„��type.[]uint8���ª��"runtime.makeslice���†��type."".Gray���˜��"runtime.newobject���š��2runtime.writebarrierslice���ސ� runtime.duffcopy���P°��"".autotmp_0577�?type.*"".Gray�"".autotmp_0576��type.int�"".autotmp_0574��type.int�"".autotmp_0573��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray�"".r��"type."".Rectangle�)°™¯° �Ð�Ì )GP��”7AD�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ."".(*Gray16).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��.image/color.Gray16Model����.image/color.Gray16Model���0��� "".~r0�,type.image/color.Model�"".p��type.*"".Gray16� � �î ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ&"".(*Gray16).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".Gray16�0�0�ò 0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".(*Gray16).At��à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$6H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��*"".(*Gray16).Gray16At���Æ��.type.image/color.Gray16���Ü��,type.image/color.Color���ô��Xgo.itab.image/color.Gray16.image/color.Color���œ��runtime.convT2I���Pp��
"".autotmp_0578�.type.image/color.Gray16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�!p‰o�°� ö 3}�
�P`�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*Gray16).Gray16At��à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹T$(Hƒú�„ê���Hj H$H‰ßH‰îè����H‹$L9ӏÃ���H‹l$I9ꍵ���H‹\$L9ˏ§���H‹l$I9鍙���HÇÀ���<�u 1Àf‰D$@HƒÄ ÃH‹Z L‰ÑH)ÙH‹Z(L‰ÈH)ØH‹jH¯ÅH‰ÍHÑåHèH‰ÇHƒÇ�H‹2H‹JL‹BH9Ïs?H>f¶HÁãH‰ÆHÿÆH‹
H‹BL‹JH9ÆsH,1f¶m�H ëf‰\$@HƒÄ Ãè���� è���� 1Àégÿÿÿ‰éÿÿÿ
������.��0runtime.morestack_noctxt���’� runtime.duffcopy��� ��$runtime.panicindex���®��$runtime.panicindex���@@��"".autotmp_0583��.type.image/color.Gray16�"".autotmp_0581��type.int�"".r�?"type."".Rectangle� "".~r2�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�!@y?@s?@!�°�þ 0_ %]� �!�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ,"".(*Gray16).PixOffset��€��nH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝH‰ÅHÑåHëH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�@�@� ’ ;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ "".(*Gray16).Set��€��èeH‹ %(���H‹‰����H;awè����ëãHƒìpL‹”$€���L‹Œ$ˆ���L‹D$xL‰L$8Iƒø�„g��Ih H\$@H‰ßH‰îè����H‹\$@L‰T$0L9ӏ9��H‹l$PI9ê+��H‹\$HL9ˏ��H‹l$XI9é��HÇÀ���<�uHƒÄpÃI‹X L‰ÑH)ÙI‹X(L‰ÍH)ÝH‰ëI‹hH¯ÝH‰ÍHÑåHëH‰\$(H‹œ$���H‰\$H‹œ$˜���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰L$`H‰L$H‰D$hH‰D$è����L‹L$xH‹t$(H·\$H‰ØH‰÷HƒÆ�Iƒù�tMI‹I‹II‹iH9Îs6H2H‰ÅfÁí@ˆ+H‰þHÿÆI‹I‹II‹iH9Îs H2ˆHƒÄpÃè���� è���� A‰ë®1ÀéñþÿÿA‰�é‘þÿÿ������.��0runtime.morestack_noctxt���ª� runtime.duffcopy���à�.image/color.Gray16Model���ö��.image/color.Gray16Model���†�
������¤��.type.image/color.Gray16���Þ��"runtime.assertI2T���¦��$runtime.panicindex���´��$runtime.panicindex���Pà��"".autotmp_0594��type.int�"".autotmp_0593��type.int�"".autotmp_0591��type.int�"".autotmp_0589�,type.image/color.Color�"".r�_"type."".Rectangle�"".p�type."".Point�"".i�type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�(!à„ßàëßà.�À�0š 6k-s+ ��ƒ½�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/image.goþ,"".(*Gray16).SetGray16��à��ÄeH‹ %(���H‹‰����H;awè����ëãHƒì L‹\$0L‹T$8L·L$@H‹T$(Hƒú�„Û���Hj H$H‰ßH‰îè����H‹$L9ۏ´���H‹l$I9덦���H‹\$L9ӏ˜���H‹l$I9ꍊ���HÇÀ���<�uHƒÄ ÃH‹Z L‰ÙH)ÙH‹Z(L‰×H)ßH‹jH¯ýH‰ÍHÑåHïH‰øHƒÇ�H‹2H‹JH‹jH9Ïs7H>L‰ÍfÁí@ˆ+H‰ÆHÿÆH‹
H‹BH‹jH9Æs H1Dˆ HƒÄ Ãè���� è���� 1Àévÿÿÿ‰éÿÿÿ
������.��0runtime.morestack_noctxt���ž� runtime.duffcopy���Ž��$runtime.panicindex���œ��$runtime.panicindex���@@��"".autotmp_0601��type.int�"".autotmp_0600��type.int�"".autotmp_0598��type.int�"".r�?"type."".Rectangle�"".c�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�!@x?@k?@*�°�,® 6_%%� �†*�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*Gray16).SubImage��à ��Î eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„¶��Ho H|$ H‰îè����è����H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë6��H‹\$pH‹¬$€���H9ë ��1À<�„Ž���H����H‰$è����H‹|$H‰ûHƒÿ�tl1Àè����H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉ëH‹„$Ð���H‹¬$à���H‹”$Ø���H‹X H)ÚH‹X(H)ÝH‰ëH‹hH¯ÝH‰ÕHÑåHëH‰\$`H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚��L‰„$¨���L‰$Hƒ<$�„ì���H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$¨���Hƒø�„‰���L‹„$Ð���I‹xH‰xHx Hœ$Ø���H‰Þè����H‰„$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�épÿÿÿ‰%����éÿÿÿè���� HÇÀ���éÖýÿÿ‰éCýÿÿ4������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¨� runtime.duffcopy���ސ� runtime.duffcopy���Ž� runtime.duffcopy���‚��type."".Gray16���”��"runtime.newobject���¾à� runtime.duffzero���Ü��6go.itab.*"".Gray16."".Image���¸��type.*"".Gray16���Î��type."".Image���æ��6go.itab.*"".Gray16."".Image���ú�� runtime.typ2Itab���œ��type."".Gray16���®��"runtime.newobject���¶ ��2runtime.writebarrierslice���¢
� runtime.duffcopy���À
��6go.itab.*"".Gray16."".Image���œ ��type.*"".Gray16���² ��type."".Image���Ê ��6go.itab.*"".Gray16."".Image���Þ �� runtime.typ2Itab���œ ��$runtime.panicslice���p��"".autotmp_0617��type.*uint8�"".autotmp_0613��type.*"".Gray16�"".autotmp_0612��type.int�"".autotmp_0611��type.int�"".autotmp_0608�?type.*"".Gray16�"".autotmp_0606��type.*"".Gray16�"".autotmp_0605��type.*"".Gray16�"".autotmp_0604�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray16�()¯ñe�°�DÄ ArKŽ?­ - � �{Z„³#�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ&"".(*Gray16).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".Gray16���è ��Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ"".NewGray16��À��¤eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�taH‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0HÑçH‰xHx Hœ$ ���H‰Þè����H‰„$À���HÄ˜���É%����ë–������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Š��type.[]uint8���°��"runtime.makeslice���Œ��type."".Gray16���ž��"runtime.newobject��� ��2runtime.writebarrierslice���ê� runtime.duffcopy���P°��"".autotmp_0630�?type.*"".Gray16�"".autotmp_0629��type.int�"".autotmp_0627��type.int�"".autotmp_0626��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray16�"".r��"type."".Rectangle�)°Ÿ¯°�à�ð )GS��—7AQ�Tgclocals·2d75cfb0de529b195b8ddbd78612d4fa�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ2"".(*Paletted).ColorModel��À��ªeH‹ %(���H‹‰����H;awè����ëãHƒì0HÇD$@����HÇD$H����H����H‰$H����H‰\$H����H‰\$H‹\$8H‰\$Hƒ|$�t$HƒD$@è����H‹\$ H‰\$@H‹\$(H‰\$HHƒÄ0É%����ëÓ ������.��0runtime.morestack_noctxt���l��0type.image/color.Palette���‚��,type.image/color.Model���š��Zgo.itab.image/color.Palette.image/color.Model���Þ��runtime.convT2I���0`�� "".~r0�,type.image/color.Model�"".p��"type.*"".Paletted�!`j_`� �
–  �
�n2�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ*"".(*Paletted).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��"type.*"".Paletted�0�0�š 0��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ""".(*Paletted).At��à��ÖeH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹L$8H‹D$(H‹HHHƒù�uHÇD$@����HÇD$H����HƒÄ ÃHh H$H‰ßH‰îè����H‹$L9ӏó���H‹l$I9êå���H‹\$L9ˏ×���H‹l$I9éÉ���HÇÁ���€ù�u<H‰ÃHƒø�t/H‹H@H‹@HH‹kPHƒø�vH‹)H‰l$@H‹iH‰l$HHƒÄ Ãè���� ‰�ëÍH‹X L‰ÖH)ÞH‹X(L‰ÍH)ÝH‰ëH‹hH¯ÝHóH‹H‹HH‹hH9ËsHH¶+H‰éH‰ÃH‹P@H‹@HH‹kPH‰Ó¶éH9ÅsHkíHëH‹+H‰l$@H‹kH‰l$HHƒÄ Ãè���� è���� 1Éé7ÿÿÿ ������.��0runtime.morestack_noctxt���À� runtime.duffcopy���²��$runtime.panicindex���®��$runtime.panicindex���¼��$runtime.panicindex���P@��"".autotmp_0634��type.int�"".autotmp_0633��type.int�"".r�?"type."".Rectangle� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�$!@/?@†?@}?@�ð�$ž 0
V<"_ ��ؘ�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ0"".(*Paletted).PixOffset��€��bH‹L$H‹Y H‹D$H)ØH‹Y(H‹l$H)ÝH‰ëH‹iH¯ÝHÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�@�@� ¸ ;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ$"".(*Paletted).Set��€��üeH‹ %(���H‹‰����H;awè����ëãHƒìhL‹T$xL‹„$€���L‹L$pL‰D$@Iƒù�„ô���Ii H\$HH‰ßH‰îè����H‹\$HL‰T$8L9ӏÆ���H‹l$XI9ꍸ���H‹\$PL9Ϫ���H‹l$`I9荜���HÇÀ���<�uHƒÄhÃI‹Y L‰ÑH)ÙI‹Y(L‰ÇH)ßI‹qH¯þHÏH‰|$0Iq@H<$H¥H¥H¥H‹œ$ˆ���H‰\$H‹œ$���H‰\$ è����H‹T$(H‹\$pHƒû�t'H‹ H‹CH‹kH‹l$0H9Ås H)ˆHƒÄhÃè���� ‰ëÕ1ÀédÿÿÿA‰éÿÿÿ
������.��0runtime.morestack_noctxt���¤� runtime.duffcopy���à��2image/color.Palette.Index���Ê��$runtime.panicindex���PÐ��"".autotmp_0642��type.int�"".autotmp_0640��type.int�"".r�?"type."".Rectangle�"".p�_type."".Point�"".i�otype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�(!ЁÏЀÏÐ�À�$À 3k$X � �ïQ�Tgclocals·1fbd3ddfb90eff13c33ebdfdf502009b�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ6"".(*Paletted).ColorIndexAt��À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„š���Ii H$H‰ßH‰îè����H‹$L9ÓzH‹l$I9ê}pH‹\$L9ÃfH‹l$I9è}\HÇÀ���<�u
ÆD$@�HƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9ÂsH¶+@ˆl$@HƒÄ Ãè���� 1Àë§A‰é^ÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���”��$runtime.panicindex���@@�� "".autotmp_0646��type.int�"".r�?"type."".Rectangle� "".~r2�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�!@g?@??@�à�Ð 0O
(� �É�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ8"".(*Paletted).SetColorIndex��À��®eH‹ %(���H‹‰����H;awè����ëãHƒì L‹T$0L‹D$8L‹L$(Iƒù�„•���Ii H$H‰ßH‰îè����H‹$L9ÓuH‹l$I9ê}kH‹\$L9ÃaH‹l$I9è}WHÇÀ���<�uHƒÄ ÃI‹Y L‰ÑH)ÙI‹Y(L‰ÂH)ÚI‹iH¯ÕHÊI‹ I‹AI‹iH9ÂsH¶l$@@ˆ+HƒÄ Ãè���� 1Àë¬A‰écÿÿÿ������.��0runtime.morestack_noctxt���’� runtime.duffcopy���Š��$runtime.panicindex���@@�� "".autotmp_0650��type.int�"".r�?"type."".Rectangle�"".index�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�!@b?@??@�à�$à 0O� �Ä�Tgclocals·9d54b0e92637840c83619aa7ef897414�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/image.goþ."".(*Paletted).SubImage�� ��˜eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���HDŽ$ø�������HDŽ$�������Hœ$Ø���H,$H‰ïH‰Þè����H‹¼$Ð���Hƒÿ�„›��Ho H|$ H‰îè����è����L‹Œ$Ð���H\$@H¬$ˆ���H‰ïH‰Þè����Hœ$ˆ���H¬$Ø���H‰ïH‰Þè����Hœ$Ø���Hl$hH‰ïH‰Þè����H‹\$hH‹l$xH9ë��H‹\$pH‹¬$€���H9ëý��1À<�„õ���H����H‰$è����H‹|$H‰ùHƒÿ�„Ì���1Àè����H‰Œ$¨���H‰ $Hƒ<$�„¢���Hƒ$@H‹¼$Ð���Hƒÿ�„„���Ho@H|$H‰îH¥H¥H¥è����H‹œ$¨���H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉éuÿÿÿ‰%����éRÿÿÿ‰é-ÿÿÿH‹¼$à���H‹´$Ø���I‹Y H)ÞI‹Y(H)ßI‹iH¯ýH÷H‰|$`Ii H<$H‰îè����Hœ$Ø���Hl$ H‰ïH‰Þè����è����H\$@H¬$ˆ���H‰ïH‰Þè����H����H‰$è����H‹”$Ð���L‹D$H‹zH‹rH‹D$`H9Æ‚Q��L‰„$¨���L‰$Hƒ<$�„.��H‹I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹”$Ð���H‹„$¨���Hƒø�„Ã���H‹zH‰xHx Hœ$ˆ���H‰Þè����H‰$Hƒ<$�„Œ���Hƒ$@Hj@H\$H‰ßH‰îH¥H¥H¥è����H‹œ$¨���H‰œ$¨���H‹����1íH9èt H‹œ$¨���H‰œ$���H‰„$ø���HÄÈ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉%����éhÿÿÿ‰�é6ÿÿÿ‰%����éÆþÿÿè���� HÇÀ���éùüÿÿ‰é^üÿÿ@������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¸� runtime.duffcopy���î� runtime.duffcopy���ž� runtime.duffcopy���’�� type."".Paletted���¤��"runtime.newobject���ÖÔ� runtime.duffzero���à��2runtime.writebarrierslice���Ž��:go.itab.*"".Paletted."".Image���ê��"type.*"".Paletted���€��type."".Image���˜��:go.itab.*"".Paletted."".Image���¬�� runtime.typ2Itab���ê� runtime.duffcopy���š � runtime.duffcopy���¤ ��,"".Rectangle.Intersect���Ô � runtime.duffcopy���â �� type."".Paletted���ô ��"runtime.newobject���ü ��2runtime.writebarrierslice���è � runtime.duffcopy���Ä ��2runtime.writebarrierslice���ò ��:go.itab.*"".Paletted."".Image���Î��"type.*"".Paletted���ä��type."".Image���ü��:go.itab.*"".Paletted."".Image����� runtime.typ2Itab���æ��$runtime.panicslice���p��"".autotmp_0667��type.*uint8�"".autotmp_0663��"type.*"".Paletted�"".autotmp_0662��type.int�"".autotmp_0661��type.int�"".autotmp_0658�?"type.*"".Paletted�"".autotmp_0656��"type.*"".Paletted�"".autotmp_0655��"type."".Rectangle�"".autotmp_0654��"type.*"".Paletted�"".autotmp_0653�"type."".Rectangle�"".r�¿"type."".Rectangle�"".i�Ïtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��"type.*"".Paletted�()ˆñl��Xô AzKŒ -.Eã -  �"�{ôâ¬õ�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ*"".(*Paletted).Opaque��€��òeH‹ %(���H‹‰����H„$øþÿÿH;Awè����ëÛHìˆ��H‹”$��H|$H1Àè����Hƒú�„¨��Hj H\$(H‰ßH‰îè����L‹D$8H‹l$(I)èE1ÉH‹z(H‹Z8H9û~L‹RM9‚c��M9È‚Z��H‹
M‰ÃM)ËL‰ÖL)ÎHƒþ�t L‰ËHËH‰ÙH‰È1ÉM‰ÚL9Ñ}¶(H\$H@¶íH+ÆHÿÀHÿÁL9Ñ|âH‹ZLËI‰ÙH‹ZLÃI‰ØHÿÇH‹Z8H9ûH‰ÓH‹R@H‹KHH‹kPH‰¬$€��1ÀH‰Œ$x��H‰L$ H‰”$p��H‹l$ H9è}XH‰”$H��Hƒú�„ ���H‹:H‹rH‰D$H‰¼$`��H‰´$h��H\$HH=���spH¶€û�u!HƒÂHÿÀH‹l$ H9è|¨Æ„$˜��HÄˆ��ÃH‰´$X��H‰4$H‰¼$P��H‹_ ÿÓH‹”$H��H‹D$‹\$ûÿÿ��t¬Æ„$˜���HÄˆ��Ãè���� ‰éYÿÿÿè���� ‰éQþÿÿ������>��0runtime.morestack_noctxt���x€� runtime.duffzero���´� runtime.duffcopy���ä�
������¼��$runtime.panicindex���Ø��$runtime.panicslice��� ��""".autotmp_0691�O,type.image/color.Color�"".autotmp_0690�.type.*image/color.Color�"".autotmp_0689��type.int�"".autotmp_0688��type.int�"".autotmp_0685��type.int�"".autotmp_0684��type.int�"".autotmp_0680��type.int�"".autotmp_0679�Ïtype.int�"".autotmp_0678�/0type.image/color.Palette�"".autotmp_0677��type.int�"".autotmp_0676��type.int�"".autotmp_0675��type.int�"".r�¿"type."".Rectangle�"".c�o,type.image/color.Color�"".present�ÿtype.[256]bool� "".~r0�type.bool�"".p��"type.*"".Paletted�&,íB#�€�Xœ4 . D 

f +  ��²+#�Tgclocals·2148c3737b2bb476685a1100a2e8343e�Tgclocals·4398bb51467914f29637b614067b995f���0c:/go/src/image/image.goþ"".NewPaletted��À��ºeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$Hƒ<$�„¨���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹D$xH‹|$0H‰xHx Hœ$ ���H‰Þè����H‰$Hƒ<$�tFHƒ$@H‹œ$À���H‰\$H‹œ$È���H‰\$H‹œ$Ð���H‰\$è����H‹\$xH‰œ$Ø���HÄ˜���É%����뱉%����éLÿÿÿ������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���„��type.[]uint8���ª��"runtime.makeslice���†�� type."".Paletted���˜��"runtime.newobject���¢��2runtime.writebarrierslice���æ� runtime.duffcopy���Þ��2runtime.writebarrierslice���€°��"".autotmp_0701�?"type.*"".Paletted�"".autotmp_0700��type.int�"".autotmp_0698��type.int�"".autotmp_0697��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�)°Þ¯°� �Ê)GPà��”7E�Tgclocals·0409e5bcca4c1c55ea5daac5449b86ea�Tgclocals·db0987207386230beda65332b07cbe03���0c:/go/src/image/image.goþ$"".(*Uniform).RGBA��à��àeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$0Hƒû�t@H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$ ‹L$‹D$‰l$8‰T$<‰L$@‰D$DHƒÄ(Éë¼������.��0runtime.morestack_noctxt���Š�
������0P��
"".a�(type.uint32�"".b� type.uint32�"".g�type.uint32�"".r�type.uint32�"".c�� type.*"".Uniform�!PJOP�p�
:!O�
�E+�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/names.goþ0"".(*Uniform).ColorModel�� ��œeH‹ %(���H‹‰����H;awè����ëãHƒì(HÇD$8����HÇD$@����H‹\$0H‰\$ H‹����1íH9ètH‹\$ H‰\$@H‰D$8HƒÄ(ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë½������.��0runtime.morestack_noctxt���€��Jgo.itab.*"".Uniform.image/color.Model���Ä�� type.*"".Uniform���Ú��,type.image/color.Model���ò��Jgo.itab.*"".Uniform.image/color.Model���†�� runtime.typ2Itab���0P��"".autotmp_0707� type.*"".Uniform� "".~r0�,type.image/color.Model�"".c�� type.*"".Uniform�!P=OP1��
B3]� �‚�Tgclocals·d7e8a62d22b1cde6d92b17a55c33fe8f�Tgclocals·e1ae6533a9e39048ba0735a2264ce16a���0c:/go/src/image/names.goþ*"".(*Uniform).Convert��`��BH‹\$Hƒû�tH‹+H‰l$ H‹kH‰l$(Éëê�P��� "".~r1�0,type.image/color.Color�"".c�� type.*"".Uniform�0�0�L0��Tgclocals·57e1009a600f832f844e0e3c49ba5a89�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/names.goþ("".(*Uniform).Bounds��À��®Hƒì H|$01Àè����H<$1Àè����HÇ$�6eÄHÇD$�6eÄHÇD$�ʚ;HÇD$�ʚ;H$Hl$0H‰ïH‰Þè����HƒÄ Ãð� runtime.duffzero���.ð� runtime.duffzero���œ� runtime.duffcopy���P@��"".autotmp_0710�?"type."".Rectangle� "".~r0�"type."".Rectangle�"".c�� type.*"".Uniform�@R?
�`�R`��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/names.goþ "".(*Uniform).At��`��BH‹\$Hƒû�tH‹+H‰l$ H‹kH‰l$(Éëê�P��� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".c�� type.*"".Uniform�0�0�V0��Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/names.goþ("".(*Uniform).Opaque��à��ÐeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$0Hƒû�t8H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ��t
ÆD$8�HƒÄ(ÃÆD$8ëô‰ëÄ������.��0runtime.morestack_noctxt���Š�
������ P�� "".~r0�type.bool�"".c�� type.*"".Uniform�!P;OP�p�\!* �
�E+�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/names.goþ"".NewUniform��€��îeH‹ %(���H‹‰����H;awè����ëãHƒì H����H‰$è����H‹D$H‰D$H‰$Hƒ<$�t(H‹\$(H‰\$H‹\$0H‰\$è����H‹\$H‰\$8HƒÄ É%����ëÏ
������.��0runtime.morestack_noctxt���H��type."".Uniform���Z��"runtime.newobject���¶��2runtime.writebarrieriface���0@��"".autotmp_0712� type.*"".Uniform� "".~r1�  type.*"".Uniform�"".c��,type.image/color.Color�!@L?@�€�
f!_��,.&�Tgclocals·3719f7ef83475fdfd86ee69e0815199e�Tgclocals·e1ae6533a9e39048ba0735a2264ce16a���0c:/go/src/image/names.goþ:"".YCbCrSubsampleRatio.String��À��ÀH‹D$HƒøWHƒø�uH����H‹+H‰l$H‹kH‰l$ÃHƒøuH����H‹+H‰l$H‹kH‰l$ÃH����H‹+H‰l$H‹kH‰l$ÃHƒøuH����H‹+H‰l$H‹kH‰l$ÃHƒøuÂH����H‹+H‰l$H‹kH‰l$Ã
(��Dgo.string."YCbCrSubsampleRatio444"���f��Dgo.string."YCbCrSubsampleRatio422"���˜��Lgo.string."YCbCrSubsampleRatioUnknown"���Ö��Dgo.string."YCbCrSubsampleRatio420"���”��Dgo.string."YCbCrSubsampleRatio440"���0��� "".~r0�type.string�"".s��6type."".YCbCrSubsampleRatio� � �*.   ��Tgclocals·a73fd2a0c6f832642aa9216fd9c5e6be�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ,"".(*YCbCr).ColorModel��@��2H‹����H‰\$H‹����H‰\$Ã��,image/color.YCbCrModel����,image/color.YCbCrModel���0��� "".~r0�,type.image/color.Model�"".p��type.*"".YCbCr� � �p ��Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ$"".(*YCbCr).Bounds��`��ZH|$1Àè����H‹|$Hƒÿ�tHo`H|$H‰îè����Éëêð� runtime.duffzero���H� runtime.duffcopy���P��� "".~r0�"type."".Rectangle�"".p��type.*"".YCbCr�0�0�
v $��Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ"".(*YCbCr).At��€��öeH‹ %(���H‹‰����H;awè����ëãHƒì8HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$5H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`HƒÄ8Ã������.��0runtime.morestack_noctxt���¢��&"".(*YCbCr).YCbCrAt���æ��,type.image/color.YCbCr���ü��,type.image/color.Color���”��Vgo.itab.image/color.YCbCr.image/color.Color���¼��runtime.convT2I���Pp��
"".autotmp_0714�,type.image/color.YCbCr� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�!p™o�À� ~3�
�Pp�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt��À��²eH‹ %(���H‹‰����H;awè����ëãHƒìXL‹\$hL‹T$pL‹L$`ÆD$x�ÆD$y�ÆD$z�L‰T$0Iƒù�„C��Ii`H\$8H‰ßH‰îè����H‹\$8L‰\$(L9ۏ��H‹l$HI9ë��H‹\$@L9ӏù���H‹l$PI9êë���HÇÀ���<�u1Ò1É1ÀˆT$xˆL$yˆD$zHƒÄXÃI‹YhL‰ÕH)ÝH‰ëI‹iHH¯ÝI‹i`M‰ØI)èLÃH‰\$ L‰ $L‰\$L‰T$è����L‹L$`H‹D$Iƒù�tzI‹I‹IM‹AH‹l$ H9Ís^H*¶H‰ßI‹QI‹I M‹A(H9Ès<H¶H‰ÞI‹Q0I‹I8M‹A@H9ÈsH¶@ˆ|$x@ˆt$yˆ\$zHƒÄXÃè���� è���� è���� A‰ë1ÀéÿÿÿA‰éµþÿÿ������.��0runtime.morestack_noctxt���¼� runtime.duffcopy���î��&"".(*YCbCr).COffset���â��$runtime.panicindex���ð��$runtime.panicindex���þ��$runtime.panicindex���@°��"".autotmp_0719��,type.image/color.YCbCr�"".autotmp_0715��type.int�"".r�?"type."".Rectangle�"".p�_type."".Point�
"".yi�otype.int� "".~r2�0,type.image/color.YCbCr�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�(!°Ÿ¯°®¯°0� �(†?k'X ��öª�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).YOffset��€��bH‹D$H‹XhH‹l$H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$ Ã�@��� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�@�@� ¤;��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).COffset��€��þH‹T$H‹L$H‹D$H‹hXHƒýuHL‹H`H‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃHƒýueL‹@hL‹H`H‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$ ÃHƒýuEL‹@hH‰ÓHÁû?H‰ÕH)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ ÃH‹XhH‰ÕH)ÝH‰ëH‹hPH¯ÝH‹h`I‰ÈI)èLÃH‰\$ Ã�@��� "".autotmp_0727��type.int�"".autotmp_0725��type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�À�À�(°HeE)��Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ("".(*YCbCr).SubImage��€��äeH‹ %(���H‹‰����HD$°H;Awè����ëÞHìÐ���HDŽ$�������HDŽ$������Hœ$à���H,$H‰ïH‰Þè����H‹¼$Ø���Hƒÿ�„A��Ho`H|$ H‰îè����è����L‹Œ$Ø���H\$@H¬$���H‰ïH‰Þè����Hœ$���H¬$à���H‰ïH‰Þè����Hœ$à���Hl$pH‰ïH‰Þè����H‹\$pH‹¬$€���H9덶��H‹\$xH‹¬$ˆ���H9덠��1À<�„¯���H����H‰$è����H‹|$H‰ùHƒÿ�„†���1Àè����Hƒù�tuL‹„$Ø���I‹hXH‰iXH‰Œ$°���H‹����1íH9èt H‹œ$°���H‰œ$��H‰„$���HÄÐ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉뇉ésÿÿÿH‹¬$è���L‹„$à���I‹YhH)ÝH‰ëI‹iHH¯ÝI‹i`I)èLÃH‰\$`L‰ $H‹œ$à���H‰\$H‹œ$è���H‰\$è����H‹\$H‰\$hH����H‰$è����H‹Œ$Ø���H‹|$H‹qH‹QH‹D$`H9‚O��H‰¼$°���H‰<$Hƒ<$�„,��H‹ H‰×H)ÇH‰òH)ÂHƒú�t H‰ÃHËH‰ÙH‰Œ$¸���H‰L$H‰¼$À���H‰|$H‰”$È���H‰T$è����H‹Œ$Ø���H‹y(H‹Q H‹D$hH9‚½��H‹œ$°���H‰$Hƒ<$�„š��Hƒ$H‹IH‰ÖH)ÆH‰úH)ÂHƒú�t H‰ÃHËH‰ÙH‰Œ$¸���H‰L$H‰´$À���H‰t$H‰”$È���H‰T$è����H‹”$Ø���H‹z@H‹r8H‹D$hH9Æ‚%��H‹œ$°���H‰$Hƒ<$�„��Hƒ$0H‹R0I‰ðI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$¸���H‰T$L‰„$À���L‰D$H‰´$È���H‰t$è����H‹”$Ø���H‹„$°���Hƒø�„‘���H‹jXH‰hXH‹jHH‰hHH‹zPH‰xPHx`Hœ$à���H‰Þè����H‰„$°���H‹����1íH9èt H‹œ$°���H‰œ$��H‰„$���HÄÐ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$뱉�éhÿÿÿ‰%����éòþÿÿè���� ‰%����éZþÿÿè���� ‰%����éÈýÿÿè���� HÇÀ���éVüÿÿ‰é¸ûÿÿ>������8��0runtime.morestack_noctxt���¨� runtime.duffcopy���î� runtime.duffcopy���ø��,"".Rectangle.Intersect���¸� runtime.duffcopy���î� runtime.duffcopy���ž� runtime.duffcopy���˜��type."".YCbCr���ª��"runtime.newobject���ÜÀ� runtime.duffzero���¦��4go.itab.*"".YCbCr."".Image���‚��type.*"".YCbCr���˜��type."".Image���°��4go.itab.*"".YCbCr."".Image���Ä�� runtime.typ2Itab�����&"".(*YCbCr).COffset���²��type."".YCbCr���Ä��"runtime.newobject���Ì
��2runtime.writebarrierslice���Ö ��2runtime.writebarrierslice���à��2runtime.writebarrierslice���ì� runtime.duffcopy���Š��4go.itab.*"".YCbCr."".Image���æ��type.*"".YCbCr���ü��type."".Image���”��4go.itab.*"".YCbCr."".Image���¨�� runtime.typ2Itab���æ��$runtime.panicslice���Œ��$runtime.panicslice���²��$runtime.panicslice���p ��("".autotmp_0747��type.*uint8�"".autotmp_0746��type.uint64�"".autotmp_0745��type.uint64�"".autotmp_0744��type.uint64�"".autotmp_0743��type.uint64�"".autotmp_0742��type.uint64�"".autotmp_0741��type.uint64�"".autotmp_0737��type.*"".YCbCr�"".autotmp_0736��type.int�"".autotmp_0733�?type.*"".YCbCr�"".autotmp_0731��type.*"".YCbCr�"".autotmp_0730��type.int�"".autotmp_0729��type.*"".YCbCr�"".autotmp_0728�"type."".Rectangle�"".r�¿"type."".Rectangle�
"".ci�Ïtype.int�
"".yi�ßtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".YCbCr�*) ÔŸ ±Ÿ �À �vÎAzNU - 1-  i 
oà - 
 � �{¦fžÍN�Tgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/ycbcr.goþ$"".(*YCbCr).Opaque�� �� ÆD$Ã� ��� "".~r0�type.bool�"".p��type.*"".YCbCr���þ��Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���0c:/go/src/image/ycbcr.goþ"".NewYCbCr��À��¸eH‹ %(���H‹‰����HD$¸H;Awè����ëÞHìÈ���Hœ$Ð���Hl$PH‰ïH‰Þè����H‹T$`H‹|$PH)úHœ$Ð���H|$pH‰Þè����H‹„$ˆ���H‹l$xH)èH‰ÖH‰ÂH‹„$ð���Hƒø…��H‹œ$à���HÿÃL‹„$Ð���H‰ÙHÁû?H)ÙHÑùL‰ÅHÁý?I)èL‰ÅHÑýH)éH‰ÐH‰óH‰t$0H‰T$8H¯ÚH‰ÍH‰L$@HÑåH‰D$HH¯èHëH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$˜���H‰Œ$ ���H‰„$¨���H����H‰$è����H‹T$H‹D$0H‹l$8H‹Œ$¨���H¯ÅH9Á‚7��H‰”$���H‰$Hƒ<$�„��H‹¬$˜���H‰¬$°���H‰l$H‰„$¸���H‰D$H‰Œ$À���H‰L$è����H‹L$0H‹D$8H‹l$@L‹D$HH‹´$¨���H‰ÊH¯ÈHƒÁ�H¯ÐI¯èHêH‰ÈH9Ö‚›��H9Ê‚’��H‹œ$���H‰$Hƒ<$�„o��Hƒ$H‹Œ$˜���H‰×H)ÇH‰òH)ÂHƒú�t H‰ÃHËH‰ÙH‰Œ$°���H‰L$H‰¼$¸���H‰|$H‰”$À���H‰T$è����H‹D$0H‹t$8H‹l$@H‹L$HH‹¼$¨���H‰ÃH¯ÆH‰êH¯éHèH¯ÞH‰ÕHÑåH¯éHëH‰ÙH9ß‚Ê���H9ÂÁ���H‹œ$���H‰$Hƒ<$�„ž���Hƒ$0H‹”$˜���I‰ÈI)ÀH‰þH)ÆHƒþ�t H‰ÃHÓH‰ÚH‰”$°���H‰T$L‰„$¸���L‰D$H‰´$À���H‰t$è����H‹„$���H‹¬$ð���H‰hXH‹l$0H‰hHH‹|$@H‰xPHx`Hœ$Ð���H‰Þè����H‰„$ø���HÄÈ���É%����éVÿÿÿè���� ‰%����é…þÿÿè���� ‰%����éàýÿÿè���� HƒøukH‹œ$à���HÿÃL‹„$Ð���H‰ÙHÁû?H)ÙH‹œ$è���HÑùL‰ÅHÁý?I)èL‰ÅHÑýH)éHÿÃL‹„$Ø���H‰ØHÁû?H)ØHÑøL‰ÅHÁý?I)èL‰ÅHÑýH)èé±üÿÿHƒøu;H‹œ$è���H‰ñHÿÃL‹„$Ø���H‰ØHÁû?H)ØHÑøL‰ÅHÁý?I)èL‰ÅHÑýH)èépüÿÿH‰ñH‰Ðéeüÿÿ������8��0runtime.morestack_noctxt���z� runtime.duffcopy���¾� runtime.duffcopy���Þ��type.[]uint8���„��"runtime.makeslice���à��type."".YCbCr���ò��"runtime.newobject���Ð��2runtime.writebarrierslice���´ ��2runtime.writebarrierslice���° ��2runtime.writebarrierslice���¤ � runtime.duffcopy���æ ��$runtime.panicslice���Œ��$runtime.panicslice���²��$runtime.panicslice���`��B"".autotmp_0790��type.uint64�"".autotmp_0789��type.uint64�"".autotmp_0788��type.uint64�"".autotmp_0787��type.int�"".autotmp_0786��type.int�"".autotmp_0784��type.uint64�"".autotmp_0783��type.uint64�"".autotmp_0782��type.int�"".autotmp_0781��type.int�"".autotmp_0778��type.int�"".autotmp_0777�otype.*"".YCbCr�"".autotmp_0776��type.int�"".autotmp_0775��type.int�"".autotmp_0774��type.int�"".autotmp_0773��type.int�"".autotmp_0772��type.int�"".autotmp_0771��type.int�"".autotmp_0770��type.int�"".autotmp_0769��type.int�"".autotmp_0768��type.int�"".autotmp_0765��type.int�"".autotmp_0764��type.int�"".autotmp_0762�/type.[]uint8�"".r�¯"type."".Rectangle�"".r�ï"type."".Rectangle�"".b�_type.[]uint8�
"".ch�ÿtype.int�
"".cw�type.int�"".h�Ÿtype.int�"".w�¯type.int� "".~r2�Ptype.*"".YCbCr�""".subsampleRatio�@6type."".YCbCrSubsampleRatio�"".r��"type."".Rectangle�)¼ú�à�’†)P
3l  U =
?¥  
++  � �7oð[î�Tgclocals·0a289e995574341eb4c31a34a9a8efc7�Tgclocals·0c87b4534d938b6985f3e75f5ea554dc���0c:/go/src/image/ycbcr.goþ"".init��  ��˜ eH‹ %(���H‹‰����H;awè����ëãHƒì@¶����€û�t¶����€ûuHƒÄ@Ãè���� Æ����è����è����è����è����H����H,$H‰ïH‰ÞH¥H¥è����H‹L$H‹D$H����H‰$H‰L$0H‰L$H‰D$8H‰D$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹D$H����H‰$H‰D$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹D$H����H‰$H‰D$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹D$H����H‰$H‰D$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹D$H����H‰$H‰D$è����Æ����HƒÄ@Ã^������.��0runtime.morestack_noctxt���H��"".initdone·���`��"".initdone·���~��"runtime.throwinit���Ž�"".initdone·���š�� image/color.init���¤��strconv.init���®��io.init���¸��bufio.init���Æ��Bgo.string."image: unknown format"���ì��errors.New���Ž��"".ErrFormat���È��2runtime.writebarrieriface���Ö��.type.image/color.Gray16���ì��,type.image/color.Color���„��Xgo.itab.image/color.Gray16.image/color.Color���œ��"image/color.Black���°��runtime.convT2I���à��"".NewUniform���ø��"".Black���”��.runtime.writebarrierptr���¢��.type.image/color.Gray16���¸��,type.image/color.Color���Ð��Xgo.itab.image/color.Gray16.image/color.Color���è��"image/color.White���ü��runtime.convT2I���¬��"".NewUniform���Ä��"".White���à��.runtime.writebarrierptr���î��0type.image/color.Alpha16���„��,type.image/color.Color���œ��Zgo.itab.image/color.Alpha16.image/color.Color���´��.image/color.Transparent���È��runtime.convT2I���ø��"".NewUniform�����"".Transparent���¬��.runtime.writebarrierptr���º��0type.image/color.Alpha16���Ð��,type.image/color.Color���è��Zgo.itab.image/color.Alpha16.image/color.Color���€��$image/color.Opaque���”��runtime.convT2I���Ä��"".NewUniform���Ü��"".Opaque���ø��.runtime.writebarrierptr���„ �"".initdone·����€��"".autotmp_0807�� type.*"".Uniform�"".autotmp_0806�� type.*"".Uniform�"".autotmp_0805�� type.*"".Uniform�"".autotmp_0803�type.error�!€€�`H˜�$¼`Hffff”� �>’�Tgclocals·3280bececceccd33cb74587feedb1f9f�Tgclocals·d64e51a4c4bfeaa840e480961ec6b0b3���0c:/go/src/image/ycbcr.go2c:/go/src/image/format.go0c:/go/src/image/names.goþ"".Image.At� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹Y H…Ût H|$0H9;uH‰#HÇD$P����HÇD$X����H‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(Ã������.��0runtime.morestack_noctxt���Þ�
������`P�� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��type."".Image�!PhO���
�o!�Tgclocals·62bf5c4fa9f5f8a7a8c2891b7ded5618�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".Image.Bounds� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H|$`1Àè����H‹\$XH‰$H‹\$PH‹[(ÿÓH\$Hl$(H‰ïH‰Þè����H\$(Hl$`H‰ïH‰Þè����HƒÄHà ������.��0runtime.morestack_noctxt���~ð� runtime.duffzero���ª�
������А� runtime.duffcopy���ú� runtime.duffcopy���`��"".autotmp_0809�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��type."".Image�!d ���
�U;�Tgclocals·807a5b85c3c3f4538eaea0d6aaeb9f68�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ&"".Image.ColorModel�€��ìeH‹ %(���H‹‰����H;awè����ëãHƒìH‹Y H…Ût H|$ H9;uH‰#HÇD$0����HÇD$8����H‹\$(H‰$H‹\$ H‹[0ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃ������.��0runtime.morestack_noctxt���¶�
������@0�� "".~r0� ,type.image/color.Model�""..this��type."".Image�!0T/ �€�€�
�[%�Tgclocals·78fd77a07ab543a063c3a3049973febe�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ$"".(*Point).String�À��ªeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#HÇD$@����HÇD$H����H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$8Hƒþ�t)H,$H‰ïH¥H¥è����H‹L$H‹D$H‰L$@H‰D$HHƒÄ0ÉëÓ������.��0runtime.morestack_noctxt���°��"go.string."image"���Ú��"go.string."Point"���†��$go.string."String"���®��"runtime.panicwrap���è��"".Point.String���0`�� "".~r0�type.string�""..this��type.*"".Point�!`¯_`�à�
à� �–J�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Add� ��’eH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8Hƒû�t/H‹3H‹SH‹L$@H‹D$HH‰óHËH‰ÙH‰ÓHÃH‰L$PH‰\$XHƒÄ0ÉëÍ ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."Add"���Š��"runtime.panicwrap���P`�� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�!`£_` �Ð� Ð� �„L�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Sub� ��’eH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8Hƒû�t/H‹3H‹SH‹L$@H‹D$HH‰óH)ËH‰ÙH‰ÓH)ÃH‰L$PH‰\$XHƒÄ0ÉëÍ ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."Sub"���Š��"runtime.panicwrap���P`�� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�!`£_` �Ð�Ð� �„L�Tgclocals·3848e426d347d8bdaafc1151a6d814bf�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Mul�€��úeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8Hƒû�t#H‹ H‹[H‹D$@H¯ÈH¯ØH‰L$HH‰\$PHƒÄ0ÉëÙ ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."Mul"���Š��"runtime.panicwrap���@`�� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�!`—_`�À�À� �„<�Tgclocals·6a2e5ab2d393a1bfd331903fbd0fd425�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Div�à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8Hƒû�tMH‹H‹{H‹L$@Hƒùÿt3H™H÷ùH‰ÃH‰ÞH‰øHƒùÿtH™H÷ùH‰ÃH‰t$HH‰\$PHƒÄ0ÃH÷ØH‰ÃëéH÷ØH‰Ãë͉ë¯ ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."Div"���Š��"runtime.panicwrap���@`�� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�!`±_`�ð�ð� �„l�Tgclocals·6a2e5ab2d393a1bfd331903fbd0fd425�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).In�€��äeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$XHƒþ�tXH‹H‹FHt$`Hl$0H‰ïè����H‹\$0H9Ó1H‹l$@H9ê}'H‹\$8H9ÃH‹l$HH9è}HÇÀ���ˆ„$€���HƒÄPÃ1Àëð‰ë¤������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."In"���Š��"runtime.panicwrap���֐� runtime.duffcopy���` ��"".r�?"type."".Rectangle� "".~r1�Ptype.bool�"".r�"type."".Rectangle�""..this��type.*"".Point�! ÈŸ �€�€� �„|�Tgclocals·96152103ef18259565f4b8f421307b76�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Mod�à��ÔeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹Y H…Ût H|$HH9;uH‰#HÇD$p����HÇD$x����H‹\$H1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$HHƒþ�t>H,$H‰ïH¥H¥H\$PHl$H‰ïH‰Þè����è����H‹L$0H‹D$8H‰L$pH‰D$xHƒÄ@Éë¾������.��0runtime.morestack_noctxt���°��"go.string."image"���Ú��"go.string."Point"���†��go.string."Mod"���®��"runtime.panicwrap���ˆ� runtime.duffcopy���’��"".Point.Mod���p€�� "".~r1�Ptype."".Point�"".r�"type."".Rectangle�""..this��type.*"".Point�!€Ä€
�ð�ð� �–Z�Tgclocals·7fb6a26a5c78c6931b2d945369a74983�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".(*Point).Eq� ��’eH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8Hƒû�t/H‹3H‹SH‹L$@H‹D$HH9ÎuH9ÂuHÇÀ���ˆD$PHƒÄ0Ã1Àëó‰ëÍ ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��"go.string."Point"���â��go.string."Eq"���Š��"runtime.panicwrap���@`�� "".~r1�0type.bool�"".q�type."".Point�""..this��type.*"".Point�!`Ÿ_`�Ð�Ð� �„L�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ,"".(*Rectangle).String�À��¬eH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#HÇD$@����HÇD$H����H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$8Hƒþ�t*H,$H‰ïè����è����H‹L$ H‹D$(H‰L$@H‰D$HHƒÄ0ÉëÒ������.��0runtime.morestack_noctxt���°��"go.string."image"���Ú��*go.string."Rectangle"���†��$go.string."String"���®��"runtime.panicwrap���à� runtime.duffcopy���ê��&"".Rectangle.String���0`�� "".~r0�type.string�""..this��$type.*"".Rectangle�!`°_`�à�à� �–J�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ$"".(*Rectangle).Dx�€��üeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$XHƒþ�t$Hl$0H‰ïè����H‹\$@H‹l$0H)ëH‰\$`HƒÄPÉëØ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��go.string."Dx"���Š��"runtime.panicwrap���¾� runtime.duffcopy���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle�! ˜Ÿ �À�À� �„<�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ$"".(*Rectangle).Dy�€��üeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$XHƒþ�t$Hl$0H‰ïè����H‹\$HH‹l$8H)ëH‰\$`HƒÄPÉëØ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��go.string."Dy"���Š��"runtime.panicwrap���¾� runtime.duffcopy���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle�! ˜Ÿ �À�À� �„<�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ("".(*Rectangle).Size� �� eH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$XHƒþ�t6Hl$0H‰ïè����H‹L$@H‹l$0H‹D$HH)éH‹l$8H)èH‰L$`H‰D$hHƒÄPÉëÆ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â�� go.string."Size"���Š��"runtime.panicwrap���¾� runtime.duffcopy���0 ��"".r�?"type."".Rectangle� "".~r0�type."".Point�""..this��$type.*"".Rectangle�! ªŸ �Ð� Ð� �„L�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ&"".(*Rectangle).Add� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H¼$���1Àè����H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$xHƒþ�t]H,$H‰ïè����H‹œ$€���H‰\$ H‹œ$ˆ���H‰\$(è����H\$0Hl$PH‰ïH‰Þè����H\$PH¬$���H‰ïH‰Þè����HƒÄpÉëŸ������.��0runtime.morestack_noctxt���„ð� runtime.duffzero���ª��"go.string."image"���Ô��*go.string."Rectangle"���€��go.string."Add"���¨��"runtime.panicwrap���ڐ� runtime.duffcopy���˜�� "".Rectangle.Add���� runtime.duffcopy���ò� runtime.duffcopy���pà��"".autotmp_0823�?"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�!ààßà��"� �“}�Tgclocals·f41c75603a360217cc6b0dbbcf28f0b1�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ&"".(*Rectangle).Sub� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H¼$���1Àè����H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$xHƒþ�t]H,$H‰ïè����H‹œ$€���H‰\$ H‹œ$ˆ���H‰\$(è����H\$0Hl$PH‰ïH‰Þè����H\$PH¬$���H‰ïH‰Þè����HƒÄpÉëŸ������.��0runtime.morestack_noctxt���„ð� runtime.duffzero���ª��"go.string."image"���Ô��*go.string."Rectangle"���€��go.string."Sub"���¨��"runtime.panicwrap���ڐ� runtime.duffcopy���˜�� "".Rectangle.Sub���� runtime.duffcopy���ò� runtime.duffcopy���pà��"".autotmp_0824�?"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�!ààßà��$� �“}�Tgclocals·f41c75603a360217cc6b0dbbcf28f0b1�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ*"".(*Rectangle).Inset�€��ìeH‹ %(���H‹‰����H;awè����ëãHƒìhH‹Y H…Ût H|$pH9;uH‰#H¼$€���1Àè����H‹\$p1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$pHƒþ�tMH,$H‰ïè����H‹\$xH‰\$ è����H\$(Hl$HH‰ïH‰Þè����H\$HH¬$€���H‰ïH‰Þè����HƒÄhÉë¯������.��0runtime.morestack_noctxt���„ð� runtime.duffzero���ª��"go.string."image"���Ô��*go.string."Rectangle"���€��"go.string."Inset"���¨��"runtime.panicwrap���ڐ� runtime.duffcopy���ø��$"".Rectangle.Inset���¢� runtime.duffcopy���Ґ� runtime.duffcopy���`Ð��"".autotmp_0825�?"type."".Rectangle� "".~r1� "type."".Rectangle�"".n�type.int�""..this��$type.*"".Rectangle�!ÐÐÏÐ�€�&€� �“m�Tgclocals·b12cc666719da02a993982bd2e9025ca�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ2"".(*Rectangle).Intersect�À��¦eH‹ %(���H‹‰����H;awè����ëãHì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H¼$°���1Àè����H‹œ$ˆ���1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹´$ˆ���Hƒþ�t^H,$H‰ïè����Hœ$���Hl$ H‰ïH‰Þè����è����H\$@Hl$`H‰ïH‰Þè����H\$`H¬$°���H‰ïH‰Þè����HÄ€���Éëž������.��0runtime.morestack_noctxt���ð� runtime.duffzero���¼��"go.string."image"���æ��*go.string."Rectangle"���’��*go.string."Intersect"���º��"runtime.panicwrap���ò� runtime.duffcopy���¢� runtime.duffcopy���¬��,"".Rectangle.Intersect���֐� runtime.duffcopy���†� runtime.duffcopy���€��"".autotmp_0826�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�$€êÿ€� �( ��œ„�Tgclocals·6c4c706fd10bc0285f90c9b418475211�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ*"".(*Rectangle).Union�À��¦eH‹ %(���H‹‰����H;awè����ëãHì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H¼$°���1Àè����H‹œ$ˆ���1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹´$ˆ���Hƒþ�t^H,$H‰ïè����Hœ$���Hl$ H‰ïH‰Þè����è����H\$@Hl$`H‰ïH‰Þè����H\$`H¬$°���H‰ïH‰Þè����HÄ€���Éëž������.��0runtime.morestack_noctxt���ð� runtime.duffzero���¼��"go.string."image"���æ��*go.string."Rectangle"���’��"go.string."Union"���º��"runtime.panicwrap���ò� runtime.duffcopy���¢� runtime.duffcopy���¬��$"".Rectangle.Union���֐� runtime.duffcopy���†� runtime.duffcopy���€��"".autotmp_0827�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�$€êÿ€� �* ��œ„�Tgclocals·6c4c706fd10bc0285f90c9b418475211�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ*"".(*Rectangle).Empty�À��²eH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$XHƒþ�t?Hl$0H‰ïè����H‹\$0H‹l$@H9ë}H‹\$8H‹l$HH9ë} 1ÀˆD$`HƒÄPÃHÇÀ���ëî‰ë½������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��"go.string."Empty"���Š��"runtime.panicwrap���¾� runtime.duffcopy���  ��"".r�?"type."".Rectangle� "".~r0�type.bool�""..this��$type.*"".Rectangle�! ªŸ �à�,à� �„\�Tgclocals·06cab038d51064a089bda21fa03e00f7�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ$"".(*Rectangle).Eq� ��œeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$PHƒþ�t4H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xHƒÄHÉëÈ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��go.string."Eq"���Š��"runtime.panicwrap���¼� runtime.duffcopy���æ� runtime.duffcopy���ð��"".Rectangle.Eq���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!¨�Ð�.Ð� �„L�Tgclocals·96152103ef18259565f4b8f421307b76�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ0"".(*Rectangle).Overlaps� ��œeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$PHƒþ�t4H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xHƒÄHÉëÈ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��(go.string."Overlaps"���Š��"runtime.panicwrap���¼� runtime.duffcopy���æ� runtime.duffcopy���ð��*"".Rectangle.Overlaps���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!¨�Ð�0Ð� �„L�Tgclocals·96152103ef18259565f4b8f421307b76�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ$"".(*Rectangle).In� ��œeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$PHƒþ�t4H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xHƒÄHÉëÈ������.��0runtime.morestack_noctxt���Œ��"go.string."image"���¶��*go.string."Rectangle"���â��go.string."In"���Š��"runtime.panicwrap���¼� runtime.duffcopy���æ� runtime.duffcopy���ð��"".Rectangle.In���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!¨�Ð�2Ð� �„L�Tgclocals·96152103ef18259565f4b8f421307b76�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ*"".(*Rectangle).Canon�à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H|$p1Àè����H‹\$h1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹t$hHƒþ�t@H,$H‰ïè����è����H\$ Hl$@H‰ïH‰Þè����H\$@Hl$pH‰ïH‰Þè����HƒÄ`Éë¼������.��0runtime.morestack_noctxt���~ð� runtime.duffzero���¤��"go.string."image"���Î��*go.string."Rectangle"���ú��"go.string."Canon"���¢��"runtime.panicwrap���Ԑ� runtime.duffcopy���Þ��$"".Rectangle.Canon���ˆ� runtime.duffcopy���²� runtime.duffcopy���PÀ��"".autotmp_0832�?"type."".Rectangle� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�!ÀÀ¿À�ð�4ð� �`�Tgclocals·5dfce38b1d248a3900c6ec750de77702�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ(type..hash."".Config�À��¸eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$(H‰$Hƒ<$�tbHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t,Hƒ$HÇD$���H‰D$8H‰D$è����H‹\$H‰\$@HƒÄ É%����ëˉ%����ë•������.��0runtime.morestack_noctxt���Š��"runtime.interhash���î��runtime.memhash���@@��
"".autotmp_0834��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*"".Config�!@h?@� � �
�D\�Tgclocals·2dc77d960dd3e4b3de2361f9cbd75783�Tgclocals·3280bececceccd33cb74587feedb1f9f���2c:/go/src/image/format.goþ$type..eq."".Config�à��ÄeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$XHƒû�„«���H‹ H‹sH‹\$PHƒû�„Ž���H‹H‹SH9ÈuxH‰D$(H‰$H‰T$0H‰T$H‰L$8H‰L$H‰t$@H‰t$è����H‹L$XH‹D$P¶\$ €û�t8H‹XH‹iH9ët
ÆD$h�HƒÄHÃH‹XH‹iH9ët
ÆD$h�HƒÄHÃÆD$hHƒÄHÃÆD$h�HƒÄHÉékÿÿÿ‰éNÿÿÿ������.��0runtime.morestack_noctxt���ô��runtime.ifaceeq���@�� "".autotmp_0836�?,type.image/color.Model�"".autotmp_0835�,type.image/color.Model� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*"".Config�"".p��type.*"".Config�>!‡  �ð�ð�
�yw�Tgclocals·9c703c5c7b9c1932c840b69f8ebce236�Tgclocals·44568aa369055d8938d809aa5d80843b���2c:/go/src/image/format.goþ"".reader.Peek�€��òeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹Y H…Ût H|$@H9;uH‰#HÇD$X����HÇD$`����HÇD$h����HÇD$p����HÇD$x����H‹\$PH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$XH‰l$`H‰T$hH‰L$pH‰D$xHƒÄ8Ã������.��0runtime.morestack_noctxt���€�
������€p�� "".~r2�`type.error� "".~r1�0type.[]uint8�""..anon0� type.int�""..this��type."".reader�!p—o�À�6À� �€@�Tgclocals·948ab5f4265e4119ed2d517cebe54897�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ"".reader.Read�À��¼eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹Y H…Ût H|$@H9;uH‰#HÇD$p����HÇD$x����H‹\$PH‰\$H‹\$XH‰\$H‹\$`H‰\$H‹\$HH‰$H‹\$@H‹[(ÿÓH‹T$ H‹L$(H‹D$0H‰T$hH‰L$pH‰D$xHƒÄ8Ã������.��0runtime.morestack_noctxt���ò�
������€p�� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".reader�!p|o� �8 �
�y'�Tgclocals·334cb8bc6294eb0b97ffb9b2c8e3805f�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ@"".(*YCbCrSubsampleRatio).String�� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹Y H…Ût H|$8H9;uH‰#HÇD$@����HÇD$H����H‹\$81íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$8H‹+H‰,$è����H‹L$H‹D$H‰L$@H‰D$HHƒÄ0Ã������.��0runtime.morestack_noctxt���°��"go.string."image"���Ú��>go.string."YCbCrSubsampleRatio"���†��$go.string."String"���®��"runtime.panicwrap���Ô��:"".YCbCrSubsampleRatio.String���0`�� "".~r0�type.string�""..this��8type.*"".YCbCrSubsampleRatio�!`¥_
�Ð�:Ð� �–:�Tgclocals·a08e9001cb8f9d822225de3b8e406515�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ&"".PalettedImage.At� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹Y H…Ût H|$0H9;uH‰#HÇD$P����HÇD$X����H‹\$@H‰\$H‹\$HH‰\$H‹\$8H‰$H‹\$0H‹[ ÿÓH‹L$H‹D$ H‰L$PH‰D$XHƒÄ(Ã������.��0runtime.morestack_noctxt���Þ�
������`P�� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�!PhO��<�
�o!�Tgclocals·62bf5c4fa9f5f8a7a8c2891b7ded5618�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ."".PalettedImage.Bounds� ��ŒeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H|$`1Àè����H‹\$XH‰$H‹\$PH‹[(ÿÓH\$Hl$(H‰ïH‰Þè����H\$(Hl$`H‰ïH‰Þè����HƒÄHà ������.��0runtime.morestack_noctxt���~ð� runtime.duffzero���ª�
������А� runtime.duffcopy���ú� runtime.duffcopy���`��"".autotmp_0843�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��*type."".PalettedImage�!d ��>�
�U;�Tgclocals·807a5b85c3c3f4538eaea0d6aaeb9f68�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ:"".PalettedImage.ColorIndexAt�à��ÚeH‹ %(���H‹‰����H;awè����ëãHƒì H‹Y H…Ût H|$(H9;uH‰#H‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$HHƒÄ Ã������.��0runtime.morestack_noctxt���º�
������P@�� "".~r2�@type.uint8�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�!@K?�p�@p�
�]�Tgclocals·b409d586de60012625f0e95ec5940b76�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þ6"".PalettedImage.ColorModel�€��ìeH‹ %(���H‹‰����H;awè����ëãHƒìH‹Y H…Ût H|$ H9;uH‰#HÇD$0����HÇD$8����H‹\$(H‰$H‹\$ H‹[8ÿÓH‹L$H‹D$H‰L$0H‰D$8HƒÄÃ������.��0runtime.morestack_noctxt���¶�
������@0�� "".~r0� ,type.image/color.Model�""..this��*type."".PalettedImage�!0T/ �€�B€�
�[%�Tgclocals·78fd77a07ab543a063c3a3049973febe�Tgclocals·3280bececceccd33cb74587feedb1f9f���<autogenerated>þTgclocals·689951afea2aec1a1892a98ed10a0c65�(��(����������� ¢� ¢��þTgclocals·124193b742c54128cb6ed959c23825aa�(��(��� ���"
��"
��"
���þ,>go.itab.*bufio.Reader."".reader�����þTgclocals·61e2515c69061b8fed0e66ece719f936� �� ��������������þTgclocals·3873aede0e2b4d1c469235ed370ff191� �� ������ ��� ����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·0f53758b92f935584caadf34297c3fcc������ ���"����þTgclocals·ad04ee8da0f8bb0366ff7cbe0f9323dd�0��0���6������������ˆ(�����þTgclocals·baf985c43624001cee46a8835a947fc7� �� ������ ��� ����þTgclocals·3d5078ce684344684d23e08b24b946af�(��(���������� ��� ¢���þTgclocals·15a9b70f3d57ed4dc7f43eee6af9b1db�(��(������ ��� ��� ����þTgclocals·31381dadbad2ef3b40a292b9dc6507e8�@��@���,����������� ��������� ¢�����þTgclocals·049fdf22d8465bb89a8497d987971252�(��(������ ��� ��� ����þgo.string."("�0��$���������������(�� �go.string."("���þgo.string.","�0��$���������������,�� �go.string.","���þgo.string.")"�0��$���������������)�� �go.string.")"���þTgclocals·a1d8257ee5fc09a16c1a87509e9dfc59� �� ���������� ����þTgclocals·fadf43fe6eb488109b787d0108700970� �� �������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·ad59828090211c542efac4951edd4e76������ ���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·ad59828090211c542efac4951edd4e76������ ���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·754250e8590c282610f2a6c293641cbe������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·754250e8590c282610f2a6c293641cbe������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·8d7f7c65c6a60d601440989e93ddcf2d���������U���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·37a3af65680ebdf26777b2f1e884d20d���������U���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f097843b827f64f2379e22321b5e9b17������
���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·693fd2e6f4da98598ef49a51d91c93cd�������������þgo.string."-"�0��$���������������-�� �go.string."-"���þTgclocals·a1d8257ee5fc09a16c1a87509e9dfc59� �� ���������� ����þTgclocals·7bd192a35638da49d6dc2406cbd9296b� �� ��� ���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f097843b827f64f2379e22321b5e9b17������
���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f097843b827f64f2379e22321b5e9b17������
���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·ad59828090211c542efac4951edd4e76������ ���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·65130bbc8ae989bf0239d29d75c3de0a���������U���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·65130bbc8ae989bf0239d29d75c3de0a���������U���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9914f6859f5490a9727d8fd4ecc4be29���������U���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·fdae9ae37d4dce05f8eacbdf3c2442e4���������UU���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·fdae9ae37d4dce05f8eacbdf3c2442e4���������UU���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f097843b827f64f2379e22321b5e9b17������
���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·c599caa25db968b6ca75a357ce3b4973���������UU���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·c599caa25db968b6ca75a357ce3b4973���������UU���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·c599caa25db968b6ca75a357ce3b4973���������UU���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2d6db49a78b1c16f35de9603885ed131���������U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2d6db49a78b1c16f35de9603885ed131���������U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Tgo.itab.image/color.RGBA.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,2go.itab.*"".RGBA."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Xgo.itab.image/color.RGBA64.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,6go.itab.*"".RGBA64."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Vgo.itab.image/color.NRGBA.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,4go.itab.*"".NRGBA."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Zgo.itab.image/color.NRGBA64.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,8go.itab.*"".NRGBA64."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Vgo.itab.image/color.Alpha.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,4go.itab.*"".Alpha."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Zgo.itab.image/color.Alpha16.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,8go.itab.*"".Alpha16."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Tgo.itab.image/color.Gray.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,2go.itab.*"".Gray."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Xgo.itab.image/color.Gray16.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,6go.itab.*"".Gray16."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·2d75cfb0de529b195b8ddbd78612d4fa�(��(���
���U���U���U����þ,Zgo.itab.image/color.Palette.image/color.Model�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·1fbd3ddfb90eff13c33ebdfdf502009b������
���Ö���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·9d54b0e92637840c83619aa7ef897414���������V����þ,:go.itab.*"".Paletted."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·4398bb51467914f29637b614067b995f� �� ��������������þTgclocals·2148c3737b2bb476685a1100a2e8343e� �� �������������þTgclocals·db0987207386230beda65332b07cbe03�(��(�����������������þTgclocals·0409e5bcca4c1c55ea5daac5449b86ea�(��(������U��U��U���þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þ,Jgo.itab.*"".Uniform.image/color.Model�����þTgclocals·e1ae6533a9e39048ba0735a2264ce16a� �� ��������������þTgclocals·d7e8a62d22b1cde6d92b17a55c33fe8f� �� �������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·57e1009a600f832f844e0e3c49ba5a89������
���.����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·e1ae6533a9e39048ba0735a2264ce16a� �� ��������������þTgclocals·3719f7ef83475fdfd86ee69e0815199e� �� ������ ��� ����þDgo.string."YCbCrSubsampleRatio444"�P��N���������������YCbCrSubsampleRatio444�� �Dgo.string."YCbCrSubsampleRatio444"���þDgo.string."YCbCrSubsampleRatio422"�P��N���������������YCbCrSubsampleRatio422�� �Dgo.string."YCbCrSubsampleRatio422"���þDgo.string."YCbCrSubsampleRatio420"�P��N���������������YCbCrSubsampleRatio420�� �Dgo.string."YCbCrSubsampleRatio420"���þDgo.string."YCbCrSubsampleRatio440"�P��N���������������YCbCrSubsampleRatio440�� �Dgo.string."YCbCrSubsampleRatio440"���þLgo.string."YCbCrSubsampleRatioUnknown"�`��V���������������YCbCrSubsampleRatioUnknown�� �Lgo.string."YCbCrSubsampleRatioUnknown"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a73fd2a0c6f832642aa9216fd9c5e6be�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ,Vgo.itab.image/color.YCbCr.image/color.Color�����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þ,4go.itab.*"".YCbCr."".Image�����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·8e41bbe06dbdc0e28086e1f2fc9cc294� �� ������V��V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·0c87b4534d938b6985f3e75f5ea554dc�0��0�������������
�������þTgclocals·0a289e995574341eb4c31a34a9a8efc7�0��0��� ���U��U��U��U���þBgo.string."image: unknown format"�P��L���������������image: unknown format�� �Bgo.string."image: unknown format"���þTgclocals·d64e51a4c4bfeaa840e480961ec6b0b3��������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þ*"".ErrFormat�� type.error���þ*"".formats��0 type.[]"".format���þ,
"".ZP�� type."".Point���þ,
"".ZR��@"type."".Rectangle���þ*"".Black�� type.*"".Uniform���þ*"".White�� type.*"".Uniform���þ*"".Transparent�� type.*"".Uniform���þ*"".Opaque�� type.*"".Uniform���þ,"".initdone·��type.uint8���þ("".RegisterFormat·f��������������""".RegisterFormat���þ(runtime.growslice·f��������������"runtime.growslice���þ4runtime.writebarrierfat·f��������������.runtime.writebarrierfat���þ8runtime.writebarrierslice·f��������������2runtime.writebarrierslice���þ"".asReader·f��������������"".asReader���þ*runtime.assertI2I2·f��������������$runtime.assertI2I2���þ$bufio.NewReader·f��������������bufio.NewReader���þ&runtime.typ2Itab·f�������������� runtime.typ2Itab���þ,runtime.throwreturn·f��������������&runtime.throwreturn���þ"".match·f��������������"".match���þ*runtime.panicindex·f��������������$runtime.panicindex���þ"".sniff·f��������������"".sniff���þ"".Decode·f��������������"".Decode���þ$runtime.convI2I·f��������������runtime.convI2I���þ$"".DecodeConfig·f��������������"".DecodeConfig���þ$"".Point.String·f��������������"".Point.String���þstrconv.Itoa·f��������������strconv.Itoa���þ0runtime.concatstring5·f��������������*runtime.concatstring5���þ"".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���þ0runtime.concatstring3·f��������������*runtime.concatstring3���þ$"".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���þ"".Rect·f��������������"".Rect���þ0"".(*RGBA).ColorModel·f��������������*"".(*RGBA).ColorModel���þ("".(*RGBA).Bounds·f��������������""".(*RGBA).Bounds���þ "".(*RGBA).At·f��������������"".(*RGBA).At���þ("".(*RGBA).RGBAAt·f��������������""".(*RGBA).RGBAAt���þ$runtime.convT2I·f��������������runtime.convT2I���þ."".(*RGBA).PixOffset·f��������������("".(*RGBA).PixOffset���þ""".(*RGBA).Set·f��������������"".(*RGBA).Set���þ(runtime.assertI2T·f��������������"runtime.assertI2T���þ*"".(*RGBA).SetRGBA·f��������������$"".(*RGBA).SetRGBA���þ,"".(*RGBA).SubImage·f��������������&"".(*RGBA).SubImage���þ(runtime.newobject·f��������������"runtime.newobject���þ*runtime.panicslice·f��������������$runtime.panicslice���þ("".(*RGBA).Opaque·f��������������""".(*RGBA).Opaque���þ"".NewRGBA·f��������������"".NewRGBA���þ(runtime.makeslice·f��������������"runtime.makeslice���þ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���þ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���þ8image/color.Palette.Index·f��������������2image/color.Palette.Index���þ<"".(*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���þ8runtime.writebarrieriface·f��������������2runtime.writebarrieriface���þ@"".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).COffset·f��������������&"".(*YCbCr).COffset���þ,"".(*YCbCr).YOffset·f��������������&"".(*YCbCr).YOffset���þ."".(*YCbCr).SubImage·f��������������("".(*YCbCr).SubImage���þ*"".(*YCbCr).Opaque·f��������������$"".(*YCbCr).Opaque���þ"".NewYCbCr·f��������������"".NewYCbCr���þ"".init·f��������������"".init���þ(runtime.throwinit·f��������������"runtime.throwinit���þ&image/color.init·f�������������� image/color.init���þstrconv.init·f��������������strconv.init���þio.init·f��������������io.init���þbufio.init·f��������������bufio.init���þerrors.New·f��������������errors.New���þ4runtime.writebarrierptr·f��������������.runtime.writebarrierptr���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·62bf5c4fa9f5f8a7a8c2891b7ded5618������ ���[����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·807a5b85c3c3f4538eaea0d6aaeb9f68������ ��� ����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·78fd77a07ab543a063c3a3049973febe��������� ����þbruntime.gcbits.0x88000000000000000000000000000000� �� ˆ����������������þLgo.string."func(int, int) color.Color"�`��V���������������func(int, int) color.Color�� �Lgo.string."func(int, int) color.Color"���þJtype.func(int, int) image/color.Color�°��°�������‚ÌÛT�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þ0go.string."*image.Point"�@��:�������� �������*image.Point�� �0go.string."*image.Point"���þ"go.string."image"�0��,���������������image�� �"go.string."image"���þ"go.string."Point"�0��,���������������Point�� �"go.string."Point"���þ$go.string."String"�0��.���������������String�� �$go.string."String"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þgo.string."Add"�0��(���������������Add�� �go.string."Add"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þgo.string."Sub"�0��(���������������Sub�� �go.string."Sub"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·3848e426d347d8bdaafc1151a6d814bf������
�������þgo.string."Mul"�0��(���������������Mul�� �go.string."Mul"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·6a2e5ab2d393a1bfd331903fbd0fd425�������������þgo.string."Div"�0��(���������������Div�� �go.string."Div"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·6a2e5ab2d393a1bfd331903fbd0fd425�������������þgo.string."In"�0��&���������������In�� �go.string."In"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·96152103ef18259565f4b8f421307b76������ ���V���þgo.string."Mod"�0��(���������������Mod�� �go.string."Mod"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·7fb6a26a5c78c6931b2d945369a74983���������V���þgo.string."Eq"�0��&���������������Eq�� �go.string."Eq"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þngo.string."func(*image.Point, image.Point) image.Point"�€��x��������+�������func(*image.Point, image.Point) image.Point�� �ngo.string."func(*image.Point, image.Point) image.Point"���þNtype.func(*"".Point, "".Point) "".Point�°��°�������Ÿ.^�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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.string."func(*image.Point, int) image.Point"�p��h��������#�������func(*image.Point, int) image.Point�� �^go.string."func(*image.Point, int) image.Point"���þDtype.func(*"".Point, int) "".Point�°��°�������3 �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."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.string."func(*image.Point, image.Point) bool"�p��j��������$�������func(*image.Point, image.Point) bool�� �`go.string."func(*image.Point, image.Point) bool"���þFtype.func(*"".Point, "".Point) bool�°��°�������¯š¢�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."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���þhgo.string."func(*image.Point, image.Rectangle) bool"�€��r��������(�������func(*image.Point, image.Rectangle) bool�� �hgo.string."func(*image.Point, image.Rectangle) bool"���þNtype.func(*"".Point, "".Rectangle) bool�°��°�������­âõ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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���þvgo.string."func(*image.Point, image.Rectangle) image.Point"�€��€��������/�������func(*image.Point, image.Rectangle) image.Point�� �vgo.string."func(*image.Point, image.Rectangle) image.Point"���þVtype.func(*"".Point, "".Rectangle) "".Point�°��°�������«øõ„�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."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���þJgo.string."func(*image.Point) string"�`��T���������������func(*image.Point) string�� �Jgo.string."func(*image.Point) string"���þ6type.func(*"".Point) string� �� �������Çu×á�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þRgo.string."func(image.Point) image.Point"�`��\���������������func(image.Point) image.Point�� �Rgo.string."func(image.Point) image.Point"���þ8type.func("".Point) "".Point� �� �������˜<Ñ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þBgo.string."func(int) image.Point"�P��L���������������func(int) image.Point�� �Bgo.string."func(int) image.Point"���þ.type.func(int) "".Point� �� �������R§¸�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Bgo.string."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���þDgo.string."func(image.Point) bool"�P��N���������������func(image.Point) bool�� �Dgo.string."func(image.Point) bool"���þ0type.func("".Point) bool� �� �������—ËÆa�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."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.string."func(image.Rectangle) bool"�`��V���������������func(image.Rectangle) bool�� �Lgo.string."func(image.Rectangle) bool"���þ8type.func("".Rectangle) bool� �� �������Á¬S�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þZgo.string."func(image.Rectangle) image.Point"�p��d��������!�������func(image.Rectangle) image.Point�� �Zgo.string."func(image.Rectangle) image.Point"���þ@type.func("".Rectangle) "".Point� �� �������¯]Ek�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þ2go.string."func() string"�@��<�������� �������func() string�� �2go.string."func() string"���þ$type.func() string����������¢mË�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þtype.*"".Point��ð��ð�������=‘5Ë�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Point"���p��.go.weak.type.**"".Point���€��"runtime.zerovalue�����type."".Point���` �type.*"".Point���Àð�type.*"".Point���ð��go.string."Add"�����8type.func("".Point) "".Point��� ��Ntype.func(*"".Point, "".Point) "".Point���°��"".(*Point).Add���À��"".(*Point).Add���Ð��go.string."Div"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Div��� ��"".(*Point).Div���°��go.string."Eq"���Ð��0type.func("".Point) bool���à��Ftype.func(*"".Point, "".Point) bool���ð��"".(*Point).Eq���€��"".(*Point).Eq�����go.string."In"���°��8type.func("".Rectangle) bool���À��Ntype.func(*"".Point, "".Rectangle) bool���Ð��"".(*Point).In���à��"".(*Point).In���ð��go.string."Mod"�����@type.func("".Rectangle) "".Point��� ��Vtype.func(*"".Point, "".Rectangle) "".Point���°��"".(*Point).Mod���À��"".(*Point).Mod���Ð��go.string."Mul"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Mul��� ��"".(*Point).Mul���°��$go.string."String"���Ð��$type.func() string���à��6type.func(*"".Point) string���ð��$"".(*Point).String���€��$"".(*Point).String�����go.string."Sub"���°��8type.func("".Point) "".Point���À��Ntype.func(*"".Point, "".Point) "".Point���Ð��"".(*Point).Sub���à��"".(*Point).Sub���þ^runtime.gcbits.0x000000000000000000000000000000� �� �����������������þ.go.string."image.Point"�@��8�������� �������image.Point�� �.go.string."image.Point"���þgo.string."X"�0��$���������������X�� �go.string."X"���þgo.string."Y"�0��$���������������Y�� �go.string."Y"���þlgo.string."func(image.Point, image.Point) image.Point"�€��v��������*�������func(image.Point, image.Point) image.Point�� �lgo.string."func(image.Point, image.Point) image.Point"���þLtype.func("".Point, "".Point) "".Point�°��°�������z„m{�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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.string."func(image.Point, int) image.Point"�p��f��������"�������func(image.Point, int) image.Point�� �\go.string."func(image.Point, int) image.Point"���þBtype.func("".Point, int) "".Point�°��°�������Ø(de�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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.string."func(image.Point, image.Point) bool"�p��h��������#�������func(image.Point, image.Point) bool�� �^go.string."func(image.Point, image.Point) bool"���þDtype.func("".Point, "".Point) bool�°��°�������ãÊÀ3�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."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���þfgo.string."func(image.Point, image.Rectangle) bool"�p��p��������'�������func(image.Point, image.Rectangle) bool�� �fgo.string."func(image.Point, image.Rectangle) bool"���þLtype.func("".Point, "".Rectangle) bool�°��°������� �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þtgo.string."func(image.Point, image.Rectangle) image.Point"�€��~��������.�������func(image.Point, image.Rectangle) image.Point�� �tgo.string."func(image.Point, image.Rectangle) image.Point"���þTtype.func("".Point, "".Rectangle) "".Point�°��°�������$#Íò�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."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���þHgo.string."func(image.Point) string"�`��R���������������func(image.Point) string�� �Hgo.string."func(image.Point) string"���þ4type.func("".Point) string� �� �������Û,|º�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."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���þtype."".Point��° ��° �������V[¼�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������l À� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��.go.string."image.Point"���p��type.*"".Point���€��"runtime.zerovalue���À�type."".Point���À��go.string."X"���à��type.int�����go.string."Y"���°��type.int���`à�type."".Point���à��"go.string."Point"���ð��"go.importpath."".���€°�type."".Point���°��go.string."Add"���Ð��8type.func("".Point) "".Point���à��Ltype.func("".Point, "".Point) "".Point���ð��"".(*Point).Add���€��"".Point.Add�����go.string."Div"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Div���à��"".Point.Div���ð��go.string."Eq"�����0type.func("".Point) bool��� ��Dtype.func("".Point, "".Point) bool���°��"".(*Point).Eq���À��"".Point.Eq���Ð��go.string."In"���ð��8type.func("".Rectangle) bool���€��Ltype.func("".Point, "".Rectangle) bool�����"".(*Point).In��� ��"".Point.In���°��go.string."Mod"���Ð��@type.func("".Rectangle) "".Point���à��Ttype.func("".Point, "".Rectangle) "".Point���ð��"".(*Point).Mod���€��"".Point.Mod�����go.string."Mul"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Mul���à��"".Point.Mul���ð��$go.string."String"�����$type.func() string��� ��4type.func("".Point) string���°��$"".(*Point).String���À��"".Point.String���Ð��go.string."Sub"���ð��8type.func("".Point) "".Point���€ ��Ltype.func("".Point, "".Point) "".Point��� ��"".(*Point).Sub���  ��"".Point.Sub���þ8go.string."*image.Rectangle"�P��B���������������*image.Rectangle�� �8go.string."*image.Rectangle"���þ*go.string."Rectangle"�@��4�������� �������Rectangle�� �*go.string."Rectangle"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þgo.string."Dx"�0��&���������������Dx�� �go.string."Dx"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þgo.string."Dy"�0��&���������������Dy�� �go.string."Dy"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þ go.string."Size"�0��*���������������Size�� � go.string."Size"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f41c75603a360217cc6b0dbbcf28f0b1�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·f41c75603a360217cc6b0dbbcf28f0b1�������������þ"go.string."Inset"�0��,���������������Inset�� �"go.string."Inset"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·b12cc666719da02a993982bd2e9025ca������ �������þ*go.string."Intersect"�@��4�������� �������Intersect�� �*go.string."Intersect"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·6c4c706fd10bc0285f90c9b418475211���������V���þ"go.string."Union"�0��,���������������Union�� �"go.string."Union"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·6c4c706fd10bc0285f90c9b418475211���������V���þ"go.string."Empty"�0��,���������������Empty�� �"go.string."Empty"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·06cab038d51064a089bda21fa03e00f7�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·96152103ef18259565f4b8f421307b76������ ���V���þ(go.string."Overlaps"�@��2���������������Overlaps�� �(go.string."Overlaps"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·96152103ef18259565f4b8f421307b76������ ���V���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·96152103ef18259565f4b8f421307b76������ ���V���þ"go.string."Canon"�0��,���������������Canon�� �"go.string."Canon"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·5dfce38b1d248a3900c6ec750de77702������
�������þ~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���ˆ��������3�������func(*image.Rectangle, image.Point) image.Rectangle�� �~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���þ^type.func(*"".Rectangle, "".Point) "".Rectangle�°��°�������7Øút�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��~go.string."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���þdgo.string."func(*image.Rectangle) image.Rectangle"�p��n��������&�������func(*image.Rectangle) image.Rectangle�� �dgo.string."func(*image.Rectangle) image.Rectangle"���þJtype.func(*"".Rectangle) "".Rectangle� �� �������ŒP2]�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."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���þLgo.string."func(*image.Rectangle) int"�`��V���������������func(*image.Rectangle) int�� �Lgo.string."func(*image.Rectangle) int"���þ8type.func(*"".Rectangle) int� �� �������áç§@�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þNgo.string."func(*image.Rectangle) bool"�`��X���������������func(*image.Rectangle) bool�� �Ngo.string."func(*image.Rectangle) bool"���þ:type.func(*"".Rectangle) bool� �� �������ro��3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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���þpgo.string."func(*image.Rectangle, image.Rectangle) bool"�€��z��������,�������func(*image.Rectangle, image.Rectangle) bool�� �pgo.string."func(*image.Rectangle, image.Rectangle) bool"���þVtype.func(*"".Rectangle, "".Rectangle) bool�°��°�������‹ @¶�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."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���þngo.string."func(*image.Rectangle, int) image.Rectangle"�€��x��������+�������func(*image.Rectangle, int) image.Rectangle�� �ngo.string."func(*image.Rectangle, int) image.Rectangle"���þTtype.func(*"".Rectangle, int) "".Rectangle�°��°�������Ògš�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"�����������7�������func(*image.Rectangle, image.Rectangle) image.Rectangle�� �†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"���þftype.func(*"".Rectangle, "".Rectangle) "".Rectangle�°��°�������:çÃ¥�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��†go.string."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.string."func(*image.Rectangle) image.Point"�p��f��������"�������func(*image.Rectangle) image.Point�� �\go.string."func(*image.Rectangle) image.Point"���þBtype.func(*"".Rectangle) "".Point� �� �������v÷I�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þRgo.string."func(*image.Rectangle) string"�`��\���������������func(*image.Rectangle) string�� �Rgo.string."func(*image.Rectangle) string"���þ>type.func(*"".Rectangle) string� �� �������€_5�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þZgo.string."func(image.Point) image.Rectangle"�p��d��������!�������func(image.Point) image.Rectangle�� �Zgo.string."func(image.Point) image.Rectangle"���þ@type.func("".Point) "".Rectangle� �� �������ÇmËQ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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.string."func() int"�@��6��������
�������func() int�� �,go.string."func() int"���þtype.func() int����������å†9à�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."func() int"���p��0go.weak.type.*func() int���€��"runtime.zerovalue��� €�type.func() int���Ѐ�type.func() int���€��type.int���þ.go.string."func() bool"�@��8�������� �������func() bool�� �.go.string."func() bool"���þ type.func() bool����������TËx�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."func() bool"���p��2go.weak.type.*func() bool���€��"runtime.zerovalue��� €� type.func() bool���Ѐ� type.func() bool���€��type.bool���þJgo.string."func(int) image.Rectangle"�`��T���������������func(int) image.Rectangle�� �Jgo.string."func(int) image.Rectangle"���þ6type.func(int) "".Rectangle� �� �������À¹,e�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þbgo.string."func(image.Rectangle) image.Rectangle"�p��l��������%�������func(image.Rectangle) image.Rectangle�� �bgo.string."func(image.Rectangle) image.Rectangle"���þHtype.func("".Rectangle) "".Rectangle� �� �������a? B�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."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.string."func() image.Point"�P��F���������������func() image.Point�� �<go.string."func() image.Point"���þ(type.func() "".Point����������$*|õ�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."func() image.Point"���p��:go.weak.type.*func() "".Point���€��"runtime.zerovalue��� €�(type.func() "".Point���Ѐ�(type.func() "".Point���€��type."".Point���þ$type.*"".Rectangle��° ��° �������DðÊ�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������œ  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��8go.string."*image.Rectangle"���p��6go.weak.type.**"".Rectangle���€��"runtime.zerovalue�����"type."".Rectangle���` �$type.*"".Rectangle���Àð�$type.*"".Rectangle���ð��go.string."Add"�����@type.func("".Point) "".Rectangle��� ��^type.func(*"".Rectangle, "".Point) "".Rectangle���°��&"".(*Rectangle).Add���À��&"".(*Rectangle).Add���Ð��"go.string."Canon"���ð��0type.func() "".Rectangle���€��Jtype.func(*"".Rectangle) "".Rectangle�����*"".(*Rectangle).Canon��� ��*"".(*Rectangle).Canon���°��go.string."Dx"���Ð��type.func() int���à��8type.func(*"".Rectangle) int���ð��$"".(*Rectangle).Dx���€��$"".(*Rectangle).Dx�����go.string."Dy"���°��type.func() int���À��8type.func(*"".Rectangle) int���Ð��$"".(*Rectangle).Dy���à��$"".(*Rectangle).Dy���ð��"go.string."Empty"����� type.func() bool��� ��:type.func(*"".Rectangle) bool���°��*"".(*Rectangle).Empty���À��*"".(*Rectangle).Empty���Ð��go.string."Eq"���ð��8type.func("".Rectangle) bool���€��Vtype.func(*"".Rectangle, "".Rectangle) bool�����$"".(*Rectangle).Eq��� ��$"".(*Rectangle).Eq���°��go.string."In"���Ð��8type.func("".Rectangle) bool���à��Vtype.func(*"".Rectangle, "".Rectangle) bool���ð��$"".(*Rectangle).In���€��$"".(*Rectangle).In�����"go.string."Inset"���°��6type.func(int) "".Rectangle���À��Ttype.func(*"".Rectangle, int) "".Rectangle���Ð��*"".(*Rectangle).Inset���à��*"".(*Rectangle).Inset���ð��*go.string."Intersect"�����Htype.func("".Rectangle) "".Rectangle��� ��ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���°��2"".(*Rectangle).Intersect���À��2"".(*Rectangle).Intersect���Ð��(go.string."Overlaps"���ð��8type.func("".Rectangle) bool���€ ��Vtype.func(*"".Rectangle, "".Rectangle) bool��� ��0"".(*Rectangle).Overlaps���  ��0"".(*Rectangle).Overlaps���° �� go.string."Size"���Ð ��(type.func() "".Point���à ��Btype.func(*"".Rectangle) "".Point���ð ��("".(*Rectangle).Size���€
��("".(*Rectangle).Size���
��$go.string."String"���°
��$type.func() string�����>type.func(*"".Rectangle) string���Ð
��,"".(*Rectangle).String���à
��,"".(*Rectangle).String���ð
��go.string."Sub"��� ��@type.func("".Point) "".Rectangle���  ��^type.func(*"".Rectangle, "".Point) "".Rectangle���° ��&"".(*Rectangle).Sub���À ��&"".(*Rectangle).Sub���Ð ��"go.string."Union"���ð ��Htype.func("".Rectangle) "".Rectangle���€ ��ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle��� ��*"".(*Rectangle).Union���  ��*"".(*Rectangle).Union���þ6go.string."image.Rectangle"�@��@���������������image.Rectangle�� �6go.string."image.Rectangle"���þgo.string."Min"�0��(���������������Min�� �go.string."Min"���þgo.string."Max"�0��(���������������Max�� �go.string."Max"���þ|go.string."func(image.Rectangle, image.Point) image.Rectangle"���†��������2�������func(image.Rectangle, image.Point) image.Rectangle�� �|go.string."func(image.Rectangle, image.Point) image.Rectangle"���þ\type.func("".Rectangle, "".Point) "".Rectangle�°��°�������·ç�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��|go.string."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���þJgo.string."func(image.Rectangle) int"�`��T���������������func(image.Rectangle) int�� �Jgo.string."func(image.Rectangle) int"���þ6type.func("".Rectangle) int� �� �������ç9Y¼�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þngo.string."func(image.Rectangle, image.Rectangle) bool"�€��x��������+�������func(image.Rectangle, image.Rectangle) bool�� �ngo.string."func(image.Rectangle, image.Rectangle) bool"���þTtype.func("".Rectangle, "".Rectangle) bool�°��°�������ÿ˜8Ñ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þlgo.string."func(image.Rectangle, int) image.Rectangle"�€��v��������*�������func(image.Rectangle, int) image.Rectangle�� �lgo.string."func(image.Rectangle, int) image.Rectangle"���þRtype.func("".Rectangle, int) "".Rectangle�°��°�������}dÎ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���Ž��������6�������func(image.Rectangle, image.Rectangle) image.Rectangle�� �„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���þdtype.func("".Rectangle, "".Rectangle) "".Rectangle�°��°�������M_Eå�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��„go.string."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���þPgo.string."func(image.Rectangle) string"�`��Z���������������func(image.Rectangle) string�� �Pgo.string."func(image.Rectangle) string"���þ<type.func("".Rectangle) string� �� �������¨Ü7b�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."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���þ"type."".Rectangle��ð ��ð �������£•—É�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������¨ �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��6go.string."image.Rectangle"���p��$type.*"".Rectangle���€��"runtime.zerovalue���À�"type."".Rectangle���À��go.string."Min"���à��type."".Point�����go.string."Max"���°��type."".Point���`à�"type."".Rectangle���à��*go.string."Rectangle"���ð��"go.importpath."".���€°�"type."".Rectangle���°��go.string."Add"���Ð��@type.func("".Point) "".Rectangle���à��\type.func("".Rectangle, "".Point) "".Rectangle���ð��&"".(*Rectangle).Add���€�� "".Rectangle.Add�����"go.string."Canon"���°��0type.func() "".Rectangle���À��Htype.func("".Rectangle) "".Rectangle���Ð��*"".(*Rectangle).Canon���à��$"".Rectangle.Canon���ð��go.string."Dx"�����type.func() int��� ��6type.func("".Rectangle) int���°��$"".(*Rectangle).Dx���À��"".Rectangle.Dx���Ð��go.string."Dy"���ð��type.func() int���€��6type.func("".Rectangle) int�����$"".(*Rectangle).Dy��� ��"".Rectangle.Dy���°��"go.string."Empty"���Ð�� type.func() bool���à��8type.func("".Rectangle) bool���ð��*"".(*Rectangle).Empty���€��$"".Rectangle.Empty�����go.string."Eq"���°��8type.func("".Rectangle) bool���À��Ttype.func("".Rectangle, "".Rectangle) bool���Ð��$"".(*Rectangle).Eq���à��"".Rectangle.Eq���ð��go.string."In"�����8type.func("".Rectangle) bool��� ��Ttype.func("".Rectangle, "".Rectangle) bool���°��$"".(*Rectangle).In���À��"".Rectangle.In���Ð��"go.string."Inset"���ð��6type.func(int) "".Rectangle���€ ��Rtype.func("".Rectangle, int) "".Rectangle��� ��*"".(*Rectangle).Inset���  ��$"".Rectangle.Inset���° ��*go.string."Intersect"���Ð ��Htype.func("".Rectangle) "".Rectangle���à ��dtype.func("".Rectangle, "".Rectangle) "".Rectangle���ð ��2"".(*Rectangle).Intersect���€
��,"".Rectangle.Intersect���
��(go.string."Overlaps"���°
��8type.func("".Rectangle) bool�����Ttype.func("".Rectangle, "".Rectangle) bool���Ð
��0"".(*Rectangle).Overlaps���à
��*"".Rectangle.Overlaps���ð
�� go.string."Size"��� ��(type.func() "".Point���  ��@type.func("".Rectangle) "".Point���° ��("".(*Rectangle).Size���À ��""".Rectangle.Size���Ð ��$go.string."String"���ð ��$type.func() string���€ ��<type.func("".Rectangle) string��� ��,"".(*Rectangle).String���  ��&"".Rectangle.String���° ��go.string."Sub"���Ð ��@type.func("".Point) "".Rectangle���à ��\type.func("".Rectangle, "".Point) "".Rectangle���ð ��&"".(*Rectangle).Sub���€ �� "".Rectangle.Sub��� ��"go.string."Union"���° ��Htype.func("".Rectangle) "".Rectangle���À ��dtype.func("".Rectangle, "".Rectangle) "".Rectangle���Ð ��*"".(*Rectangle).Union���à ��$"".Rectangle.Union���þDgo.string."func() image.Rectangle"�P��N���������������func() image.Rectangle�� �Dgo.string."func() image.Rectangle"���þ0type.func() "".Rectangle����������ìÍ´e�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."func() image.Rectangle"���p��Bgo.weak.type.*func() "".Rectangle���€��"runtime.zerovalue��� €�0type.func() "".Rectangle���Ѐ�0type.func() "".Rectangle���€��"type."".Rectangle���þ<go.string."func() color.Model"�P��F���������������func() color.Model�� �<go.string."func() color.Model"���þ:type.func() image/color.Model����������‚{#�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."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���þ0go.string."*image.Image"�@��:�������� �������*image.Image�� �0go.string."*image.Image"���þtype.*"".Image�� �� �������CL¨è�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Image"���p��.go.weak.type.**"".Image���€��"runtime.zerovalue�����type."".Image���þbruntime.gcbits.0x8c000000000000000000000000000000� �� Œ����������������þ.go.string."image.Image"�@��8�������� �������image.Image�� �.go.string."image.Image"���þgo.string."At"�0��&���������������At�� �go.string."At"���þ$go.string."Bounds"�0��.���������������Bounds�� �$go.string."Bounds"���þ,go.string."ColorModel"�@��6��������
�������ColorModel�� �,go.string."ColorModel"���þ"go.string."Image"�0��,���������������Image�� �"go.string."Image"���þtype."".Image�� �� �������ÜSÍ®����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��.go.string."image.Image"���p��type.*"".Image���€��"runtime.zerovalue���À�type."".Image���À��go.string."At"���à��Jtype.func(int, int) image/color.Color���ð��$go.string."Bounds"�����0type.func() "".Rectangle��� ��,go.string."ColorModel"���À��:type.func() image/color.Model���`Ð�type."".Image���Ð��"go.string."Image"���à��"go.importpath."".���ð �type."".Image���þ`go.string."func(io.Reader) (image.Image, error)"�p��j��������$�������func(io.Reader) (image.Image, error)�� �`go.string."func(io.Reader) (image.Image, error)"���þLtype.func(io.Reader) ("".Image, error)�°��°�������‚ïº@�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."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���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·2dc77d960dd3e4b3de2361f9cbd75783�������������þTgclocals·44568aa369055d8938d809aa5d80843b��������������þTgclocals·9c703c5c7b9c1932c840b69f8ebce236�������������þ0type..hashfunc."".Config��������������(type..hash."".Config���þ,type..eqfunc."".Config��������������$type..eq."".Config���þ&type..alg."".Config� �� �������������������0type..hashfunc."".Config�����,type..eqfunc."".Config���þ2go.string."*image.Config"�@��<�������� �������*image.Config�� �2go.string."*image.Config"���þtype.*"".Config�� �� �������³`y�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.Config"���p��0go.weak.type.**"".Config���€��"runtime.zerovalue�����type."".Config���þbruntime.gcbits.0x8c440000000000000000000000000000� �� ŒD���������������þ0go.string."image.Config"�@��:�������� �������image.Config�� �0go.string."image.Config"���þ"go.string."Width"�0��,���������������Width�� �"go.string."Width"���þ$go.string."Height"�0��.���������������Height�� �$go.string."Height"���þ$go.string."Config"�0��.���������������Config�� �$go.string."Config"���þtype."".Config��€��€ �������Y³¯g��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��&type..alg."".Config���0��bruntime.gcbits.0x8c440000000000000000000000000000���P��0go.string."image.Config"���p��type.*"".Config���€��"runtime.zerovalue���À�type."".Config���À��,go.string."ColorModel"���à��,type.image/color.Model�����"go.string."Width"���°��type.int���à��$go.string."Height"���€��type.int���`°�type."".Config���°��$go.string."Config"���À��"go.importpath."".���Ѐ�type."".Config���þbgo.string."func(io.Reader) (image.Config, error)"�p��l��������%�������func(io.Reader) (image.Config, error)�� �bgo.string."func(io.Reader) (image.Config, error)"���þNtype.func(io.Reader) ("".Config, error)�°��°�������ã3/ö�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."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���þ2go.string."*image.format"�@��<�������� �������*image.format�� �2go.string."*image.format"���þtype.*"".format�� �� �������ÃQ@M�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.format"���p��0go.weak.type.**"".format���€��"runtime.zerovalue�����type."".format���þbruntime.gcbits.0x48488800000000000000000000000000� �� HHˆ��������������þ0go.string."image.format"�@��:�������� �������image.format�� �0go.string."image.format"���þ go.string."name"�0��*���������������name�� � go.string."name"���þ"go.string."magic"�0��,���������������magic�� �"go.string."magic"���þ$go.string."decode"�0��.���������������decode�� �$go.string."decode"���þ0go.string."decodeConfig"�@��:�������� �������decodeConfig�� �0go.string."decodeConfig"���þ$go.string."format"�0��.���������������format�� �$go.string."format"���þtype."".format��Ð��Ð0�������ˆ@7¨���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������(�����������������������������������������������, à� runtime.algarray���0��bruntime.gcbits.0x48488800000000000000000000000000���P��0go.string."image.format"���p��type.*"".format���€��"runtime.zerovalue���À�type."".format���À�� go.string."name"���Ð��"go.importpath."".���à��type.string�����"go.string."magic"��� ��"go.importpath."".���°��type.string���à��$go.string."decode"���ð��"go.importpath."".���€��Ltype.func(io.Reader) ("".Image, error)���°��0go.string."decodeConfig"���À��"go.importpath."".���Ð��Ntype.func(io.Reader) ("".Config, error)���`€�type."".format���€��$go.string."format"�����"go.importpath."".��� Ð�type."".format���þbruntime.gcbits.0x48844400000000000000000000000000� �� H„D��������������þ4go.string."[]image.format"�@��>���������������[]image.format�� �4go.string."[]image.format"���þ type.[]"".format� �� �������2{1�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��4go.string."[]image.format"���p��2go.weak.type.*[]"".format���€��"runtime.zerovalue�����type."".format���þLgo.typelink.[]image.format/[]"".format�������������� type.[]"".format���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·948ab5f4265e4119ed2d517cebe54897�������������þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·334cb8bc6294eb0b97ffb9b2c8e3805f���������+����þ&go.string."[]uint8"�0��0���������������[]uint8�� �&go.string."[]uint8"���þtype.[]uint8� �� �������ß~.8�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��&go.string."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8/[]uint8��������������type.[]uint8���þLgo.string."func(int) ([]uint8, error)"�`��V���������������func(int) ([]uint8, error)�� �Lgo.string."func(int) ([]uint8, error)"���þ>type.func(int) ([]uint8, error)�°��°�������<bCË�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þLgo.string."func([]uint8) (int, error)"�`��V���������������func([]uint8) (int, error)�� �Lgo.string."func([]uint8) (int, error)"���þ>type.func([]uint8) (int, error)�°��°�������„N4P�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þ2go.string."*image.reader"�@��<�������� �������*image.reader�� �2go.string."*image.reader"���þtype.*"".reader�� �� �������Œˆ–�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.reader"���p��0go.weak.type.**"".reader���€��"runtime.zerovalue�����type."".reader���þ0go.string."image.reader"�@��:�������� �������image.reader�� �0go.string."image.reader"���þ go.string."Peek"�0��*���������������Peek�� � go.string."Peek"���þ go.string."Read"�0��*���������������Read�� � go.string."Read"���þ$go.string."reader"�0��.���������������reader�� �$go.string."reader"���þtype."".reader��ð��ð������� ²€����������������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��0go.string."image.reader"���p��type.*"".reader���€��"runtime.zerovalue���À�type."".reader���À�� go.string."Peek"���à��>type.func(int) ([]uint8, error)���ð�� go.string."Read"�����>type.func([]uint8) (int, error)���` �type."".reader��� ��$go.string."reader"���°��"go.importpath."".���Àð�type."".reader���þbruntime.gcbits.0x48444444000000000000000000000000� �� HDDD�������������þ,go.string."image.RGBA"�@��6��������
�������image.RGBA�� �,go.string."image.RGBA"���þgo.string."Pix"�0��(���������������Pix�� �go.string."Pix"���þ$go.string."Stride"�0��.���������������Stride�� �$go.string."Stride"���þ go.string."Rect"�0��*���������������Rect�� � go.string."Rect"���þ go.string."RGBA"�0��*���������������RGBA�� � go.string."RGBA"���þtype."".RGBA��€��€@�������>#VÄ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��,go.string."image.RGBA"���p��type.*"".RGBA���€��"runtime.zerovalue���À�type."".RGBA���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".RGBA���°�� go.string."RGBA"���À��"go.importpath."".���Ѐ�type."".RGBA���þ.go.string."*image.RGBA"�@��8�������� �������*image.RGBA�� �.go.string."*image.RGBA"���þfgo.string."func(*image.RGBA, int, int) color.Color"�p��p��������'�������func(*image.RGBA, int, int) color.Color�� �fgo.string."func(*image.RGBA, int, int) color.Color"���þ^type.func(*"".RGBA, int, int) image/color.Color�À��À�������ì‡;ƒ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þZgo.string."func(*image.RGBA) image.Rectangle"�p��d��������!�������func(*image.RGBA) image.Rectangle�� �Zgo.string."func(*image.RGBA) image.Rectangle"���þ@type.func(*"".RGBA) "".Rectangle� �� �������VbX �3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þRgo.string."func(*image.RGBA) color.Model"�`��\���������������func(*image.RGBA) color.Model�� �Rgo.string."func(*image.RGBA) color.Model"���þJtype.func(*"".RGBA) image/color.Model� �� �������;àmì�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þDgo.string."func(*image.RGBA) bool"�P��N���������������func(*image.RGBA) bool�� �Dgo.string."func(*image.RGBA) bool"���þ0type.func(*"".RGBA) bool� �� ������� ÆÇ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."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���þVgo.string."func(*image.RGBA, int, int) int"�`��`���������������func(*image.RGBA, int, int) int�� �Vgo.string."func(*image.RGBA, int, int) int"���þBtype.func(*"".RGBA, int, int) int�À��À�������Óãf·�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."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���þdgo.string."func(*image.RGBA, int, int) color.RGBA"�p��n��������&�������func(*image.RGBA, int, int) color.RGBA�� �dgo.string."func(*image.RGBA, int, int) color.RGBA"���þ\type.func(*"".RGBA, int, int) image/color.RGBA�À��À�������:-�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."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���þhgo.string."func(*image.RGBA, int, int, color.Color)"�€��r��������(�������func(*image.RGBA, int, int, color.Color)�� �hgo.string."func(*image.RGBA, int, int, color.Color)"���þ`type.func(*"".RGBA, int, int, image/color.Color)�À��À�������ÿâ¤�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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���þfgo.string."func(*image.RGBA, int, int, color.RGBA)"�p��p��������'�������func(*image.RGBA, int, int, color.RGBA)�� �fgo.string."func(*image.RGBA, int, int, color.RGBA)"���þ^type.func(*"".RGBA, int, int, image/color.RGBA)�À��À�������çe1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þtgo.string."func(*image.RGBA, image.Rectangle) image.Image"�€��~��������.�������func(*image.RGBA, image.Rectangle) image.Image�� �tgo.string."func(*image.RGBA, image.Rectangle) image.Image"���þTtype.func(*"".RGBA, "".Rectangle) "".Image�°��°������� ˬ‹�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."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.string."Opaque"�0��.���������������Opaque�� �$go.string."Opaque"���þ*go.string."PixOffset"�@��4�������� �������PixOffset�� �*go.string."PixOffset"���þ<go.string."func(int, int) int"�P��F���������������func(int, int) int�� �<go.string."func(int, int) int"���þ.type.func(int, int) int�°��°�������ÌBu�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."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���þ$go.string."RGBAAt"�0��.���������������RGBAAt�� �$go.string."RGBAAt"���þJgo.string."func(int, int) color.RGBA"�`��T���������������func(int, int) color.RGBA�� �Jgo.string."func(int, int) color.RGBA"���þHtype.func(int, int) image/color.RGBA�°��°�������M‹g�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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.string."Set"�0��(���������������Set�� �go.string."Set"���þNgo.string."func(int, int, color.Color)"�`��X���������������func(int, int, color.Color)�� �Ngo.string."func(int, int, color.Color)"���þLtype.func(int, int, image/color.Color)�°��°�������md~Õ�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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.string."SetRGBA"�0��0���������������SetRGBA�� �&go.string."SetRGBA"���þLgo.string."func(int, int, color.RGBA)"�`��V���������������func(int, int, color.RGBA)�� �Lgo.string."func(int, int, color.RGBA)"���þJtype.func(int, int, image/color.RGBA)�°��°�������qÌ$�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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.string."SubImage"�@��2���������������SubImage�� �(go.string."SubImage"���þZgo.string."func(image.Rectangle) image.Image"�p��d��������!�������func(image.Rectangle) image.Image�� �Zgo.string."func(image.Rectangle) image.Image"���þ@type.func("".Rectangle) "".Image� �� �������wûÁ£�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þtype.*"".RGBA��Ð��Ð�������çª�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*image.RGBA"���p��,go.weak.type.**"".RGBA���€��"runtime.zerovalue�����type."".RGBA���` �type.*"".RGBA���Àð�type.*"".RGBA���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".RGBA, int, int) image/color.Color���°��"".(*RGBA).At���À��"".(*RGBA).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".RGBA) "".Rectangle�����""".(*RGBA).Bounds��� ��""".(*RGBA).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".RGBA) image/color.Model���ð��*"".(*RGBA).ColorModel���€��*"".(*RGBA).ColorModel�����$go.string."Opaque"���°�� type.func() bool���À��0type.func(*"".RGBA) bool���Ð��""".(*RGBA).Opaque���à��""".(*RGBA).Opaque���ð��*go.string."PixOffset"�����.type.func(int, int) int��� ��Btype.func(*"".RGBA, int, int) int���°��("".(*RGBA).PixOffset���À��("".(*RGBA).PixOffset���Ð��$go.string."RGBAAt"���ð��Htype.func(int, int) image/color.RGBA���€��\type.func(*"".RGBA, int, int) image/color.RGBA�����""".(*RGBA).RGBAAt��� ��""".(*RGBA).RGBAAt���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".RGBA, int, int, image/color.Color)���ð��"".(*RGBA).Set���€��"".(*RGBA).Set�����&go.string."SetRGBA"���°��Jtype.func(int, int, image/color.RGBA)���À��^type.func(*"".RGBA, int, int, image/color.RGBA)���Ð��$"".(*RGBA).SetRGBA���à��$"".(*RGBA).SetRGBA���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".RGBA, "".Rectangle) "".Image���°��&"".(*RGBA).SubImage���À��&"".(*RGBA).SubImage���þ0go.string."image.RGBA64"�@��:�������� �������image.RGBA64�� �0go.string."image.RGBA64"���þ$go.string."RGBA64"�0��.���������������RGBA64�� �$go.string."RGBA64"���þtype."".RGBA64��€��€@�������Z˜4…���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��0go.string."image.RGBA64"���p��type.*"".RGBA64���€��"runtime.zerovalue���À�type."".RGBA64���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".RGBA64���°��$go.string."RGBA64"���À��"go.importpath."".���Ѐ�type."".RGBA64���þ2go.string."*image.RGBA64"�@��<�������� �������*image.RGBA64�� �2go.string."*image.RGBA64"���þjgo.string."func(*image.RGBA64, int, int) color.Color"�€��t��������)�������func(*image.RGBA64, int, int) color.Color�� �jgo.string."func(*image.RGBA64, int, int) color.Color"���þbtype.func(*"".RGBA64, int, int) image/color.Color�À��À�������¸ØIx�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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.string."func(*image.RGBA64) image.Rectangle"�p��h��������#�������func(*image.RGBA64) image.Rectangle�� �^go.string."func(*image.RGBA64) image.Rectangle"���þDtype.func(*"".RGBA64) "".Rectangle� �� �������LÜç�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."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���þVgo.string."func(*image.RGBA64) color.Model"�`��`���������������func(*image.RGBA64) color.Model�� �Vgo.string."func(*image.RGBA64) color.Model"���þNtype.func(*"".RGBA64) image/color.Model� �� �������M\a�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."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���þHgo.string."func(*image.RGBA64) bool"�`��R���������������func(*image.RGBA64) bool�� �Hgo.string."func(*image.RGBA64) bool"���þ4type.func(*"".RGBA64) bool� �� �������`Ù �3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."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���þZgo.string."func(*image.RGBA64, int, int) int"�p��d��������!�������func(*image.RGBA64, int, int) int�� �Zgo.string."func(*image.RGBA64, int, int) int"���þFtype.func(*"".RGBA64, int, int) int�À��À�������‡ ¹ë�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þlgo.string."func(*image.RGBA64, int, int) color.RGBA64"�€��v��������*�������func(*image.RGBA64, int, int) color.RGBA64�� �lgo.string."func(*image.RGBA64, int, int) color.RGBA64"���þdtype.func(*"".RGBA64, int, int) image/color.RGBA64�À��À�������ÿ·c6�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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���þlgo.string."func(*image.RGBA64, int, int, color.Color)"�€��v��������*�������func(*image.RGBA64, int, int, color.Color)�� �lgo.string."func(*image.RGBA64, int, int, color.Color)"���þdtype.func(*"".RGBA64, int, int, image/color.Color)�À��À�������”Ò1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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���þngo.string."func(*image.RGBA64, int, int, color.RGBA64)"�€��x��������+�������func(*image.RGBA64, int, int, color.RGBA64)�� �ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"���þftype.func(*"".RGBA64, int, int, image/color.RGBA64)�À��À�������H‹¥ÿ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þxgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���‚��������0�������func(*image.RGBA64, image.Rectangle) image.Image�� �xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���þXtype.func(*"".RGBA64, "".Rectangle) "".Image�°��°�������9»z¥�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��xgo.string."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.string."RGBA64At"�@��2���������������RGBA64At�� �(go.string."RGBA64At"���þNgo.string."func(int, int) color.RGBA64"�`��X���������������func(int, int) color.RGBA64�� �Ngo.string."func(int, int) color.RGBA64"���þLtype.func(int, int) image/color.RGBA64�°��°�������BÆ»�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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.string."SetRGBA64"�@��4�������� �������SetRGBA64�� �*go.string."SetRGBA64"���þPgo.string."func(int, int, color.RGBA64)"�`��Z���������������func(int, int, color.RGBA64)�� �Pgo.string."func(int, int, color.RGBA64)"���þNtype.func(int, int, image/color.RGBA64)�°��°�������$‹àw�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."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���þtype.*"".RGBA64��Ð��Ð�������‰Ò§�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.RGBA64"���p��0go.weak.type.**"".RGBA64���€��"runtime.zerovalue�����type."".RGBA64���` �type.*"".RGBA64���Àð�type.*"".RGBA64���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".RGBA64, int, int) image/color.Color���°��"".(*RGBA64).At���À��"".(*RGBA64).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".RGBA64) "".Rectangle�����&"".(*RGBA64).Bounds��� ��&"".(*RGBA64).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".RGBA64) image/color.Model���ð��."".(*RGBA64).ColorModel���€��."".(*RGBA64).ColorModel�����$go.string."Opaque"���°�� type.func() bool���À��4type.func(*"".RGBA64) bool���Ð��&"".(*RGBA64).Opaque���à��&"".(*RGBA64).Opaque���ð��*go.string."PixOffset"�����.type.func(int, int) int��� ��Ftype.func(*"".RGBA64, int, int) int���°��,"".(*RGBA64).PixOffset���À��,"".(*RGBA64).PixOffset���Ð��(go.string."RGBA64At"���ð��Ltype.func(int, int) image/color.RGBA64���€��dtype.func(*"".RGBA64, int, int) image/color.RGBA64�����*"".(*RGBA64).RGBA64At��� ��*"".(*RGBA64).RGBA64At���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".RGBA64, int, int, image/color.Color)���ð�� "".(*RGBA64).Set���€�� "".(*RGBA64).Set�����*go.string."SetRGBA64"���°��Ntype.func(int, int, image/color.RGBA64)���À��ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���Ð��,"".(*RGBA64).SetRGBA64���à��,"".(*RGBA64).SetRGBA64���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".RGBA64, "".Rectangle) "".Image���°��*"".(*RGBA64).SubImage���À��*"".(*RGBA64).SubImage���þ.go.string."image.NRGBA"�@��8�������� �������image.NRGBA�� �.go.string."image.NRGBA"���þ"go.string."NRGBA"�0��,���������������NRGBA�� �"go.string."NRGBA"���þtype."".NRGBA��€��€@�������‘ü���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��.go.string."image.NRGBA"���p��type.*"".NRGBA���€��"runtime.zerovalue���À�type."".NRGBA���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".NRGBA���°��"go.string."NRGBA"���À��"go.importpath."".���Ѐ�type."".NRGBA���þ0go.string."*image.NRGBA"�@��:�������� �������*image.NRGBA�� �0go.string."*image.NRGBA"���þhgo.string."func(*image.NRGBA, int, int) color.Color"�€��r��������(�������func(*image.NRGBA, int, int) color.Color�� �hgo.string."func(*image.NRGBA, int, int) color.Color"���þ`type.func(*"".NRGBA, int, int) image/color.Color�À��À������� Ó÷ì�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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.string."func(*image.NRGBA) image.Rectangle"�p��f��������"�������func(*image.NRGBA) image.Rectangle�� �\go.string."func(*image.NRGBA) image.Rectangle"���þBtype.func(*"".NRGBA) "".Rectangle� �� �������>÷La�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þTgo.string."func(*image.NRGBA) color.Model"�`��^���������������func(*image.NRGBA) color.Model�� �Tgo.string."func(*image.NRGBA) color.Model"���þLtype.func(*"".NRGBA) image/color.Model� �� �������˜™×@�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."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���þhgo.string."func(*image.NRGBA, int, int) color.NRGBA"�€��r��������(�������func(*image.NRGBA, int, int) color.NRGBA�� �hgo.string."func(*image.NRGBA, int, int) color.NRGBA"���þ`type.func(*"".NRGBA, int, int) image/color.NRGBA�À��À�������¼\ƒÈ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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���þFgo.string."func(*image.NRGBA) bool"�P��P���������������func(*image.NRGBA) bool�� �Fgo.string."func(*image.NRGBA) bool"���þ2type.func(*"".NRGBA) bool� �� �������ڏ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."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���þXgo.string."func(*image.NRGBA, int, int) int"�p��b�������� �������func(*image.NRGBA, int, int) int�� �Xgo.string."func(*image.NRGBA, int, int) int"���þDtype.func(*"".NRGBA, int, int) int�À��À�������¿¹�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þjgo.string."func(*image.NRGBA, int, int, color.Color)"�€��t��������)�������func(*image.NRGBA, int, int, color.Color)�� �jgo.string."func(*image.NRGBA, int, int, color.Color)"���þbtype.func(*"".NRGBA, int, int, image/color.Color)�À��À�������Ý»ìû�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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���þjgo.string."func(*image.NRGBA, int, int, color.NRGBA)"�€��t��������)�������func(*image.NRGBA, int, int, color.NRGBA)�� �jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"���þbtype.func(*"".NRGBA, int, int, image/color.NRGBA)�À��À�������ÏƛÈ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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���þvgo.string."func(*image.NRGBA, image.Rectangle) image.Image"�€��€��������/�������func(*image.NRGBA, image.Rectangle) image.Image�� �vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"���þVtype.func(*"".NRGBA, "".Rectangle) "".Image�°��°�������Drӂ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."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.string."NRGBAAt"�0��0���������������NRGBAAt�� �&go.string."NRGBAAt"���þLgo.string."func(int, int) color.NRGBA"�`��V���������������func(int, int) color.NRGBA�� �Lgo.string."func(int, int) color.NRGBA"���þJtype.func(int, int) image/color.NRGBA�°��°�������Ä �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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.string."SetNRGBA"�@��2���������������SetNRGBA�� �(go.string."SetNRGBA"���þNgo.string."func(int, int, color.NRGBA)"�`��X���������������func(int, int, color.NRGBA)�� �Ngo.string."func(int, int, color.NRGBA)"���þLtype.func(int, int, image/color.NRGBA)�°��°������� ‚�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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���þtype.*"".NRGBA��Ð��Ð������� ö“*�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.NRGBA"���p��.go.weak.type.**"".NRGBA���€��"runtime.zerovalue�����type."".NRGBA���` �type.*"".NRGBA���Àð�type.*"".NRGBA���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".NRGBA, int, int) image/color.Color���°��"".(*NRGBA).At���À��"".(*NRGBA).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".NRGBA) "".Rectangle�����$"".(*NRGBA).Bounds��� ��$"".(*NRGBA).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ltype.func(*"".NRGBA) image/color.Model���ð��,"".(*NRGBA).ColorModel���€��,"".(*NRGBA).ColorModel�����&go.string."NRGBAAt"���°��Jtype.func(int, int) image/color.NRGBA���À��`type.func(*"".NRGBA, int, int) image/color.NRGBA���Ð��&"".(*NRGBA).NRGBAAt���à��&"".(*NRGBA).NRGBAAt���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".NRGBA) bool���°��$"".(*NRGBA).Opaque���À��$"".(*NRGBA).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".NRGBA, int, int) int�����*"".(*NRGBA).PixOffset��� ��*"".(*NRGBA).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".NRGBA, int, int, image/color.Color)���ð��"".(*NRGBA).Set���€��"".(*NRGBA).Set�����(go.string."SetNRGBA"���°��Ltype.func(int, int, image/color.NRGBA)���À��btype.func(*"".NRGBA, int, int, image/color.NRGBA)���Ð��("".(*NRGBA).SetNRGBA���à��("".(*NRGBA).SetNRGBA���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".NRGBA, "".Rectangle) "".Image���°��("".(*NRGBA).SubImage���À��("".(*NRGBA).SubImage���þ2go.string."image.NRGBA64"�@��<�������� �������image.NRGBA64�� �2go.string."image.NRGBA64"���þ&go.string."NRGBA64"�0��0���������������NRGBA64�� �&go.string."NRGBA64"���þtype."".NRGBA64��€��€@�������Ûr»ò���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��2go.string."image.NRGBA64"���p�� type.*"".NRGBA64���€��"runtime.zerovalue���À�type."".NRGBA64���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".NRGBA64���°��&go.string."NRGBA64"���À��"go.importpath."".���Ѐ�type."".NRGBA64���þ4go.string."*image.NRGBA64"�@��>���������������*image.NRGBA64�� �4go.string."*image.NRGBA64"���þlgo.string."func(*image.NRGBA64, int, int) color.Color"�€��v��������*�������func(*image.NRGBA64, int, int) color.Color�� �lgo.string."func(*image.NRGBA64, int, int) color.Color"���þdtype.func(*"".NRGBA64, int, int) image/color.Color�À��À�������;m¬&�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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.string."func(*image.NRGBA64) image.Rectangle"�p��j��������$�������func(*image.NRGBA64) image.Rectangle�� �`go.string."func(*image.NRGBA64) image.Rectangle"���þFtype.func(*"".NRGBA64) "".Rectangle� �� �������Éa�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."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���þXgo.string."func(*image.NRGBA64) color.Model"�p��b�������� �������func(*image.NRGBA64) color.Model�� �Xgo.string."func(*image.NRGBA64) color.Model"���þPtype.func(*"".NRGBA64) image/color.Model� �� �������Ãòlz�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þpgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"�€��z��������,�������func(*image.NRGBA64, int, int) color.NRGBA64�� �pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"���þhtype.func(*"".NRGBA64, int, int) image/color.NRGBA64�À��À�������RbK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."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���þJgo.string."func(*image.NRGBA64) bool"�`��T���������������func(*image.NRGBA64) bool�� �Jgo.string."func(*image.NRGBA64) bool"���þ6type.func(*"".NRGBA64) bool� �� �������\U¸�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þ\go.string."func(*image.NRGBA64, int, int) int"�p��f��������"�������func(*image.NRGBA64, int, int) int�� �\go.string."func(*image.NRGBA64, int, int) int"���þHtype.func(*"".NRGBA64, int, int) int�À��À�������³rY�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þngo.string."func(*image.NRGBA64, int, int, color.Color)"�€��x��������+�������func(*image.NRGBA64, int, int, color.Color)�� �ngo.string."func(*image.NRGBA64, int, int, color.Color)"���þftype.func(*"".NRGBA64, int, int, image/color.Color)�À��À�������…Ém�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þrgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"�€��|��������-�������func(*image.NRGBA64, int, int, color.NRGBA64)�� �rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"���þjtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)�À��À�������ëFL|�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."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���þzgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���„��������1�������func(*image.NRGBA64, image.Rectangle) image.Image�� �zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���þZtype.func(*"".NRGBA64, "".Rectangle) "".Image�°��°�������hÀî¦�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��zgo.string."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.string."NRGBA64At"�@��4�������� �������NRGBA64At�� �*go.string."NRGBA64At"���þPgo.string."func(int, int) color.NRGBA64"�`��Z���������������func(int, int) color.NRGBA64�� �Pgo.string."func(int, int) color.NRGBA64"���þNtype.func(int, int) image/color.NRGBA64�°��°�������|¨c0�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."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.string."SetNRGBA64"�@��6��������
�������SetNRGBA64�� �,go.string."SetNRGBA64"���þRgo.string."func(int, int, color.NRGBA64)"�`��\���������������func(int, int, color.NRGBA64)�� �Rgo.string."func(int, int, color.NRGBA64)"���þPtype.func(int, int, image/color.NRGBA64)�°��°�������·M;s�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þ type.*"".NRGBA64��Ð��Ð�������ôOR�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.NRGBA64"���p��2go.weak.type.**"".NRGBA64���€��"runtime.zerovalue�����type."".NRGBA64���` � type.*"".NRGBA64���Àð� type.*"".NRGBA64���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".NRGBA64, int, int) image/color.Color���°�� "".(*NRGBA64).At���À�� "".(*NRGBA64).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".NRGBA64) "".Rectangle�����("".(*NRGBA64).Bounds��� ��("".(*NRGBA64).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".NRGBA64) image/color.Model���ð��0"".(*NRGBA64).ColorModel���€��0"".(*NRGBA64).ColorModel�����*go.string."NRGBA64At"���°��Ntype.func(int, int) image/color.NRGBA64���À��htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���Ð��."".(*NRGBA64).NRGBA64At���à��."".(*NRGBA64).NRGBA64At���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".NRGBA64) bool���°��("".(*NRGBA64).Opaque���À��("".(*NRGBA64).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".NRGBA64, int, int) int�����."".(*NRGBA64).PixOffset��� ��."".(*NRGBA64).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".NRGBA64, int, int, image/color.Color)���ð��""".(*NRGBA64).Set���€��""".(*NRGBA64).Set�����,go.string."SetNRGBA64"���°��Ptype.func(int, int, image/color.NRGBA64)���À��jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���Ð��0"".(*NRGBA64).SetNRGBA64���à��0"".(*NRGBA64).SetNRGBA64���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���°��,"".(*NRGBA64).SubImage���À��,"".(*NRGBA64).SubImage���þ.go.string."image.Alpha"�@��8�������� �������image.Alpha�� �.go.string."image.Alpha"���þ"go.string."Alpha"�0��,���������������Alpha�� �"go.string."Alpha"���þtype."".Alpha��€��€@�������×,=Ò���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��.go.string."image.Alpha"���p��type.*"".Alpha���€��"runtime.zerovalue���À�type."".Alpha���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Alpha���°��"go.string."Alpha"���À��"go.importpath."".���Ѐ�type."".Alpha���þ0go.string."*image.Alpha"�@��:�������� �������*image.Alpha�� �0go.string."*image.Alpha"���þhgo.string."func(*image.Alpha, int, int) color.Alpha"�€��r��������(�������func(*image.Alpha, int, int) color.Alpha�� �hgo.string."func(*image.Alpha, int, int) color.Alpha"���þ`type.func(*"".Alpha, int, int) image/color.Alpha�À��À�������Š>ˆ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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���þhgo.string."func(*image.Alpha, int, int) color.Color"�€��r��������(�������func(*image.Alpha, int, int) color.Color�� �hgo.string."func(*image.Alpha, int, int) color.Color"���þ`type.func(*"".Alpha, int, int) image/color.Color�À��À�������™dfú�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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.string."func(*image.Alpha) image.Rectangle"�p��f��������"�������func(*image.Alpha) image.Rectangle�� �\go.string."func(*image.Alpha) image.Rectangle"���þBtype.func(*"".Alpha) "".Rectangle� �� �������ӓôt�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þTgo.string."func(*image.Alpha) color.Model"�`��^���������������func(*image.Alpha) color.Model�� �Tgo.string."func(*image.Alpha) color.Model"���þLtype.func(*"".Alpha) image/color.Model� �� �������ë‹çY�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."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���þFgo.string."func(*image.Alpha) bool"�P��P���������������func(*image.Alpha) bool�� �Fgo.string."func(*image.Alpha) bool"���þ2type.func(*"".Alpha) bool� �� �������ÂgPO�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."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���þXgo.string."func(*image.Alpha, int, int) int"�p��b�������� �������func(*image.Alpha, int, int) int�� �Xgo.string."func(*image.Alpha, int, int) int"���þDtype.func(*"".Alpha, int, int) int�À��À�������—½ìw�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þjgo.string."func(*image.Alpha, int, int, color.Color)"�€��t��������)�������func(*image.Alpha, int, int, color.Color)�� �jgo.string."func(*image.Alpha, int, int, color.Color)"���þbtype.func(*"".Alpha, int, int, image/color.Color)�À��À�������¾ª}�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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���þjgo.string."func(*image.Alpha, int, int, color.Alpha)"�€��t��������)�������func(*image.Alpha, int, int, color.Alpha)�� �jgo.string."func(*image.Alpha, int, int, color.Alpha)"���þbtype.func(*"".Alpha, int, int, image/color.Alpha)�À��À�������¿L1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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���þvgo.string."func(*image.Alpha, image.Rectangle) image.Image"�€��€��������/�������func(*image.Alpha, image.Rectangle) image.Image�� �vgo.string."func(*image.Alpha, image.Rectangle) image.Image"���þVtype.func(*"".Alpha, "".Rectangle) "".Image�°��°�������ۀŸ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."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.string."AlphaAt"�0��0���������������AlphaAt�� �&go.string."AlphaAt"���þLgo.string."func(int, int) color.Alpha"�`��V���������������func(int, int) color.Alpha�� �Lgo.string."func(int, int) color.Alpha"���þJtype.func(int, int) image/color.Alpha�°��°�������t=¼ü�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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.string."SetAlpha"�@��2���������������SetAlpha�� �(go.string."SetAlpha"���þNgo.string."func(int, int, color.Alpha)"�`��X���������������func(int, int, color.Alpha)�� �Ngo.string."func(int, int, color.Alpha)"���þLtype.func(int, int, image/color.Alpha)�°��°�������5·CP�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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���þtype.*"".Alpha��Ð��Ð�������Úܸ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Alpha"���p��.go.weak.type.**"".Alpha���€��"runtime.zerovalue�����type."".Alpha���` �type.*"".Alpha���Àð�type.*"".Alpha���ð��&go.string."AlphaAt"�����Jtype.func(int, int) image/color.Alpha��� ��`type.func(*"".Alpha, int, int) image/color.Alpha���°��&"".(*Alpha).AlphaAt���À��&"".(*Alpha).AlphaAt���Ð��go.string."At"���ð��Jtype.func(int, int) image/color.Color���€��`type.func(*"".Alpha, int, int) image/color.Color�����"".(*Alpha).At��� ��"".(*Alpha).At���°��$go.string."Bounds"���Ð��0type.func() "".Rectangle���à��Btype.func(*"".Alpha) "".Rectangle���ð��$"".(*Alpha).Bounds���€��$"".(*Alpha).Bounds�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".Alpha) image/color.Model���Ð��,"".(*Alpha).ColorModel���à��,"".(*Alpha).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".Alpha) bool���°��$"".(*Alpha).Opaque���À��$"".(*Alpha).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".Alpha, int, int) int�����*"".(*Alpha).PixOffset��� ��*"".(*Alpha).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".Alpha, int, int, image/color.Color)���ð��"".(*Alpha).Set���€��"".(*Alpha).Set�����(go.string."SetAlpha"���°��Ltype.func(int, int, image/color.Alpha)���À��btype.func(*"".Alpha, int, int, image/color.Alpha)���Ð��("".(*Alpha).SetAlpha���à��("".(*Alpha).SetAlpha���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".Alpha, "".Rectangle) "".Image���°��("".(*Alpha).SubImage���À��("".(*Alpha).SubImage���þ2go.string."image.Alpha16"�@��<�������� �������image.Alpha16�� �2go.string."image.Alpha16"���þ&go.string."Alpha16"�0��0���������������Alpha16�� �&go.string."Alpha16"���þtype."".Alpha16��€��€@�������àD·{���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��2go.string."image.Alpha16"���p�� type.*"".Alpha16���€��"runtime.zerovalue���À�type."".Alpha16���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Alpha16���°��&go.string."Alpha16"���À��"go.importpath."".���Ѐ�type."".Alpha16���þ4go.string."*image.Alpha16"�@��>���������������*image.Alpha16�� �4go.string."*image.Alpha16"���þpgo.string."func(*image.Alpha16, int, int) color.Alpha16"�€��z��������,�������func(*image.Alpha16, int, int) color.Alpha16�� �pgo.string."func(*image.Alpha16, int, int) color.Alpha16"���þhtype.func(*"".Alpha16, int, int) image/color.Alpha16�À��À�������iÀ•¾�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."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���þlgo.string."func(*image.Alpha16, int, int) color.Color"�€��v��������*�������func(*image.Alpha16, int, int) color.Color�� �lgo.string."func(*image.Alpha16, int, int) color.Color"���þdtype.func(*"".Alpha16, int, int) image/color.Color�À��À�������¿[€­�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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.string."func(*image.Alpha16) image.Rectangle"�p��j��������$�������func(*image.Alpha16) image.Rectangle�� �`go.string."func(*image.Alpha16) image.Rectangle"���þFtype.func(*"".Alpha16) "".Rectangle� �� �������„„^;�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."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���þXgo.string."func(*image.Alpha16) color.Model"�p��b�������� �������func(*image.Alpha16) color.Model�� �Xgo.string."func(*image.Alpha16) color.Model"���þPtype.func(*"".Alpha16) image/color.Model� �� �������#*ëN�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þJgo.string."func(*image.Alpha16) bool"�`��T���������������func(*image.Alpha16) bool�� �Jgo.string."func(*image.Alpha16) bool"���þ6type.func(*"".Alpha16) bool� �� �������‘bcÁ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þ\go.string."func(*image.Alpha16, int, int) int"�p��f��������"�������func(*image.Alpha16, int, int) int�� �\go.string."func(*image.Alpha16, int, int) int"���þHtype.func(*"".Alpha16, int, int) int�À��À�������¶ žK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þngo.string."func(*image.Alpha16, int, int, color.Color)"�€��x��������+�������func(*image.Alpha16, int, int, color.Color)�� �ngo.string."func(*image.Alpha16, int, int, color.Color)"���þftype.func(*"".Alpha16, int, int, image/color.Color)�À��À�������Ž°¢h�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þrgo.string."func(*image.Alpha16, int, int, color.Alpha16)"�€��|��������-�������func(*image.Alpha16, int, int, color.Alpha16)�� �rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"���þjtype.func(*"".Alpha16, int, int, image/color.Alpha16)�À��À������� &œõ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."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���þzgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���„��������1�������func(*image.Alpha16, image.Rectangle) image.Image�� �zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���þZtype.func(*"".Alpha16, "".Rectangle) "".Image�°��°�������i—8 �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��zgo.string."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.string."Alpha16At"�@��4�������� �������Alpha16At�� �*go.string."Alpha16At"���þPgo.string."func(int, int) color.Alpha16"�`��Z���������������func(int, int) color.Alpha16�� �Pgo.string."func(int, int) color.Alpha16"���þNtype.func(int, int) image/color.Alpha16�°��°�������AŒd!�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."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.string."SetAlpha16"�@��6��������
�������SetAlpha16�� �,go.string."SetAlpha16"���þRgo.string."func(int, int, color.Alpha16)"�`��\���������������func(int, int, color.Alpha16)�� �Rgo.string."func(int, int, color.Alpha16)"���þPtype.func(int, int, image/color.Alpha16)�°��°�������ø­Z|�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þ type.*"".Alpha16��Ð��Ð�������6L”æ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.Alpha16"���p��2go.weak.type.**"".Alpha16���€��"runtime.zerovalue�����type."".Alpha16���` � type.*"".Alpha16���Àð� type.*"".Alpha16���ð��*go.string."Alpha16At"�����Ntype.func(int, int) image/color.Alpha16��� ��htype.func(*"".Alpha16, int, int) image/color.Alpha16���°��."".(*Alpha16).Alpha16At���À��."".(*Alpha16).Alpha16At���Ð��go.string."At"���ð��Jtype.func(int, int) image/color.Color���€��dtype.func(*"".Alpha16, int, int) image/color.Color����� "".(*Alpha16).At��� �� "".(*Alpha16).At���°��$go.string."Bounds"���Ð��0type.func() "".Rectangle���à��Ftype.func(*"".Alpha16) "".Rectangle���ð��("".(*Alpha16).Bounds���€��("".(*Alpha16).Bounds�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ptype.func(*"".Alpha16) image/color.Model���Ð��0"".(*Alpha16).ColorModel���à��0"".(*Alpha16).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".Alpha16) bool���°��("".(*Alpha16).Opaque���À��("".(*Alpha16).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".Alpha16, int, int) int�����."".(*Alpha16).PixOffset��� ��."".(*Alpha16).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".Alpha16, int, int, image/color.Color)���ð��""".(*Alpha16).Set���€��""".(*Alpha16).Set�����,go.string."SetAlpha16"���°��Ptype.func(int, int, image/color.Alpha16)���À��jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���Ð��0"".(*Alpha16).SetAlpha16���à��0"".(*Alpha16).SetAlpha16���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".Alpha16, "".Rectangle) "".Image���°��,"".(*Alpha16).SubImage���À��,"".(*Alpha16).SubImage���þ,go.string."image.Gray"�@��6��������
�������image.Gray�� �,go.string."image.Gray"���þ go.string."Gray"�0��*���������������Gray�� � go.string."Gray"���þtype."".Gray��€��€@�������a>ä1���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��,go.string."image.Gray"���p��type.*"".Gray���€��"runtime.zerovalue���À�type."".Gray���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Gray���°�� go.string."Gray"���À��"go.importpath."".���Ѐ�type."".Gray���þ.go.string."*image.Gray"�@��8�������� �������*image.Gray�� �.go.string."*image.Gray"���þfgo.string."func(*image.Gray, int, int) color.Color"�p��p��������'�������func(*image.Gray, int, int) color.Color�� �fgo.string."func(*image.Gray, int, int) color.Color"���þ^type.func(*"".Gray, int, int) image/color.Color�À��À�������9kK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þZgo.string."func(*image.Gray) image.Rectangle"�p��d��������!�������func(*image.Gray) image.Rectangle�� �Zgo.string."func(*image.Gray) image.Rectangle"���þ@type.func(*"".Gray) "".Rectangle� �� �������°¸e�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þRgo.string."func(*image.Gray) color.Model"�`��\���������������func(*image.Gray) color.Model�� �Rgo.string."func(*image.Gray) color.Model"���þJtype.func(*"".Gray) image/color.Model� �� �������ý·áò�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þdgo.string."func(*image.Gray, int, int) color.Gray"�p��n��������&�������func(*image.Gray, int, int) color.Gray�� �dgo.string."func(*image.Gray, int, int) color.Gray"���þ\type.func(*"".Gray, int, int) image/color.Gray�À��À�������Š½žh�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."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���þDgo.string."func(*image.Gray) bool"�P��N���������������func(*image.Gray) bool�� �Dgo.string."func(*image.Gray) bool"���þ0type.func(*"".Gray) bool� �� �������PdT`�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."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���þVgo.string."func(*image.Gray, int, int) int"�`��`���������������func(*image.Gray, int, int) int�� �Vgo.string."func(*image.Gray, int, int) int"���þBtype.func(*"".Gray, int, int) int�À��À�������Cþ0ò�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."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���þhgo.string."func(*image.Gray, int, int, color.Color)"�€��r��������(�������func(*image.Gray, int, int, color.Color)�� �hgo.string."func(*image.Gray, int, int, color.Color)"���þ`type.func(*"".Gray, int, int, image/color.Color)�À��À�������¿KNo�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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���þfgo.string."func(*image.Gray, int, int, color.Gray)"�p��p��������'�������func(*image.Gray, int, int, color.Gray)�� �fgo.string."func(*image.Gray, int, int, color.Gray)"���þ^type.func(*"".Gray, int, int, image/color.Gray)�À��À�������ƒhMæ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þtgo.string."func(*image.Gray, image.Rectangle) image.Image"�€��~��������.�������func(*image.Gray, image.Rectangle) image.Image�� �tgo.string."func(*image.Gray, image.Rectangle) image.Image"���þTtype.func(*"".Gray, "".Rectangle) "".Image�°��°�������7I–�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."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.string."GrayAt"�0��.���������������GrayAt�� �$go.string."GrayAt"���þJgo.string."func(int, int) color.Gray"�`��T���������������func(int, int) color.Gray�� �Jgo.string."func(int, int) color.Gray"���þHtype.func(int, int) image/color.Gray�°��°�������šÜ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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.string."SetGray"�0��0���������������SetGray�� �&go.string."SetGray"���þLgo.string."func(int, int, color.Gray)"�`��V���������������func(int, int, color.Gray)�� �Lgo.string."func(int, int, color.Gray)"���þJtype.func(int, int, image/color.Gray)�°��°�������ð=qŠ�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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���þtype.*"".Gray��Ð��Ð�������~ ßì�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*image.Gray"���p��,go.weak.type.**"".Gray���€��"runtime.zerovalue�����type."".Gray���` �type.*"".Gray���Àð�type.*"".Gray���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".Gray, int, int) image/color.Color���°��"".(*Gray).At���À��"".(*Gray).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".Gray) "".Rectangle�����""".(*Gray).Bounds��� ��""".(*Gray).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".Gray) image/color.Model���ð��*"".(*Gray).ColorModel���€��*"".(*Gray).ColorModel�����$go.string."GrayAt"���°��Htype.func(int, int) image/color.Gray���À��\type.func(*"".Gray, int, int) image/color.Gray���Ð��""".(*Gray).GrayAt���à��""".(*Gray).GrayAt���ð��$go.string."Opaque"����� type.func() bool��� ��0type.func(*"".Gray) bool���°��""".(*Gray).Opaque���À��""".(*Gray).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Btype.func(*"".Gray, int, int) int�����("".(*Gray).PixOffset��� ��("".(*Gray).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".Gray, int, int, image/color.Color)���ð��"".(*Gray).Set���€��"".(*Gray).Set�����&go.string."SetGray"���°��Jtype.func(int, int, image/color.Gray)���À��^type.func(*"".Gray, int, int, image/color.Gray)���Ð��$"".(*Gray).SetGray���à��$"".(*Gray).SetGray���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".Gray, "".Rectangle) "".Image���°��&"".(*Gray).SubImage���À��&"".(*Gray).SubImage���þ0go.string."image.Gray16"�@��:�������� �������image.Gray16�� �0go.string."image.Gray16"���þ$go.string."Gray16"�0��.���������������Gray16�� �$go.string."Gray16"���þtype."".Gray16��€��€@�������jn~%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��0go.string."image.Gray16"���p��type.*"".Gray16���€��"runtime.zerovalue���À�type."".Gray16���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Gray16���°��$go.string."Gray16"���À��"go.importpath."".���Ѐ�type."".Gray16���þ2go.string."*image.Gray16"�@��<�������� �������*image.Gray16�� �2go.string."*image.Gray16"���þjgo.string."func(*image.Gray16, int, int) color.Color"�€��t��������)�������func(*image.Gray16, int, int) color.Color�� �jgo.string."func(*image.Gray16, int, int) color.Color"���þbtype.func(*"".Gray16, int, int) image/color.Color�À��À�������I{±÷�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."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.string."func(*image.Gray16) image.Rectangle"�p��h��������#�������func(*image.Gray16) image.Rectangle�� �^go.string."func(*image.Gray16) image.Rectangle"���þDtype.func(*"".Gray16) "".Rectangle� �� �������Í!ʋ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."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���þVgo.string."func(*image.Gray16) color.Model"�`��`���������������func(*image.Gray16) color.Model�� �Vgo.string."func(*image.Gray16) color.Model"���þNtype.func(*"".Gray16) image/color.Model� �� �������<Oç�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."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���þlgo.string."func(*image.Gray16, int, int) color.Gray16"�€��v��������*�������func(*image.Gray16, int, int) color.Gray16�� �lgo.string."func(*image.Gray16, int, int) color.Gray16"���þdtype.func(*"".Gray16, int, int) image/color.Gray16�À��À�������ùKµ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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���þHgo.string."func(*image.Gray16) bool"�`��R���������������func(*image.Gray16) bool�� �Hgo.string."func(*image.Gray16) bool"���þ4type.func(*"".Gray16) bool� �� �������Òò®w�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."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���þZgo.string."func(*image.Gray16, int, int) int"�p��d��������!�������func(*image.Gray16, int, int) int�� �Zgo.string."func(*image.Gray16, int, int) int"���þFtype.func(*"".Gray16, int, int) int�À��À�������ìÎI½�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þlgo.string."func(*image.Gray16, int, int, color.Color)"�€��v��������*�������func(*image.Gray16, int, int, color.Color)�� �lgo.string."func(*image.Gray16, int, int, color.Color)"���þdtype.func(*"".Gray16, int, int, image/color.Color)�À��À�������¾ôHª�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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���þngo.string."func(*image.Gray16, int, int, color.Gray16)"�€��x��������+�������func(*image.Gray16, int, int, color.Gray16)�� �ngo.string."func(*image.Gray16, int, int, color.Gray16)"���þftype.func(*"".Gray16, int, int, image/color.Gray16)�À��À�������]æ8�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þxgo.string."func(*image.Gray16, image.Rectangle) image.Image"���‚��������0�������func(*image.Gray16, image.Rectangle) image.Image�� �xgo.string."func(*image.Gray16, image.Rectangle) image.Image"���þXtype.func(*"".Gray16, "".Rectangle) "".Image�°��°�������<'k)�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��xgo.string."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.string."Gray16At"�@��2���������������Gray16At�� �(go.string."Gray16At"���þNgo.string."func(int, int) color.Gray16"�`��X���������������func(int, int) color.Gray16�� �Ngo.string."func(int, int) color.Gray16"���þLtype.func(int, int) image/color.Gray16�°��°�������ÄX}8�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."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.string."SetGray16"�@��4�������� �������SetGray16�� �*go.string."SetGray16"���þPgo.string."func(int, int, color.Gray16)"�`��Z���������������func(int, int, color.Gray16)�� �Pgo.string."func(int, int, color.Gray16)"���þNtype.func(int, int, image/color.Gray16)�°��°�������SL(�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."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���þtype.*"".Gray16��Ð��Ð�������–þÝ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.Gray16"���p��0go.weak.type.**"".Gray16���€��"runtime.zerovalue�����type."".Gray16���` �type.*"".Gray16���Àð�type.*"".Gray16���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".Gray16, int, int) image/color.Color���°��"".(*Gray16).At���À��"".(*Gray16).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".Gray16) "".Rectangle�����&"".(*Gray16).Bounds��� ��&"".(*Gray16).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".Gray16) image/color.Model���ð��."".(*Gray16).ColorModel���€��."".(*Gray16).ColorModel�����(go.string."Gray16At"���°��Ltype.func(int, int) image/color.Gray16���À��dtype.func(*"".Gray16, int, int) image/color.Gray16���Ð��*"".(*Gray16).Gray16At���à��*"".(*Gray16).Gray16At���ð��$go.string."Opaque"����� type.func() bool��� ��4type.func(*"".Gray16) bool���°��&"".(*Gray16).Opaque���À��&"".(*Gray16).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Ftype.func(*"".Gray16, int, int) int�����,"".(*Gray16).PixOffset��� ��,"".(*Gray16).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".Gray16, int, int, image/color.Color)���ð�� "".(*Gray16).Set���€�� "".(*Gray16).Set�����*go.string."SetGray16"���°��Ntype.func(int, int, image/color.Gray16)���À��ftype.func(*"".Gray16, int, int, image/color.Gray16)���Ð��,"".(*Gray16).SetGray16���à��,"".(*Gray16).SetGray16���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".Gray16, "".Rectangle) "".Image���°��*"".(*Gray16).SubImage���À��*"".(*Gray16).SubImage���þbruntime.gcbits.0x48444444488444444484440000000000� �� HDDDH„DDD„D������þ4go.string."image.Paletted"�@��>���������������image.Paletted�� �4go.string."image.Paletted"���þ&go.string."Palette"�0��0���������������Palette�� �&go.string."Palette"���þ(go.string."Paletted"�@��2���������������Paletted�� �(go.string."Paletted"���þ type."".Paletted��Ð��ÐX�������LÕ`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������@�����������������������������������������������$ à� runtime.algarray���0��bruntime.gcbits.0x48444444488444444484440000000000���P��4go.string."image.Paletted"���p��"type.*"".Paletted���€��"runtime.zerovalue���À� type."".Paletted���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���°��&go.string."Palette"���Ð��0type.image/color.Palette���`€� type."".Paletted���€��(go.string."Paletted"�����"go.importpath."".��� Ð� type."".Paletted���þ6go.string."*image.Paletted"�@��@���������������*image.Paletted�� �6go.string."*image.Paletted"���þngo.string."func(*image.Paletted, int, int) color.Color"�€��x��������+�������func(*image.Paletted, int, int) color.Color�� �ngo.string."func(*image.Paletted, int, int) color.Color"���þftype.func(*"".Paletted, int, int) image/color.Color�À��À�������_ú|r�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."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���þbgo.string."func(*image.Paletted) image.Rectangle"�p��l��������%�������func(*image.Paletted) image.Rectangle�� �bgo.string."func(*image.Paletted) image.Rectangle"���þHtype.func(*"".Paletted) "".Rectangle� �� �������bOæÝ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."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���þbgo.string."func(*image.Paletted, int, int) uint8"�p��l��������%�������func(*image.Paletted, int, int) uint8�� �bgo.string."func(*image.Paletted, int, int) uint8"���þNtype.func(*"".Paletted, int, int) uint8�À��À�������S­)Š�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."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���þZgo.string."func(*image.Paletted) color.Model"�p��d��������!�������func(*image.Paletted) color.Model�� �Zgo.string."func(*image.Paletted) color.Model"���þRtype.func(*"".Paletted) image/color.Model� �� �������ô¯ö�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."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���þLgo.string."func(*image.Paletted) bool"�`��V���������������func(*image.Paletted) bool�� �Lgo.string."func(*image.Paletted) bool"���þ8type.func(*"".Paletted) bool� �� �������m•k�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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.string."func(*image.Paletted, int, int) int"�p��h��������#�������func(*image.Paletted, int, int) int�� �^go.string."func(*image.Paletted, int, int) int"���þJtype.func(*"".Paletted, int, int) int�À��À�������† KL�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."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���þpgo.string."func(*image.Paletted, int, int, color.Color)"�€��z��������,�������func(*image.Paletted, int, int, color.Color)�� �pgo.string."func(*image.Paletted, int, int, color.Color)"���þhtype.func(*"".Paletted, int, int, image/color.Color)�À��À�������–íqÎ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."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���þdgo.string."func(*image.Paletted, int, int, uint8)"�p��n��������&�������func(*image.Paletted, int, int, uint8)�� �dgo.string."func(*image.Paletted, int, int, uint8)"���þPtype.func(*"".Paletted, int, int, uint8)�À��À�������ÆþÁ®�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."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.string."func(*image.Paletted, image.Rectangle) image.Image"���†��������2�������func(*image.Paletted, image.Rectangle) image.Image�� �|go.string."func(*image.Paletted, image.Rectangle) image.Image"���þ\type.func(*"".Paletted, "".Rectangle) "".Image�°��°�������÷m•´�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��|go.string."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���þ0go.string."ColorIndexAt"�@��:�������� �������ColorIndexAt�� �0go.string."ColorIndexAt"���þ@go.string."func(int, int) uint8"�P��J���������������func(int, int) uint8�� �@go.string."func(int, int) uint8"���þ2type.func(int, int) uint8�°��°�������Jc_�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."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���þ2go.string."SetColorIndex"�@��<�������� �������SetColorIndex�� �2go.string."SetColorIndex"���þBgo.string."func(int, int, uint8)"�P��L���������������func(int, int, uint8)�� �Bgo.string."func(int, int, uint8)"���þ4type.func(int, int, uint8)�°��°�������ÌÌl�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Bgo.string."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���þ"type.*"".Paletted��Ð��Ð�������ÉNYû�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��6go.string."*image.Paletted"���p��4go.weak.type.**"".Paletted���€��"runtime.zerovalue����� type."".Paletted���` �"type.*"".Paletted���Àð�"type.*"".Paletted���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��ftype.func(*"".Paletted, int, int) image/color.Color���°��""".(*Paletted).At���À��""".(*Paletted).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Htype.func(*"".Paletted) "".Rectangle�����*"".(*Paletted).Bounds��� ��*"".(*Paletted).Bounds���°��0go.string."ColorIndexAt"���Ð��2type.func(int, int) uint8���à��Ntype.func(*"".Paletted, int, int) uint8���ð��6"".(*Paletted).ColorIndexAt���€��6"".(*Paletted).ColorIndexAt�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Rtype.func(*"".Paletted) image/color.Model���Ð��2"".(*Paletted).ColorModel���à��2"".(*Paletted).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��8type.func(*"".Paletted) bool���°��*"".(*Paletted).Opaque���À��*"".(*Paletted).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Jtype.func(*"".Paletted, int, int) int�����0"".(*Paletted).PixOffset��� ��0"".(*Paletted).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��htype.func(*"".Paletted, int, int, image/color.Color)���ð��$"".(*Paletted).Set���€��$"".(*Paletted).Set�����2go.string."SetColorIndex"���°��4type.func(int, int, uint8)���À��Ptype.func(*"".Paletted, int, int, uint8)���Ð��8"".(*Paletted).SetColorIndex���à��8"".(*Paletted).SetColorIndex���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��\type.func(*"".Paletted, "".Rectangle) "".Image���°��."".(*Paletted).SubImage���À��."".(*Paletted).SubImage���þ$go.string."[]bool"�0��.���������������[]bool�� �$go.string."[]bool"���þtype.[]bool� �� �������±åç�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��$go.string."[]bool"���p��(go.weak.type.*[]bool���€��"runtime.zerovalue�����type.bool���þ2go.typelink.[]bool/[]bool��������������type.[]bool���þ*go.string."[256]bool"�@��4�������� �������[256]bool�� �*go.string."[256]bool"���þtype.[256]bool�À��À�������°Ä'k�‘������������������������������������������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��*go.string."[256]bool"���p��.go.weak.type.*[256]bool���€��"runtime.zerovalue�����type.bool��� ��type.[]bool���þ>go.typelink.[256]bool/[256]bool��������������type.[256]bool���þ2go.string."image.Uniform"�@��<�������� �������image.Uniform�� �2go.string."image.Uniform"���þgo.string."C"�0��$���������������C�� �go.string."C"���þ&go.string."Uniform"�0��0���������������Uniform�� �&go.string."Uniform"���þtype."".Uniform��à��à�������ö=á��������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��2go.string."image.Uniform"���p�� type.*"".Uniform���€��"runtime.zerovalue���À�type."".Uniform���À��go.string."C"���à��,type.image/color.Color���`�type."".Uniform�����&go.string."Uniform"��� ��"go.importpath."".���°à�type."".Uniform���þ4go.string."*image.Uniform"�@��>���������������*image.Uniform�� �4go.string."*image.Uniform"���þlgo.string."func(*image.Uniform, int, int) color.Color"�€��v��������*�������func(*image.Uniform, int, int) color.Color�� �lgo.string."func(*image.Uniform, int, int) color.Color"���þdtype.func(*"".Uniform, int, int) image/color.Color�À��À�������„Œp�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."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.string."func(*image.Uniform) image.Rectangle"�p��j��������$�������func(*image.Uniform) image.Rectangle�� �`go.string."func(*image.Uniform) image.Rectangle"���þFtype.func(*"".Uniform) "".Rectangle� �� �������2[è|�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."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���þXgo.string."func(*image.Uniform) color.Model"�p��b�������� �������func(*image.Uniform) color.Model�� �Xgo.string."func(*image.Uniform) color.Model"���þPtype.func(*"".Uniform) image/color.Model� �� �������"ÈáÐ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þrgo.string."func(*image.Uniform, color.Color) color.Color"�€��|��������-�������func(*image.Uniform, color.Color) color.Color�� �rgo.string."func(*image.Uniform, color.Color) color.Color"���þvtype.func(*"".Uniform, image/color.Color) image/color.Color�°��°�������@AÂ2�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."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���þJgo.string."func(*image.Uniform) bool"�`��T���������������func(*image.Uniform) bool�� �Jgo.string."func(*image.Uniform) bool"���þ6type.func(*"".Uniform) bool� �� �������èñ»?�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."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���þ‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���Œ��������5�������func(*image.Uniform) (uint32, uint32, uint32, uint32)�� �‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���þntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�Ð��Ð�������N¸V�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��‚go.string."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.string."Convert"�0��0���������������Convert�� �&go.string."Convert"���þRgo.string."func(color.Color) color.Color"�`��\���������������func(color.Color) color.Color�� �Rgo.string."func(color.Color) color.Color"���þ\type.func(image/color.Color) image/color.Color� �� �������õr¹�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."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���þfgo.string."func() (uint32, uint32, uint32, uint32)"�p��p��������'�������func() (uint32, uint32, uint32, uint32)�� �fgo.string."func() (uint32, uint32, uint32, uint32)"���þXtype.func() (uint32, uint32, uint32, uint32)�À��À�������ÌǤè�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þ type.*"".Uniform��°��°�������®Q f�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.Uniform"���p��2go.weak.type.**"".Uniform���€��"runtime.zerovalue�����type."".Uniform���` � type.*"".Uniform���Àð� type.*"".Uniform���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".Uniform, int, int) image/color.Color���°�� "".(*Uniform).At���À�� "".(*Uniform).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".Uniform) "".Rectangle�����("".(*Uniform).Bounds��� ��("".(*Uniform).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".Uniform) image/color.Model���ð��0"".(*Uniform).ColorModel���€��0"".(*Uniform).ColorModel�����&go.string."Convert"���°��\type.func(image/color.Color) image/color.Color���À��vtype.func(*"".Uniform, image/color.Color) image/color.Color���Ð��*"".(*Uniform).Convert���à��*"".(*Uniform).Convert���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".Uniform) bool���°��("".(*Uniform).Opaque���À��("".(*Uniform).Opaque���Ð�� go.string."RGBA"���ð��Xtype.func() (uint32, uint32, uint32, uint32)���€��ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�����$"".(*Uniform).RGBA��� ��$"".(*Uniform).RGBA���þLgo.string."*image.YCbCrSubsampleRatio"�`��V���������������*image.YCbCrSubsampleRatio�� �Lgo.string."*image.YCbCrSubsampleRatio"���þ>go.string."YCbCrSubsampleRatio"�P��H���������������YCbCrSubsampleRatio�� �>go.string."YCbCrSubsampleRatio"���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·a08e9001cb8f9d822225de3b8e406515�������������þfgo.string."func(*image.YCbCrSubsampleRatio) string"�p��p��������'�������func(*image.YCbCrSubsampleRatio) string�� �fgo.string."func(*image.YCbCrSubsampleRatio) string"���þRtype.func(*"".YCbCrSubsampleRatio) string� �� �������u!Ad�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."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���þ8type.*"".YCbCrSubsampleRatio��Ð��Ð�������˜àË&�6������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."*image.YCbCrSubsampleRatio"���p��Jgo.weak.type.**"".YCbCrSubsampleRatio���€��"runtime.zerovalue�����6type."".YCbCrSubsampleRatio���` �8type.*"".YCbCrSubsampleRatio���Àð�8type.*"".YCbCrSubsampleRatio���ð��$go.string."String"�����$type.func() string��� ��Rtype.func(*"".YCbCrSubsampleRatio) string���°��@"".(*YCbCrSubsampleRatio).String���À��@"".(*YCbCrSubsampleRatio).String���þJgo.string."image.YCbCrSubsampleRatio"�`��T���������������image.YCbCrSubsampleRatio�� �Jgo.string."image.YCbCrSubsampleRatio"���þdgo.string."func(image.YCbCrSubsampleRatio) string"�p��n��������&�������func(image.YCbCrSubsampleRatio) string�� �dgo.string."func(image.YCbCrSubsampleRatio) string"���þPtype.func("".YCbCrSubsampleRatio) string� �� �������ËO‚Ê�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."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���þ6type."".YCbCrSubsampleRatio��À��À�������ªX)â�‚����������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��Jgo.string."image.YCbCrSubsampleRatio"���p��8type.*"".YCbCrSubsampleRatio���€��"runtime.zerovalue���`�6type."".YCbCrSubsampleRatio�����>go.string."YCbCrSubsampleRatio"��� ��"go.importpath."".���°à�6type."".YCbCrSubsampleRatio���à��$go.string."String"���€��$type.func() string�����Ptype.func("".YCbCrSubsampleRatio) string��� ��@"".(*YCbCrSubsampleRatio).String���°��:"".YCbCrSubsampleRatio.String���þbruntime.gcbits.0x48844448444444440000000000000000� �� H„DHDDDD���������þ.go.string."image.YCbCr"�@��8�������� �������image.YCbCr�� �.go.string."image.YCbCr"���þgo.string."Cb"�0��&���������������Cb�� �go.string."Cb"���þgo.string."Cr"�0��&���������������Cr�� �go.string."Cr"���þ&go.string."YStride"�0��0���������������YStride�� �&go.string."YStride"���þ&go.string."CStride"�0��0���������������CStride�� �&go.string."CStride"���þ4go.string."SubsampleRatio"�@��>���������������SubsampleRatio�� �4go.string."SubsampleRatio"���þ"go.string."YCbCr"�0��,���������������YCbCr�� �"go.string."YCbCr"���þtype."".YCbCr��À��À€�������¼Ãa¯����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`�����������������������������������������������0 à� runtime.algarray���0��bruntime.gcbits.0x48844448444444440000000000000000���P��.go.string."image.YCbCr"���p��type.*"".YCbCr���€��"runtime.zerovalue���À�type."".YCbCr���À��go.string."Y"���à��type.[]uint8�����go.string."Cb"���°��type.[]uint8���à��go.string."Cr"���€��type.[]uint8���°��&go.string."YStride"���Ð��type.int���€��&go.string."CStride"��� ��type.int���Ð��4go.string."SubsampleRatio"���ð��6type."".YCbCrSubsampleRatio��� �� go.string."Rect"���À��"type."".Rectangle���`ð�type."".YCbCr���ð��"go.string."YCbCr"���€��"go.importpath."".���À�type."".YCbCr���þ0go.string."*image.YCbCr"�@��:�������� �������*image.YCbCr�� �0go.string."*image.YCbCr"���þhgo.string."func(*image.YCbCr, int, int) color.Color"�€��r��������(�������func(*image.YCbCr, int, int) color.Color�� �hgo.string."func(*image.YCbCr, int, int) color.Color"���þ`type.func(*"".YCbCr, int, int) image/color.Color�À��À�������óGÏ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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.string."func(*image.YCbCr) image.Rectangle"�p��f��������"�������func(*image.YCbCr) image.Rectangle�� �\go.string."func(*image.YCbCr) image.Rectangle"���þBtype.func(*"".YCbCr) "".Rectangle� �� �������5;»�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."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���þXgo.string."func(*image.YCbCr, int, int) int"�p��b�������� �������func(*image.YCbCr, int, int) int�� �Xgo.string."func(*image.YCbCr, int, int) int"���þDtype.func(*"".YCbCr, int, int) int�À��À�������?@ÛÒ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."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���þTgo.string."func(*image.YCbCr) color.Model"�`��^���������������func(*image.YCbCr) color.Model�� �Tgo.string."func(*image.YCbCr) color.Model"���þLtype.func(*"".YCbCr) image/color.Model� �� ������� Zp�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."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���þFgo.string."func(*image.YCbCr) bool"�P��P���������������func(*image.YCbCr) bool�� �Fgo.string."func(*image.YCbCr) bool"���þ2type.func(*"".YCbCr) bool� �� �������¬›�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."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���þvgo.string."func(*image.YCbCr, image.Rectangle) image.Image"�€��€��������/�������func(*image.YCbCr, image.Rectangle) image.Image�� �vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"���þVtype.func(*"".YCbCr, "".Rectangle) "".Image�°��°�������÷NY¡�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."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���þhgo.string."func(*image.YCbCr, int, int) color.YCbCr"�€��r��������(�������func(*image.YCbCr, int, int) color.YCbCr�� �hgo.string."func(*image.YCbCr, int, int) color.YCbCr"���þ`type.func(*"".YCbCr, int, int) image/color.YCbCr�À��À�������ߚØ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."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.string."COffset"�0��0���������������COffset�� �&go.string."COffset"���þ&go.string."YCbCrAt"�0��0���������������YCbCrAt�� �&go.string."YCbCrAt"���þLgo.string."func(int, int) color.YCbCr"�`��V���������������func(int, int) color.YCbCr�� �Lgo.string."func(int, int) color.YCbCr"���þJtype.func(int, int) image/color.YCbCr�°��°�������´Áþå�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."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.string."YOffset"�0��0���������������YOffset�� �&go.string."YOffset"���þtype.*"".YCbCr��ð��ð�������2öЫ�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.YCbCr"���p��.go.weak.type.**"".YCbCr���€��"runtime.zerovalue�����type."".YCbCr���` �type.*"".YCbCr���Àð�type.*"".YCbCr���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".YCbCr, int, int) image/color.Color���°��"".(*YCbCr).At���À��"".(*YCbCr).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".YCbCr) "".Rectangle�����$"".(*YCbCr).Bounds��� ��$"".(*YCbCr).Bounds���°��&go.string."COffset"���Ð��.type.func(int, int) int���à��Dtype.func(*"".YCbCr, int, int) int���ð��&"".(*YCbCr).COffset���€��&"".(*YCbCr).COffset�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".YCbCr) image/color.Model���Ð��,"".(*YCbCr).ColorModel���à��,"".(*YCbCr).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".YCbCr) bool���°��$"".(*YCbCr).Opaque���À��$"".(*YCbCr).Opaque���Ð��(go.string."SubImage"���ð��@type.func("".Rectangle) "".Image���€��Vtype.func(*"".YCbCr, "".Rectangle) "".Image�����("".(*YCbCr).SubImage��� ��("".(*YCbCr).SubImage���°��&go.string."YCbCrAt"���Ð��Jtype.func(int, int) image/color.YCbCr���à��`type.func(*"".YCbCr, int, int) image/color.YCbCr���ð��&"".(*YCbCr).YCbCrAt���€��&"".(*YCbCr).YCbCrAt�����&go.string."YOffset"���°��.type.func(int, int) int���À��Dtype.func(*"".YCbCr, int, int) int���Ð��&"".(*YCbCr).YOffset���à��&"".(*YCbCr).YOffset���þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·62bf5c4fa9f5f8a7a8c2891b7ded5618������ ���[����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·807a5b85c3c3f4538eaea0d6aaeb9f68������ ��� ����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·b409d586de60012625f0e95ec5940b76������
���[����þTgclocals·3280bececceccd33cb74587feedb1f9f�����������þTgclocals·78fd77a07ab543a063c3a3049973febe��������� ����þ@go.string."*image.PalettedImage"�P��J���������������*image.PalettedImage�� �@go.string."*image.PalettedImage"���þ,type.*"".PalettedImage�� �� �������íº�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*image.PalettedImage"���p��>go.weak.type.**"".PalettedImage���€��"runtime.zerovalue�����*type."".PalettedImage���þ>go.string."image.PalettedImage"�P��H���������������image.PalettedImage�� �>go.string."image.PalettedImage"���þ2go.string."PalettedImage"�@��<�������� �������PalettedImage�� �2go.string."PalettedImage"���þ*type."".PalettedImage��Ð��Ð�������¶©�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$ à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��>go.string."image.PalettedImage"���p��,type.*"".PalettedImage���€��"runtime.zerovalue���À�*type."".PalettedImage���À��go.string."At"���à��Jtype.func(int, int) image/color.Color���ð��$go.string."Bounds"�����0type.func() "".Rectangle��� ��0go.string."ColorIndexAt"���À��2type.func(int, int) uint8���Ð��,go.string."ColorModel"���ð��:type.func() image/color.Model���`€�*type."".PalettedImage���€��2go.string."PalettedImage"�����"go.importpath."".��� Ð�*type."".PalettedImage���þ&go.string."runtime"�0��0���������������runtime�� �&go.string."runtime"���þ,go.importpath.runtime.� �� ���������������� �&go.string."runtime"���þ"go.string."bufio"�0��,���������������bufio�� �"go.string."bufio"���þ(go.importpath.bufio.� �� ���������������� �"go.string."bufio"���þ$go.string."errors"�0��.���������������errors�� �$go.string."errors"���þ*go.importpath.errors.� �� ���������������� �$go.string."errors"���þgo.string."io"�0��&���������������io�� �go.string."io"���þ"go.importpath.io.� �� ���������������� �go.string."io"���þ.go.string."image/color"�@��8�������� �������image/color�� �.go.string."image/color"���þ4go.importpath.image/color.� �� �������� �������� �.go.string."image/color"���þ&go.string."strconv"�0��0���������������strconv�� �&go.string."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���þ(runtime.panicwrap·f��������������"runtime.panicwrap���þ$"".(*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���þ.type..hash."".Config·f��������������(type..hash."".Config���þ(runtime.interhash·f��������������"runtime.interhash���þ$runtime.memhash·f��������������runtime.memhash���þ*type..eq."".Config·f��������������$type..eq."".Config���þ$runtime.ifaceeq·f��������������runtime.ifaceeq���þ""".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