1 !<arch> 2 __.PKGDEF 0 0 0 644 27953 ` 3 go object linux amd64 go1.5.1 X:none 4 build id "5cd4eff4bf099f77bbf65d8f18dc8fbfd9e44e57" 5 6 $$ 7 package image 8 import runtime "runtime" 9 import bufio "bufio" 10 import errors "errors" 11 import io "io" 12 import color "image/color" 13 import strconv "strconv" 14 var @"".ErrFormat error 15 type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) } 16 type @"".Point struct { X int; Y int } 17 func (@"".p2 @"".Point) Add (@"".q3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p2.X + @"".q3.X, Y:@"".p2.Y + @"".q3.Y }) } 18 func (@"".p2 @"".Point) Div (@"".k3 int) (? @"".Point) { return (@"".Point{ X:@"".p2.X / @"".k3, Y:@"".p2.Y / @"".k3 }) } 19 func (@"".p2 @"".Point) Eq (@"".q3 @"".Point) (? bool) { return @"".p2 == @"".q3 } 20 func (@"".p2 @"".Point) In (@"".r3 @"".Rectangle) (? bool) { return @"".r3.Min.X <= @"".p2.X && @"".p2.X < @"".r3.Max.X && @"".r3.Min.Y <= @"".p2.Y && @"".p2.Y < @"".r3.Max.Y } 21 func (@"".p2 @"".Point) Mod (@"".r3 @"".Rectangle) (? @"".Point) 22 func (@"".p2 @"".Point) Mul (@"".k3 int) (? @"".Point) { return (@"".Point{ X:@"".p2.X * @"".k3, Y:@"".p2.Y * @"".k3 }) } 23 func (@"".p2 @"".Point) String () (? string) 24 func (@"".p2 @"".Point) Sub (@"".q3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p2.X - @"".q3.X, Y:@"".p2.Y - @"".q3.Y }) } 25 type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) } 26 type @"".Rectangle struct { Min @"".Point; Max @"".Point } 27 func (@"".r2 @"".Rectangle) Add (@"".p3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r2.Min.X + @"".p3.X, Y:@"".r2.Min.Y + @"".p3.Y }), Max:(@"".Point{ X:@"".r2.Max.X + @"".p3.X, Y:@"".r2.Max.Y + @"".p3.Y }) }) } 28 func (@"".r2 @"".Rectangle) At (@"".x3 int, @"".y4 int) (? @"image/color".Color) { if (@"".Point{ X:@"".x3, Y:@"".y4 }).In(@"".r2) { return @"image/color".Opaque }; return @"image/color".Transparent } 29 func (@"".r2 @"".Rectangle) Bounds () (? @"".Rectangle) { return @"".r2 } 30 func (@"".r2 @"".Rectangle) Canon () (? @"".Rectangle) { if @"".r2.Max.X < @"".r2.Min.X { @"".r2.Min.X, @"".r2.Max.X = @"".r2.Max.X, @"".r2.Min.X }; if @"".r2.Max.Y < @"".r2.Min.Y { @"".r2.Min.Y, @"".r2.Max.Y = @"".r2.Max.Y, @"".r2.Min.Y }; return @"".r2 } 31 func (@"".r2 @"".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model } 32 func (@"".r2 @"".Rectangle) Dx () (? int) { return @"".r2.Max.X - @"".r2.Min.X } 33 func (@"".r2 @"".Rectangle) Dy () (? int) { return @"".r2.Max.Y - @"".r2.Min.Y } 34 func (@"".r2 @"".Rectangle) Empty () (? bool) { return @"".r2.Min.X >= @"".r2.Max.X || @"".r2.Min.Y >= @"".r2.Max.Y } 35 func (@"".r2 @"".Rectangle) Eq (@"".s3 @"".Rectangle) (? bool) { return @"".r2 == @"".s3 || @"".r2.Empty() && @"".s3.Empty() } 36 func (@"".r2 @"".Rectangle) In (@"".s3 @"".Rectangle) (? bool) { if @"".r2.Empty() { return true }; return @"".s3.Min.X <= @"".r2.Min.X && @"".r2.Max.X <= @"".s3.Max.X && @"".s3.Min.Y <= @"".r2.Min.Y && @"".r2.Max.Y <= @"".s3.Max.Y } 37 func (@"".r2 @"".Rectangle) Inset (@"".n3 int) (? @"".Rectangle) 38 func (@"".r2 @"".Rectangle) Intersect (@"".s3 @"".Rectangle) (? @"".Rectangle) 39 func (@"".r2 @"".Rectangle) Overlaps (@"".s3 @"".Rectangle) (? bool) 40 func (@"".r2 @"".Rectangle) Size () (? @"".Point) { return (@"".Point{ X:@"".r2.Max.X - @"".r2.Min.X, Y:@"".r2.Max.Y - @"".r2.Min.Y }) } 41 func (@"".r2 @"".Rectangle) String () (? string) 42 func (@"".r2 @"".Rectangle) Sub (@"".p3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r2.Min.X - @"".p3.X, Y:@"".r2.Min.Y - @"".p3.Y }), Max:(@"".Point{ X:@"".r2.Max.X - @"".p3.X, Y:@"".r2.Max.Y - @"".p3.Y }) }) } 43 func (@"".r2 @"".Rectangle) Union (@"".s3 @"".Rectangle) (? @"".Rectangle) 44 type @"".Image interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorModel() (? @"image/color".Model) } 45 type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } 46 type @"".Config struct { ColorModel @"image/color".Model; Width int; Height int } 47 func @"".RegisterFormat (@"".name1 string, @"".magic2 string, @"".decode3 func(? @"io".Reader) (? @"".Image, ? error), @"".decodeConfig4 func(? @"io".Reader) (? @"".Config, ? error)) { @"".formats = append(@"".formats, (@"".format{ @"".name:@"".name1, @"".magic:@"".magic2, @"".decode:@"".decode3, @"".decodeConfig:@"".decodeConfig4 })) } 48 func @"".Decode (@"".r4 @"io".Reader) (? @"".Image, ? string, ? error) 49 func @"".DecodeConfig (@"".r4 @"io".Reader) (? @"".Config, ? string, ? error) 50 var @"".ZP @"".Point 51 func @"".Pt (@"".X2 int, @"".Y3 int) (? @"".Point) { return (@"".Point{ X:@"".X2, Y:@"".Y3 }) } 52 var @"".ZR @"".Rectangle 53 func @"".Rect (@"".x02 int, @"".y03 int, @"".x14 int, @"".y15 int) (? @"".Rectangle) { if @"".x02 > @"".x14 { @"".x02, @"".x14 = @"".x14, @"".x02 }; if @"".y03 > @"".y15 { @"".y03, @"".y15 = @"".y15, @"".y03 }; return (@"".Rectangle{ Min:(@"".Point{ X:@"".x02, Y:@"".y03 }), Max:(@"".Point{ X:@"".x14, Y:@"".y15 }) }) } 54 type @"".PalettedImage interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorIndexAt(@"".x int, @"".y int) (? uint8); ColorModel() (? @"image/color".Model) } 55 type @"image/color".RGBA struct { R uint8; G uint8; B uint8; A uint8 } 56 func (@"image/color".c5 @"image/color".RGBA) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".r1 = uint32(@"image/color".c5.R); @"image/color".r1 |= @"image/color".r1 << 0x8; @"image/color".g2 = uint32(@"image/color".c5.G); @"image/color".g2 |= @"image/color".g2 << 0x8; @"image/color".b3 = uint32(@"image/color".c5.B); @"image/color".b3 |= @"image/color".b3 << 0x8; @"image/color".a4 = uint32(@"image/color".c5.A); @"image/color".a4 |= @"image/color".a4 << 0x8; return } 57 type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle } 58 func (@"".p2 *@"".RGBA "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 59 func (@"".p2 *@"".RGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 60 func (@"".p2 *@"".RGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel } 61 func (@"".p2 *@"".RGBA "esc:0x1") Opaque () (? bool) 62 func (@"".p2 *@"".RGBA "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x4 } 63 func (@"".p2 *@"".RGBA "esc:0x1") RGBAAt (@"".x3 int, @"".y4 int) (? @"image/color".RGBA) 64 func (@"".p1 *@"".RGBA "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 65 func (@"".p1 *@"".RGBA "esc:0x1") SetRGBA (@"".x2 int, @"".y3 int, @"".c4 @"image/color".RGBA) 66 func (@"".p2 *@"".RGBA "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 67 func @"".NewRGBA (@"".r2 @"".Rectangle) (? *@"".RGBA) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".buf5 []uint8; @"".buf5 = make([]uint8, 0x4 * @"".w3 * @"".h4); return (&@"".RGBA{ Pix:@"".buf5, Stride:0x4 * @"".w3, Rect:@"".r2 }) } 68 type @"image/color".RGBA64 struct { R uint16; G uint16; B uint16; A uint16 } 69 func (@"image/color".c5 @"image/color".RGBA64) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { return uint32(@"image/color".c5.R), uint32(@"image/color".c5.G), uint32(@"image/color".c5.B), uint32(@"image/color".c5.A) } 70 type @"".RGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle } 71 func (@"".p2 *@"".RGBA64 "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 72 func (@"".p2 *@"".RGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 73 func (@"".p2 *@"".RGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model } 74 func (@"".p2 *@"".RGBA64 "esc:0x1") Opaque () (? bool) 75 func (@"".p2 *@"".RGBA64 "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x8 } 76 func (@"".p2 *@"".RGBA64 "esc:0x1") RGBA64At (@"".x3 int, @"".y4 int) (? @"image/color".RGBA64) 77 func (@"".p1 *@"".RGBA64 "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 78 func (@"".p1 *@"".RGBA64 "esc:0x1") SetRGBA64 (@"".x2 int, @"".y3 int, @"".c4 @"image/color".RGBA64) 79 func (@"".p2 *@"".RGBA64 "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 80 func @"".NewRGBA64 (@"".r2 @"".Rectangle) (? *@"".RGBA64) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x8 * @"".w3 * @"".h4); return (&@"".RGBA64{ Pix:@"".pix5, Stride:0x8 * @"".w3, Rect:@"".r2 }) } 81 type @"image/color".NRGBA struct { R uint8; G uint8; B uint8; A uint8 } 82 func (@"image/color".c5 @"image/color".NRGBA) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".r1 = uint32(@"image/color".c5.R); @"image/color".r1 |= @"image/color".r1 << 0x8; @"image/color".r1 *= uint32(@"image/color".c5.A); @"image/color".r1 /= 0xff; @"image/color".g2 = uint32(@"image/color".c5.G); @"image/color".g2 |= @"image/color".g2 << 0x8; @"image/color".g2 *= uint32(@"image/color".c5.A); @"image/color".g2 /= 0xff; @"image/color".b3 = uint32(@"image/color".c5.B); @"image/color".b3 |= @"image/color".b3 << 0x8; @"image/color".b3 *= uint32(@"image/color".c5.A); @"image/color".b3 /= 0xff; @"image/color".a4 = uint32(@"image/color".c5.A); @"image/color".a4 |= @"image/color".a4 << 0x8; return } 83 type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle } 84 func (@"".p2 *@"".NRGBA "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 85 func (@"".p2 *@"".NRGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 86 func (@"".p2 *@"".NRGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel } 87 func (@"".p2 *@"".NRGBA "esc:0x1") NRGBAAt (@"".x3 int, @"".y4 int) (? @"image/color".NRGBA) 88 func (@"".p2 *@"".NRGBA "esc:0x1") Opaque () (? bool) 89 func (@"".p2 *@"".NRGBA "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x4 } 90 func (@"".p1 *@"".NRGBA "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 91 func (@"".p1 *@"".NRGBA "esc:0x1") SetNRGBA (@"".x2 int, @"".y3 int, @"".c4 @"image/color".NRGBA) 92 func (@"".p2 *@"".NRGBA "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 93 func @"".NewNRGBA (@"".r2 @"".Rectangle) (? *@"".NRGBA) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x4 * @"".w3 * @"".h4); return (&@"".NRGBA{ Pix:@"".pix5, Stride:0x4 * @"".w3, Rect:@"".r2 }) } 94 type @"image/color".NRGBA64 struct { R uint16; G uint16; B uint16; A uint16 } 95 func (@"image/color".c5 @"image/color".NRGBA64) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".r1 = uint32(@"image/color".c5.R); @"image/color".r1 *= uint32(@"image/color".c5.A); @"image/color".r1 /= 0xffff; @"image/color".g2 = uint32(@"image/color".c5.G); @"image/color".g2 *= uint32(@"image/color".c5.A); @"image/color".g2 /= 0xffff; @"image/color".b3 = uint32(@"image/color".c5.B); @"image/color".b3 *= uint32(@"image/color".c5.A); @"image/color".b3 /= 0xffff; @"image/color".a4 = uint32(@"image/color".c5.A); return } 96 type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle } 97 func (@"".p2 *@"".NRGBA64 "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 98 func (@"".p2 *@"".NRGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 99 func (@"".p2 *@"".NRGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model } 100 func (@"".p2 *@"".NRGBA64 "esc:0x1") NRGBA64At (@"".x3 int, @"".y4 int) (? @"image/color".NRGBA64) 101 func (@"".p2 *@"".NRGBA64 "esc:0x1") Opaque () (? bool) 102 func (@"".p2 *@"".NRGBA64 "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x8 } 103 func (@"".p1 *@"".NRGBA64 "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 104 func (@"".p1 *@"".NRGBA64 "esc:0x1") SetNRGBA64 (@"".x2 int, @"".y3 int, @"".c4 @"image/color".NRGBA64) 105 func (@"".p2 *@"".NRGBA64 "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 106 func @"".NewNRGBA64 (@"".r2 @"".Rectangle) (? *@"".NRGBA64) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x8 * @"".w3 * @"".h4); return (&@"".NRGBA64{ Pix:@"".pix5, Stride:0x8 * @"".w3, Rect:@"".r2 }) } 107 type @"image/color".Alpha struct { A uint8 } 108 func (@"image/color".c5 @"image/color".Alpha) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); @"image/color".a4 |= @"image/color".a4 << 0x8; return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 } 109 type @"".Alpha struct { Pix []uint8; Stride int; Rect @"".Rectangle } 110 func (@"".p2 *@"".Alpha "esc:0x1") AlphaAt (@"".x3 int, @"".y4 int) (? @"image/color".Alpha) 111 func (@"".p2 *@"".Alpha "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 112 func (@"".p2 *@"".Alpha "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 113 func (@"".p2 *@"".Alpha "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel } 114 func (@"".p2 *@"".Alpha "esc:0x1") Opaque () (? bool) 115 func (@"".p2 *@"".Alpha "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x1 } 116 func (@"".p1 *@"".Alpha "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 117 func (@"".p1 *@"".Alpha "esc:0x1") SetAlpha (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Alpha) 118 func (@"".p2 *@"".Alpha "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 119 func @"".NewAlpha (@"".r2 @"".Rectangle) (? *@"".Alpha) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x1 * @"".w3 * @"".h4); return (&@"".Alpha{ Pix:@"".pix5, Stride:0x1 * @"".w3, Rect:@"".r2 }) } 120 type @"image/color".Alpha16 struct { A uint16 } 121 func (@"image/color".c5 @"image/color".Alpha16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 } 122 type @"".Alpha16 struct { Pix []uint8; Stride int; Rect @"".Rectangle } 123 func (@"".p2 *@"".Alpha16 "esc:0x1") Alpha16At (@"".x3 int, @"".y4 int) (? @"image/color".Alpha16) 124 func (@"".p2 *@"".Alpha16 "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 125 func (@"".p2 *@"".Alpha16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 126 func (@"".p2 *@"".Alpha16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model } 127 func (@"".p2 *@"".Alpha16 "esc:0x1") Opaque () (? bool) 128 func (@"".p2 *@"".Alpha16 "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x2 } 129 func (@"".p1 *@"".Alpha16 "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 130 func (@"".p1 *@"".Alpha16 "esc:0x1") SetAlpha16 (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Alpha16) 131 func (@"".p2 *@"".Alpha16 "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 132 func @"".NewAlpha16 (@"".r2 @"".Rectangle) (? *@"".Alpha16) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x2 * @"".w3 * @"".h4); return (&@"".Alpha16{ Pix:@"".pix5, Stride:0x2 * @"".w3, Rect:@"".r2 }) } 133 type @"image/color".Gray struct { Y uint8 } 134 func (@"image/color".c5 @"image/color".Gray) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { var @"image/color".y6 uint32; ; @"image/color".y6 = uint32(@"image/color".c5.Y); @"image/color".y6 |= @"image/color".y6 << 0x8; return @"image/color".y6, @"image/color".y6, @"image/color".y6, 0xffff } 135 type @"".Gray struct { Pix []uint8; Stride int; Rect @"".Rectangle } 136 func (@"".p2 *@"".Gray "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 137 func (@"".p2 *@"".Gray "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 138 func (@"".p2 *@"".Gray "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel } 139 func (@"".p2 *@"".Gray "esc:0x1") GrayAt (@"".x3 int, @"".y4 int) (? @"image/color".Gray) 140 func (@"".p2 *@"".Gray "esc:0x1") Opaque () (? bool) { return true } 141 func (@"".p2 *@"".Gray "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x1 } 142 func (@"".p1 *@"".Gray "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 143 func (@"".p1 *@"".Gray "esc:0x1") SetGray (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Gray) 144 func (@"".p2 *@"".Gray "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 145 func @"".NewGray (@"".r2 @"".Rectangle) (? *@"".Gray) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x1 * @"".w3 * @"".h4); return (&@"".Gray{ Pix:@"".pix5, Stride:0x1 * @"".w3, Rect:@"".r2 }) } 146 type @"image/color".Gray16 struct { Y uint16 } 147 func (@"image/color".c5 @"image/color".Gray16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { var @"image/color".y6 uint32; ; @"image/color".y6 = uint32(@"image/color".c5.Y); return @"image/color".y6, @"image/color".y6, @"image/color".y6, 0xffff } 148 type @"".Gray16 struct { Pix []uint8; Stride int; Rect @"".Rectangle } 149 func (@"".p2 *@"".Gray16 "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 150 func (@"".p2 *@"".Gray16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 151 func (@"".p2 *@"".Gray16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model } 152 func (@"".p2 *@"".Gray16 "esc:0x1") Gray16At (@"".x3 int, @"".y4 int) (? @"image/color".Gray16) 153 func (@"".p2 *@"".Gray16 "esc:0x1") Opaque () (? bool) { return true } 154 func (@"".p2 *@"".Gray16 "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x2 } 155 func (@"".p1 *@"".Gray16 "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 156 func (@"".p1 *@"".Gray16 "esc:0x1") SetGray16 (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Gray16) 157 func (@"".p2 *@"".Gray16 "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 158 func @"".NewGray16 (@"".r2 @"".Rectangle) (? *@"".Gray16) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix5 []uint8; @"".pix5 = make([]uint8, 0x2 * @"".w3 * @"".h4); return (&@"".Gray16{ Pix:@"".pix5, Stride:0x2 * @"".w3, Rect:@"".r2 }) } 159 type @"image/color".CMYK struct { C uint8; M uint8; Y uint8; K uint8 } 160 func (@"image/color".c5 @"image/color".CMYK) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) { var @"image/color".w6 uint32; ; @"image/color".w6 = uint32(0xffff - uint32(@"image/color".c5.K) * 0x101); var @"image/color".r7 uint32; ; @"image/color".r7 = uint32(0xffff - uint32(@"image/color".c5.C) * 0x101) * @"image/color".w6 / 0xffff; var @"image/color".g8 uint32; ; @"image/color".g8 = uint32(0xffff - uint32(@"image/color".c5.M) * 0x101) * @"image/color".w6 / 0xffff; var @"image/color".b9 uint32; ; @"image/color".b9 = uint32(0xffff - uint32(@"image/color".c5.Y) * 0x101) * @"image/color".w6 / 0xffff; return uint32(@"image/color".r7), uint32(@"image/color".g8), uint32(@"image/color".b9), 0xffff } 161 type @"".CMYK struct { Pix []uint8; Stride int; Rect @"".Rectangle } 162 func (@"".p2 *@"".CMYK "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 163 func (@"".p2 *@"".CMYK "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 164 func (@"".p2 *@"".CMYK "esc:0x1") CMYKAt (@"".x3 int, @"".y4 int) (? @"image/color".CMYK) 165 func (@"".p2 *@"".CMYK "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".CMYKModel } 166 func (@"".p2 *@"".CMYK "esc:0x1") Opaque () (? bool) { return true } 167 func (@"".p2 *@"".CMYK "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x4 } 168 func (@"".p1 *@"".CMYK "esc:0x1") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 169 func (@"".p1 *@"".CMYK "esc:0x1") SetCMYK (@"".x2 int, @"".y3 int, @"".c4 @"image/color".CMYK) 170 func (@"".p2 *@"".CMYK "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 171 func @"".NewCMYK (@"".r2 @"".Rectangle) (? *@"".CMYK) { var @"".w3 int; var @"".h4 int; @"".w3, @"".h4 = @"".r2.Dx(), @"".r2.Dy(); var @"".buf5 []uint8; @"".buf5 = make([]uint8, 0x4 * @"".w3 * @"".h4); return (&@"".CMYK{ Pix:@"".buf5, Stride:0x4 * @"".w3, Rect:@"".r2 }) } 172 type @"image/color".Palette []@"image/color".Color 173 func (@"image/color".p2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c3 @"image/color".Color) (? @"image/color".Color) 174 func (@"image/color".p2 @"image/color".Palette "esc:0x9") Index (@"image/color".c3 @"image/color".Color) (? int) 175 type @"".Paletted struct { Pix []uint8; Stride int; Rect @"".Rectangle; Palette @"image/color".Palette } 176 func (@"".p2 *@"".Paletted "esc:0x32") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 177 func (@"".p2 *@"".Paletted "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 178 func (@"".p2 *@"".Paletted "esc:0x1") ColorIndexAt (@"".x3 int, @"".y4 int) (? uint8) 179 func (@"".p2 *@"".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"".p2.Palette } 180 func (@"".p2 *@"".Paletted "esc:0x9") Opaque () (? bool) 181 func (@"".p2 *@"".Paletted "esc:0x1") PixOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.Stride + (@"".x3 - @"".p2.Rect.Min.X) * 0x1 } 182 func (@"".p1 *@"".Paletted "esc:0x9") Set (@"".x2 int, @"".y3 int, @"".c4 @"image/color".Color) 183 func (@"".p1 *@"".Paletted "esc:0x1") SetColorIndex (@"".x2 int, @"".y3 int, @"".index4 uint8) 184 func (@"".p2 *@"".Paletted "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 185 func @"".NewPaletted (@"".r2 @"".Rectangle, @"".p3 @"image/color".Palette) (? *@"".Paletted) { var @"".w4 int; var @"".h5 int; @"".w4, @"".h5 = @"".r2.Dx(), @"".r2.Dy(); var @"".pix6 []uint8; @"".pix6 = make([]uint8, 0x1 * @"".w4 * @"".h5); return (&@"".Paletted{ Pix:@"".pix6, Stride:0x1 * @"".w4, Rect:@"".r2, Palette:@"".p3 }) } 186 type @"".Uniform struct { C @"image/color".Color } 187 func (@"".c2 *@"".Uniform "esc:0x22") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) { return @"".c2.C } 188 func (@"".c2 *@"".Uniform "esc:0x1") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:-0x3b9aca00, Y:-0x3b9aca00 }), Max:(@"".Point{ X:0x3b9aca00, Y:0x3b9aca00 }) }) } 189 func (@"".c2 *@"".Uniform "esc:0x12") ColorModel () (? @"image/color".Model) { return @"".c2 } 190 func (@"".c2 *@"".Uniform "esc:0x22") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c2.C } 191 func (@"".c2 *@"".Uniform "esc:0x9") Opaque () (? bool) 192 func (@"".c5 *@"".Uniform "esc:0x9") RGBA () (@"".r1 uint32, @"".g2 uint32, @"".b3 uint32, @"".a4 uint32) 193 var @"".Black *@"".Uniform 194 var @"".White *@"".Uniform 195 var @"".Transparent *@"".Uniform 196 var @"".Opaque *@"".Uniform 197 func @"".NewUniform (@"".c2 @"image/color".Color) (? *@"".Uniform) { return (&@"".Uniform{ C:@"".c2 }) } 198 type @"".YCbCrSubsampleRatio int 199 func (@"".s2 @"".YCbCrSubsampleRatio) String () (? string) 200 const @"".YCbCrSubsampleRatio444 @"".YCbCrSubsampleRatio = 0x0 201 const @"".YCbCrSubsampleRatio422 @"".YCbCrSubsampleRatio = 0x1 202 const @"".YCbCrSubsampleRatio420 @"".YCbCrSubsampleRatio = 0x2 203 const @"".YCbCrSubsampleRatio440 @"".YCbCrSubsampleRatio = 0x3 204 const @"".YCbCrSubsampleRatio411 @"".YCbCrSubsampleRatio = 0x4 205 const @"".YCbCrSubsampleRatio410 @"".YCbCrSubsampleRatio = 0x5 206 type @"image/color".YCbCr struct { Y uint8; Cb uint8; Cr uint8 } 207 func (@"image/color".c5 @"image/color".YCbCr) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) 208 type @"".YCbCr struct { Y []uint8; Cb []uint8; Cr []uint8; YStride int; CStride int; SubsampleRatio @"".YCbCrSubsampleRatio; Rect @"".Rectangle } 209 func (@"".p2 *@"".YCbCr "esc:0x1") At (@"".x3 int, @"".y4 int) (? @"image/color".Color) 210 func (@"".p2 *@"".YCbCr "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p2.Rect } 211 func (@"".p2 *@"".YCbCr "esc:0x1") COffset (@"".x3 int, @"".y4 int) (? int) 212 func (@"".p2 *@"".YCbCr "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel } 213 func (@"".p2 *@"".YCbCr "esc:0x1") Opaque () (? bool) { return true } 214 func (@"".p2 *@"".YCbCr "esc:0xa") SubImage (@"".r3 @"".Rectangle) (? @"".Image) 215 func (@"".p2 *@"".YCbCr "esc:0x1") YCbCrAt (@"".x3 int, @"".y4 int) (? @"image/color".YCbCr) 216 func (@"".p2 *@"".YCbCr "esc:0x1") YOffset (@"".x3 int, @"".y4 int) (? int) { return (@"".y4 - @"".p2.Rect.Min.Y) * @"".p2.YStride + (@"".x3 - @"".p2.Rect.Min.X) } 217 func @"".NewYCbCr (@"".r2 @"".Rectangle, @"".subsampleRatio3 @"".YCbCrSubsampleRatio) (? *@"".YCbCr) 218 func @"".init () 219 var @"image/color".Opaque @"image/color".Alpha16 220 var @"image/color".Transparent @"image/color".Alpha16 221 var @"image/color".Alpha16Model @"image/color".Model 222 type @"".format struct { @"".name string; @"".magic string; @"".decode func(? @"io".Reader) (? @"".Image, ? error); @"".decodeConfig func(? @"io".Reader) (? @"".Config, ? error) } 223 var @"".formats []@"".format 224 var @"image/color".RGBAModel @"image/color".Model 225 var @"image/color".RGBA64Model @"image/color".Model 226 var @"image/color".NRGBAModel @"image/color".Model 227 var @"image/color".NRGBA64Model @"image/color".Model 228 var @"image/color".AlphaModel @"image/color".Model 229 var @"image/color".GrayModel @"image/color".Model 230 var @"image/color".Gray16Model @"image/color".Model 231 var @"image/color".CMYKModel @"image/color".Model 232 var @"image/color".YCbCrModel @"image/color".Model 233 234 $$ 235 _go_.o 0 0 0 644 433898 ` 236 go object linux amd64 go1.5.1 X:none 237 238 ! 239 go13ldbufio.aerrors.aio.aimage/color.astrconv.a""".RegisterFormatdH%H;aZH1H\$PH\$XH\$`H\$hH\$pH\$xH$H\$PH$H\$XH$H\$`H$H\$hH$H\$pH$H\$xHHH HHH9w;HHHHk0HHl$PH\$Hl$H-H,$HH-H,$HT$HD$HL$H\$ HT$(HD$0HL$8HHD$@HHH HT$H=uHfH-H,$HT$HT$HHD$@B 244 "".formats"".formats "".formats"".formatstype."".format 245 (runtime.typedmemmove type.[]"".format 246 "runtime.growslice"".formats "".formats6runtime.writeBarrierEnabled"".formats"".formats 247 .runtime.writebarrierptr 248 0runtime.morestack_noctxt` 249 "".autotmp_0000_type."".format"".decodeConfigPNtype.func(io.Reader) ("".Config, error)"".decode@Ltype.func(io.Reader) ("".Image, error)"".magic type.string"".nametype.stringB,W'Tgclocalsac96ed3958d5792ac369a1dc2bfe9382Tgclocals5bcb5afcb5617f15eb2d0b279323d878Tprebuilts/go/linux-x86/src/image/format.go"".asReader 250 251 dH%H$pH;AH1H$(H$01H$H$HH$H$H\$H$ H\$H$H\$\$ H$HT$`H$HL$htH$(H$0HH$H$ H\$pHD$xH$HH$1H9tH[H-H9HthHXH9|_HD$HH1H9tH\$HH$0H$(HHH$HH\$HH\$HD$HT$0H} HD$0HH$HL$0HD$HD$8HD$@HH$HL$HL$LD$Ht$ Hl$(H$H$H$1HL$L$H$H$H$H$HT$PH$HL$XH$H$H$H\$@Ht,H$H\$Hl$H-H,$HD$811iS" 253 type."".reader 254 $runtime.assertI2I2$type.*bufio.Reader>go.itab.*bufio.Reader."".reader$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader 255 runtime.typ2Itab"type.bufio.Reader 256 "runtime.newobjecttype.[]uint8 257 "runtime.makeslice 258 runtime.duffzero "type.bufio.Reader 259 260 (runtime.typedmemmove 261 262 0runtime.morestack_noctxt@"".autotmp_0010$type.*bufio.Reader"".autotmp_0009$type.*bufio.Reader"".autotmp_0008"type.bufio.Reader"".autotmp_0005$type.*bufio.Reader"".autotmp_0004type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader 263 "".rrtype."".reader"".~r1 type."".reader"".rtype.io.Reader*" X4m\[D x+.)Tgclocalsa68b09a48716afad7ca7a02fe6add474Tgclocalsdd9a4d2009c4ac75e28d1a37bbe5075eTprebuilts/go/linux-x86/src/image/format.go"".matchdH%H;avxHt$ LL$H|$H9tD$0HL$H\$(1IL9}6)H9s;I@8tH9s#I?tD$0HHL9|D$0o 269 270 $runtime.panicindex 271 $runtime.panicindex 272 0runtime.morestack_noctxt` 273 "".autotmp_0017type.int"".autotmp_0016type.int"".~r2Ptype.bool"".b type.[]uint8"".magictype.string*h" 276 277 y'Tgclocalsb4c25e9b09fd0cf9bb429dcefe91c353Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/linux-x86/src/image/format.go"".sniff 278 279 dH%HD$H;AgH1H$H$H$H$ H$(H$0HHHH$1H$HD$8HT$xHHl$8H9HD$HHLL@HxHpHP Hh(HL$@L$L$L$L$H$H$H$H$H$H$H$H$H$H\$H$H$H$H[ LD$LD$`Hl$Hl$hHT$ HT$pHD$(H\$0H\$XHD$PHH$HH$HKHL$LD$Hl$HT$ \$(thH$H$H$H$H$H$H$H$ H$H$(H$H$0HHD$HHL$@H0HHl$8H9U1H$H$H$H$ H$(H$0H#w 283 "".formats"".formats "".formats 284 "".match 285 286 0runtime.morestack_noctxt"".autotmp_0027type."".format"".autotmp_0026_type."".format"".autotmp_0025type.*"".format"".autotmp_0024type.int"".autotmp_0023type.int"".autotmp_0020 type.[]"".format"".errtype.error"".btype.[]uint8"".ftype."".format"".~r1 type."".format"".rtype."".reader&X*QTEh:Tgclocals99ef9ff0bd07d0e619cc0988c2dabb63Tgclocalsd82314ad8b4d0d463ee994662aedec13Tprebuilts/go/linux-x86/src/image/format.go"".DecodedH%H$H;A5H1H$H$1H$H$1H$H$H$H$1H\$`H\$h1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$rHHL$`HD$hH$H$H$HD$H\$H$H\$H$H\$ H$H\$(H$ HD$0H\$8H$0H$(1H9uJ1H$H$1H$H$HH$HH$HHH$H$H\$H$H\$H\$HH$HKHL$H$(HHl$HT$HL$ HD$(H$H$H$H$H$H$H$H$HH$H$H$H$H$HH$1H9tH[H-H9HtkHXH9|bHD$XH1H9t HT$XH$HH$HHH$HH\$HH\$HD$HT$@H} HD$@HH$HL$@HD$HD$HHD$PHH$HL$HL$LD$Ht$ Hl$(H$H$H$81HL$L$8H$H$@H$H$HHT$pH$PHL$xH$XH$H$H\$PHt,H$8H\$Hl$H-H,$HD$H11f. 295 type."".reader 296 $runtime.assertI2I2 297 "".sniff"".ErrFormat"".ErrFormattype.io.Reader 298 runtime.convI2I 299 $type.*bufio.Reader>go.itab.*bufio.Reader."".reader$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader 305 runtime.typ2Itab"type.bufio.Reader 308 "runtime.newobject type.[]uint8 311 "runtime.makeslice 312 runtime.duffzero"type.bufio.Reader 313 (runtime.typedmemmove 314 0runtime.morestack_noctxt,"".autotmp_0035type."".reader"".autotmp_0034$type.*bufio.Reader"".autotmp_0033$type.*bufio.Reader"".autotmp_0032"type.bufio.Reader"".autotmp_0029$type.*bufio.Reader"".autotmp_0028type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader"".~r1type."".reader 316 "".rrtype."".reader"".rtype.io.Reader"".ftype."".format 317 "".rrtype."".reader"".~r3`type.error"".~r2@type.string"".~r1 type."".Image"".rtype.io.Reader*"4XdJ`HD*Y 322 +.,Tgclocals693e8a411a45da74e76c619c62a5bb87Tgclocalsa09af47d95804d1a0febde7c2c7293b6Tprebuilts/go/linux-x86/src/image/format.go"".DecodeConfigdH%H$H;AoH1H$H$H$H$1H$H$1H$H$H$H$1H\$`H\$h1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$HHL$`HD$hH$H$H$HD$H\$H$H\$H$H\$ H$H\$(H$ H\$0H$(HD$8H$01H9uZ1H$H$H$H$1H$H$HH$HH$HHH$H$H\$H$H\$H\$HH$HKHL$H$0HH|$Ht$Hl$ HT$(HL$0HD$8H$H$H$H$H$H$H$H$H$H$HH$H$H$H$H$HH$1H9tH[H-H9HtkHXH9|bHD$XH1H9t HT$XH$HH$HHH$HH\$HH\$HD$HT$@H} HD$@HH$HL$@HD$HD$HHD$PHH$HL$HL$LD$Ht$ Hl$(H$H$H$81HL$L$8H$H$@H$H$HHT$pH$PHL$xH$XH$H$H\$PHt,H$8H\$Hl$H-H,$HD$H11fl. 327 type."".reader 328 $runtime.assertI2I2 329 "".sniff"".ErrFormat"".ErrFormattype.io.Reader 330 runtime.convI2I$type.*bufio.Reader>go.itab.*bufio.Reader."".reader$type.*bufio.Readertype."".reader >go.itab.*bufio.Reader."".reader 337 runtime.typ2Itab "type.bufio.Reader 339 "runtime.newobjecttype.[]uint8 340 "runtime.makeslice 341 runtime.duffzero"type.bufio.Reader 342 (runtime.typedmemmove 343 0runtime.morestack_noctxt,"".autotmp_0045type."".reader"".autotmp_0044$type.*bufio.Reader"".autotmp_0043$type.*bufio.Reader"".autotmp_0042"type.bufio.Reader"".autotmp_0039$type.*bufio.Reader"".autotmp_0038type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader"".~r1type."".reader 345 "".rrtype."".reader"".rtype.io.Reader"".ftype."".format 346 "".rrtype."".reader"".~r3type.error"".~r2`type.string"".~r1 type."".Config"".rtype.io.Reader*" ,hdZjX*Y 351 +.2Tgclocals473289be119113ddb746c224f05da7b4Tgclocalsa09af47d95804d1a0febde7c2c7293b6Tprebuilts/go/linux-x86/src/image/format.go"".Point.StringdH%HD$H;AH1H$H$H$H$H\$H\$xH\$H$H$H$HL$HD$H$HH\$HD$H\$xH\$H$H\$ HH\$(HD$0HL$hHL$8HD$pHD$@HH\$HHD$PH\$XH$H\$`H$H 353 | 354 strconv.Itoa 355 strconv.Itoago.string."("go.string.","go.string.")" 356 *runtime.concatstring5 357 0runtime.morestack_noctxt@"".autotmp_0050?type.string"".autotmp_0049type.string"".~r0 type.string"".ptype."".Point&1=(:Tgclocals64ca935d1a2110a30e2d604686188539Tgclocals44750c784da4dd430afdd97fea5c405aPprebuilts/go/linux-x86/src/image/geom.go"".Point.Add`R11HL$Hl$HD$HHl$ HHL$(HD$0`"".~r1@type."".Point"".q type."".Point"".ptype."".Point00 360 0.Tgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.Sub`R11HL$Hl$HD$H)Hl$ H)HL$(HD$0`"".~r1@type."".Point"".q type."".Point"".ptype."".Point00 362 :.Tgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.Mul`LHD$11HL$H\$HHHL$ H\$(P"".~r10type."".Point"".k type.int"".ptype."".Point00 364 D)Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.DivHt$11HD$Ht1HHHHD$HHtHHHHL$ H\$(HHHHP"".~r10type."".Point"".k type.int"".ptype."".PointPP 366 NITgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.InzHL$HD$H\$H9"Hl$(H9}H\$ H9Hl$0H9D$8D$8p"".~r1`type.bool"".r "type."".Rectangle"".ptype."".Point@@ 368 X 369 6Tgclocals627bbca91efe935c3ac76737d2026ca6Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.ModH|$(Ht$0LL$LD$ 1L)L)HD$HT$11L)IM)HtJHHHHH}HLHt)HHHHH}H11LLHL$8HD$@11"".autotmp_0062type."".Point"".autotmp_0059type.int"".autotmp_0058type.int"".autotmp_0056type.int"".autotmp_0055type.int"".~r1`type."".Point"".r "type."".Rectangle"".ptype."".Point2f Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Point.EqH H\$(H\$H\$0H\$HD$8H$HL$@HL$HL$H$HH(H9uHYHhH9D$HH D$HP@ 372 "".autotmp_0064?type."".Point"".autotmp_0063type."".Point"".~r1@type.bool"".q type."".Point"".ptype."".Point@O?@`\Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go 376 "".Pt@211HL$HD$HL$HD$ @"".~r2 type."".Point"".Ytype.int"".Xtype.int Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go&"".Rectangle.StringdH%H;aHh1H$H$H\$pHH$HKHL$H\$H\$XH\$H\$`H$HH$HKHL$HL$HD$H$H\$XH\$H\$`H\$HH\$HD$ HL$HHL$(HD$PHD$0H\$8H$H\$@H$Hh 385 ~ 386 "".Point.String 387 "".Point.Stringgo.string."-" 388 *runtime.concatstring3 389 0runtime.morestack_noctxt`"".autotmp_0069?type.string"".autotmp_0068type.string"".~r0@type.string"".r"type."".Rectangle)>1T=Tgclocalsae0a20890c9ac6bfbea3383f34532babTgclocals44750c784da4dd430afdd97fea5c405aPprebuilts/go/linux-x86/src/image/geom.go"".Rectangle.Dx@&H\$Hl$H)H\$(P"".~r0@type.int"".r"type."".Rectangle Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Rectangle.Dy@&H\$ Hl$H)H\$(P"".~r0@type.int"".r"type."".Rectangle Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go""".Rectangle.Size`R11HL$Hl$HD$ H)Hl$H)HL$(HD$0`"".~r0@type."".Point"".r"type."".Rectangle00 394 Tgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go "".Rectangle.AddHL$(HD$011Ht$HT$H\$HHHHH\$ HHt$8HT$@HL$HH\$P"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP 397 Tgclocals63ba92e6c81d2d7bf2207e4076c8b23cTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go "".Rectangle.SubHL$(HD$011Ht$HT$H\$H)H)H)HH\$ H)Ht$8HT$@HL$HH\$P"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP 400 Tgclocals63ba92e6c81d2d7bf2207e4076c8b23cTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go$"".Rectangle.InsetLL$HT$Ht$H|$ HD$(1HL)HHH9}]LHHH?H)HHHH)HHH9}(HHH?H)HHHL$0Ht$8HT$@HD$HHHH)HLHH)"".autotmp_0080type.int"".autotmp_0079type.int"".autotmp_0078type.int"".autotmp_0076type.int"".autotmp_0075type.int"".autotmp_0074type.int"".autotmp_0073type.int"".~r1P"type."".Rectangle"".n@type.int"".r"type."".Rectangle< 402 403 Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go,"".Rectangle.IntersectLT$(LL$0LD$8H|$@Ht$HT$HL$HD$ 1L9}LL9}LL9~LH9~HH9H9Ht$HHT$PHL$XHD$`HH\$HHH\$PHH\$XHH\$` 404 "".ZR 405 "".ZR 406 "".ZR0 407 "".ZR"".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle4* 409 7Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go$"".Rectangle.UnionLT$(LL$0LD$8H|$@Ht$HT$HL$HD$ 1H9H9@@tLT$HLL$PLD$XH|$`M9}WI9@@tHt$HHT$PHL$XHD$`L9~LL9~LL9}LH9}HHt$HHT$PHL$XHD$`HHt"".autotmp_0082type.bool"".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".RectangleD* Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go$"".Rectangle.Empty`RH\$Hl$H9}H\$Hl$ H9D$(D$(P"".~r0@type.bool"".r"type."".Rectangle000Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Rectangle.EqH@L|$HLt$PLl$XLd$`L\$hLT$pLL$xH$L|$ Lt$(Ll$0Ld$8L$LT$LL$H|$H\$ HH$HHHHH*H9H^HjH9u{HHHHHH)H9u^HXHiH9<uBM9}4M9<t M9}I9$H@H$H$11^M"".autotmp_0092type.bool"".autotmp_0091type.bool"".autotmp_0090type.*"".Point"".autotmp_0089type.*"".Point"".autotmp_0084"type."".Rectangle"".autotmp_0083?"type."".Rectangle"".~r1type.bool"".s@"type."".Rectangle"".r"type."".RectangleJ/Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go*"".Rectangle.OverlapsLl$Ld$L\$LT$ LL$(LD$0H|$8Ht$@M9}AM9<u'I9})I9<uI9}M9}I9} M9D$HD$HHH"".autotmp_0095type.bool"".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectangle((#Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Rectangle.InLL$LD$H|$Ht$ I9}CI9<tD$HH\$(L9"Hl$8H9H\$0L9Hl$@H9D$HD$HH"".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectanglepp 418 3Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go$"".Rectangle.CanonHt$HT$HL$ HD$1H9} HHHH9} HHHHT$(HD$0Ht$8HL$@"".autotmp_0098type.int"".~r0@"type."".Rectangle"".r"type."".RectanglePP Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".Rectangle.AtdH%H;aDHh1H$H$1H$H$HD$@H\$pH|$xH|$PH$Ht$XH$HT$`H\$HHL$8H9H9H9H9<t\HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HhHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$Hh1= 422 0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque 423 runtime.convT2I0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent 424 runtime.convT2I 425 0runtime.morestack_noctxt"".r?"type."".Rectangle"".p_type."".Point"".~r2`,type.image/color.Color"".yPtype.int"".x@type.int"".r"type."".Rectangle&[ )o\\Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go&"".Rectangle.Bounds`V1H\$H\$(H\$H\$0H\$H\$8H\$ H\$@"".~r0@"type."".Rectangle"".r"type."".Rectangle00.Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go."".Rectangle.ColorModel@61HH\$(HH\$0 430 0image/color.Alpha16Model"0image/color.Alpha16Model`"".~r0@,type.image/color.Model"".r"type."".Rectangle Tgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go"".RectHt$HT$HL$HD$ 1H9~ HHHH9~ HHH1Ht$(HL$0HT$8HD$@"".autotmp_0101type.int"".~r4@"type."".Rectangle 435 "".y10type.int 436 "".x1 type.int 437 "".y0type.int 438 "".x0type.intPP Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbPprebuilts/go/linux-x86/src/image/geom.go*"".(*RGBA).ColorModel@61HH\$HH\$ 439 *image/color.RGBAModel"*image/color.RGBAModel0"".~r0,type.image/color.Model"".ptype.*"".RGBA Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*RGBA).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".RGBA@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*RGBA).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@9 443 444 """.(*RGBA).RGBAAt*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color 445 runtime.convT2I 446 0runtime.morestack_noctxtP 447 "".autotmp_0103*type.image/color.RGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA#@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*RGBA).RGBAAtdH%H;aRL\$LT$HL$11H.LI LA(Hy0Hq8M9I9M9I9<u1T$ T$!T$"T$#HY LH)HY(LH)HiHHHH1HHH1HQHiH9H>IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#1 456 457 $runtime.panicindex 458 $runtime.panicindex 459 $runtime.panicindex 460 $runtime.panicindex 461 0runtime.morestack_noctxt@"".autotmp_0108*type.image/color.RGBA"".autotmp_0106type.int"".~r20*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA"$A&5Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*RGBA).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*RGBA).SetdH%H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JDHHHH HCHkH9sH@;Hxe1mA 475 *image/color.RGBAModel*image/color.RGBAModel*type.image/color.RGBA 476 "runtime.assertI2T 477 $runtime.panicindex 478 $runtime.panicindex 479 $runtime.panicindex 480 $runtime.panicindex 481 0runtime.morestack_noctxtP"".autotmp_0126type.int"".autotmp_0125type.int"".autotmp_0124type.int"".autotmp_0123type.int"".autotmp_0121type.int"".autotmp_0119*type.image/color.RGBA"".autotmp_0118,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA&{=F/_.(! Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go$"".(*RGBA).SetRGBAdH%H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+1 490 491 $runtime.panicindex 492 $runtime.panicindex 493 $runtime.panicindex 494 $runtime.panicindex 495 0runtime.morestack_noctxt@"".autotmp_0137type.int"".autotmp_0136type.int"".autotmp_0135type.int"".autotmp_0134type.int"".autotmp_0132type.int"".c0*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA@"A&'"#&CTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*RGBA).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HN* 501 502 runtime.duffcopy 503 ,"".Rectangle.Intersecttype."".RGBA 504 "runtime.newobject2go.itab.*"".RGBA."".Imagetype.*"".RGBAtype."".Image2go.itab.*"".RGBA."".Image 505 runtime.typ2Itabtype."".RGBA 506 "runtime.newobject6runtime.writeBarrierEnabled 507 2go.itab.*"".RGBA."".Imagetype.*"".RGBAtype."".Image2go.itab.*"".RGBA."".Image 512 runtime.typ2Itab 514 .runtime.writebarrierptr 516 $runtime.panicslice 518 0runtime.morestack_noctxtp"".autotmp_0152type.*uint8"".autotmp_0151type.*"".RGBA"".autotmp_0150type.int"".autotmp_0149type.int"".autotmp_0146?type.*"".RGBA"".autotmp_0144type.*"".RGBA"".autotmp_0143/type.[]uint8"".autotmp_0142type.*"".RGBA"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA*R1wK#?MJ - y.2Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go""".(*RGBA).OpaquedH%H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9~YLH9}1HtXH9HqHiH9sAHtD$HH9|HYLIHYHHIHY8L9D$aHA 523 524 $runtime.panicindex 525 0runtime.morestack_noctxt "".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.int"".~r0type.bool"".ptype.*"".RGBAH-+ " 528 529 530 >Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewRGBAdH%HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 537 type.[]uint8 538 "runtime.makeslicetype."".RGBA 539 "runtime.newobject6runtime.writeBarrierEnabled 540 .runtime.writebarrierptr 541 0runtime.morestack_noctxtP"".autotmp_0169?type.*"".RGBA"".autotmp_0168type.int"".autotmp_0166type.int"".autotmp_0165type.int"".r"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wtype.int"".~r1@type.*"".RGBA"".r"type."".Rectangle,?1Q7#Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go."".(*RGBA64).ColorModel@61HH\$HH\$ 544 .image/color.RGBA64Model".image/color.RGBA64Model0"".~r0,type.image/color.Model"".ptype.*"".RGBA64 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*RGBA64).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".RGBA64@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*RGBA64).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$8H\$f\$:H\$f\$<H\$f\$>HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hH@1 548 549 *"".(*RGBA64).RGBA64At.type.image/color.RGBA64,type.image/color.ColorXgo.itab.image/color.RGBA64.image/color.Color 550 runtime.convT2I 551 0runtime.morestack_noctxtP 552 "".autotmp_0170.type.image/color.RGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64#@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*RGBA64).RGBA64At dH%H;a&L\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1fT$ fT$"fT$$fT$&HY LH)HY(LH)HiHHHH1HHH1HQLAH9eH>fHHHH1HQLAH98H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9s~H,>fmH IHHH1HQLAH9sQH>fHHHHH HELEH9s$H,fmH fDd$ fD\$"fDT$$f\$&1/ 566 567 $runtime.panicindex 568 $runtime.panicindex 569 $runtime.panicindex 570 $runtime.panicindex 571 $runtime.panicindex 572 $runtime.panicindex 573 $runtime.panicindex 574 $runtime.panicindex 575 0runtime.morestack_noctxt@"".autotmp_0175.type.image/color.RGBA64"".autotmp_0173type.int"".~r20.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64D$A&PQMI ]Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go,"".(*RGBA64).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA64@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go "".(*RGBA64).SetdH%H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9oI9fL9]I9<uHxIY LH)IY(LH)HIiHHHHH\$(H$H\$H$H\$HH$HH[ HL$HD$ 1f\$0f\$2f\$4f\$6HH$HL$hHL$HD$pHD$H\$0H\$H$HD$(H\$0IH\$2HH\$4HH\$6HIIHWHLQHiM9<JLf@+IIHLQHiM9 JDIIHLIHiM9JHf@+IIHLIHiM9J@;IIHHyHiI9JHf@+IIHHyHiI9s_J@3IIH9HqHiI9s:JHf@+HHHH HCHkH9sH1Hx1AP 597 .image/color.RGBA64Model.image/color.RGBA64Model.type.image/color.RGBA64 598 "runtime.assertI2T 599 600 $runtime.panicindex 601 602 $runtime.panicindex 603 604 $runtime.panicindex 605 606 $runtime.panicindex 607 608 $runtime.panicindex 610 $runtime.panicindex 612 $runtime.panicindex 614 $runtime.panicindex 616 0runtime.morestack_noctxtP$"".autotmp_0205type.int"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0201type.int"".autotmp_0200type.int"".autotmp_0199type.int"".autotmp_0198type.int"".autotmp_0196type.int"".autotmp_0194.type.image/color.RGBA64"".autotmp_0193,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64&{^f/_.3!)")% Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go,"".(*RGBA64).SetRGBA64dH%H;aL|$Lt$Ll$ Ld$"L\$$LT$&HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH99H>Lf@+HHH1HQHiH9 618 H>D+HHH1HQHiH9H>Lf@+HHH1HQHiH9H>D#HHH1HQHiH9H>Lf@+HHH1HQHiH9s\H>DHHH1HQHiH9s7H>Lf@+HHHH HCHkH9sHD1s; 627 628 $runtime.panicindex 629 $runtime.panicindex 630 $runtime.panicindex 631 $runtime.panicindex 632 $runtime.panicindex 633 $runtime.panicindex 634 $runtime.panicindex 635 $runtime.panicindex 636 0runtime.morestack_noctxt@"".autotmp_0224type.int"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0220type.int"".autotmp_0219type.int"".autotmp_0218type.int"".autotmp_0217type.int"".autotmp_0215type.int"".c0.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64`:A&)!)")%![Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*RGBA64).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HN* 642 643 runtime.duffcopy 644 ,"".Rectangle.Intersecttype."".RGBA64 645 "runtime.newobject6go.itab.*"".RGBA64."".Imagetype.*"".RGBA64type."".Image6go.itab.*"".RGBA64."".Image 646 runtime.typ2Itabtype."".RGBA64 647 "runtime.newobject6runtime.writeBarrierEnabled 648 6go.itab.*"".RGBA64."".Imagetype.*"".RGBA64type."".Image6go.itab.*"".RGBA64."".Image 653 runtime.typ2Itab 655 .runtime.writebarrierptr 657 $runtime.panicslice 659 0runtime.morestack_noctxtp"".autotmp_0243type.*uint8"".autotmp_0242type.*"".RGBA64"".autotmp_0241type.int"".autotmp_0240type.int"".autotmp_0237?type.*"".RGBA64"".autotmp_0235type.*"".RGBA64"".autotmp_0234/type.[]uint8"".autotmp_0233type.*"".RGBA64"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA64*R1wK#?MJ - y.2Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go&"".(*RGBA64).OpaquedH%H;a/HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$x&H 665 666 $runtime.panicindex 667 $runtime.panicindex 668 0runtime.morestack_noctxt "".autotmp_0253type.int"".autotmp_0252type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".~r0type.bool"".ptype.*"".RGBA64H-+O 670 671 672 =Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewRGBA64dH%HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 678 type.[]uint8 679 "runtime.makeslicetype."".RGBA64 680 "runtime.newobject6runtime.writeBarrierEnabled 681 .runtime.writebarrierptr 682 0runtime.morestack_noctxtP"".autotmp_0263?type.*"".RGBA64"".autotmp_0262type.int"".autotmp_0260type.int"".autotmp_0259type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".RGBA64"".r"type."".Rectangle,?1Q7#Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go,"".(*NRGBA).ColorModel@61HH\$HH\$ 685 ,image/color.NRGBAModel",image/color.NRGBAModel0"".~r0,type.image/color.Model"".ptype.*"".NRGBA Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go$"".(*NRGBA).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".NRGBA@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*NRGBA).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@9 689 690 &"".(*NRGBA).NRGBAAt,type.image/color.NRGBA,type.image/color.ColorVgo.itab.image/color.NRGBA.image/color.Color 691 runtime.convT2I 692 0runtime.morestack_noctxtP 693 "".autotmp_0264,type.image/color.NRGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA#@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*NRGBA).NRGBAAtdH%H;aRL\$LT$HL$11H.LI LA(Hy0Hq8M9I9M9I9<u1T$ T$!T$"T$#HY LH)HY(LH)HiHHHH1HHH1HQHiH9H>IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#1 702 703 $runtime.panicindex 704 $runtime.panicindex 705 $runtime.panicindex 706 $runtime.panicindex 707 0runtime.morestack_noctxt@"".autotmp_0269,type.image/color.NRGBA"".autotmp_0267type.int"".~r20,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA"$A&5Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*NRGBA).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".NRGBA@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*NRGBA).SetdH%H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JDHHHH HCHkH9sH@;Hxe1mA 721 ,image/color.NRGBAModel,image/color.NRGBAModel,type.image/color.NRGBA 722 "runtime.assertI2T 723 $runtime.panicindex 724 $runtime.panicindex 725 $runtime.panicindex 726 $runtime.panicindex 727 0runtime.morestack_noctxtP"".autotmp_0287type.int"".autotmp_0286type.int"".autotmp_0285type.int"".autotmp_0284type.int"".autotmp_0282type.int"".autotmp_0280,type.image/color.NRGBA"".autotmp_0279,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA&{=F/_.(! Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go("".(*NRGBA).SetNRGBAdH%H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+1 736 737 $runtime.panicindex 738 $runtime.panicindex 739 $runtime.panicindex 740 $runtime.panicindex 741 0runtime.morestack_noctxt@"".autotmp_0298type.int"".autotmp_0297type.int"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0293type.int"".c0,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA@"A&'"#&CTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*NRGBA).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HN* 747 748 runtime.duffcopy 749 ,"".Rectangle.Intersecttype."".NRGBA 750 "runtime.newobject4go.itab.*"".NRGBA."".Imagetype.*"".NRGBAtype."".Image4go.itab.*"".NRGBA."".Image 751 runtime.typ2Itabtype."".NRGBA 752 "runtime.newobject6runtime.writeBarrierEnabled 753 4go.itab.*"".NRGBA."".Imagetype.*"".NRGBAtype."".Image4go.itab.*"".NRGBA."".Image 758 runtime.typ2Itab 760 .runtime.writebarrierptr 762 $runtime.panicslice 764 0runtime.morestack_noctxtp"".autotmp_0313type.*uint8"".autotmp_0312type.*"".NRGBA"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0307?type.*"".NRGBA"".autotmp_0305type.*"".NRGBA"".autotmp_0304/type.[]uint8"".autotmp_0303type.*"".NRGBA"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".NRGBA*R1wK#?MJ - y.2Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go$"".(*NRGBA).OpaquedH%H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9~YLH9}1HtXH9HqHiH9sAHtD$HH9|HYLIHYHHIHY8L9D$aHA 769 770 $runtime.panicindex 771 0runtime.morestack_noctxt "".autotmp_0323type.int"".autotmp_0322type.int"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316type.int"".~r0type.bool"".ptype.*"".NRGBAH-+ " 774 775 776 >Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewNRGBAdH%HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 783 type.[]uint8 784 "runtime.makeslicetype."".NRGBA 785 "runtime.newobject6runtime.writeBarrierEnabled 786 .runtime.writebarrierptr 787 0runtime.morestack_noctxtP"".autotmp_0330?type.*"".NRGBA"".autotmp_0329type.int"".autotmp_0327type.int"".autotmp_0326type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".NRGBA"".r"type."".Rectangle,?1Q7#Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go0"".(*NRGBA64).ColorModel@61HH\$HH\$ 790 0image/color.NRGBA64Model"0image/color.NRGBA64Model0"".~r0,type.image/color.Model"".p type.*"".NRGBA64 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*NRGBA64).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".p type.*"".NRGBA64@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go "".(*NRGBA64).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$8H\$f\$:H\$f\$<H\$f\$>HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hH@1 794 795 ."".(*NRGBA64).NRGBA64At0type.image/color.NRGBA64,type.image/color.ColorZgo.itab.image/color.NRGBA64.image/color.Color 796 runtime.convT2I 797 0runtime.morestack_noctxtP 798 "".autotmp_03310type.image/color.NRGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64#@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go."".(*NRGBA64).NRGBA64At dH%H;a&L\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1fT$ fT$"fT$$fT$&HY LH)HY(LH)HiHHHH1HHH1HQLAH9eH>fHHHH1HQLAH98H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9s~H,>fmH IHHH1HQLAH9sQH>fHHHHH HELEH9s$H,fmH fDd$ fD\$"fDT$$f\$&1/ 812 813 $runtime.panicindex 814 $runtime.panicindex 815 $runtime.panicindex 816 $runtime.panicindex 817 $runtime.panicindex 818 $runtime.panicindex 819 $runtime.panicindex 820 $runtime.panicindex 821 0runtime.morestack_noctxt@"".autotmp_03360type.image/color.NRGBA64"".autotmp_0334type.int"".~r200type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64D$A&PQMI ]Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go."".(*NRGBA64).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NRGBA64@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*NRGBA64).SetdH%H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9oI9fL9]I9<uHxIY LH)IY(LH)HIiHHHHH\$(H$H\$H$H\$HH$HH[ HL$HD$ 1f\$0f\$2f\$4f\$6HH$HL$hHL$HD$pHD$H\$0H\$H$HD$(H\$0IH\$2HH\$4HH\$6HIIHWHLQHiM9<JLf@+IIHLQHiM9 JDIIHLIHiM9JHf@+IIHLIHiM9J@;IIHHyHiI9JHf@+IIHHyHiI9s_J@3IIH9HqHiI9s:JHf@+HHHH HCHkH9sH1Hx1AP 843 0image/color.NRGBA64Model0image/color.NRGBA64Model0type.image/color.NRGBA64 844 "runtime.assertI2T 845 846 $runtime.panicindex 847 848 $runtime.panicindex 849 850 $runtime.panicindex 851 852 $runtime.panicindex 853 854 $runtime.panicindex 856 $runtime.panicindex 858 $runtime.panicindex 860 $runtime.panicindex 862 0runtime.morestack_noctxtP$"".autotmp_0366type.int"".autotmp_0365type.int"".autotmp_0364type.int"".autotmp_0363type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359type.int"".autotmp_0357type.int"".autotmp_03550type.image/color.NRGBA64"".autotmp_0354,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64&{^f/_.3!)")% Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go0"".(*NRGBA64).SetNRGBA64dH%H;aL|$Lt$Ll$ Ld$"L\$$LT$&HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH99H>Lf@+HHH1HQHiH9 864 H>D+HHH1HQHiH9H>Lf@+HHH1HQHiH9H>D#HHH1HQHiH9H>Lf@+HHH1HQHiH9s\H>DHHH1HQHiH9s7H>Lf@+HHHH HCHkH9sHD1s; 873 874 $runtime.panicindex 875 $runtime.panicindex 876 $runtime.panicindex 877 $runtime.panicindex 878 $runtime.panicindex 879 $runtime.panicindex 880 $runtime.panicindex 881 $runtime.panicindex 882 0runtime.morestack_noctxt@"".autotmp_0385type.int"".autotmp_0384type.int"".autotmp_0383type.int"".autotmp_0382type.int"".autotmp_0381type.int"".autotmp_0380type.int"".autotmp_0379type.int"".autotmp_0378type.int"".autotmp_0376type.int"".c00type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64`:A&)!)")%![Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go,"".(*NRGBA64).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HN* 888 889 runtime.duffcopy 890 ,"".Rectangle.Intersecttype."".NRGBA64 891 "runtime.newobject8go.itab.*"".NRGBA64."".Image type.*"".NRGBA64type."".Image8go.itab.*"".NRGBA64."".Image 892 runtime.typ2Itabtype."".NRGBA64 893 "runtime.newobject6runtime.writeBarrierEnabled 894 8go.itab.*"".NRGBA64."".Image type.*"".NRGBA64type."".Image8go.itab.*"".NRGBA64."".Image 899 runtime.typ2Itab 901 .runtime.writebarrierptr 903 $runtime.panicslice 905 0runtime.morestack_noctxtp"".autotmp_0404type.*uint8"".autotmp_0403 type.*"".NRGBA64"".autotmp_0402type.int"".autotmp_0401type.int"".autotmp_0398? type.*"".NRGBA64"".autotmp_0396 type.*"".NRGBA64"".autotmp_0395/type.[]uint8"".autotmp_0394 type.*"".NRGBA64"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NRGBA64*R1wK#?MJ - y.2Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go("".(*NRGBA64).OpaquedH%H;a/HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$x&H 911 912 $runtime.panicindex 913 $runtime.panicindex 914 0runtime.morestack_noctxt "".autotmp_0414type.int"".autotmp_0413type.int"".autotmp_0410type.int"".autotmp_0409type.int"".autotmp_0408type.int"".autotmp_0407type.int"".~r0type.bool"".p type.*"".NRGBA64H-+O 916 917 918 =Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewNRGBA64dH%HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 924 type.[]uint8 925 "runtime.makeslicetype."".NRGBA64 926 "runtime.newobject6runtime.writeBarrierEnabled 927 .runtime.writebarrierptr 928 0runtime.morestack_noctxtP"".autotmp_0424? type.*"".NRGBA64"".autotmp_0423type.int"".autotmp_0421type.int"".autotmp_0420type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@ type.*"".NRGBA64"".r"type."".Rectangle,?1Q7#Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go,"".(*Alpha).ColorModel@61HH\$HH\$ 931 ,image/color.AlphaModel",image/color.AlphaModel0"".~r0,type.image/color.Model"".ptype.*"".Alpha Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go$"".(*Alpha).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".Alpha@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*Alpha).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@T 935 936 &"".(*Alpha).AlphaAt,type.image/color.Alpha,type.image/color.ColorVgo.itab.image/color.Alpha.image/color.Color 937 runtime.convT2I 938 0runtime.morestack_noctxtP 939 "".autotmp_0425,type.image/color.Alpha"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha# 941 @pTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*Alpha).AlphaAtdH%H;aL\$LT$LL$11ItxMA Iy(Iq0IQ8M9_I9}ZL9UI9<u1\$ IY LH)IY(LH)IiHH1I IAIiH9sH\$ 1AM 945 946 $runtime.panicindex 947 0runtime.morestack_noctxt@"".autotmp_0430,type.image/color.Alpha"".autotmp_0428type.int"".~r20,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha $1% 'Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*Alpha).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Alpha@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*Alpha).SetdH%H;aeHxL$L$L$1LT$@I0MA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1\$/HH$HL$hHL$HD$pHD$H\$/H\$H$Ht-HHCHkHl$0H9sH)l$/@+Hx1A~ 956 ,image/color.AlphaModel,image/color.AlphaModel,type.image/color.Alpha 957 "runtime.assertI2T 958 $runtime.panicindex 959 0runtime.morestack_noctxtP"".autotmp_0436type.int"".autotmp_0434,type.image/color.Alpha"".autotmp_0433,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha&{2*/_'Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go("".(*Alpha).SetAlphadH%H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+1AV 964 965 $runtime.panicindex 966 0runtime.morestack_noctxt@ 967 "".autotmp_0440type.int"".c0,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha("1 Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*Alpha).SubImagedH%HD$H;A H1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9)H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HU* 973 974 runtime.duffcopy 975 ,"".Rectangle.Intersecttype."".Alpha 976 "runtime.newobject4go.itab.*"".Alpha."".Imagetype.*"".Alphatype."".Image4go.itab.*"".Alpha."".Image 977 runtime.typ2Itabtype."".Alpha 978 "runtime.newobject6runtime.writeBarrierEnabled 979 4go.itab.*"".Alpha."".Image 980 type.*"".Alphatype."".Image4go.itab.*"".Alpha."".Image 984 runtime.typ2Itab 986 .runtime.writebarrierptr 988 $runtime.panicslice 990 0runtime.morestack_noctxtp"".autotmp_0453type.*uint8"".autotmp_0452type.*"".Alpha"".autotmp_0451type.int"".autotmp_0450type.int"".autotmp_0447?type.*"".Alpha"".autotmp_0445type.*"".Alpha"".autotmp_0444/type.[]uint8"".autotmp_0443type.*"".Alpha"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Alpha(zR1wK?MJ - r.)Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go$"".(*Alpha).OpaquedH%H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)E1HLI(HY8L9~XLH9}0HtWH9HqHiH9s@HtD$HH9|HYLIHYHHIHY8L9D$jHJ$ 995 996 $runtime.panicindex 997 0runtime.morestack_noctxt "".autotmp_0462type.int"".autotmp_0459type.int"".autotmp_0458type.int"".autotmp_0457type.int"".autotmp_0456type.int"".~r0type.bool"".ptype.*"".AlphaH-# " 1000 1001 1002 7Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewAlphadH%HD$H;AIHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uLH(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 1009 type.[]uint8 1010 "runtime.makeslicetype."".Alpha 1011 "runtime.newobject6runtime.writeBarrierEnabled 1012 .runtime.writebarrierptr 1013 0runtime.morestack_noctxtP"".autotmp_0469?type.*"".Alpha"".autotmp_0468type.int"".autotmp_0466type.int"".autotmp_0465type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Alpha"".r"type."".Rectangle$?1M7Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go0"".(*Alpha16).ColorModel@61HH\$HH\$ 1016 0image/color.Alpha16Model"0image/color.Alpha16Model0"".~r0,type.image/color.Model"".p type.*"".Alpha16 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*Alpha16).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".p type.*"".Alpha16@@ @Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go "".(*Alpha16).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@R 1020 1021 ."".(*Alpha16).Alpha16At0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color 1022 runtime.convT2I 1023 0runtime.morestack_noctxtP 1024 "".autotmp_04700type.image/color.Alpha16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16 # 1028 @pTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go."".(*Alpha16).Alpha16AtdH%H;aL\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1f\$ HY LH)HY(LH)HiHHHH1HHH1HQLAH9s>H>fHHHHH HELEH9sH,fmH f\$ 1j2 1032 1033 $runtime.panicindex 1034 $runtime.panicindex 1035 0runtime.morestack_noctxt@"".autotmp_04750type.image/color.Alpha16"".autotmp_0473type.int"".~r200type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16 $A%^.Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go."".(*Alpha16).PixOffsetnHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".p type.*"".Alpha16@@ ;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*Alpha16).SetdH%H;aHxL$L$L$1LT$@ImMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M94I9+L9"I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$HL$hHL$HD$pHD$H\$.H\$L$Ht$0H\$.HHHItMIIIIiH9s6H2Hf@+HHIIIIiH9sH2HxA1AA 1045 0image/color.Alpha16Model0image/color.Alpha16Model0type.image/color.Alpha16 1046 "runtime.assertI2T 1047 $runtime.panicindex 1048 $runtime.panicindex 1049 0runtime.morestack_noctxtP"".autotmp_0487type.int"".autotmp_0486type.int"".autotmp_0484type.int"".autotmp_04820type.image/color.Alpha16"".autotmp_0481,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16&{-6 /_-+ Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go0"".(*Alpha16).SetAlpha16dH%H;aLd$L\$LT$ HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9s6H>Lf@+HHHH HCHkH9sHD1{C 1055 1056 $runtime.panicindex 1057 $runtime.panicindex 1058 0runtime.morestack_noctxt@"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0491type.int"".c00type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha160 (A%% +Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go,"".(*Alpha16).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9/H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HO* 1064 1065 runtime.duffcopy 1066 ,"".Rectangle.Intersecttype."".Alpha16 1067 "runtime.newobject8go.itab.*"".Alpha16."".Image type.*"".Alpha16type."".Image8go.itab.*"".Alpha16."".Image 1068 runtime.typ2Itabtype."".Alpha16 1069 "runtime.newobject6runtime.writeBarrierEnabled 1070 8go.itab.*"".Alpha16."".Image 1071 type.*"".Alpha16type."".Image8go.itab.*"".Alpha16."".Image 1075 runtime.typ2Itab 1077 .runtime.writebarrierptr 1079 $runtime.panicslice 1081 0runtime.morestack_noctxtp"".autotmp_0507type.*uint8"".autotmp_0506 type.*"".Alpha16"".autotmp_0505type.int"".autotmp_0504type.int"".autotmp_0501? type.*"".Alpha16"".autotmp_0499 type.*"".Alpha16"".autotmp_0498/type.[]uint8"".autotmp_0497 type.*"".Alpha16"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".Alpha16*R 1wK"?MJ - x.3Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go("".(*Alpha16).OpaquedH%H;a*HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HE1HLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$x+H 1088 1089 $runtime.panicindex 1090 $runtime.panicindex 1091 0runtime.morestack_noctxt "".autotmp_0517type.int"".autotmp_0516type.int"".autotmp_0513type.int"".autotmp_0512type.int"".autotmp_0511type.int"".autotmp_0510type.int"".~r0type.bool"".p type.*"".Alpha16H 1093 -&O 1094 1095 1096 BTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewAlpha16dH%HD$H;AOHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uOH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 1102 type.[]uint8 1103 "runtime.makeslicetype."".Alpha16 1104 "runtime.newobject6runtime.writeBarrierEnabled 1105 .runtime.writebarrierptr 1106 0runtime.morestack_noctxtP"".autotmp_0527? type.*"".Alpha16"".autotmp_0526type.int"".autotmp_0524type.int"".autotmp_0523type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@ type.*"".Alpha16"".r"type."".Rectangle. 1109 ?1P7%Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go*"".(*Gray).ColorModel@61HH\$HH\$ 1110 *image/color.GrayModel"*image/color.GrayModel0"".~r0,type.image/color.Model"".ptype.*"".Gray 1112 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*Gray).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".Gray@@ 1114 @Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*Gray).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@T 1116 1117 """.(*Gray).GrayAt*type.image/color.Gray,type.image/color.ColorTgo.itab.image/color.Gray.image/color.Color 1118 runtime.convT2I 1119 0runtime.morestack_noctxtP 1120 "".autotmp_0528*type.image/color.Gray"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray 1122 # 1123 @pTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*Gray).GrayAtdH%H;aL\$LT$LL$11ItxMA Iy(Iq0IQ8M9_I9}ZL9UI9<u1\$ IY LH)IY(LH)IiHH1I IAIiH9sH\$ 1AM 1127 1128 $runtime.panicindex 1129 0runtime.morestack_noctxt@"".autotmp_0533*type.image/color.Gray"".autotmp_0531type.int"".~r20*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray 1132 $1% 'Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*Gray).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray@@ 1136 ;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*Gray).SetdH%H;aeHxL$L$L$1LT$@I0MA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1\$/HH$HL$hHL$HD$pHD$H\$/H\$H$Ht-HHCHkHl$0H9sH)l$/@+Hx1A~ 1140 *image/color.GrayModel*image/color.GrayModel*type.image/color.Gray 1141 "runtime.assertI2T 1142 $runtime.panicindex 1143 0runtime.morestack_noctxtP"".autotmp_0539type.int"".autotmp_0537*type.image/color.Gray"".autotmp_0536,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray&{2* 1144 /_'Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go$"".(*Gray).SetGraydH%H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+1AV 1149 1150 $runtime.panicindex 1151 0runtime.morestack_noctxt@ 1152 "".autotmp_0543type.int"".c0*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray("1 Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*Gray).SubImagedH%HD$H;A H1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9)H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HU* 1159 1160 runtime.duffcopy 1161 ,"".Rectangle.Intersecttype."".Gray 1162 "runtime.newobject2go.itab.*"".Gray."".Imagetype.*"".Graytype."".Image2go.itab.*"".Gray."".Image 1163 runtime.typ2Itabtype."".Gray 1164 "runtime.newobject6runtime.writeBarrierEnabled 1165 2go.itab.*"".Gray."".Image 1166 type.*"".Graytype."".Image2go.itab.*"".Gray."".Image 1170 runtime.typ2Itab 1172 .runtime.writebarrierptr 1174 $runtime.panicslice 1176 0runtime.morestack_noctxtp"".autotmp_0556type.*uint8"".autotmp_0555type.*"".Gray"".autotmp_0554type.int"".autotmp_0553type.int"".autotmp_0550?type.*"".Gray"".autotmp_0548type.*"".Gray"".autotmp_0547/type.[]uint8"".autotmp_0546type.*"".Gray"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray(zR1wK?MJ - r.)Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go""".(*Gray).Opaque D$ "".~r0type.bool"".ptype.*"".GrayTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewGraydH%HD$H;AIHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uLH(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 1184 type.[]uint8 1185 "runtime.makeslicetype."".Gray 1186 "runtime.newobject6runtime.writeBarrierEnabled 1187 .runtime.writebarrierptr 1188 0runtime.morestack_noctxtP"".autotmp_0564?type.*"".Gray"".autotmp_0563type.int"".autotmp_0561type.int"".autotmp_0560type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Gray"".r"type."".Rectangle$?1M7Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go."".(*Gray16).ColorModel@61HH\$HH\$ 1192 .image/color.Gray16Model".image/color.Gray16Model0"".~r0,type.image/color.Model"".ptype.*"".Gray16 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*Gray16).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".Gray16@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*Gray16).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@R 1198 1199 *"".(*Gray16).Gray16At.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color 1200 runtime.convT2I 1201 0runtime.morestack_noctxtP 1202 "".autotmp_0565.type.image/color.Gray16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16# 1207 @pTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*Gray16).Gray16AtdH%H;aL\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1f\$ HY LH)HY(LH)HiHHHH1HHH1HQLAH9s>H>fHHHHH HELEH9sH,fmH f\$ 1j2 1211 1212 $runtime.panicindex 1213 $runtime.panicindex 1214 0runtime.morestack_noctxt@"".autotmp_0570.type.image/color.Gray16"".autotmp_0568type.int"".~r20.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16 $A%^.Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go,"".(*Gray16).PixOffsetnHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray16@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go "".(*Gray16).SetdH%H;aHxL$L$L$1LT$@ImMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M94I9+L9"I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$HL$hHL$HD$pHD$H\$.H\$L$Ht$0H\$.HHHItMIIIIiH9s6H2Hf@+HHIIIIiH9sH2HxA1AA 1226 .image/color.Gray16Model.image/color.Gray16Model.type.image/color.Gray16 1227 "runtime.assertI2T 1228 $runtime.panicindex 1229 $runtime.panicindex 1230 0runtime.morestack_noctxtP"".autotmp_0582type.int"".autotmp_0581type.int"".autotmp_0579type.int"".autotmp_0577.type.image/color.Gray16"".autotmp_0576,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16&{-6/_-+ Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go,"".(*Gray16).SetGray16dH%H;aLd$L\$LT$ HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9s6H>Lf@+HHHH HCHkH9sHD1{C 1237 1238 $runtime.panicindex 1239 $runtime.panicindex 1240 0runtime.morestack_noctxt@"".autotmp_0589type.int"".autotmp_0588type.int"".autotmp_0586type.int"".c0.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray160(A%% +Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*Gray16).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9/H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HO* 1247 1248 runtime.duffcopy 1249 ,"".Rectangle.Intersecttype."".Gray16 1250 "runtime.newobject6go.itab.*"".Gray16."".Imagetype.*"".Gray16type."".Image6go.itab.*"".Gray16."".Image 1251 runtime.typ2Itabtype."".Gray16 1252 "runtime.newobject6runtime.writeBarrierEnabled 1253 6go.itab.*"".Gray16."".Image 1254 type.*"".Gray16type."".Image6go.itab.*"".Gray16."".Image 1258 runtime.typ2Itab 1260 .runtime.writebarrierptr 1262 $runtime.panicslice 1264 0runtime.morestack_noctxtp"".autotmp_0602type.*uint8"".autotmp_0601type.*"".Gray16"".autotmp_0600type.int"".autotmp_0599type.int"".autotmp_0596?type.*"".Gray16"".autotmp_0594type.*"".Gray16"".autotmp_0593/type.[]uint8"".autotmp_0592type.*"".Gray16"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray16*R1wK"?MJ - x.3Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go&"".(*Gray16).Opaque D$ "".~r0type.bool"".ptype.*"".Gray16Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewGray16dH%HD$H;AOHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uOH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 1272 type.[]uint8 1273 "runtime.makeslicetype."".Gray16 1274 "runtime.newobject6runtime.writeBarrierEnabled 1275 .runtime.writebarrierptr 1276 0runtime.morestack_noctxtP"".autotmp_0610?type.*"".Gray16"".autotmp_0609type.int"".autotmp_0607type.int"".autotmp_0606type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Gray16"".r"type."".Rectangle.?1P7%Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go*"".(*CMYK).ColorModel@61HH\$HH\$ 1280 *image/color.CMYKModel"*image/color.CMYKModel0"".~r0,type.image/color.Model"".ptype.*"".CMYK Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*CMYK).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".ptype.*"".CMYK@@ @Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*CMYK).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@9 1286 1287 """.(*CMYK).CMYKAt*type.image/color.CMYK,type.image/color.ColorTgo.itab.image/color.CMYK.image/color.Color 1288 runtime.convT2I 1289 0runtime.morestack_noctxtP 1290 "".autotmp_0611*type.image/color.CMYK"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK #@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*CMYK).CMYKAtdH%H;aRL\$LT$HL$11H.LI LA(Hy0Hq8M9I9M9I9<u1T$ T$!T$"T$#HY LH)HY(LH)HiHHHH1HHH1HQHiH9H>IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#1 1300 1301 $runtime.panicindex 1302 $runtime.panicindex 1303 $runtime.panicindex 1304 $runtime.panicindex 1305 0runtime.morestack_noctxt@"".autotmp_0616*type.image/color.CMYK"".autotmp_0614type.int"".~r20*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK" $A&5Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go("".(*CMYK).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".CMYK@@ ;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".(*CMYK).SetdH%H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JDHHHH HCHkH9sH@;Hxe1mA 1321 *image/color.CMYKModel*image/color.CMYKModel*type.image/color.CMYK 1322 "runtime.assertI2T 1323 $runtime.panicindex 1324 $runtime.panicindex 1325 $runtime.panicindex 1326 $runtime.panicindex 1327 0runtime.morestack_noctxtP"".autotmp_0634type.int"".autotmp_0633type.int"".autotmp_0632type.int"".autotmp_0631type.int"".autotmp_0629type.int"".autotmp_0627*type.image/color.CMYK"".autotmp_0626,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK&{=F /_.(! Tgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/image.go$"".(*CMYK).SetCMYKdH%H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+1 1337 1338 $runtime.panicindex 1339 $runtime.panicindex 1340 $runtime.panicindex 1341 $runtime.panicindex 1342 0runtime.morestack_noctxt@"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643type.int"".autotmp_0642type.int"".autotmp_0640type.int"".c0*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK@ "A&'"#&CTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go&"".(*CMYK).SubImage dH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HHH$HH\$HH\$HD$TH$Hl$H$/HN* 1349 1350 runtime.duffcopy 1351 ,"".Rectangle.Intersecttype."".CMYK 1352 "runtime.newobject2go.itab.*"".CMYK."".Imagetype.*"".CMYKtype."".Image2go.itab.*"".CMYK."".Image 1353 runtime.typ2Itabtype."".CMYK 1354 "runtime.newobject6runtime.writeBarrierEnabled 1355 2go.itab.*"".CMYK."".Imagetype.*"".CMYKtype."".Image2go.itab.*"".CMYK."".Image 1360 runtime.typ2Itab 1362 .runtime.writebarrierptr 1364 $runtime.panicslice 1366 0runtime.morestack_noctxtp"".autotmp_0660type.*uint8"".autotmp_0659type.*"".CMYK"".autotmp_0658type.int"".autotmp_0657type.int"".autotmp_0654?type.*"".CMYK"".autotmp_0652type.*"".CMYK"".autotmp_0651/type.[]uint8"".autotmp_0650type.*"".CMYK"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".CMYK*R 1wK#?MJ - y.2Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go""".(*CMYK).Opaque D$ "".~r0type.bool"".ptype.*"".CMYKTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go"".NewCMYKdH%HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$HD$x 1373 type.[]uint8 1374 "runtime.makeslicetype."".CMYK 1375 "runtime.newobject6runtime.writeBarrierEnabled 1376 .runtime.writebarrierptr 1377 0runtime.morestack_noctxtP"".autotmp_0668?type.*"".CMYK"".autotmp_0667type.int"".autotmp_0665type.int"".autotmp_0664type.int"".r"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wtype.int"".~r1@type.*"".CMYK"".r"type."".Rectangle,?1Q7#Tgclocalsc7e46dd432d705036367d637fd33d432Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go2"".(*Paletted).ColorModeldH%H;av{H81H\$HH\$PHH$HH\$HH\$H\$@H\$H|$t-HD$@HD$ H\$(H\$HH\$0H\$PH8%l 1382 D0type.image/color.PaletteZ,type.image/color.ModelrZgo.itab.image/color.Palette.image/color.Model 1383 runtime.convT2I 1384 0runtime.morestack_noctxt0p"".~r0,type.image/color.Model"".p"type.*"".Palettedpmop 1386 1387 c=Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go*"".(*Paletted).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(P"".~r0"type."".Rectangle"".p"type.*"".Paletted@@@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go""".(*Paletted).AtdH%H;aL\$LT$HD$1HhHHu 1H\$ H\$(1LH L@(Hx0Hp8M9I9M9I9u8HHt+HH@H@HHkPHvH)Hl$ HiHl$(HX LH)HX(LH)HHhHHHHHHhH9sDH+HHHP@H@HHkPHH9sHHH+Hl$ HkHl$(1? 1394 1395 1396 $runtime.panicindex 1397 $runtime.panicindex 1398 $runtime.panicindex 1399 0runtime.morestack_noctxtP"".autotmp_0672type.int"".autotmp_0671type.int"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted($ 1402 88"[Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go0"".(*Paletted).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @"".~r20type.int"".y type.int"".xtype.int"".p"type.*"".Paletted@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go$"".(*Paletted).SetdH%H;a&HhL\$xL$H|$p1LT$@HLO LG(LD$PHw0Ht$XHW8HT$`LL$HL\$8M9I9M9I9<uHhH_ LH)H_(LH)HHoHHH\$0H_@HH$HKHL$HKHL$H$H\$H$H\$ HT$(H\$pHt'HHCHkHl$0H9sH)Hh1R 1412 1413 2image/color.Palette.Index 1414 $runtime.panicindex 1415 0runtime.morestack_noctxtP"".autotmp_0680type.int"".autotmp_0678type.int"".r?"type."".Rectangle"".p_type."".Point"".iotype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted&u0()_'geTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go6"".(*Paletted).ColorIndexAtdH%H;aL\$LT$LL$1ItvMA Iy(Iq0IQ8M9]I9}XL9SI9<uD$ IY LH)IY(LH)IiHHI IAIiH9s H+@l$ 1AQ 1421 1422 $runtime.panicindex 1423 0runtime.morestack_noctxt@ 1424 "".autotmp_0684type.int"".~r20type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted "1$ Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go8"".(*Paletted).SetColorIndexdH%H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+1AV 1431 1432 $runtime.panicindex 1433 0runtime.morestack_noctxt@ 1434 "".autotmp_0688type.int"".index0type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted("1 Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/image.go."".(*Paletted).SubImagedH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HH$L\$@HT$HLl$PLd$XL$H$HT$hL$L$Ld$xL\$`Ll$pM96L9<HH$H|$HH1HH$HHk@H$HLA@LD$Hl$H-H,$H$H$H1H9t H$H$H$HHH$HH\$HH\$HD$nQ-HH_ LH)H_(HH)HoHHLGLOL9LI)I)ItML$L$L$HH_ HHL\$ HT$(Ll$0Ld$8H\$@H$H\$HH$H\$PH$H\$XH$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$HHk@L@@LD$Hl$H-H,$H$H$H1H9t H$H$H$HHH$HH\$HH\$HD$jH$Hl$H$<HH8 1438 1439 runtime.duffcopy 1440 ,"".Rectangle.Intersect type."".Paletted 1441 "runtime.newobject 1442 runtime.duffzero0type.image/color.Palette 1443 (runtime.typedmemmove:go.itab.*"".Paletted."".Image"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image 1444 runtime.typ2Itab 1445 runtime.duffcopy 1446 ,"".Rectangle.Intersect 1447 type."".Paletted 1448 1449 "runtime.newobject6runtime.writeBarrierEnabled 0type.image/color.Palette 1453 (runtime.typedmemmove:go.itab.*"".Paletted."".Image"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image 1454 runtime.typ2Itab 1455 .runtime.writebarrierptr 1456 $runtime.panicslice 1457 0runtime.morestack_noctxtp"".autotmp_0702type.*uint8"".autotmp_0701"type.*"".Paletted"".autotmp_0700type.int"".autotmp_0699type.int"".autotmp_0696?"type.*"".Paletted"".autotmp_0694"type.*"".Paletted"".autotmp_0693"type."".Rectangle"".autotmp_0692/type.[]uint8"".autotmp_0691"type.*"".Paletted"".r"type."".Rectangle"".~r1Ptype."".Image"".r"type."".Rectangle"".p"type.*"".Paletted*n1wK -"<fMJR - $,Tgclocals0c0c2c2ec738a77c7171e28b67bc998cTgclocals721dda3334c021125365f71a78d0ed1eRprebuilts/go/linux-x86/src/image/image.go*"".(*Paletted).OpaquedH%H$H;AHH$H|$H1HHJ Hj(Hl$0LZ0Hj8Hl$@L\$8HL$(I)E1Hz(HZ8H9~tLJMM9UM9LLM)M)ItO"1LL9}(H\$H@H+HHL9|HZLIHZLIHHZ8H9HHR@HKHHkPH$1H$xHL$H$pHl$H9}XH$HHH:HrHD$ H$`H$hH\$HH=spHu!HHHl$H9|$HH$XH4$H$PH_ H$HHD$ \$t$HYV 1466 d 1467 runtime.duffzero 1468 $runtime.panicindex 1469 $runtime.panicslice 1470 0runtime.morestack_noctxt """.autotmp_0720O,type.image/color.Color"".autotmp_0719.type.*image/color.Color"".autotmp_0718type.int"".autotmp_0717type.int"".autotmp_0714type.int"".autotmp_0713type.int"".autotmp_0712type.int"".autotmp_0711type.int"".autotmp_0710/0type.image/color.Palette"".autotmp_0709type.int"".autotmp_0708type.int"".autotmp_0707type.int"".r"type."".Rectangle"".co,type.image/color.Color"".presenttype.[256]bool"".~r0type.bool"".p"type.*"".Paletted&"B2\*4 9 1475 1476 f + +2Tgclocals32bd5c6dc84e3e86dd35593b3922d3aaTgclocals5e29cf4e275ff1db65cfee262b3b8d1fRprebuilts/go/linux-x86/src/image/image.go"".NewPaletteddH%HD$H;AHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=H(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HhHH$HhPH$=uHh@H$HL@@L$Hl$HD$xH$Hl$HD$xYH 1480 type.[]uint8 1481 "runtime.makeslice type."".Paletted 1482 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 1483 .runtime.writebarrierptr 1484 .runtime.writebarrierptr 1485 0runtime.morestack_noctxt"".autotmp_0726?"type.*"".Paletted"".autotmp_0725type.int"".autotmp_0723type.int"".autotmp_0722type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r2p"type.*"".Paletted"".p@0type.image/color.Palette"".r"type."".RectangleC?1M76Tgclocals57c83c41cc07fcd7f4b6f6e2693ed359Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0fRprebuilts/go/linux-x86/src/image/image.go$"".(*Uniform).RGBAdH%H;avSH(H\$0Ht@HHkHl$ H,$HL$HY l$T$L$D$l$8T$<L$@D$DH( 1491 n 1492 0runtime.morestack_noctxt0P 1493 "".a(type.uint32"".b type.uint32"".gtype.uint32"".rtype.uint32"".c type.*"".UniformPJOPp:O 1494 79Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/names.go0"".(*Uniform).ColorModeldH%H;avkH(1H\$8H\$@H\$0H\$ H1H9tH\$ H\$@HD$8H(HH$HH\$HH\$HD$| 1496 XJgo.itab.*"".Uniform.image/color.Model type.*"".Uniform,type.image/color.ModelJgo.itab.*"".Uniform.image/color.Model 1497 runtime.typ2Itab 1498 0runtime.morestack_noctxt0P"".autotmp_0732 type.*"".Uniform"".~r0,type.image/color.Model"".c type.*"".UniformP7OPEB[ 1500 n"Tgclocals41a13ac73c712c01973b8fe23f62d694Tgclocals0c8aa8e80191a30eac23f1a218103f16Rprebuilts/go/linux-x86/src/image/names.go*"".(*Uniform).Convert`F1H\$HtH+Hl$ HkHl$(P"".~r10,type.image/color.Color"".c type.*"".Uniform00 1502 J.Tgclocals13bdb4aeeaf63de3cc223d640262ea59Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/names.go("".(*Uniform).Boundsj11H6eH6eH;H;Hl$HT$HL$ HD$(P"".~r0"type."".Rectangle"".c type.*"".Uniform@@R@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/names.go "".(*Uniform).At`F1H\$HtH+Hl$ HkHl$(P"".~r20,type.image/color.Color"".y type.int"".xtype.int"".c type.*"".Uniform00V0Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/names.go("".(*Uniform).OpaquedH%H;avBH(H\$0Ht/HHkHl$ H,$HL$HY \$D$8H( 1507 n 1508 0runtime.morestack_noctxt P"".~r0type.bool"".c type.*"".UniformP9OP`\* 1510 7)Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals23e8278e2b69a3a75fa59b23c49ed6adRprebuilts/go/linux-x86/src/image/names.go"".NewUniformdH%H;av[HHH$HD$HD$Hl$ H(Hl$(=uHhHD$0HL@L$Hl$HD$ 1513 ,type."".Uniform> 1514 "runtime.newobjectx6runtime.writeBarrierEnabled 1515 .runtime.writebarrierptr 1516 0runtime.morestack_noctxt00"".autotmp_0737 type.*"".Uniform"".~r1 type.*"".Uniform"".c,type.image/color.Color0=/0/fW@"Tgclocals51af24152615272c3d9efc8538f95767Tgclocals0c8aa8e80191a30eac23f1a218103f16Rprebuilts/go/linux-x86/src/image/names.go:"".YCbCrSubsampleRatio.String1HD$HjHuHH\$HD$HuHH\$HD$HuHH\$HD$HH\$HD$HuHH\$HD$HuHH\$HD$HuHH\$HD$,Dgo.string."YCbCrSubsampleRatio444"dDgo.string."YCbCrSubsampleRatio422"Dgo.string."YCbCrSubsampleRatio420"Lgo.string."YCbCrSubsampleRatioUnknown"Dgo.string."YCbCrSubsampleRatio440"Dgo.string."YCbCrSubsampleRatio411"Dgo.string."YCbCrSubsampleRatio410"0"".~r0type.string"".s6type."".YCbCrSubsampleRatio>0 Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go,"".(*YCbCr).ColorModel@61HH\$HH\$ 1521 ,image/color.YCbCrModel",image/color.YCbCrModel0"".~r0,type.image/color.Model"".ptype.*"".YCbCr 1523 ~Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go$"".(*YCbCr).Boundsl1H\$Ht%Hk`Hl$HkhHl$HkpHl$ HkxHl$(P"".~r0"type."".Rectangle"".ptype.*"".YCbCr@@>Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go"".(*YCbCr).AtdH%H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$=\$\$>\$\$?HH$HH\$HH\$H\$=H\$HD$ H\$(H\$`H\$0H\$hH@B 1527 1528 &"".(*YCbCr).YCbCrAt,type.image/color.YCbCr,type.image/color.ColorVgo.itab.image/color.YCbCr.image/color.Color 1529 runtime.convT2I 1530 0runtime.morestack_noctxtP 1531 "".autotmp_0739,type.image/color.YCbCr"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".YCbCr#@Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go&"".(*YCbCr).YCbCrAtdH%H;alHXLL$hH|$pHt$`1\$x\$y\$z1H|$0H3L^`LVhLT$@LFpLD$HHVxHT$PL\$8LL$(M9M9I9H9<u1L$xL$yL$zHXH^hHH)HHnHHHn`MI)LH\$ H4$LL$H|$LL$`HD$1ItzIIIIiHl$ H9s^H*HIQII Ii(H9s<HHIQ0II8Ii@H9sH@|$x@t$y\$zHXA1w 1541 1542 &"".(*YCbCr).COffset 1543 $runtime.panicindex 1544 $runtime.panicindex 1545 $runtime.panicindex 1546 0runtime.morestack_noctxt@"".autotmp_0743,type.image/color.YCbCr"".r?"type."".Rectangle"".p_type."".Point 1547 "".yiotype.int"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int"".ptype.*"".YCbCr(9@4_'%Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go&"".(*YCbCr).YOffsetbHD$HXhHl$H)HHhHHHh`LD$I)LH\$ @"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr@@;Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go&"".(*YCbCr).COffsetHT$HL$HD$HhXHHuHLH`HXhHH)HHhPHHH?II)LHMI?M)MIL)HH\$ HueL@hLH`HH?HH)HHLH?I)LHH)HhPHHH?II)LHMI?M)MIL)HH\$ HXhHH)HHhPHHh`II)LH\$ HuEL@hHH?HH)HHLH?I)LHH)HhPHHh`II)LH\$ HuIHp`HXhHH)HHhPHHH?H>HHII?I>IIL)HH\$ H4L@hHx`HH?HH)HHLH?I)LHH)HhPHHH?H>HHII?I>IIL)HH\$ @"".autotmp_0754type.int"".autotmp_0753type.int"".autotmp_0752type.int"".autotmp_0751type.int"".autotmp_0749type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr8He(EI 1554 nTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go("".(*YCbCr).SubImagedH%HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^`H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$pH$H$H$HT$hHt$xH9H9<HH$HL$HHt|1L$IhXHiXH$H1H9t H$H$H$HHH$HH\$HH\$HD$IYhHH)HIiHHIi`II)LH\$`L$HT$HL$H$HD$Hl$`LALIL9LI)I)ItM*L$L$L$LA LI(L9NLQI)I)ItML$L$L$LA8LI@L9 1557 LQ0I)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=yH(H$Hh H$Hh(H$=*HhH$Hh8H$Hh@H$=Hh0HL$IhXHhXL$IhHHhHL$IhPHhPH$Hh`H$HhhH$HhpH$HhxH$H1H9t H$H$H$HHH$HH\$HH\$HD$4L@0L$Hl$H$L@L$Hl$H$H$Hl$H$oHYZ: 1562 1563 runtime.duffcopy 1564 ,"".Rectangle.Intersecttype."".YCbCr 1565 "runtime.newobject 1566 runtime.duffzero4go.itab.*"".YCbCr."".Imagetype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image 1567 runtime.typ2Itab 1568 &"".(*YCbCr).COffset 1569 type."".YCbCr 1570 1571 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled4go.itab.*"".YCbCr."".Imagetype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image 1575 runtime.typ2Itab 1576 .runtime.writebarrierptr 1577 .runtime.writebarrierptr 1578 .runtime.writebarrierptr 1579 $runtime.panicslice 1580 $runtime.panicslice 1581 $runtime.panicslice 1582 0runtime.morestack_noctxtp"".autotmp_0766type.*uint8"".autotmp_0765type.*"".YCbCr"".autotmp_0764type.int"".autotmp_0761type.*"".YCbCr"".autotmp_0759type.*"".YCbCr"".autotmp_0758type.[]uint8"".autotmp_0757_type.[]uint8"".autotmp_0756/type.[]uint8"".autotmp_0755type.*"".YCbCr"".r"type."".Rectangle 1583 "".yitype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".YCbCr* 1wNK -' A==@ -:.E?<Tgclocals4a5c83272286258cf484ac950366f973Tgclocalsafc01c2a5c5199c7dd20b96c14725140Rprebuilts/go/linux-x86/src/image/ycbcr.go$"".(*YCbCr).Opaque D$ "".~r0type.bool"".ptype.*"".YCbCrTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.go"".NewYCbCrdH%HD$H;AHL$L$ H$H$LT$`LL$pHHL$hH|$XH)H|$xH$LL$L$H$(L)H@HHHH?H)HHH?II)LHH)HHHHH\$HHHHHHH\$@HHt$0HHHL$PHHHHHH$HD$HD$8HD$Ht$HHT$@HL$H\$ H$HD$(H9H$H$H$HH9H9H)IHtM0H$H$L$Hl$8H$H9H9H)IH$HtMH$H$L$HH$HD$H$H$HhH$HhH$=H(H$Hh H$Hh(H$=HhH$Hh8H$Hh@H$=ubHh0H$(HhXHl$0HhHHl$PHhPH$Hh`H$HhhH$HhpH$ HhxH$0HL@0L$Hl$H$L@L$Hl$H$:H$Hl$H$HuTHHH?H)HHH?II)LHH)LHHH?H)HLH?MI)LHH)HHHu1HLHHH?H)HLH?MI)LHH)Hu3HHH?H>HHHH?H>HHH)HH{HHH?H>HHHH?H>HHH)HLHHH?H)HLH?MI)LHH)R 1592 type.[]uint8 1593 "runtime.makeslicetype."".YCbCr 1594 "runtime.newobject6runtime.writeBarrierEnabled 6runtime.writeBarrierEnabled 1595 6runtime.writeBarrierEnabled 1597 .runtime.writebarrierptr 1599 .runtime.writebarrierptr 1601 .runtime.writebarrierptr 1603 $runtime.panicslice 1605 $runtime.panicslice 1607 $runtime.panicslice 1608 0runtime.morestack_noctxt`>"".autotmp_0791type.*"".YCbCr"".autotmp_0790type.int"".autotmp_0789type.int"".autotmp_0788type.int"".autotmp_0787type.int"".autotmp_0786type.int"".autotmp_0785type.int"".autotmp_0784type.int"".autotmp_0783type.int"".autotmp_0782type.int"".autotmp_0781type.int"".autotmp_0780type.int"".autotmp_0779type.int"".autotmp_0778type.int"".autotmp_0777type.int"".autotmp_0774type.int"".autotmp_0773type.int"".autotmp_0771type.[]uint8"".autotmp_0770_type.[]uint8"".autotmp_0769/type.[]uint8"".r"type."".Rectangle"".r"type."".Rectangle"".btype.[]uint8 1609 "".i2type.int 1610 "".i1type.int 1611 "".i0type.int 1612 "".cwtype.int"".wtype.int"".~r2Ptype.*"".YCbCr""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle ?: 1614 1615 &$!@!=OV+&))+ 1616 .)-&Tgclocals0ce38f56d4c8b081a7ecdd846c3439b5Tgclocals27322ac377f4076175cee6d941c30830Rprebuilts/go/linux-x86/src/image/ycbcr.go"".initdH%H;aH8tuH8HH$HD$H\$HH\$=4HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$=HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$= HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$=HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$=uHH8H-H,$H\$H-H,$H\$WH-H,$H\$H-H,$H\$CH-H,$H\$t 1631 4"".initdoneL"".initdonej 1632 "runtime.throwinitz"".initdone 1633 bufio.init 1634 io.init 1635 image/color.init 1636 strconv.initBgo.string."image: unknown format" 1637 errors.New"".ErrFormat6runtime.writeBarrierEnabled"".ErrFormat.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.Black 1638 runtime.convT2I 1639 "".NewUniform6runtime.writeBarrierEnabled"".Black.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.White 1640 runtime.convT2I 1641 "".NewUniform6runtime.writeBarrierEnabled"".White0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent 1642 runtime.convT2I 1643 "".NewUniform6runtime.writeBarrierEnabled"".Transparent0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque 1644 runtime.convT2I 1645 "".NewUniform 6runtime.writeBarrierEnabled "".Opaque "".initdone "".Opaque 1646 .runtime.writebarrierptr "".Transparent 1647 1648 .runtime.writebarrierptr 1649 "".White 1650 1651 .runtime.writebarrierptr 1652 "".Black 1653 1654 .runtime.writebarrierptr"".ErrFormat 1657 .runtime.writebarrierptr 1659 0runtime.morestack_noctxtppopop,V>NXV>pppl4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/image/ycbcr.goTprebuilts/go/linux-x86/src/image/format.goRprebuilts/go/linux-x86/src/image/names.go"".Image.AtdH%H;avgH(HY Ht H|$0H9;uH#1H\$PH\$XH\$@H\$H\$HH\$H\$8H$H\$0H[ HL$HD$ HL$PHD$XH( 1665 1666 0runtime.morestack_noctxt`P"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".ImagePbOP 1668 1669 [%Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Image.BoundsdH%H;avqH(HY Ht H|$0H9;uH#1H\$@H\$HH\$PH\$XH\$8H$H\$0H[(Hl$HT$HL$HD$ Hl$@HT$HHL$PHD$XH(v 1672 1673 0runtime.morestack_noctxt`P"".~r0 "type."".Rectangle""..thistype."".ImagePlOP 1675 Q?Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".Image.ColorModeldH%H;avSHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[0HL$HD$HL$0HD$8H 1678 1679 0runtime.morestack_noctxt@0"".~r0 ,type.image/color.Model""..thistype."".Image0N/0pp 1681 G)Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Point).StringdH%H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$HH\$ HD$(Ht$8HH$HNHL$HL$HD$HL$@HD$HH09 1686 "go.string."image""go.string."Point"$go.string."String" 1687 "runtime.panicwrap 1688 "".Point.String 1689 0runtime.morestack_noctxt0`"".~r0type.string""..thistype.*"".Point`_` 1691 MTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).AdddH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8Ht3H3HSHL$@HD$H11HHHHHHL$PH\$XH04 1697 |"go.string."image""go.string."Point"go.string."Add" 1698 "runtime.panicwrap 1699 0runtime.morestack_noctxtP`"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`_` 1702 yWTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).SubdH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8Ht3H3HSHL$@HD$H11HH)HHH)HL$PH\$XH04 1707 |"go.string."image""go.string."Point"go.string."Sub" 1708 "runtime.panicwrap 1709 0runtime.morestack_noctxtP`"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`_` 1711 yWTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).MuldH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8Ht*HHSHD$@11HHHHL$HH\$PH0= 1717 |"go.string."image""go.string."Point"go.string."Mul" 1718 "runtime.panicwrap 1719 0runtime.morestack_noctxt@`"".~r1 type."".Point"".ktype.int""..thistype.*"".Point`_` 1721 yWTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).DivdH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8HtQHH{HL$@11Ht3HHHHHHtHHHHt$HH\$PH0HHHH 1726 |"go.string."image""go.string."Point"go.string."Div" 1727 "runtime.panicwrap 1728 0runtime.morestack_noctxt@`"".~r1 type."".Point"".ktype.int""..thistype.*"".Point`_`$ 1730 ywTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).IndH%H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8Ht=HHCH\$@H|$HHt$PHT$XH9H9}H9H9D$`H01, 1736 x"go.string."image""go.string."Point"go.string."In" 1737 "runtime.panicwrap 1738 0runtime.morestack_noctxt``"".~r1Ptype.bool"".r"type."".Rectangle""..thistype.*"".Point`_` 1740 wiTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).ModdH%H;aH@HY Ht H|$HH9;uH#1H\$pH\$xH\$H1H9uEHH$HD$HH\$HD$HH\$ HD$(Ht$HHH$HNHL$H\$PH\$H\$XH\$H\$`H\$ H\$hH\$(HL$0HD$8HL$pHD$xH@ 1745 "go.string."image""go.string."Point"go.string."Mod" 1746 "runtime.panicwrap 1747 "".Point.Mod 1748 0runtime.morestack_noctxtp"".~r1Ptype."".Point"".r"type."".Rectangle""..thistype.*"".PointmTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).EqdH%H;aHPHY Ht H|$XH9;uH#H\$X1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$XHt[H3HkHL$`HD$hHt$@Hl$HHL$0HD$8H\$@HH\$0HHH(H9uHYHhH9D$pHP1 1756 x"go.string."image""go.string."Point"go.string."Eq" 1757 "runtime.panicwrap 1758 0runtime.morestack_noctxt@ 1759 "".autotmp_0807?type."".Point"".autotmp_0806type."".Point"".~r10type.bool"".qtype."".Point""..thistype.*"".Point wTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>,"".(*Rectangle).StringdH%H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(Ht$8Ht&HHL$ HD$(HL$@HD$HH07 1765 "go.string."image"*go.string."Rectangle"$go.string."String" 1766 "runtime.panicwrap 1767 runtime.duffcopy 1768 &"".Rectangle.String 1769 0runtime.morestack_noctxt0`"".~r0type.string""..this$type.*"".Rectangle`_`MTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).DxdH%H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtHHkHCHkHH)H\$@H0J 1777 x"go.string."image"*go.string."Rectangle"go.string."Dx" 1778 "runtime.panicwrap 1779 0runtime.morestack_noctxt `"".~r0type.int""..this$type.*"".Rectangle`_` 1781 wITgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).DydH%H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtH+HKHkH[H)H\$@H0M 1786 x"go.string."image"*go.string."Rectangle"go.string."Dy" 1787 "runtime.panicwrap 1788 0runtime.morestack_noctxt `"".~r0type.int""..this$type.*"".Rectangle`_` 1790 wITgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>("".(*Rectangle).SizedH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8Ht(H3HSHKHC11H)H)HL$@HD$HH0? 1795 |"go.string."image"*go.string."Rectangle" go.string."Size" 1796 "runtime.panicwrap 1797 0runtime.morestack_noctxt0`"".~r0type."".Point""..this$type.*"".Rectangle`_` 1799 yWTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".(*Rectangle).AdddH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtKH3HSLCH{HL$@HD$H11HHLHHHHHt$PHT$XHL$`H\$hH0 1804 |"go.string."image"*go.string."Rectangle"go.string."Add" 1805 "runtime.panicwrap 1806 0runtime.morestack_noctxtp`"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`_`" 1808 ywTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".(*Rectangle).SubdH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtKH3HSLCH{HL$@HD$H11H)H)LH)HHH)Ht$PHT$XHL$`H\$hH0 1813 |"go.string."image"*go.string."Rectangle"go.string."Sub" 1814 "runtime.panicwrap 1815 0runtime.morestack_noctxtp`"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`_`$ 1817 ywTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).InsetdH%H;aHHHY Ht H|$PH9;uH#1H\$`H\$hH\$pH\$xH\$P1H9uEHH$HD$HH\$HD$ HH\$ HD$(Ht$PHtDHH\$XH\$ Hl$(HT$0HL$8HD$@Hl$`HT$hHL$pHD$xHH 1821 "go.string."image"*go.string."Rectangle""go.string."Inset" 1822 "runtime.panicwrap 1823 runtime.duffcopy 1824 $"".Rectangle.Inset 1825 0runtime.morestack_noctxt`"".~r1 "type."".Rectangle"".ntype.int""..this$type.*"".Rectangle&sTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*Rectangle).IntersectdH%H;aH`HY Ht H|$hH9;uH#1H$H$H$H$H\$h1H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$hHttHH\$pH\$ H\$xH\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XH$H$H$H$H` 1831 "go.string."image"*go.string."Rectangle"*go.string."Intersect" 1832 "runtime.panicwrap 1833 runtime.duffcopy 1834 ,"".Rectangle.Intersect 1835 0runtime.morestack_noctxt"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle(Tgclocals4d8bed7e4976e3d095a9230e496231afTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).UniondH%H;aH`HY Ht H|$hH9;uH#1H$H$H$H$H\$h1H9uEHH$HD$HH\$HD$ HH\$ HD$(Ht$hHttHH\$pH\$ H\$xH\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XH$H$H$H$H` 1840 "go.string."image"*go.string."Rectangle""go.string."Union" 1841 "runtime.panicwrap 1842 runtime.duffcopy 1843 $"".Rectangle.Union 1844 0runtime.morestack_noctxt"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle*Tgclocals4d8bed7e4976e3d095a9230e496231afTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).EmptydH%H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8Ht,H3HSHKHCH9}H9D$@H0H= 1850 x"go.string."image"*go.string."Rectangle""go.string."Empty" 1851 "runtime.panicwrap 1852 0runtime.morestack_noctxt `"".~r0type.bool""..this$type.*"".Rectangle`_`$, 1854 wYTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).EqdH%H;aHpHY Ht H|$xH9;uH#H\$x1H9uEHH$HD$HH\$HD$ HH\$ HD$(Ht$xHL>LvLnLfL$L$L$H$L|$PLt$XLl$`Ld$hL\$0LT$8LL$@H|$HHt$PH\$0HHHHH*H9H^HjH9utHHHHHH)H9uWHXHiH9<u<M9}.M9<t M9}I9$HpH1HH11eTH 1859 x"go.string."image"*go.string."Rectangle"go.string."Eq" 1860 "runtime.panicwrap 1861 0runtime.morestack_noctxt`"".autotmp_0831type.bool"".autotmp_0830type.bool"".autotmp_0829type.*"".Point"".autotmp_0828type.*"".Point"".autotmp_0822"type."".Rectangle"".autotmp_0821?"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".RectangleN.wTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>0"".(*Rectangle).OverlapsdH%H;aHHHY Ht H|$PH9;uH#H\$P1H9uEHH$HD$HH\$HD$ HH\$ HD$(Ht$PHtCHH\$XH\$ H\$`H\$(H\$hH\$0H\$pH\$8\$@\$xHH& 1867 x"go.string."image"*go.string."Rectangle"(go.string."Overlaps" 1868 "runtime.panicwrap 1869 runtime.duffcopy 1870 *"".Rectangle.Overlaps 1871 0runtime.morestack_noctxt`"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle0 1873 wiTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).IndH%H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtfH;HsHSHKLl$@Ld$HL\$PLT$XH9}5H9<tHD$`H0I9L9 I9L91H 1879 x"go.string."image"*go.string."Rectangle"go.string."In" 1880 "runtime.panicwrap 1881 0runtime.morestack_noctxt``"".autotmp_0835type.bool"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle`_`52wTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).CanondH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8HtFH3HSHKHC1H9} HHHH9} HHHHt$@HT$HHL$PHD$XH0! 1888 |"go.string."image"*go.string."Rectangle""go.string."Canon" 1889 "runtime.panicwrap 1890 0runtime.morestack_noctxtP`"".autotmp_0837type.int"".~r0"type."".Rectangle""..this$type.*"".Rectangle`_`4 1892 ygTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).AtdH%HD$H;AHHY HtH$H9;uH#1H$H$H$1H9uEHH$HD$HH\$HD$ HH\$ HD$(H$H<LH{HsHSH$H$1H$H$1HD$@LD$hH|$pH|$PHt$xHt$XH$HT$`LD$HHL$8I9H9H9H9<t_HH$HH\$HH\$HH\$HD$ HL$(HD$0H$H$HHH$HH\$HH\$HH\$HD$ HL$(HD$01M 1895 "go.string."image"*go.string."Rectangle"go.string."At" 1896 "runtime.panicwrap0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque 1897 runtime.convT2I0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent 1898 runtime.convT2I 1899 0runtime.morestack_noctxtP"".autotmp_0840,type.image/color.Color"".r"type."".Rectangle"".ptype."".Point"".~r2,type.image/color.Color"".r_"type."".Rectangle"".~r20,type.image/color.Color"".y type.int"".xtype.int""..this$type.*"".Rectangled6Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals23e8278e2b69a3a75fa59b23c49ed6ad<autogenerated>,"".(*Rectangle).BoundsdH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(H\$8Ht*H3HSHKHC1Ht$@HT$HHL$PHD$XH0= 1906 |"go.string."image"*go.string."Rectangle"$go.string."Bounds" 1907 "runtime.panicwrap 1908 0runtime.morestack_noctxtP`"".~r0"type."".Rectangle""..this$type.*"".Rectangle`_`8 1910 yWTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*Rectangle).ColorModeldH%H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( 1913 H\$8Ht.H+HkHkHk1H HHL$@HD$HH09 1916 |"go.string."image"*go.string."Rectangle",go.string."ColorModel" 1917 "runtime.panicwrap0image/color.Alpha16Model0image/color.Alpha16Model 1918 0runtime.morestack_noctxt0`"".~r0,type.image/color.Model""..this$type.*"".Rectangle`_`: 1920 yWTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>(type..hash."".ConfigdH%H;avvH H\$(H$H<$tYH\$0H\$HD$H\$(H$H<$t,H$HD$0HD$HD$H\$H\$8H %%q 1922 \ 1923 "runtime.interhash 1924 runtime.memhash 1925 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Config@_?@ 1927 -cTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/linux-x86/src/image/format.go$type..eq."".ConfigdH%H;aHHH\$XHHHsH\$PHHHSH9uxHD$(H$HT$0HT$HL$8HL$Ht$@Ht$HL$XHD$P\$ t8HXHiH9t 1930 D$`HHHXHiH9t 1931 D$`HHD$`HHD$`HHkN 1932 1933 runtime.ifaceeq 1934 0runtime.morestack_noctxt0 1935 "".autotmp_0842?,type.image/color.Model"".autotmp_0841,type.image/color.Model"".~r2 type.bool"".qtype.*"".Config"".ptype.*"".Config> &oTgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tprebuilts/go/linux-x86/src/image/format.go"".reader.PeekdH%H;aH8HY Ht H|$@H9;uH#1H\$XH\$`H\$h1H\$pH\$xH\$PH\$H\$HH$H\$@H[ Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8W 1940 1941 0runtime.morestack_noctxtp"".~r2`type.error"".~r10type.[]uint8""..anon0 type.int""..thistype."".readerpop< 1944 fJTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".reader.ReaddH%H;av}H8HY Ht H|$@H9;uH#11H\$pH\$xH\$PH\$H\$XH\$H\$`H\$H\$HH$H\$@H[(HT$ HL$(HD$0HT$hHL$pHD$xH8j 1947 1948 0runtime.morestack_noctxtpio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".readerpxop> 1950 g9Tgclocalsdacebcad73eed5073009fd67170948d0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>@"".(*YCbCrSubsampleRatio).StringdH%H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$HH\$ HD$(H\$8H+H,$HL$HD$HL$@HD$HH0B 1954 "go.string."image">go.string."YCbCrSubsampleRatio"$go.string."String" 1955 "runtime.panicwrap 1956 :"".YCbCrSubsampleRatio.String 1957 0runtime.morestack_noctxt0`"".~r0type.string""..this8type.*"".YCbCrSubsampleRatio`_`@=Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".PalettedImage.AtdH%H;avgH(HY Ht H|$0H9;uH#1H\$PH\$XH\$@H\$H\$HH\$H\$8H$H\$0H[ HL$HD$ HL$PHD$XH( 1963 1964 0runtime.morestack_noctxt`P"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..this*type."".PalettedImagePbOP 1966 B 1967 [%Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>."".PalettedImage.BoundsdH%H;avqH(HY Ht H|$0H9;uH#1H\$@H\$HH\$PH\$XH\$8H$H\$0H[(Hl$HT$HL$HD$ Hl$@HT$HHL$PHD$XH(v 1970 1971 0runtime.morestack_noctxt`P"".~r0 "type."".Rectangle""..this*type."".PalettedImagePlOPD 1973 Q?Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>:"".PalettedImage.ColorIndexAtdH%H;avPH HY Ht H|$(H9;uH#H\$8H\$H\$@H\$H\$0H$H\$(H[0\$\$HH 1976 1977 0runtime.morestack_noctxtP@"".~r2@type.uint8"".y0type.int"".x type.int""..this*type."".PalettedImage@K?@pFp 1979 O!Tgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>6"".PalettedImage.ColorModeldH%H;avSHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[8HL$HD$HL$0HD$8H 1982 1983 0runtime.morestack_noctxt@0"".~r0 ,type.image/color.Model""..this*type."".PalettedImage0N/0pHp 1985 G)Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>Tgclocals5bcb5afcb5617f15eb2d0b279323d878((jkTgclocalsac96ed3958d5792ac369a1dc2bfe9382((5550>go.itab.*bufio.Reader."".readerTgclocalsdd9a4d2009c4ac75e28d1a37bbe5075e@@Tgclocalsa68b09a48716afad7ca7a02fe6add474@@Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb4c25e9b09fd0cf9bb429dcefe91c353Tgclocalsd82314ad8b4d0d463ee994662aedec13 jTgclocals99ef9ff0bd07d0e619cc0988c2dabb63 Tgclocalsa09af47d95804d1a0febde7c2c7293b6)``5Tgclocals693e8a411a45da74e76c619c62a5bb87PPTgclocalsa09af47d95804d1a0febde7c2c7293b6)``5Tgclocals473289be119113ddb746c224f05da7b4PP 1986 "go.string.hdr."(" go.string."("go.string."("("go.string.hdr."," go.string.","go.string.",","go.string.hdr.")" go.string.")"go.string.")")Tgclocals44750c784da4dd430afdd97fea5c405a Tgclocals64ca935d1a2110a30e2d604686188539 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals627bbca91efe935c3ac76737d2026ca6Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440"go.string.hdr."-" go.string."-"go.string."-"-Tgclocals44750c784da4dd430afdd97fea5c405a Tgclocalsae0a20890c9ac6bfbea3383f34532bab Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals63ba92e6c81d2d7bf2207e4076c8b23c 1987 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals63ba92e6c81d2d7bf2207e4076c8b23c 1988 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d8380Zgo.itab.image/color.Alpha16.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.RGBA.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7202go.itab.*"".RGBA."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.RGBA64.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7206go.itab.*"".RGBA64."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.NRGBA.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7204go.itab.*"".NRGBA."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Zgo.itab.image/color.NRGBA64.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7208go.itab.*"".NRGBA64."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.Alpha.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7204go.itab.*"".Alpha."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7208go.itab.*"".Alpha16."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.Gray.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7202go.itab.*"".Gray."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.Gray16.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7206go.itab.*"".Gray16."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.CMYK.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7202go.itab.*"".CMYK."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocalsc7e46dd432d705036367d637fd33d432((0Zgo.itab.image/color.Palette.image/color.ModelTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsf1597d34acce1d76d65bc9b6f5da0f2dTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae720:go.itab.*"".Paletted."".ImageTgclocals721dda3334c021125365f71a78d0ed1e((Tgclocals0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals5e29cf4e275ff1db65cfee262b3b8d1f Tgclocals32bd5c6dc84e3e86dd35593b3922d3aa Tgclocals7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals57c83c41cc07fcd7f4b6f6e2693ed359((Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals0b86ef39f3fed835f14ba5f4d7c62fa20Jgo.itab.*"".Uniform.image/color.ModelTgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocals41a13ac73c712c01973b8fe23f62d694 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals13bdb4aeeaf63de3cc223d640262ea59Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals0c8aa8e80191a30eac23f1a218103f16 Tgclocals51af24152615272c3d9efc8538f95767 Lgo.string.hdr."YCbCrSubsampleRatio444" Dgo.string."YCbCrSubsampleRatio444"Dgo.string."YCbCrSubsampleRatio444"0.YCbCrSubsampleRatio444Lgo.string.hdr."YCbCrSubsampleRatio422" Dgo.string."YCbCrSubsampleRatio422"Dgo.string."YCbCrSubsampleRatio422"0.YCbCrSubsampleRatio422Lgo.string.hdr."YCbCrSubsampleRatio420" Dgo.string."YCbCrSubsampleRatio420"Dgo.string."YCbCrSubsampleRatio420"0.YCbCrSubsampleRatio420Lgo.string.hdr."YCbCrSubsampleRatio440" Dgo.string."YCbCrSubsampleRatio440"Dgo.string."YCbCrSubsampleRatio440"0.YCbCrSubsampleRatio440Lgo.string.hdr."YCbCrSubsampleRatio411" Dgo.string."YCbCrSubsampleRatio411"Dgo.string."YCbCrSubsampleRatio411"0.YCbCrSubsampleRatio411Lgo.string.hdr."YCbCrSubsampleRatio410" Dgo.string."YCbCrSubsampleRatio410"Dgo.string."YCbCrSubsampleRatio410"0.YCbCrSubsampleRatio410Tgo.string.hdr."YCbCrSubsampleRatioUnknown" Lgo.string."YCbCrSubsampleRatioUnknown"Lgo.string."YCbCrSubsampleRatioUnknown"@6YCbCrSubsampleRatioUnknownTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.YCbCr.image/color.ColorTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7204go.itab.*"".YCbCr."".ImageTgclocalsafc01c2a5c5199c7dd20b96c1472514088 1991 Tgclocals4a5c83272286258cf484ac950366f97388Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals27322ac377f4076175cee6d941c3083088 Tgclocals0ce38f56d4c8b081a7ecdd846c3439b588Jgo.string.hdr."image: unknown format" Bgo.string."image: unknown format"Bgo.string."image: unknown format"0,image: unknown formatTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".ErrFormat type.error."".formats0 type.[]"".format0 1993 "".ZP type."".Point0 1994 "".ZR@"type."".Rectangle."".Black type.*"".Uniform."".White type.*"".Uniform."".Transparent type.*"".Uniform."".Opaque type.*"".Uniform0"".initdonetype.uint8("".RegisterFormatf""".RegisterFormat"".asReaderf"".asReader"".matchf"".match"".snifff"".sniff"".Decodef"".Decode$"".DecodeConfigf"".DecodeConfig$"".Point.Stringf"".Point.String"".Point.Addf"".Point.Add"".Point.Subf"".Point.Sub"".Point.Mulf"".Point.Mul"".Point.Divf"".Point.Div"".Point.Inf"".Point.In"".Point.Modf"".Point.Mod"".Point.Eqf"".Point.Eq"".Ptf 1995 "".Pt,"".Rectangle.Stringf&"".Rectangle.String$"".Rectangle.Dxf"".Rectangle.Dx$"".Rectangle.Dyf"".Rectangle.Dy("".Rectangle.Sizef""".Rectangle.Size&"".Rectangle.Addf "".Rectangle.Add&"".Rectangle.Subf "".Rectangle.Sub*"".Rectangle.Insetf$"".Rectangle.Inset2"".Rectangle.Intersectf,"".Rectangle.Intersect*"".Rectangle.Unionf$"".Rectangle.Union*"".Rectangle.Emptyf$"".Rectangle.Empty$"".Rectangle.Eqf"".Rectangle.Eq0"".Rectangle.Overlapsf*"".Rectangle.Overlaps$"".Rectangle.Inf"".Rectangle.In*"".Rectangle.Canonf$"".Rectangle.Canon$"".Rectangle.Atf"".Rectangle.At,"".Rectangle.Boundsf&"".Rectangle.Bounds4"".Rectangle.ColorModelf."".Rectangle.ColorModel"".Rectf"".Rect0"".(*RGBA).ColorModelf*"".(*RGBA).ColorModel("".(*RGBA).Boundsf""".(*RGBA).Bounds "".(*RGBA).Atf"".(*RGBA).At("".(*RGBA).RGBAAtf""".(*RGBA).RGBAAt."".(*RGBA).PixOffsetf("".(*RGBA).PixOffset""".(*RGBA).Setf"".(*RGBA).Set*"".(*RGBA).SetRGBAf$"".(*RGBA).SetRGBA,"".(*RGBA).SubImagef&"".(*RGBA).SubImage("".(*RGBA).Opaquef""".(*RGBA).Opaque"".NewRGBAf"".NewRGBA4"".(*RGBA64).ColorModelf."".(*RGBA64).ColorModel,"".(*RGBA64).Boundsf&"".(*RGBA64).Bounds$"".(*RGBA64).Atf"".(*RGBA64).At0"".(*RGBA64).RGBA64Atf*"".(*RGBA64).RGBA64At2"".(*RGBA64).PixOffsetf,"".(*RGBA64).PixOffset&"".(*RGBA64).Setf "".(*RGBA64).Set2"".(*RGBA64).SetRGBA64f,"".(*RGBA64).SetRGBA640"".(*RGBA64).SubImagef*"".(*RGBA64).SubImage,"".(*RGBA64).Opaquef&"".(*RGBA64).Opaque"".NewRGBA64f"".NewRGBA642"".(*NRGBA).ColorModelf,"".(*NRGBA).ColorModel*"".(*NRGBA).Boundsf$"".(*NRGBA).Bounds""".(*NRGBA).Atf"".(*NRGBA).At,"".(*NRGBA).NRGBAAtf&"".(*NRGBA).NRGBAAt0"".(*NRGBA).PixOffsetf*"".(*NRGBA).PixOffset$"".(*NRGBA).Setf"".(*NRGBA).Set."".(*NRGBA).SetNRGBAf("".(*NRGBA).SetNRGBA."".(*NRGBA).SubImagef("".(*NRGBA).SubImage*"".(*NRGBA).Opaquef$"".(*NRGBA).Opaque"".NewNRGBAf"".NewNRGBA6"".(*NRGBA64).ColorModelf0"".(*NRGBA64).ColorModel."".(*NRGBA64).Boundsf("".(*NRGBA64).Bounds&"".(*NRGBA64).Atf "".(*NRGBA64).At4"".(*NRGBA64).NRGBA64Atf."".(*NRGBA64).NRGBA64At4"".(*NRGBA64).PixOffsetf."".(*NRGBA64).PixOffset("".(*NRGBA64).Setf""".(*NRGBA64).Set6"".(*NRGBA64).SetNRGBA64f0"".(*NRGBA64).SetNRGBA642"".(*NRGBA64).SubImagef,"".(*NRGBA64).SubImage."".(*NRGBA64).Opaquef("".(*NRGBA64).Opaque "".NewNRGBA64f"".NewNRGBA642"".(*Alpha).ColorModelf,"".(*Alpha).ColorModel*"".(*Alpha).Boundsf$"".(*Alpha).Bounds""".(*Alpha).Atf"".(*Alpha).At,"".(*Alpha).AlphaAtf&"".(*Alpha).AlphaAt0"".(*Alpha).PixOffsetf*"".(*Alpha).PixOffset$"".(*Alpha).Setf"".(*Alpha).Set."".(*Alpha).SetAlphaf("".(*Alpha).SetAlpha."".(*Alpha).SubImagef("".(*Alpha).SubImage*"".(*Alpha).Opaquef$"".(*Alpha).Opaque"".NewAlphaf"".NewAlpha6"".(*Alpha16).ColorModelf0"".(*Alpha16).ColorModel."".(*Alpha16).Boundsf("".(*Alpha16).Bounds&"".(*Alpha16).Atf "".(*Alpha16).At4"".(*Alpha16).Alpha16Atf."".(*Alpha16).Alpha16At4"".(*Alpha16).PixOffsetf."".(*Alpha16).PixOffset("".(*Alpha16).Setf""".(*Alpha16).Set6"".(*Alpha16).SetAlpha16f0"".(*Alpha16).SetAlpha162"".(*Alpha16).SubImagef,"".(*Alpha16).SubImage."".(*Alpha16).Opaquef("".(*Alpha16).Opaque "".NewAlpha16f"".NewAlpha160"".(*Gray).ColorModelf*"".(*Gray).ColorModel("".(*Gray).Boundsf""".(*Gray).Bounds "".(*Gray).Atf"".(*Gray).At("".(*Gray).GrayAtf""".(*Gray).GrayAt."".(*Gray).PixOffsetf("".(*Gray).PixOffset""".(*Gray).Setf"".(*Gray).Set*"".(*Gray).SetGrayf$"".(*Gray).SetGray,"".(*Gray).SubImagef&"".(*Gray).SubImage("".(*Gray).Opaquef""".(*Gray).Opaque"".NewGrayf"".NewGray4"".(*Gray16).ColorModelf."".(*Gray16).ColorModel,"".(*Gray16).Boundsf&"".(*Gray16).Bounds$"".(*Gray16).Atf"".(*Gray16).At0"".(*Gray16).Gray16Atf*"".(*Gray16).Gray16At2"".(*Gray16).PixOffsetf,"".(*Gray16).PixOffset&"".(*Gray16).Setf "".(*Gray16).Set2"".(*Gray16).SetGray16f,"".(*Gray16).SetGray160"".(*Gray16).SubImagef*"".(*Gray16).SubImage,"".(*Gray16).Opaquef&"".(*Gray16).Opaque"".NewGray16f"".NewGray160"".(*CMYK).ColorModelf*"".(*CMYK).ColorModel("".(*CMYK).Boundsf""".(*CMYK).Bounds "".(*CMYK).Atf"".(*CMYK).At("".(*CMYK).CMYKAtf""".(*CMYK).CMYKAt."".(*CMYK).PixOffsetf("".(*CMYK).PixOffset""".(*CMYK).Setf"".(*CMYK).Set*"".(*CMYK).SetCMYKf$"".(*CMYK).SetCMYK,"".(*CMYK).SubImagef&"".(*CMYK).SubImage("".(*CMYK).Opaquef""".(*CMYK).Opaque"".NewCMYKf"".NewCMYK8"".(*Paletted).ColorModelf2"".(*Paletted).ColorModel0"".(*Paletted).Boundsf*"".(*Paletted).Bounds("".(*Paletted).Atf""".(*Paletted).At6"".(*Paletted).PixOffsetf0"".(*Paletted).PixOffset*"".(*Paletted).Setf$"".(*Paletted).Set<"".(*Paletted).ColorIndexAtf6"".(*Paletted).ColorIndexAt>"".(*Paletted).SetColorIndexf8"".(*Paletted).SetColorIndex4"".(*Paletted).SubImagef."".(*Paletted).SubImage0"".(*Paletted).Opaquef*"".(*Paletted).Opaque""".NewPalettedf"".NewPaletted*"".(*Uniform).RGBAf$"".(*Uniform).RGBA6"".(*Uniform).ColorModelf0"".(*Uniform).ColorModel0"".(*Uniform).Convertf*"".(*Uniform).Convert."".(*Uniform).Boundsf("".(*Uniform).Bounds&"".(*Uniform).Atf "".(*Uniform).At."".(*Uniform).Opaquef("".(*Uniform).Opaque "".NewUniformf"".NewUniform@"".YCbCrSubsampleRatio.Stringf:"".YCbCrSubsampleRatio.String2"".(*YCbCr).ColorModelf,"".(*YCbCr).ColorModel*"".(*YCbCr).Boundsf$"".(*YCbCr).Bounds""".(*YCbCr).Atf"".(*YCbCr).At,"".(*YCbCr).YCbCrAtf&"".(*YCbCr).YCbCrAt,"".(*YCbCr).YOffsetf&"".(*YCbCr).YOffset,"".(*YCbCr).COffsetf&"".(*YCbCr).COffset."".(*YCbCr).SubImagef("".(*YCbCr).SubImage*"".(*YCbCr).Opaquef$"".(*YCbCr).Opaque"".NewYCbCrf"".NewYCbCr"".initf"".initTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578"runtime.gcbits.01Tgo.string.hdr."func(int, int) color.Color" Lgo.string."func(int, int) color.Color"Lgo.string."func(int, int) color.Color"@6func(int, int) color.ColorJtype.func(int, int) image/color.ColorT30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Color"p\go.weak.type.*func(int, int) image/color.Color"runtime.zerovalueJtype.func(int, int) image/color.ColorJtype.func(int, int) image/color.Colortype.inttype.int,type.image/color.Colorgo.typelink.func(int, int) color.Color func(int, int) image/color.ColorJtype.func(int, int) image/color.Color8go.string.hdr."*image.Point" 0go.string."*image.Point"0go.string."*image.Point" *image.Point*go.string.hdr."image" "go.string."image""go.string."image"image*go.string.hdr."Point" "go.string."Point""go.string."Point"Point,go.string.hdr."String" $go.string."String"$go.string."String"StringTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2&go.string.hdr."Add" go.string."Add"go.string."Add"AddTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0&go.string.hdr."Sub" go.string."Sub"go.string."Sub"SubTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0&go.string.hdr."Mul" go.string."Mul"go.string."Mul"MulTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72&go.string.hdr."Div" go.string."Div"go.string."Div"DivTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72$go.string.hdr."In" go.string."In"go.string."In"InTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92a&go.string.hdr."Mod" go.string."Mod"go.string."Mod"ModTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4$go.string.hdr."Eq" go.string."Eq"go.string."Eq"EqTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72vgo.string.hdr."func(*image.Point, image.Point) image.Point" +ngo.string."func(*image.Point, image.Point) image.Point"ngo.string."func(*image.Point, image.Point) image.Point"`Xfunc(*image.Point, image.Point) image.PointNtype.func(*"".Point, "".Point) "".Point.^30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Point, image.Point) image.Point"p`go.weak.type.*func(*"".Point, "".Point) "".Point"runtime.zerovalueNtype.func(*"".Point, "".Point) "".PointNtype.func(*"".Point, "".Point) "".Pointtype.*"".Pointtype."".Pointtype."".Pointgo.typelink.func(*image.Point, image.Point) image.Point func(*"".Point, "".Point) "".PointNtype.func(*"".Point, "".Point) "".Pointfgo.string.hdr."func(*image.Point, int) image.Point" #^go.string."func(*image.Point, int) image.Point"^go.string."func(*image.Point, int) image.Point"PHfunc(*image.Point, int) image.PointDtype.func(*"".Point, int) "".Point3 30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Point, int) image.Point"pVgo.weak.type.*func(*"".Point, int) "".Point"runtime.zerovalueDtype.func(*"".Point, int) "".PointDtype.func(*"".Point, int) "".Pointtype.*"".Pointtype.inttype."".Pointgo.typelink.func(*image.Point, int) image.Point func(*"".Point, int) "".PointDtype.func(*"".Point, int) "".Pointhgo.string.hdr."func(*image.Point, image.Point) bool" $`go.string."func(*image.Point, image.Point) bool"`go.string."func(*image.Point, image.Point) bool"PJfunc(*image.Point, image.Point) boolFtype.func(*"".Point, "".Point) bool30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Point, image.Point) bool"pXgo.weak.type.*func(*"".Point, "".Point) bool"runtime.zerovalueFtype.func(*"".Point, "".Point) boolFtype.func(*"".Point, "".Point) booltype.*"".Pointtype."".Pointtype.boolgo.typelink.func(*image.Point, image.Point) bool func(*"".Point, "".Point) boolFtype.func(*"".Point, "".Point) boolpgo.string.hdr."func(*image.Point, image.Rectangle) bool" (hgo.string."func(*image.Point, image.Rectangle) bool"hgo.string."func(*image.Point, image.Rectangle) bool"`Rfunc(*image.Point, image.Rectangle) boolNtype.func(*"".Point, "".Rectangle) bool30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Point, image.Rectangle) bool"p`go.weak.type.*func(*"".Point, "".Rectangle) bool"runtime.zerovalueNtype.func(*"".Point, "".Rectangle) boolNtype.func(*"".Point, "".Rectangle) booltype.*"".Point"type."".Rectangletype.boolgo.typelink.func(*image.Point, image.Rectangle) bool func(*"".Point, "".Rectangle) boolNtype.func(*"".Point, "".Rectangle) bool~go.string.hdr."func(*image.Point, image.Rectangle) image.Point" /vgo.string."func(*image.Point, image.Rectangle) image.Point"vgo.string."func(*image.Point, image.Rectangle) image.Point"``func(*image.Point, image.Rectangle) image.PointVtype.func(*"".Point, "".Rectangle) "".Point30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"phgo.weak.type.*func(*"".Point, "".Rectangle) "".Point"runtime.zerovalueVtype.func(*"".Point, "".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".Pointtype.*"".Point"type."".Rectangletype."".Pointgo.typelink.func(*image.Point, image.Rectangle) image.Point func(*"".Point, "".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".PointRgo.string.hdr."func(*image.Point) string" Jgo.string."func(*image.Point) string"Jgo.string."func(*image.Point) string"@4func(*image.Point) string6type.func(*"".Point) stringu30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Point) string"pHgo.weak.type.*func(*"".Point) string"runtime.zerovalue6type.func(*"".Point) string6type.func(*"".Point) stringtype.*"".Pointtype.stringxgo.typelink.func(*image.Point) string func(*"".Point) string6type.func(*"".Point) stringZgo.string.hdr."func(image.Point) image.Point" Rgo.string."func(image.Point) image.Point"Rgo.string."func(image.Point) image.Point"@<func(image.Point) image.Point8type.func("".Point) "".Point<30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(image.Point) image.Point"pJgo.weak.type.*func("".Point) "".Point"runtime.zerovalue8type.func("".Point) "".Point8type.func("".Point) "".Pointtype."".Pointtype."".Pointgo.typelink.func(image.Point) image.Point func("".Point) "".Point8type.func("".Point) "".PointJgo.string.hdr."func(int) image.Point" Bgo.string."func(int) image.Point"Bgo.string."func(int) image.Point"0,func(int) image.Point.type.func(int) "".PointR30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(int) image.Point"p@go.weak.type.*func(int) "".Point"runtime.zerovalue.type.func(int) "".Point.type.func(int) "".Pointtype.inttype."".Pointhgo.typelink.func(int) image.Point func(int) "".Point.type.func(int) "".PointLgo.string.hdr."func(image.Point) bool" Dgo.string."func(image.Point) bool"Dgo.string."func(image.Point) bool"0.func(image.Point) bool0type.func("".Point) boola30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(image.Point) bool"pBgo.weak.type.*func("".Point) bool"runtime.zerovalue0type.func("".Point) bool0type.func("".Point) booltype."".Pointtype.boollgo.typelink.func(image.Point) bool func("".Point) bool0type.func("".Point) boolTgo.string.hdr."func(image.Rectangle) bool" Lgo.string."func(image.Rectangle) bool"Lgo.string."func(image.Rectangle) bool"@6func(image.Rectangle) bool8type.func("".Rectangle) boolS30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(image.Rectangle) bool"pJgo.weak.type.*func("".Rectangle) bool"runtime.zerovalue8type.func("".Rectangle) bool8type.func("".Rectangle) bool"type."".Rectangletype.bool|go.typelink.func(image.Rectangle) bool func("".Rectangle) bool8type.func("".Rectangle) boolbgo.string.hdr."func(image.Rectangle) image.Point" !Zgo.string."func(image.Rectangle) image.Point"Zgo.string."func(image.Rectangle) image.Point"PDfunc(image.Rectangle) image.Point@type.func("".Rectangle) "".Point]Ek30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) image.Point"pRgo.weak.type.*func("".Rectangle) "".Point"runtime.zerovalue@type.func("".Rectangle) "".Point@type.func("".Rectangle) "".Point"type."".Rectangletype."".Pointgo.typelink.func(image.Rectangle) image.Point func("".Rectangle) "".Point@type.func("".Rectangle) "".Point:go.string.hdr."func() string" 2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string func() string$type.func() stringtype.*"".Point=56`0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Point"p.go.weak.type.**"".Point"runtime.zerovaluetype."".Point`type.*"".Pointtype.*"".Point&go.string.hdr."Add"8type.func("".Point) "".PointNtype.func(*"".Point, "".Point) "".Point"".(*Point).Add"".(*Point).Add&go.string.hdr."Div".type.func(int) "".PointDtype.func(*"".Point, int) "".Point"".(*Point).Div"".(*Point).Div$go.string.hdr."Eq"0type.func("".Point) boolFtype.func(*"".Point, "".Point) bool"".(*Point).Eq"".(*Point).Eq$go.string.hdr."In"8type.func("".Rectangle) boolNtype.func(*"".Point, "".Rectangle) bool"".(*Point).In"".(*Point).In&go.string.hdr."Mod"@type.func("".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".Point"".(*Point).Mod"".(*Point).Mod&go.string.hdr."Mul".type.func(int) "".PointDtype.func(*"".Point, int) "".Point"".(*Point).Mul"".(*Point).Mul,go.string.hdr."String"$type.func() string6type.func(*"".Point) string$"".(*Point).String$"".(*Point).String&go.string.hdr."Sub"8type.func("".Point) "".PointNtype.func(*"".Point, "".Point) "".Point"".(*Point).Sub"".(*Point).Subruntime.gcbits.6go.string.hdr."image.Point" .go.string."image.Point".go.string."image.Point" image.Point"go.string.hdr."X" go.string."X"go.string."X"X"go.string.hdr."Y" go.string."Y"go.string."Y"Ytgo.string.hdr."func(image.Point, image.Point) image.Point" *lgo.string."func(image.Point, image.Point) image.Point"lgo.string."func(image.Point, image.Point) image.Point"`Vfunc(image.Point, image.Point) image.PointLtype.func("".Point, "".Point) "".Pointzm{30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(image.Point, image.Point) image.Point"p^go.weak.type.*func("".Point, "".Point) "".Point"runtime.zerovalueLtype.func("".Point, "".Point) "".PointLtype.func("".Point, "".Point) "".Pointtype."".Pointtype."".Pointtype."".Pointgo.typelink.func(image.Point, image.Point) image.Point func("".Point, "".Point) "".PointLtype.func("".Point, "".Point) "".Pointdgo.string.hdr."func(image.Point, int) image.Point" "\go.string."func(image.Point, int) image.Point"\go.string."func(image.Point, int) image.Point"PFfunc(image.Point, int) image.PointBtype.func("".Point, int) "".Point(de30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(image.Point, int) image.Point"pTgo.weak.type.*func("".Point, int) "".Point"runtime.zerovalueBtype.func("".Point, int) "".PointBtype.func("".Point, int) "".Pointtype."".Pointtype.inttype."".Pointgo.typelink.func(image.Point, int) image.Point func("".Point, int) "".PointBtype.func("".Point, int) "".Pointfgo.string.hdr."func(image.Point, image.Point) bool" #^go.string."func(image.Point, image.Point) bool"^go.string."func(image.Point, image.Point) bool"PHfunc(image.Point, image.Point) boolDtype.func("".Point, "".Point) bool330 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(image.Point, image.Point) bool"pVgo.weak.type.*func("".Point, "".Point) bool"runtime.zerovalueDtype.func("".Point, "".Point) boolDtype.func("".Point, "".Point) booltype."".Pointtype."".Pointtype.boolgo.typelink.func(image.Point, image.Point) bool func("".Point, "".Point) boolDtype.func("".Point, "".Point) boolngo.string.hdr."func(image.Point, image.Rectangle) bool" 'fgo.string."func(image.Point, image.Rectangle) bool"fgo.string."func(image.Point, image.Rectangle) bool"PPfunc(image.Point, image.Rectangle) boolLtype.func("".Point, "".Rectangle) bool30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(image.Point, image.Rectangle) bool"p^go.weak.type.*func("".Point, "".Rectangle) bool"runtime.zerovalueLtype.func("".Point, "".Rectangle) boolLtype.func("".Point, "".Rectangle) booltype."".Point"type."".Rectangletype.boolgo.typelink.func(image.Point, image.Rectangle) bool func("".Point, "".Rectangle) boolLtype.func("".Point, "".Rectangle) bool|go.string.hdr."func(image.Point, image.Rectangle) image.Point" .tgo.string."func(image.Point, image.Rectangle) image.Point"tgo.string."func(image.Point, image.Rectangle) image.Point"`^func(image.Point, image.Rectangle) image.PointTtype.func("".Point, "".Rectangle) "".Point$#30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(image.Point, image.Rectangle) image.Point"pfgo.weak.type.*func("".Point, "".Rectangle) "".Point"runtime.zerovalueTtype.func("".Point, "".Rectangle) "".PointTtype.func("".Point, "".Rectangle) "".Pointtype."".Point"type."".Rectangletype."".Pointgo.typelink.func(image.Point, image.Rectangle) image.Point func("".Point, "".Rectangle) "".PointTtype.func("".Point, "".Rectangle) "".PointPgo.string.hdr."func(image.Point) string" Hgo.string."func(image.Point) string"Hgo.string."func(image.Point) string"@2func(image.Point) string4type.func("".Point) string,|30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(image.Point) string"pFgo.weak.type.*func("".Point) string"runtime.zerovalue4type.func("".Point) string4type.func("".Point) stringtype."".Pointtype.stringtgo.typelink.func(image.Point) string func("".Point) string4type.func("".Point) string"go.importpath."". "go.string."image"type."".Point V[l0 runtime.algarray@runtime.gcbits.P6go.string.hdr."image.Point"ptype.*"".Point"runtime.zerovaluetype."".Point"go.string.hdr."X"type.int"go.string.hdr."Y"type.int`type."".Point*go.string.hdr."Point""go.importpath."".type."".Point&go.string.hdr."Add"8type.func("".Point) "".PointLtype.func("".Point, "".Point) "".Point"".(*Point).Add"".Point.Add&go.string.hdr."Div".type.func(int) "".PointBtype.func("".Point, int) "".Point"".(*Point).Div"".Point.Div$go.string.hdr."Eq"0type.func("".Point) boolDtype.func("".Point, "".Point) bool"".(*Point).Eq"".Point.Eq$go.string.hdr."In"8type.func("".Rectangle) boolLtype.func("".Point, "".Rectangle) bool"".(*Point).In"".Point.In&go.string.hdr."Mod"@type.func("".Rectangle) "".PointTtype.func("".Point, "".Rectangle) "".Point"".(*Point).Mod"".Point.Mod&go.string.hdr."Mul".type.func(int) "".PointBtype.func("".Point, int) "".Point"".(*Point).Mul"".Point.Mul,go.string.hdr."String"$type.func() string4type.func("".Point) string$"".(*Point).String"".Point.String&go.string.hdr."Sub"8type.func("".Point) "".Point Ltype.func("".Point, "".Point) "".Point "".(*Point).Sub "".Point.Sub type..hashfunc32 ,runtime.memhash_varlentype..eqfunc32 .runtime.memequal_varlentype..alg32 type..hashfunc32type..eqfunc32@go.string.hdr."*image.Rectangle" 8go.string."*image.Rectangle"8go.string."*image.Rectangle"0"*image.Rectangle2go.string.hdr."Rectangle" *go.string."Rectangle"*go.string."Rectangle" RectangleTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2$go.string.hdr."Dx" go.string."Dx"go.string."Dx"DxTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162$go.string.hdr."Dy" go.string."Dy"go.string."Dy"DyTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162(go.string.hdr."Size" go.string."Size" go.string."Size" 2003 SizeTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa041240a37ce609efec56707c330d1a4*go.string.hdr."Inset" "go.string."Inset""go.string."Inset"InsetTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92a2go.string.hdr."Intersect" *go.string."Intersect"*go.string."Intersect" IntersectTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals4d8bed7e4976e3d095a9230e496231af *go.string.hdr."Union" "go.string."Union""go.string."Union"UnionTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals4d8bed7e4976e3d095a9230e496231af *go.string.hdr."Empty" "go.string."Empty""go.string."Empty"EmptyTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92a0go.string.hdr."Overlaps" (go.string."Overlaps"(go.string."Overlaps" OverlapsTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6432f8c6a0d23fa7bee6c5d96f21a92a*go.string.hdr."Canon" "go.string."Canon""go.string."Canon"CanonTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0$go.string.hdr."At" go.string."At"go.string."At"AtTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals89fe65749ce0afc971c0982226501ff0,go.string.hdr."Bounds" $go.string."Bounds"$go.string."Bounds"BoundsTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff04go.string.hdr."ColorModel" 2008 ,go.string."ColorModel",go.string."ColorModel" ColorModelTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle" 3~go.string."func(*image.Rectangle, image.Point) image.Rectangle"~go.string."func(*image.Rectangle, image.Point) image.Rectangle"phfunc(*image.Rectangle, image.Point) image.Rectangle^type.func(*"".Rectangle, "".Point) "".Rectangle7t30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"ppgo.weak.type.*func(*"".Rectangle, "".Point) "".Rectangle"runtime.zerovalue^type.func(*"".Rectangle, "".Point) "".Rectangle^type.func(*"".Rectangle, "".Point) "".Rectangle$type.*"".Rectangletype."".Point"type."".Rectanglego.typelink.func(*image.Rectangle, image.Point) image.Rectangle func(*"".Rectangle, "".Point) "".Rectangle^type.func(*"".Rectangle, "".Point) "".Rectanglexgo.string.hdr."func(*image.Rectangle, int, int) color.Color" ,pgo.string."func(*image.Rectangle, int, int) color.Color"pgo.string."func(*image.Rectangle, int, int) color.Color"`Zfunc(*image.Rectangle, int, int) color.Colorhtype.func(*"".Rectangle, int, int) image/color.ColorK30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Rectangle, int, int) color.Color"pzgo.weak.type.*func(*"".Rectangle, int, int) image/color.Color"runtime.zerovaluehtype.func(*"".Rectangle, int, int) image/color.Colorhtype.func(*"".Rectangle, int, int) image/color.Color$type.*"".Rectangletype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Rectangle, int, int) color.Color func(*"".Rectangle, int, int) image/color.Colorhtype.func(*"".Rectangle, int, int) image/color.Colorlgo.string.hdr."func(*image.Rectangle) image.Rectangle" &dgo.string."func(*image.Rectangle) image.Rectangle"dgo.string."func(*image.Rectangle) image.Rectangle"PNfunc(*image.Rectangle) image.RectangleJtype.func(*"".Rectangle) "".RectangleP2]30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Rectangle) image.Rectangle"p\go.weak.type.*func(*"".Rectangle) "".Rectangle"runtime.zerovalueJtype.func(*"".Rectangle) "".RectangleJtype.func(*"".Rectangle) "".Rectangle$type.*"".Rectangle"type."".Rectanglego.typelink.func(*image.Rectangle) image.Rectangle func(*"".Rectangle) "".RectangleJtype.func(*"".Rectangle) "".Rectangledgo.string.hdr."func(*image.Rectangle) color.Model" "\go.string."func(*image.Rectangle) color.Model"\go.string."func(*image.Rectangle) color.Model"PFfunc(*image.Rectangle) color.ModelTtype.func(*"".Rectangle) image/color.Model]30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Rectangle) color.Model"pfgo.weak.type.*func(*"".Rectangle) image/color.Model"runtime.zerovalueTtype.func(*"".Rectangle) image/color.ModelTtype.func(*"".Rectangle) image/color.Model$type.*"".Rectangle,type.image/color.Modelgo.typelink.func(*image.Rectangle) color.Model func(*"".Rectangle) image/color.ModelTtype.func(*"".Rectangle) image/color.ModelTgo.string.hdr."func(*image.Rectangle) int" Lgo.string."func(*image.Rectangle) int"Lgo.string."func(*image.Rectangle) int"@6func(*image.Rectangle) int8type.func(*"".Rectangle) int@30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*image.Rectangle) int"pJgo.weak.type.*func(*"".Rectangle) int"runtime.zerovalue8type.func(*"".Rectangle) int8type.func(*"".Rectangle) int$type.*"".Rectangletype.int|go.typelink.func(*image.Rectangle) int func(*"".Rectangle) int8type.func(*"".Rectangle) intVgo.string.hdr."func(*image.Rectangle) bool" Ngo.string."func(*image.Rectangle) bool"Ngo.string."func(*image.Rectangle) bool"@8func(*image.Rectangle) bool:type.func(*"".Rectangle) boolro30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(*image.Rectangle) bool"pLgo.weak.type.*func(*"".Rectangle) bool"runtime.zerovalue:type.func(*"".Rectangle) bool:type.func(*"".Rectangle) bool$type.*"".Rectangletype.boolgo.typelink.func(*image.Rectangle) bool func(*"".Rectangle) bool:type.func(*"".Rectangle) boolxgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool" ,pgo.string."func(*image.Rectangle, image.Rectangle) bool"pgo.string."func(*image.Rectangle, image.Rectangle) bool"`Zfunc(*image.Rectangle, image.Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool @30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Rectangle, image.Rectangle) bool"phgo.weak.type.*func(*"".Rectangle, "".Rectangle) bool"runtime.zerovalueVtype.func(*"".Rectangle, "".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool$type.*"".Rectangle"type."".Rectangletype.boolgo.typelink.func(*image.Rectangle, image.Rectangle) bool func(*"".Rectangle, "".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) boolvgo.string.hdr."func(*image.Rectangle, int) image.Rectangle" +ngo.string."func(*image.Rectangle, int) image.Rectangle"ngo.string."func(*image.Rectangle, int) image.Rectangle"`Xfunc(*image.Rectangle, int) image.RectangleTtype.func(*"".Rectangle, int) "".Rectangleg30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Rectangle, int) image.Rectangle"pfgo.weak.type.*func(*"".Rectangle, int) "".Rectangle"runtime.zerovalueTtype.func(*"".Rectangle, int) "".RectangleTtype.func(*"".Rectangle, int) "".Rectangle$type.*"".Rectangletype.int"type."".Rectanglego.typelink.func(*image.Rectangle, int) image.Rectangle func(*"".Rectangle, int) "".RectangleTtype.func(*"".Rectangle, int) "".Rectanglego.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle" 7go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"ppfunc(*image.Rectangle, image.Rectangle) image.Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangle:30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Rectangle, image.Rectangle) image.Rectangle"pxgo.weak.type.*func(*"".Rectangle, "".Rectangle) "".Rectangle"runtime.zerovalueftype.func(*"".Rectangle, "".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangle$type.*"".Rectangle"type."".Rectangle"type."".Rectanglego.typelink.func(*image.Rectangle, image.Rectangle) image.Rectangle func(*"".Rectangle, "".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangledgo.string.hdr."func(*image.Rectangle) image.Point" "\go.string."func(*image.Rectangle) image.Point"\go.string."func(*image.Rectangle) image.Point"PFfunc(*image.Rectangle) image.PointBtype.func(*"".Rectangle) "".PointvI30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Rectangle) image.Point"pTgo.weak.type.*func(*"".Rectangle) "".Point"runtime.zerovalueBtype.func(*"".Rectangle) "".PointBtype.func(*"".Rectangle) "".Point$type.*"".Rectangletype."".Pointgo.typelink.func(*image.Rectangle) image.Point func(*"".Rectangle) "".PointBtype.func(*"".Rectangle) "".PointZgo.string.hdr."func(*image.Rectangle) string" Rgo.string."func(*image.Rectangle) string"Rgo.string."func(*image.Rectangle) string"@<func(*image.Rectangle) string>type.func(*"".Rectangle) string_530 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.Rectangle) string"pPgo.weak.type.*func(*"".Rectangle) string"runtime.zerovalue>type.func(*"".Rectangle) string>type.func(*"".Rectangle) string$type.*"".Rectangletype.stringgo.typelink.func(*image.Rectangle) string func(*"".Rectangle) string>type.func(*"".Rectangle) stringbgo.string.hdr."func(image.Point) image.Rectangle" !Zgo.string."func(image.Point) image.Rectangle"Zgo.string."func(image.Point) image.Rectangle"PDfunc(image.Point) image.Rectangle@type.func("".Point) "".RectanglemQ30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Point) image.Rectangle"pRgo.weak.type.*func("".Point) "".Rectangle"runtime.zerovalue@type.func("".Point) "".Rectangle@type.func("".Point) "".Rectangletype."".Point"type."".Rectanglego.typelink.func(image.Point) image.Rectangle func("".Point) "".Rectangle@type.func("".Point) "".RectangleDgo.string.hdr."func() color.Model" <go.string."func() color.Model"<go.string."func() color.Model"0&func() color.Model:type.func() image/color.Model{#30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func() color.Model"pLgo.weak.type.*func() image/color.Model"runtime.zerovalue:type.func() image/color.Model:type.func() image/color.Model,type.image/color.Modelngo.typelink.func() color.Model func() image/color.Model:type.func() image/color.Model4go.string.hdr."func() int" 2010 ,go.string."func() int",go.string."func() int" func() inttype.func() int930 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."func() int"p0go.weak.type.*func() int"runtime.zerovaluetype.func() inttype.func() inttype.intBgo.typelink.func() int func() inttype.func() int6go.string.hdr."func() bool" .go.string."func() bool".go.string."func() bool" func() bool type.func() boolTx30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() bool"runtime.zerovalue type.func() bool type.func() booltype.boolFgo.typelink.func() bool func() bool type.func() boolRgo.string.hdr."func(int) image.Rectangle" Jgo.string."func(int) image.Rectangle"Jgo.string."func(int) image.Rectangle"@4func(int) image.Rectangle6type.func(int) "".Rectangle,e30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int) image.Rectangle"pHgo.weak.type.*func(int) "".Rectangle"runtime.zerovalue6type.func(int) "".Rectangle6type.func(int) "".Rectangletype.int"type."".Rectanglexgo.typelink.func(int) image.Rectangle func(int) "".Rectangle6type.func(int) "".Rectanglejgo.string.hdr."func(image.Rectangle) image.Rectangle" %bgo.string."func(image.Rectangle) image.Rectangle"bgo.string."func(image.Rectangle) image.Rectangle"PLfunc(image.Rectangle) image.RectangleHtype.func("".Rectangle) "".Rectanglea?B30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(image.Rectangle) image.Rectangle"pZgo.weak.type.*func("".Rectangle) "".Rectangle"runtime.zerovalueHtype.func("".Rectangle) "".RectangleHtype.func("".Rectangle) "".Rectangle"type."".Rectangle"type."".Rectanglego.typelink.func(image.Rectangle) image.Rectangle func("".Rectangle) "".RectangleHtype.func("".Rectangle) "".RectangleDgo.string.hdr."func() image.Point" <go.string."func() image.Point"<go.string."func() image.Point"0&func() image.Point(type.func() "".Point$*|30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func() image.Point"p:go.weak.type.*func() "".Point"runtime.zerovalue(type.func() "".Point(type.func() "".Pointtype."".Point\go.typelink.func() image.Point func() "".Point(type.func() "".Point$type.*"".RectangleD60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*image.Rectangle"p6go.weak.type.**"".Rectangle"runtime.zerovalue"type."".Rectangle`$type.*"".Rectangle$type.*"".Rectangle&go.string.hdr."Add"@type.func("".Point) "".Rectangle^type.func(*"".Rectangle, "".Point) "".Rectangle&"".(*Rectangle).Add&"".(*Rectangle).Add$go.string.hdr."At"Jtype.func(int, int) image/color.Colorhtype.func(*"".Rectangle, int, int) image/color.Color$"".(*Rectangle).At$"".(*Rectangle).At,go.string.hdr."Bounds"0type.func() "".RectangleJtype.func(*"".Rectangle) "".Rectangle,"".(*Rectangle).Bounds,"".(*Rectangle).Bounds*go.string.hdr."Canon"0type.func() "".RectangleJtype.func(*"".Rectangle) "".Rectangle*"".(*Rectangle).Canon*"".(*Rectangle).Canon4go.string.hdr."ColorModel":type.func() image/color.ModelTtype.func(*"".Rectangle) image/color.Model4"".(*Rectangle).ColorModel4"".(*Rectangle).ColorModel$go.string.hdr."Dx"type.func() int8type.func(*"".Rectangle) int$"".(*Rectangle).Dx$"".(*Rectangle).Dx$go.string.hdr."Dy"type.func() int8type.func(*"".Rectangle) int$"".(*Rectangle).Dy$"".(*Rectangle).Dy*go.string.hdr."Empty" type.func() bool:type.func(*"".Rectangle) bool*"".(*Rectangle).Empty*"".(*Rectangle).Empty$go.string.hdr."Eq"8type.func("".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool$"".(*Rectangle).Eq$"".(*Rectangle).Eq$go.string.hdr."In"8type.func("".Rectangle) bool Vtype.func(*"".Rectangle, "".Rectangle) bool $"".(*Rectangle).In $"".(*Rectangle).In *go.string.hdr."Inset" 6type.func(int) "".Rectangle Ttype.func(*"".Rectangle, int) "".Rectangle *"".(*Rectangle).Inset 2013 *"".(*Rectangle).Inset 2014 2go.string.hdr."Intersect" 2015 Htype.func("".Rectangle) "".Rectangle 2016 ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle 2017 2"".(*Rectangle).Intersect 2018 2"".(*Rectangle).Intersect 2019 0go.string.hdr."Overlaps"8type.func("".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool0"".(*Rectangle).Overlaps0"".(*Rectangle).Overlaps(go.string.hdr."Size"(type.func() "".PointBtype.func(*"".Rectangle) "".Point("".(*Rectangle).Size("".(*Rectangle).Size,go.string.hdr."String"$type.func() string>type.func(*"".Rectangle) string,"".(*Rectangle).String ,"".(*Rectangle).String &go.string.hdr."Sub" @type.func("".Point) "".Rectangle ^type.func(*"".Rectangle, "".Point) "".Rectangle &"".(*Rectangle).Sub &"".(*Rectangle).Sub *go.string.hdr."Union"Htype.func("".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangle*"".(*Rectangle).Union*"".(*Rectangle).Union>go.string.hdr."image.Rectangle" 6go.string."image.Rectangle"6go.string."image.Rectangle" image.Rectangle&go.string.hdr."Min" go.string."Min"go.string."Min"Min&go.string.hdr."Max" go.string."Max"go.string."Max"Maxgo.string.hdr."func(image.Rectangle, image.Point) image.Rectangle" 2|go.string."func(image.Rectangle, image.Point) image.Rectangle"|go.string."func(image.Rectangle, image.Point) image.Rectangle"pffunc(image.Rectangle, image.Point) image.Rectangle\type.func("".Rectangle, "".Point) "".Rectangle30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"pngo.weak.type.*func("".Rectangle, "".Point) "".Rectangle"runtime.zerovalue\type.func("".Rectangle, "".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle"type."".Rectangletype."".Point"type."".Rectanglego.typelink.func(image.Rectangle, image.Point) image.Rectangle func("".Rectangle, "".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectanglevgo.string.hdr."func(image.Rectangle, int, int) color.Color" +ngo.string."func(image.Rectangle, int, int) color.Color"ngo.string."func(image.Rectangle, int, int) color.Color"`Xfunc(image.Rectangle, int, int) color.Colorftype.func("".Rectangle, int, int) image/color.Color30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, int, int) color.Color"pxgo.weak.type.*func("".Rectangle, int, int) image/color.Color"runtime.zerovalueftype.func("".Rectangle, int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Color"type."".Rectangletype.inttype.int,type.image/color.Colorgo.typelink.func(image.Rectangle, int, int) color.Color func("".Rectangle, int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Colorbgo.string.hdr."func(image.Rectangle) color.Model" !Zgo.string."func(image.Rectangle) color.Model"Zgo.string."func(image.Rectangle) color.Model"PDfunc(image.Rectangle) color.ModelRtype.func("".Rectangle) image/color.Modela30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) color.Model"pdgo.weak.type.*func("".Rectangle) image/color.Model"runtime.zerovalueRtype.func("".Rectangle) image/color.ModelRtype.func("".Rectangle) image/color.Model"type."".Rectangle,type.image/color.Modelgo.typelink.func(image.Rectangle) color.Model func("".Rectangle) image/color.ModelRtype.func("".Rectangle) image/color.ModelRgo.string.hdr."func(image.Rectangle) int" Jgo.string."func(image.Rectangle) int"Jgo.string."func(image.Rectangle) int"@4func(image.Rectangle) int6type.func("".Rectangle) int9Y30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(image.Rectangle) int"pHgo.weak.type.*func("".Rectangle) int"runtime.zerovalue6type.func("".Rectangle) int6type.func("".Rectangle) int"type."".Rectangletype.intxgo.typelink.func(image.Rectangle) int func("".Rectangle) int6type.func("".Rectangle) intvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool" +ngo.string."func(image.Rectangle, image.Rectangle) bool"ngo.string."func(image.Rectangle, image.Rectangle) bool"`Xfunc(image.Rectangle, image.Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool830 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"pfgo.weak.type.*func("".Rectangle, "".Rectangle) bool"runtime.zerovalueTtype.func("".Rectangle, "".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool"type."".Rectangle"type."".Rectangletype.boolgo.typelink.func(image.Rectangle, image.Rectangle) bool func("".Rectangle, "".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) booltgo.string.hdr."func(image.Rectangle, int) image.Rectangle" *lgo.string."func(image.Rectangle, int) image.Rectangle"lgo.string."func(image.Rectangle, int) image.Rectangle"`Vfunc(image.Rectangle, int) image.RectangleRtype.func("".Rectangle, int) "".Rectangle}d30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(image.Rectangle, int) image.Rectangle"pdgo.weak.type.*func("".Rectangle, int) "".Rectangle"runtime.zerovalueRtype.func("".Rectangle, int) "".RectangleRtype.func("".Rectangle, int) "".Rectangle"type."".Rectangletype.int"type."".Rectanglego.typelink.func(image.Rectangle, int) image.Rectangle func("".Rectangle, int) "".RectangleRtype.func("".Rectangle, int) "".Rectanglego.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle" 6go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"pnfunc(image.Rectangle, image.Rectangle) image.Rectangledtype.func("".Rectangle, "".Rectangle) "".RectangleM_E30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"pvgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangle"runtime.zerovaluedtype.func("".Rectangle, "".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".Rectangle"type."".Rectangle"type."".Rectangle"type."".Rectanglego.typelink.func(image.Rectangle, image.Rectangle) image.Rectangle func("".Rectangle, "".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".RectangleXgo.string.hdr."func(image.Rectangle) string" Pgo.string."func(image.Rectangle) string"Pgo.string."func(image.Rectangle) string"@:func(image.Rectangle) string<type.func("".Rectangle) string7b30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(image.Rectangle) string"pNgo.weak.type.*func("".Rectangle) string"runtime.zerovalue<type.func("".Rectangle) string<type.func("".Rectangle) string"type."".Rectangletype.stringgo.typelink.func(image.Rectangle) string func("".Rectangle) string<type.func("".Rectangle) string"type."".Rectangle 0type..alg32@runtime.gcbits.P>go.string.hdr."image.Rectangle"p$type.*"".Rectangle"runtime.zerovalue"type."".Rectangle&go.string.hdr."Min"type."".Point&go.string.hdr."Max"type."".Point`"type."".Rectangle2go.string.hdr."Rectangle""go.importpath.""."type."".Rectangle&go.string.hdr."Add"@type.func("".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle&"".(*Rectangle).Add "".Rectangle.Add$go.string.hdr."At"Jtype.func(int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Color$"".(*Rectangle).At"".Rectangle.At,go.string.hdr."Bounds"0type.func() "".RectangleHtype.func("".Rectangle) "".Rectangle,"".(*Rectangle).Bounds&"".Rectangle.Bounds*go.string.hdr."Canon"0type.func() "".RectangleHtype.func("".Rectangle) "".Rectangle*"".(*Rectangle).Canon$"".Rectangle.Canon4go.string.hdr."ColorModel":type.func() image/color.ModelRtype.func("".Rectangle) image/color.Model4"".(*Rectangle).ColorModel."".Rectangle.ColorModel$go.string.hdr."Dx"type.func() int6type.func("".Rectangle) int$"".(*Rectangle).Dx"".Rectangle.Dx$go.string.hdr."Dy"type.func() int6type.func("".Rectangle) int$"".(*Rectangle).Dy"".Rectangle.Dy*go.string.hdr."Empty" type.func() bool 8type.func("".Rectangle) bool *"".(*Rectangle).Empty $"".Rectangle.Empty $go.string.hdr."Eq" 8type.func("".Rectangle) bool Ttype.func("".Rectangle, "".Rectangle) bool $"".(*Rectangle).Eq 2040 "".Rectangle.Eq 2041 $go.string.hdr."In" 2042 8type.func("".Rectangle) bool 2043 Ttype.func("".Rectangle, "".Rectangle) bool 2044 $"".(*Rectangle).In 2045 "".Rectangle.In 2046 *go.string.hdr."Inset"6type.func(int) "".RectangleRtype.func("".Rectangle, int) "".Rectangle*"".(*Rectangle).Inset$"".Rectangle.Inset2go.string.hdr."Intersect"Htype.func("".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".Rectangle2"".(*Rectangle).Intersect,"".Rectangle.Intersect0go.string.hdr."Overlaps"8type.func("".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool0"".(*Rectangle).Overlaps *"".Rectangle.Overlaps (go.string.hdr."Size" (type.func() "".Point @type.func("".Rectangle) "".Point ("".(*Rectangle).Size """.Rectangle.Size ,go.string.hdr."String"$type.func() string<type.func("".Rectangle) string,"".(*Rectangle).String&"".Rectangle.String&go.string.hdr."Sub"@type.func("".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle&"".(*Rectangle).Sub "".Rectangle.Sub*go.string.hdr."Union"Htype.func("".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".Rectangle*"".(*Rectangle).Union$"".Rectangle.UnionLgo.string.hdr."func() image.Rectangle" Dgo.string."func() image.Rectangle"Dgo.string."func() image.Rectangle"0.func() image.Rectangle0type.func() "".Rectanglee30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func() image.Rectangle"pBgo.weak.type.*func() "".Rectangle"runtime.zerovalue0type.func() "".Rectangle0type.func() "".Rectangle"type."".Rectanglelgo.typelink.func() image.Rectangle func() "".Rectangle0type.func() "".Rectangle8go.string.hdr."*image.Image" 0go.string."*image.Image"0go.string."*image.Image" *image.Imagetype.*"".ImageCL60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Image"p.go.weak.type.**"".Image"runtime.zerovaluetype."".Image"runtime.gcbits.036go.string.hdr."image.Image" .go.string."image.Image".go.string."image.Image" image.Image*go.string.hdr."Image" "go.string."Image""go.string."Image"Imagetype."".ImageS 0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."image.Image"ptype.*"".Image"runtime.zerovaluetype."".Image$go.string.hdr."At"Jtype.func(int, int) image/color.Color,go.string.hdr."Bounds"0type.func() "".Rectangle4go.string.hdr."ColorModel":type.func() image/color.Model`type."".Image*go.string.hdr."Image""go.importpath."".type."".Imagehgo.string.hdr."func(io.Reader) (image.Image, error)" $`go.string."func(io.Reader) (image.Image, error)"`go.string."func(io.Reader) (image.Image, error)"PJfunc(io.Reader) (image.Image, error)Ltype.func(io.Reader) ("".Image, error)@30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(io.Reader) (image.Image, error)"p^go.weak.type.*func(io.Reader) ("".Image, error)"runtime.zerovalueLtype.func(io.Reader) ("".Image, error)Ltype.func(io.Reader) ("".Image, error)type.io.Readertype."".Imagetype.errorgo.typelink.func(io.Reader) (image.Image, error) func(io.Reader) ("".Image, error)Ltype.func(io.Reader) ("".Image, error)Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a0type..hashfunc."".Config(type..hash."".Config,type..eqfunc."".Config$type..eq."".Config&type..alg."".Config 0type..hashfunc."".Config,type..eqfunc."".Config:go.string.hdr."*image.Config" 2go.string."*image.Config"2go.string."*image.Config" *image.Configtype.*"".Config`y60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.Config"p0go.weak.type.**"".Config"runtime.zerovaluetype."".Config8go.string.hdr."image.Config" 0go.string."image.Config"0go.string."image.Config" image.Config*go.string.hdr."Width" "go.string."Width""go.string."Width"Width,go.string.hdr."Height" $go.string."Height"$go.string."Height"Height,go.string.hdr."Config" $go.string."Config"$go.string."Config"Configtype."".Config Yg 0&type..alg."".Config@"runtime.gcbits.03P8go.string.hdr."image.Config"ptype.*"".Config"runtime.zerovaluetype."".Config4go.string.hdr."ColorModel",type.image/color.Model*go.string.hdr."Width"type.int,go.string.hdr."Height"type.int`type."".Config,go.string.hdr."Config""go.importpath."".type."".Configjgo.string.hdr."func(io.Reader) (image.Config, error)" %bgo.string."func(io.Reader) (image.Config, error)"bgo.string."func(io.Reader) (image.Config, error)"PLfunc(io.Reader) (image.Config, error)Ntype.func(io.Reader) ("".Config, error)3/30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(io.Reader) (image.Config, error)"p`go.weak.type.*func(io.Reader) ("".Config, error)"runtime.zerovalueNtype.func(io.Reader) ("".Config, error)Ntype.func(io.Reader) ("".Config, error)type.io.Readertype."".Configtype.errorgo.typelink.func(io.Reader) (image.Config, error) func(io.Reader) ("".Config, error)Ntype.func(io.Reader) ("".Config, error):go.string.hdr."*image.format" 2go.string."*image.format"2go.string."*image.format" *image.formattype.*"".formatQ@M60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.format"p0go.weak.type.**"".format"runtime.zerovaluetype."".format"runtime.gcbits.3558go.string.hdr."image.format" 0go.string."image.format"0go.string."image.format" image.format(go.string.hdr."name" go.string."name" go.string."name" 2078 name*go.string.hdr."magic" "go.string."magic""go.string."magic"magic,go.string.hdr."decode" $go.string."decode"$go.string."decode"decode8go.string.hdr."decodeConfig" 0go.string."decodeConfig"0go.string."decodeConfig" decodeConfig,go.string.hdr."format" $go.string."format"$go.string."format"formattype."".format00@7 (,0 runtime.algarray@"runtime.gcbits.35P8go.string.hdr."image.format"ptype.*"".format"runtime.zerovaluetype."".format(go.string.hdr."name""go.importpath."".type.string*go.string.hdr."magic""go.importpath."".type.string,go.string.hdr."decode""go.importpath."".Ltype.func(io.Reader) ("".Image, error)8go.string.hdr."decodeConfig""go.importpath."".Ntype.func(io.Reader) ("".Config, error)`type."".format,go.string.hdr."format""go.importpath."".type."".format<go.string.hdr."[]image.format" 4go.string."[]image.format"4go.string."[]image.format" []image.format type.[]"".format2{10 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p2go.weak.type.*[]"".format"runtime.zerovaluetype."".formatLgo.typelink.[]image.format []"".format type.[]"".formatTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d46c0650eba7dbebc0db316e0e0cf3bTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsdacebcad73eed5073009fd67170948d0.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8Tgo.string.hdr."func(int) ([]uint8, error)" Lgo.string."func(int) ([]uint8, error)"Lgo.string."func(int) ([]uint8, error)"@6func(int) ([]uint8, error)>type.func(int) ([]uint8, error)<bC30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int) ([]uint8, error)"pPgo.weak.type.*func(int) ([]uint8, error)"runtime.zerovalue>type.func(int) ([]uint8, error)>type.func(int) ([]uint8, error)type.inttype.[]uint8type.errorgo.typelink.func(int) ([]uint8, error) func(int) ([]uint8, error)>type.func(int) ([]uint8, error)Tgo.string.hdr."func([]uint8) (int, error)" Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error) func([]uint8) (int, error)>type.func([]uint8) (int, error):go.string.hdr."*image.reader" 2go.string."*image.reader"2go.string."*image.reader" *image.readertype.*"".reader60 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.reader"p0go.weak.type.**"".reader"runtime.zerovaluetype."".reader8go.string.hdr."image.reader" 0go.string."image.reader"0go.string."image.reader" image.reader(go.string.hdr."Peek" go.string."Peek" go.string."Peek" 2086 Peek(go.string.hdr."Read" go.string."Read" go.string."Read" 2087 Read,go.string.hdr."reader" $go.string."reader"$go.string."reader"readertype."".reader 0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."image.reader"ptype.*"".reader"runtime.zerovaluetype."".reader(go.string.hdr."Peek">type.func(int) ([]uint8, error)(go.string.hdr."Read">type.func([]uint8) (int, error)`type."".reader,go.string.hdr."reader""go.importpath."".type."".reader4go.string.hdr."image.RGBA" 2088 ,go.string."image.RGBA",go.string."image.RGBA" image.RGBA&go.string.hdr."Pix" go.string."Pix"go.string."Pix"Pix,go.string.hdr."Stride" $go.string."Stride"$go.string."Stride"Stride(go.string.hdr."Rect" go.string."Rect" go.string."Rect" 2089 Rect(go.string.hdr."RGBA" go.string."RGBA" go.string."RGBA" 2090 RGBAtype."".RGBA@>#V 0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.RGBA"ptype.*"".RGBA"runtime.zerovaluetype."".RGBA&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".RGBA(go.string.hdr."RGBA""go.importpath."".type."".RGBA6go.string.hdr."*image.RGBA" .go.string."*image.RGBA".go.string."*image.RGBA" *image.RGBAngo.string.hdr."func(*image.RGBA, int, int) color.Color" 'fgo.string."func(*image.RGBA, int, int) color.Color"fgo.string."func(*image.RGBA, int, int) color.Color"PPfunc(*image.RGBA, int, int) color.Color^type.func(*"".RGBA, int, int) image/color.Color;30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.RGBA, int, int) color.Color"ppgo.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.Colortype.*"".RGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.RGBA, int, int) color.Color func(*"".RGBA, int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Colorbgo.string.hdr."func(*image.RGBA) image.Rectangle" !Zgo.string."func(*image.RGBA) image.Rectangle"Zgo.string."func(*image.RGBA) image.Rectangle"PDfunc(*image.RGBA) image.Rectangle@type.func(*"".RGBA) "".RectangleVbX 30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.RGBA) image.Rectangle"pRgo.weak.type.*func(*"".RGBA) "".Rectangle"runtime.zerovalue@type.func(*"".RGBA) "".Rectangle@type.func(*"".RGBA) "".Rectangletype.*"".RGBA"type."".Rectanglego.typelink.func(*image.RGBA) image.Rectangle func(*"".RGBA) "".Rectangle@type.func(*"".RGBA) "".RectangleZgo.string.hdr."func(*image.RGBA) color.Model" Rgo.string."func(*image.RGBA) color.Model"Rgo.string."func(*image.RGBA) color.Model"@<func(*image.RGBA) color.ModelJtype.func(*"".RGBA) image/color.Model;m30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.RGBA) color.Model"p\go.weak.type.*func(*"".RGBA) image/color.Model"runtime.zerovalueJtype.func(*"".RGBA) image/color.ModelJtype.func(*"".RGBA) image/color.Modeltype.*"".RGBA,type.image/color.Modelgo.typelink.func(*image.RGBA) color.Model func(*"".RGBA) image/color.ModelJtype.func(*"".RGBA) image/color.ModelLgo.string.hdr."func(*image.RGBA) bool" Dgo.string."func(*image.RGBA) bool"Dgo.string."func(*image.RGBA) bool"0.func(*image.RGBA) bool0type.func(*"".RGBA) bool 30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.RGBA) bool"pBgo.weak.type.*func(*"".RGBA) bool"runtime.zerovalue0type.func(*"".RGBA) bool0type.func(*"".RGBA) booltype.*"".RGBAtype.boollgo.typelink.func(*image.RGBA) bool func(*"".RGBA) bool0type.func(*"".RGBA) bool^go.string.hdr."func(*image.RGBA, int, int) int" Vgo.string."func(*image.RGBA, int, int) int"Vgo.string."func(*image.RGBA, int, int) int"@@func(*image.RGBA, int, int) intBtype.func(*"".RGBA, int, int) intf30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.RGBA, int, int) int"pTgo.weak.type.*func(*"".RGBA, int, int) int"runtime.zerovalueBtype.func(*"".RGBA, int, int) intBtype.func(*"".RGBA, int, int) inttype.*"".RGBAtype.inttype.inttype.intgo.typelink.func(*image.RGBA, int, int) int func(*"".RGBA, int, int) intBtype.func(*"".RGBA, int, int) intlgo.string.hdr."func(*image.RGBA, int, int) color.RGBA" &dgo.string."func(*image.RGBA, int, int) color.RGBA"dgo.string."func(*image.RGBA, int, int) color.RGBA"PNfunc(*image.RGBA, int, int) color.RGBA\type.func(*"".RGBA, int, int) image/color.RGBA:-30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.RGBA, int, int) color.RGBA"pngo.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.RGBAtype.*"".RGBAtype.inttype.int*type.image/color.RGBAgo.typelink.func(*image.RGBA, int, int) color.RGBA func(*"".RGBA, int, int) image/color.RGBA\type.func(*"".RGBA, int, int) image/color.RGBApgo.string.hdr."func(*image.RGBA, int, int, color.Color)" (hgo.string."func(*image.RGBA, int, int, color.Color)"hgo.string."func(*image.RGBA, int, int, color.Color)"`Rfunc(*image.RGBA, int, int, color.Color)`type.func(*"".RGBA, int, int, image/color.Color)30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.RGBA, int, int, color.Color)"prgo.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.*"".RGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.RGBA, int, int, color.Color) func(*"".RGBA, int, int, image/color.Color)`type.func(*"".RGBA, int, int, image/color.Color)ngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)" 'fgo.string."func(*image.RGBA, int, int, color.RGBA)"fgo.string."func(*image.RGBA, int, int, color.RGBA)"PPfunc(*image.RGBA, int, int, color.RGBA)^type.func(*"".RGBA, int, int, image/color.RGBA)e130 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.RGBA, int, int, color.RGBA)"ppgo.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.*"".RGBAtype.inttype.int*type.image/color.RGBAgo.typelink.func(*image.RGBA, int, int, color.RGBA) func(*"".RGBA, int, int, image/color.RGBA)^type.func(*"".RGBA, int, int, image/color.RGBA)|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image" .tgo.string."func(*image.RGBA, image.Rectangle) image.Image"tgo.string."func(*image.RGBA, image.Rectangle) image.Image"`^func(*image.RGBA, image.Rectangle) image.ImageTtype.func(*"".RGBA, "".Rectangle) "".Image30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.RGBA, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".RGBA, "".Rectangle) "".Image"runtime.zerovalueTtype.func(*"".RGBA, "".Rectangle) "".ImageTtype.func(*"".RGBA, "".Rectangle) "".Imagetype.*"".RGBA"type."".Rectangletype."".Imagego.typelink.func(*image.RGBA, image.Rectangle) image.Image func(*"".RGBA, "".Rectangle) "".ImageTtype.func(*"".RGBA, "".Rectangle) "".Image,go.string.hdr."Opaque" $go.string."Opaque"$go.string."Opaque"Opaque2go.string.hdr."PixOffset" *go.string."PixOffset"*go.string."PixOffset" PixOffsetDgo.string.hdr."func(int, int) int" <go.string."func(int, int) int"<go.string."func(int, int) int"0&func(int, int) int.type.func(int, int) intBu30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(int, int) int"p@go.weak.type.*func(int, int) int"runtime.zerovalue.type.func(int, int) int.type.func(int, int) inttype.inttype.inttype.intbgo.typelink.func(int, int) int func(int, int) int.type.func(int, int) int,go.string.hdr."RGBAAt" $go.string."RGBAAt"$go.string."RGBAAt"RGBAAtRgo.string.hdr."func(int, int) color.RGBA" Jgo.string."func(int, int) color.RGBA"Jgo.string."func(int, int) color.RGBA"@4func(int, int) color.RGBAHtype.func(int, int) image/color.RGBAMg30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.RGBA"pZgo.weak.type.*func(int, int) image/color.RGBA"runtime.zerovalueHtype.func(int, int) image/color.RGBAHtype.func(int, int) image/color.RGBAtype.inttype.int*type.image/color.RGBAgo.typelink.func(int, int) color.RGBA func(int, int) image/color.RGBAHtype.func(int, int) image/color.RGBA&go.string.hdr."Set" go.string."Set"go.string."Set"SetVgo.string.hdr."func(int, int, color.Color)" Ngo.string."func(int, int, color.Color)"Ngo.string."func(int, int, color.Color)"@8func(int, int, color.Color)Ltype.func(int, int, image/color.Color)md~30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Color)"p^go.weak.type.*func(int, int, image/color.Color)"runtime.zerovalueLtype.func(int, int, image/color.Color)Ltype.func(int, int, image/color.Color)type.inttype.int,type.image/color.Colorgo.typelink.func(int, int, color.Color) func(int, int, image/color.Color)Ltype.func(int, int, image/color.Color).go.string.hdr."SetRGBA" &go.string."SetRGBA"&go.string."SetRGBA"SetRGBATgo.string.hdr."func(int, int, color.RGBA)" Lgo.string."func(int, int, color.RGBA)"Lgo.string."func(int, int, color.RGBA)"@6func(int, int, color.RGBA)Jtype.func(int, int, image/color.RGBA)q$30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.RGBA)"p\go.weak.type.*func(int, int, image/color.RGBA)"runtime.zerovalueJtype.func(int, int, image/color.RGBA)Jtype.func(int, int, image/color.RGBA)type.inttype.int*type.image/color.RGBAgo.typelink.func(int, int, color.RGBA) func(int, int, image/color.RGBA)Jtype.func(int, int, image/color.RGBA)0go.string.hdr."SubImage" (go.string."SubImage"(go.string."SubImage" SubImagebgo.string.hdr."func(image.Rectangle) image.Image" !Zgo.string."func(image.Rectangle) image.Image"Zgo.string."func(image.Rectangle) image.Image"PDfunc(image.Rectangle) image.Image@type.func("".Rectangle) "".Imagew30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) image.Image"pRgo.weak.type.*func("".Rectangle) "".Image"runtime.zerovalue@type.func("".Rectangle) "".Image@type.func("".Rectangle) "".Image"type."".Rectangletype."".Imagego.typelink.func(image.Rectangle) image.Image func("".Rectangle) "".Image@type.func("".Rectangle) "".Imagetype.*"".RGBA6 j0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.RGBA"p,go.weak.type.**"".RGBA"runtime.zerovaluetype."".RGBA`type.*"".RGBAtype.*"".RGBA$go.string.hdr."At"Jtype.func(int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Color"".(*RGBA).At"".(*RGBA).At,go.string.hdr."Bounds"0type.func() "".Rectangle@type.func(*"".RGBA) "".Rectangle""".(*RGBA).Bounds""".(*RGBA).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelJtype.func(*"".RGBA) image/color.Model*"".(*RGBA).ColorModel*"".(*RGBA).ColorModel,go.string.hdr."Opaque" type.func() bool0type.func(*"".RGBA) bool""".(*RGBA).Opaque""".(*RGBA).Opaque2go.string.hdr."PixOffset".type.func(int, int) intBtype.func(*"".RGBA, int, int) int("".(*RGBA).PixOffset("".(*RGBA).PixOffset,go.string.hdr."RGBAAt"Htype.func(int, int) image/color.RGBA\type.func(*"".RGBA, int, int) image/color.RGBA""".(*RGBA).RGBAAt""".(*RGBA).RGBAAt&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)`type.func(*"".RGBA, int, int, image/color.Color)"".(*RGBA).Set"".(*RGBA).Set.go.string.hdr."SetRGBA"Jtype.func(int, int, image/color.RGBA)^type.func(*"".RGBA, int, int, image/color.RGBA)$"".(*RGBA).SetRGBA$"".(*RGBA).SetRGBA0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageTtype.func(*"".RGBA, "".Rectangle) "".Image&"".(*RGBA).SubImage&"".(*RGBA).SubImage8go.string.hdr."image.RGBA64" 0go.string."image.RGBA64"0go.string."image.RGBA64" image.RGBA64,go.string.hdr."RGBA64" $go.string."RGBA64"$go.string."RGBA64"RGBA64type."".RGBA64@Z4 0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."image.RGBA64"ptype.*"".RGBA64"runtime.zerovaluetype."".RGBA64&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".RGBA64,go.string.hdr."RGBA64""go.importpath."".type."".RGBA64:go.string.hdr."*image.RGBA64" 2go.string."*image.RGBA64"2go.string."*image.RGBA64" *image.RGBA64rgo.string.hdr."func(*image.RGBA64, int, int) color.Color" )jgo.string."func(*image.RGBA64, int, int) color.Color"jgo.string."func(*image.RGBA64, int, int) color.Color"`Tfunc(*image.RGBA64, int, int) color.Colorbtype.func(*"".RGBA64, int, int) image/color.ColorIx30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.RGBA64, int, int) color.Color"ptgo.weak.type.*func(*"".RGBA64, int, int) image/color.Color"runtime.zerovaluebtype.func(*"".RGBA64, int, int) image/color.Colorbtype.func(*"".RGBA64, int, int) image/color.Colortype.*"".RGBA64type.inttype.int,type.image/color.Colorgo.typelink.func(*image.RGBA64, int, int) color.Color func(*"".RGBA64, int, int) image/color.Colorbtype.func(*"".RGBA64, int, int) image/color.Colorfgo.string.hdr."func(*image.RGBA64) image.Rectangle" #^go.string."func(*image.RGBA64) image.Rectangle"^go.string."func(*image.RGBA64) image.Rectangle"PHfunc(*image.RGBA64) image.RectangleDtype.func(*"".RGBA64) "".RectangleL30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.RGBA64) image.Rectangle"pVgo.weak.type.*func(*"".RGBA64) "".Rectangle"runtime.zerovalueDtype.func(*"".RGBA64) "".RectangleDtype.func(*"".RGBA64) "".Rectangletype.*"".RGBA64"type."".Rectanglego.typelink.func(*image.RGBA64) image.Rectangle func(*"".RGBA64) "".RectangleDtype.func(*"".RGBA64) "".Rectangle^go.string.hdr."func(*image.RGBA64) color.Model" Vgo.string."func(*image.RGBA64) color.Model"Vgo.string."func(*image.RGBA64) color.Model"@@func(*image.RGBA64) color.ModelNtype.func(*"".RGBA64) image/color.ModelM\a30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.RGBA64) color.Model"p`go.weak.type.*func(*"".RGBA64) image/color.Model"runtime.zerovalueNtype.func(*"".RGBA64) image/color.ModelNtype.func(*"".RGBA64) image/color.Modeltype.*"".RGBA64,type.image/color.Modelgo.typelink.func(*image.RGBA64) color.Model func(*"".RGBA64) image/color.ModelNtype.func(*"".RGBA64) image/color.ModelPgo.string.hdr."func(*image.RGBA64) bool" Hgo.string."func(*image.RGBA64) bool"Hgo.string."func(*image.RGBA64) bool"@2func(*image.RGBA64) bool4type.func(*"".RGBA64) bool` 30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*image.RGBA64) bool"pFgo.weak.type.*func(*"".RGBA64) bool"runtime.zerovalue4type.func(*"".RGBA64) bool4type.func(*"".RGBA64) booltype.*"".RGBA64type.booltgo.typelink.func(*image.RGBA64) bool func(*"".RGBA64) bool4type.func(*"".RGBA64) boolbgo.string.hdr."func(*image.RGBA64, int, int) int" !Zgo.string."func(*image.RGBA64, int, int) int"Zgo.string."func(*image.RGBA64, int, int) int"PDfunc(*image.RGBA64, int, int) intFtype.func(*"".RGBA64, int, int) int 30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.RGBA64, int, int) int"pXgo.weak.type.*func(*"".RGBA64, int, int) int"runtime.zerovalueFtype.func(*"".RGBA64, int, int) intFtype.func(*"".RGBA64, int, int) inttype.*"".RGBA64type.inttype.inttype.intgo.typelink.func(*image.RGBA64, int, int) int func(*"".RGBA64, int, int) intFtype.func(*"".RGBA64, int, int) inttgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64" *lgo.string."func(*image.RGBA64, int, int) color.RGBA64"lgo.string."func(*image.RGBA64, int, int) color.RGBA64"`Vfunc(*image.RGBA64, int, int) color.RGBA64dtype.func(*"".RGBA64, int, int) image/color.RGBA64c630 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.RGBA64, int, int) color.RGBA64"pvgo.weak.type.*func(*"".RGBA64, int, int) image/color.RGBA64"runtime.zerovaluedtype.func(*"".RGBA64, int, int) image/color.RGBA64dtype.func(*"".RGBA64, int, int) image/color.RGBA64type.*"".RGBA64type.inttype.int.type.image/color.RGBA64go.typelink.func(*image.RGBA64, int, int) color.RGBA64 func(*"".RGBA64, int, int) image/color.RGBA64dtype.func(*"".RGBA64, int, int) image/color.RGBA64tgo.string.hdr."func(*image.RGBA64, int, int, color.Color)" *lgo.string."func(*image.RGBA64, int, int, color.Color)"lgo.string."func(*image.RGBA64, int, int, color.Color)"`Vfunc(*image.RGBA64, int, int, color.Color)dtype.func(*"".RGBA64, int, int, image/color.Color)130 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.RGBA64, int, int, color.Color)"pvgo.weak.type.*func(*"".RGBA64, int, int, image/color.Color)"runtime.zerovaluedtype.func(*"".RGBA64, int, int, image/color.Color)dtype.func(*"".RGBA64, int, int, image/color.Color)type.*"".RGBA64type.inttype.int,type.image/color.Colorgo.typelink.func(*image.RGBA64, int, int, color.Color) func(*"".RGBA64, int, int, image/color.Color)dtype.func(*"".RGBA64, int, int, image/color.Color)vgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)" +ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"`Xfunc(*image.RGBA64, int, int, color.RGBA64)ftype.func(*"".RGBA64, int, int, image/color.RGBA64)H30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.RGBA64, int, int, color.RGBA64)"pxgo.weak.type.*func(*"".RGBA64, int, int, image/color.RGBA64)"runtime.zerovalueftype.func(*"".RGBA64, int, int, image/color.RGBA64)ftype.func(*"".RGBA64, int, int, image/color.RGBA64)type.*"".RGBA64type.inttype.int.type.image/color.RGBA64go.typelink.func(*image.RGBA64, int, int, color.RGBA64) func(*"".RGBA64, int, int, image/color.RGBA64)ftype.func(*"".RGBA64, int, int, image/color.RGBA64)go.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image" 0xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"pbfunc(*image.RGBA64, image.Rectangle) image.ImageXtype.func(*"".RGBA64, "".Rectangle) "".Image9z30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.RGBA64, image.Rectangle) image.Image"pjgo.weak.type.*func(*"".RGBA64, "".Rectangle) "".Image"runtime.zerovalueXtype.func(*"".RGBA64, "".Rectangle) "".ImageXtype.func(*"".RGBA64, "".Rectangle) "".Imagetype.*"".RGBA64"type."".Rectangletype."".Imagego.typelink.func(*image.RGBA64, image.Rectangle) image.Image func(*"".RGBA64, "".Rectangle) "".ImageXtype.func(*"".RGBA64, "".Rectangle) "".Image0go.string.hdr."RGBA64At" (go.string."RGBA64At"(go.string."RGBA64At" RGBA64AtVgo.string.hdr."func(int, int) color.RGBA64" Ngo.string."func(int, int) color.RGBA64"Ngo.string."func(int, int) color.RGBA64"@8func(int, int) color.RGBA64Ltype.func(int, int) image/color.RGBA64B30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int) color.RGBA64"p^go.weak.type.*func(int, int) image/color.RGBA64"runtime.zerovalueLtype.func(int, int) image/color.RGBA64Ltype.func(int, int) image/color.RGBA64type.inttype.int.type.image/color.RGBA64go.typelink.func(int, int) color.RGBA64 func(int, int) image/color.RGBA64Ltype.func(int, int) image/color.RGBA642go.string.hdr."SetRGBA64" *go.string."SetRGBA64"*go.string."SetRGBA64" SetRGBA64Xgo.string.hdr."func(int, int, color.RGBA64)" Pgo.string."func(int, int, color.RGBA64)"Pgo.string."func(int, int, color.RGBA64)"@:func(int, int, color.RGBA64)Ntype.func(int, int, image/color.RGBA64)$w30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int, color.RGBA64)"p`go.weak.type.*func(int, int, image/color.RGBA64)"runtime.zerovalueNtype.func(int, int, image/color.RGBA64)Ntype.func(int, int, image/color.RGBA64)type.inttype.int.type.image/color.RGBA64go.typelink.func(int, int, color.RGBA64) func(int, int, image/color.RGBA64)Ntype.func(int, int, image/color.RGBA64)type.*"".RGBA646 j0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.RGBA64"p0go.weak.type.**"".RGBA64"runtime.zerovaluetype."".RGBA64`type.*"".RGBA64type.*"".RGBA64$go.string.hdr."At"Jtype.func(int, int) image/color.Colorbtype.func(*"".RGBA64, int, int) image/color.Color"".(*RGBA64).At"".(*RGBA64).At,go.string.hdr."Bounds"0type.func() "".RectangleDtype.func(*"".RGBA64) "".Rectangle&"".(*RGBA64).Bounds&"".(*RGBA64).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelNtype.func(*"".RGBA64) image/color.Model."".(*RGBA64).ColorModel."".(*RGBA64).ColorModel,go.string.hdr."Opaque" type.func() bool4type.func(*"".RGBA64) bool&"".(*RGBA64).Opaque&"".(*RGBA64).Opaque2go.string.hdr."PixOffset".type.func(int, int) intFtype.func(*"".RGBA64, int, int) int,"".(*RGBA64).PixOffset,"".(*RGBA64).PixOffset0go.string.hdr."RGBA64At"Ltype.func(int, int) image/color.RGBA64dtype.func(*"".RGBA64, int, int) image/color.RGBA64*"".(*RGBA64).RGBA64At*"".(*RGBA64).RGBA64At&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)dtype.func(*"".RGBA64, int, int, image/color.Color) "".(*RGBA64).Set "".(*RGBA64).Set2go.string.hdr."SetRGBA64"Ntype.func(int, int, image/color.RGBA64)ftype.func(*"".RGBA64, int, int, image/color.RGBA64),"".(*RGBA64).SetRGBA64,"".(*RGBA64).SetRGBA640go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageXtype.func(*"".RGBA64, "".Rectangle) "".Image*"".(*RGBA64).SubImage*"".(*RGBA64).SubImage6go.string.hdr."image.NRGBA" .go.string."image.NRGBA".go.string."image.NRGBA" image.NRGBA*go.string.hdr."NRGBA" "go.string."NRGBA""go.string."NRGBA"NRGBAtype."".NRGBA@ 0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."image.NRGBA"ptype.*"".NRGBA"runtime.zerovaluetype."".NRGBA&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".NRGBA*go.string.hdr."NRGBA""go.importpath."".type."".NRGBA8go.string.hdr."*image.NRGBA" 0go.string."*image.NRGBA"0go.string."*image.NRGBA" *image.NRGBApgo.string.hdr."func(*image.NRGBA, int, int) color.Color" (hgo.string."func(*image.NRGBA, int, int) color.Color"hgo.string."func(*image.NRGBA, int, int) color.Color"`Rfunc(*image.NRGBA, int, int) color.Color`type.func(*"".NRGBA, int, int) image/color.Color30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.NRGBA, int, int) color.Color"prgo.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.Colortype.*"".NRGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.NRGBA, int, int) color.Color func(*"".NRGBA, int, int) image/color.Color`type.func(*"".NRGBA, int, int) image/color.Colordgo.string.hdr."func(*image.NRGBA) image.Rectangle" "\go.string."func(*image.NRGBA) image.Rectangle"\go.string."func(*image.NRGBA) image.Rectangle"PFfunc(*image.NRGBA) image.RectangleBtype.func(*"".NRGBA) "".Rectangle>La30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NRGBA) image.Rectangle"pTgo.weak.type.*func(*"".NRGBA) "".Rectangle"runtime.zerovalueBtype.func(*"".NRGBA) "".RectangleBtype.func(*"".NRGBA) "".Rectangletype.*"".NRGBA"type."".Rectanglego.typelink.func(*image.NRGBA) image.Rectangle func(*"".NRGBA) "".RectangleBtype.func(*"".NRGBA) "".Rectangle\go.string.hdr."func(*image.NRGBA) color.Model" Tgo.string."func(*image.NRGBA) color.Model"Tgo.string."func(*image.NRGBA) color.Model"@>func(*image.NRGBA) color.ModelLtype.func(*"".NRGBA) image/color.Model@30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.NRGBA) color.Model"p^go.weak.type.*func(*"".NRGBA) image/color.Model"runtime.zerovalueLtype.func(*"".NRGBA) image/color.ModelLtype.func(*"".NRGBA) image/color.Modeltype.*"".NRGBA,type.image/color.Modelgo.typelink.func(*image.NRGBA) color.Model func(*"".NRGBA) image/color.ModelLtype.func(*"".NRGBA) image/color.Modelpgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA" (hgo.string."func(*image.NRGBA, int, int) color.NRGBA"hgo.string."func(*image.NRGBA, int, int) color.NRGBA"`Rfunc(*image.NRGBA, int, int) color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBA\30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"prgo.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.NRGBAtype.*"".NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(*image.NRGBA, int, int) color.NRGBA func(*"".NRGBA, int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBANgo.string.hdr."func(*image.NRGBA) bool" Fgo.string."func(*image.NRGBA) bool"Fgo.string."func(*image.NRGBA) bool"00func(*image.NRGBA) bool2type.func(*"".NRGBA) bool30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.NRGBA) bool"pDgo.weak.type.*func(*"".NRGBA) bool"runtime.zerovalue2type.func(*"".NRGBA) bool2type.func(*"".NRGBA) booltype.*"".NRGBAtype.boolpgo.typelink.func(*image.NRGBA) bool func(*"".NRGBA) bool2type.func(*"".NRGBA) bool`go.string.hdr."func(*image.NRGBA, int, int) int" Xgo.string."func(*image.NRGBA, int, int) int"Xgo.string."func(*image.NRGBA, int, int) int"PBfunc(*image.NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) int30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NRGBA, int, int) int"pVgo.weak.type.*func(*"".NRGBA, int, int) int"runtime.zerovalueDtype.func(*"".NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) inttype.*"".NRGBAtype.inttype.inttype.intgo.typelink.func(*image.NRGBA, int, int) int func(*"".NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) intrgo.string.hdr."func(*image.NRGBA, int, int, color.Color)" )jgo.string."func(*image.NRGBA, int, int, color.Color)"jgo.string."func(*image.NRGBA, int, int, color.Color)"`Tfunc(*image.NRGBA, int, int, color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)"runtime.zerovaluebtype.func(*"".NRGBA, int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)type.*"".NRGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.NRGBA, int, int, color.Color) func(*"".NRGBA, int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)rgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)" )jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"`Tfunc(*image.NRGBA, int, int, color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)"runtime.zerovaluebtype.func(*"".NRGBA, int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)type.*"".NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(*image.NRGBA, int, int, color.NRGBA) func(*"".NRGBA, int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image" /vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"``func(*image.NRGBA, image.Rectangle) image.ImageVtype.func(*"".NRGBA, "".Rectangle) "".ImageDr30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"phgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".NRGBA, "".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Imagetype.*"".NRGBA"type."".Rectangletype."".Imagego.typelink.func(*image.NRGBA, image.Rectangle) image.Image func(*"".NRGBA, "".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Image.go.string.hdr."NRGBAAt" &go.string."NRGBAAt"&go.string."NRGBAAt"NRGBAAtTgo.string.hdr."func(int, int) color.NRGBA" Lgo.string."func(int, int) color.NRGBA"Lgo.string."func(int, int) color.NRGBA"@6func(int, int) color.NRGBAJtype.func(int, int) image/color.NRGBA 30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.NRGBA"p\go.weak.type.*func(int, int) image/color.NRGBA"runtime.zerovalueJtype.func(int, int) image/color.NRGBAJtype.func(int, int) image/color.NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(int, int) color.NRGBA func(int, int) image/color.NRGBAJtype.func(int, int) image/color.NRGBA0go.string.hdr."SetNRGBA" (go.string."SetNRGBA"(go.string."SetNRGBA" SetNRGBAVgo.string.hdr."func(int, int, color.NRGBA)" Ngo.string."func(int, int, color.NRGBA)"Ngo.string."func(int, int, color.NRGBA)"@8func(int, int, color.NRGBA)Ltype.func(int, int, image/color.NRGBA) 30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.NRGBA)"p^go.weak.type.*func(int, int, image/color.NRGBA)"runtime.zerovalueLtype.func(int, int, image/color.NRGBA)Ltype.func(int, int, image/color.NRGBA)type.inttype.int,type.image/color.NRGBAgo.typelink.func(int, int, color.NRGBA) func(int, int, image/color.NRGBA)Ltype.func(int, int, image/color.NRGBA)type.*"".NRGBA*6 j0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.NRGBA"p.go.weak.type.**"".NRGBA"runtime.zerovaluetype."".NRGBA`type.*"".NRGBAtype.*"".NRGBA$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".NRGBA, int, int) image/color.Color"".(*NRGBA).At"".(*NRGBA).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".NRGBA) "".Rectangle$"".(*NRGBA).Bounds$"".(*NRGBA).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".NRGBA) image/color.Model,"".(*NRGBA).ColorModel,"".(*NRGBA).ColorModel.go.string.hdr."NRGBAAt"Jtype.func(int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBA&"".(*NRGBA).NRGBAAt&"".(*NRGBA).NRGBAAt,go.string.hdr."Opaque" type.func() bool2type.func(*"".NRGBA) bool$"".(*NRGBA).Opaque$"".(*NRGBA).Opaque2go.string.hdr."PixOffset".type.func(int, int) intDtype.func(*"".NRGBA, int, int) int*"".(*NRGBA).PixOffset*"".(*NRGBA).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)"".(*NRGBA).Set"".(*NRGBA).Set0go.string.hdr."SetNRGBA"Ltype.func(int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)("".(*NRGBA).SetNRGBA("".(*NRGBA).SetNRGBA0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Image("".(*NRGBA).SubImage("".(*NRGBA).SubImage:go.string.hdr."image.NRGBA64" 2go.string."image.NRGBA64"2go.string."image.NRGBA64" image.NRGBA64.go.string.hdr."NRGBA64" &go.string."NRGBA64"&go.string."NRGBA64"NRGBA64type."".NRGBA64@r 0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.NRGBA64"p type.*"".NRGBA64"runtime.zerovaluetype."".NRGBA64&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".NRGBA64.go.string.hdr."NRGBA64""go.importpath."".type."".NRGBA64<go.string.hdr."*image.NRGBA64" 4go.string."*image.NRGBA64"4go.string."*image.NRGBA64" *image.NRGBA64tgo.string.hdr."func(*image.NRGBA64, int, int) color.Color" *lgo.string."func(*image.NRGBA64, int, int) color.Color"lgo.string."func(*image.NRGBA64, int, int) color.Color"`Vfunc(*image.NRGBA64, int, int) color.Colordtype.func(*"".NRGBA64, int, int) image/color.Color;m&30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.NRGBA64, int, int) color.Color"pvgo.weak.type.*func(*"".NRGBA64, int, int) image/color.Color"runtime.zerovaluedtype.func(*"".NRGBA64, int, int) image/color.Colordtype.func(*"".NRGBA64, int, int) image/color.Color type.*"".NRGBA64type.inttype.int,type.image/color.Colorgo.typelink.func(*image.NRGBA64, int, int) color.Color func(*"".NRGBA64, int, int) image/color.Colordtype.func(*"".NRGBA64, int, int) image/color.Colorhgo.string.hdr."func(*image.NRGBA64) image.Rectangle" $`go.string."func(*image.NRGBA64) image.Rectangle"`go.string."func(*image.NRGBA64) image.Rectangle"PJfunc(*image.NRGBA64) image.RectangleFtype.func(*"".NRGBA64) "".Rectanglea30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.NRGBA64) image.Rectangle"pXgo.weak.type.*func(*"".NRGBA64) "".Rectangle"runtime.zerovalueFtype.func(*"".NRGBA64) "".RectangleFtype.func(*"".NRGBA64) "".Rectangle type.*"".NRGBA64"type."".Rectanglego.typelink.func(*image.NRGBA64) image.Rectangle func(*"".NRGBA64) "".RectangleFtype.func(*"".NRGBA64) "".Rectangle`go.string.hdr."func(*image.NRGBA64) color.Model" Xgo.string."func(*image.NRGBA64) color.Model"Xgo.string."func(*image.NRGBA64) color.Model"PBfunc(*image.NRGBA64) color.ModelPtype.func(*"".NRGBA64) image/color.Modellz30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NRGBA64) color.Model"pbgo.weak.type.*func(*"".NRGBA64) image/color.Model"runtime.zerovaluePtype.func(*"".NRGBA64) image/color.ModelPtype.func(*"".NRGBA64) image/color.Model type.*"".NRGBA64,type.image/color.Modelgo.typelink.func(*image.NRGBA64) color.Model func(*"".NRGBA64) image/color.ModelPtype.func(*"".NRGBA64) image/color.Modelxgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64" ,pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"`Zfunc(*image.NRGBA64, int, int) color.NRGBA64htype.func(*"".NRGBA64, int, int) image/color.NRGBA64RbK30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.NRGBA64, int, int) color.NRGBA64"pzgo.weak.type.*func(*"".NRGBA64, int, int) image/color.NRGBA64"runtime.zerovaluehtype.func(*"".NRGBA64, int, int) image/color.NRGBA64htype.func(*"".NRGBA64, int, int) image/color.NRGBA64 type.*"".NRGBA64type.inttype.int0type.image/color.NRGBA64go.typelink.func(*image.NRGBA64, int, int) color.NRGBA64 func(*"".NRGBA64, int, int) image/color.NRGBA64htype.func(*"".NRGBA64, int, int) image/color.NRGBA64Rgo.string.hdr."func(*image.NRGBA64) bool" Jgo.string."func(*image.NRGBA64) bool"Jgo.string."func(*image.NRGBA64) bool"@4func(*image.NRGBA64) bool6type.func(*"".NRGBA64) bool\U30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.NRGBA64) bool"pHgo.weak.type.*func(*"".NRGBA64) bool"runtime.zerovalue6type.func(*"".NRGBA64) bool6type.func(*"".NRGBA64) bool type.*"".NRGBA64type.boolxgo.typelink.func(*image.NRGBA64) bool func(*"".NRGBA64) bool6type.func(*"".NRGBA64) booldgo.string.hdr."func(*image.NRGBA64, int, int) int" "\go.string."func(*image.NRGBA64, int, int) int"\go.string."func(*image.NRGBA64, int, int) int"PFfunc(*image.NRGBA64, int, int) intHtype.func(*"".NRGBA64, int, int) intrY30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NRGBA64, int, int) int"pZgo.weak.type.*func(*"".NRGBA64, int, int) int"runtime.zerovalueHtype.func(*"".NRGBA64, int, int) intHtype.func(*"".NRGBA64, int, int) int type.*"".NRGBA64type.inttype.inttype.intgo.typelink.func(*image.NRGBA64, int, int) int func(*"".NRGBA64, int, int) intHtype.func(*"".NRGBA64, int, int) intvgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)" +ngo.string."func(*image.NRGBA64, int, int, color.Color)"ngo.string."func(*image.NRGBA64, int, int, color.Color)"`Xfunc(*image.NRGBA64, int, int, color.Color)ftype.func(*"".NRGBA64, int, int, image/color.Color)m30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.NRGBA64, int, int, color.Color)"pxgo.weak.type.*func(*"".NRGBA64, int, int, image/color.Color)"runtime.zerovalueftype.func(*"".NRGBA64, int, int, image/color.Color)ftype.func(*"".NRGBA64, int, int, image/color.Color) type.*"".NRGBA64type.inttype.int,type.image/color.Colorgo.typelink.func(*image.NRGBA64, int, int, color.Color) func(*"".NRGBA64, int, int, image/color.Color)ftype.func(*"".NRGBA64, int, int, image/color.Color)zgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)" -rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"`\func(*image.NRGBA64, int, int, color.NRGBA64)jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)FL|30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.NRGBA64, int, int, color.NRGBA64)"p|go.weak.type.*func(*"".NRGBA64, int, int, image/color.NRGBA64)"runtime.zerovaluejtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64) type.*"".NRGBA64type.inttype.int0type.image/color.NRGBA64go.typelink.func(*image.NRGBA64, int, int, color.NRGBA64) func(*"".NRGBA64, int, int, image/color.NRGBA64)jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)go.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image" 1zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"pdfunc(*image.NRGBA64, image.Rectangle) image.ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Imageh30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.NRGBA64, image.Rectangle) image.Image"plgo.weak.type.*func(*"".NRGBA64, "".Rectangle) "".Image"runtime.zerovalueZtype.func(*"".NRGBA64, "".Rectangle) "".ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Image type.*"".NRGBA64"type."".Rectangletype."".Imagego.typelink.func(*image.NRGBA64, image.Rectangle) image.Image func(*"".NRGBA64, "".Rectangle) "".ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Image2go.string.hdr."NRGBA64At" *go.string."NRGBA64At"*go.string."NRGBA64At" NRGBA64AtXgo.string.hdr."func(int, int) color.NRGBA64" Pgo.string."func(int, int) color.NRGBA64"Pgo.string."func(int, int) color.NRGBA64"@:func(int, int) color.NRGBA64Ntype.func(int, int) image/color.NRGBA64|c030 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int) color.NRGBA64"p`go.weak.type.*func(int, int) image/color.NRGBA64"runtime.zerovalueNtype.func(int, int) image/color.NRGBA64Ntype.func(int, int) image/color.NRGBA64type.inttype.int0type.image/color.NRGBA64go.typelink.func(int, int) color.NRGBA64 func(int, int) image/color.NRGBA64Ntype.func(int, int) image/color.NRGBA644go.string.hdr."SetNRGBA64" 2101 ,go.string."SetNRGBA64",go.string."SetNRGBA64" SetNRGBA64Zgo.string.hdr."func(int, int, color.NRGBA64)" Rgo.string."func(int, int, color.NRGBA64)"Rgo.string."func(int, int, color.NRGBA64)"@<func(int, int, color.NRGBA64)Ptype.func(int, int, image/color.NRGBA64)M;s30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(int, int, color.NRGBA64)"pbgo.weak.type.*func(int, int, image/color.NRGBA64)"runtime.zerovaluePtype.func(int, int, image/color.NRGBA64)Ptype.func(int, int, image/color.NRGBA64)type.inttype.int0type.image/color.NRGBA64go.typelink.func(int, int, color.NRGBA64) func(int, int, image/color.NRGBA64)Ptype.func(int, int, image/color.NRGBA64) type.*"".NRGBA64OR6 j0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.NRGBA64"p2go.weak.type.**"".NRGBA64"runtime.zerovaluetype."".NRGBA64` type.*"".NRGBA64 type.*"".NRGBA64$go.string.hdr."At"Jtype.func(int, int) image/color.Colordtype.func(*"".NRGBA64, int, int) image/color.Color "".(*NRGBA64).At "".(*NRGBA64).At,go.string.hdr."Bounds"0type.func() "".RectangleFtype.func(*"".NRGBA64) "".Rectangle("".(*NRGBA64).Bounds("".(*NRGBA64).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelPtype.func(*"".NRGBA64) image/color.Model0"".(*NRGBA64).ColorModel0"".(*NRGBA64).ColorModel2go.string.hdr."NRGBA64At"Ntype.func(int, int) image/color.NRGBA64htype.func(*"".NRGBA64, int, int) image/color.NRGBA64."".(*NRGBA64).NRGBA64At."".(*NRGBA64).NRGBA64At,go.string.hdr."Opaque" type.func() bool6type.func(*"".NRGBA64) bool("".(*NRGBA64).Opaque("".(*NRGBA64).Opaque2go.string.hdr."PixOffset".type.func(int, int) intHtype.func(*"".NRGBA64, int, int) int."".(*NRGBA64).PixOffset."".(*NRGBA64).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)ftype.func(*"".NRGBA64, int, int, image/color.Color)""".(*NRGBA64).Set""".(*NRGBA64).Set4go.string.hdr."SetNRGBA64"Ptype.func(int, int, image/color.NRGBA64)jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)0"".(*NRGBA64).SetNRGBA640"".(*NRGBA64).SetNRGBA640go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageZtype.func(*"".NRGBA64, "".Rectangle) "".Image,"".(*NRGBA64).SubImage,"".(*NRGBA64).SubImage6go.string.hdr."image.Alpha" .go.string."image.Alpha".go.string."image.Alpha" image.Alpha*go.string.hdr."Alpha" "go.string."Alpha""go.string."Alpha"Alphatype."".Alpha@,= 0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."image.Alpha"ptype.*"".Alpha"runtime.zerovaluetype."".Alpha&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Alpha*go.string.hdr."Alpha""go.importpath."".type."".Alpha8go.string.hdr."*image.Alpha" 0go.string."*image.Alpha"0go.string."*image.Alpha" *image.Alphapgo.string.hdr."func(*image.Alpha, int, int) color.Alpha" (hgo.string."func(*image.Alpha, int, int) color.Alpha"hgo.string."func(*image.Alpha, int, int) color.Alpha"`Rfunc(*image.Alpha, int, int) color.Alpha`type.func(*"".Alpha, int, int) image/color.Alpha>30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"prgo.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.Alphatype.*"".Alphatype.inttype.int,type.image/color.Alphago.typelink.func(*image.Alpha, int, int) color.Alpha func(*"".Alpha, int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alphapgo.string.hdr."func(*image.Alpha, int, int) color.Color" (hgo.string."func(*image.Alpha, int, int) color.Color"hgo.string."func(*image.Alpha, int, int) color.Color"`Rfunc(*image.Alpha, int, int) color.Color`type.func(*"".Alpha, int, int) image/color.Colordf30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Color"prgo.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.Colortype.*"".Alphatype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha, int, int) color.Color func(*"".Alpha, int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Colordgo.string.hdr."func(*image.Alpha) image.Rectangle" "\go.string."func(*image.Alpha) image.Rectangle"\go.string."func(*image.Alpha) image.Rectangle"PFfunc(*image.Alpha) image.RectangleBtype.func(*"".Alpha) "".Rectanglet30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Alpha) image.Rectangle"pTgo.weak.type.*func(*"".Alpha) "".Rectangle"runtime.zerovalueBtype.func(*"".Alpha) "".RectangleBtype.func(*"".Alpha) "".Rectangletype.*"".Alpha"type."".Rectanglego.typelink.func(*image.Alpha) image.Rectangle func(*"".Alpha) "".RectangleBtype.func(*"".Alpha) "".Rectangle\go.string.hdr."func(*image.Alpha) color.Model" Tgo.string."func(*image.Alpha) color.Model"Tgo.string."func(*image.Alpha) color.Model"@>func(*image.Alpha) color.ModelLtype.func(*"".Alpha) image/color.ModelY30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.Alpha) color.Model"p^go.weak.type.*func(*"".Alpha) image/color.Model"runtime.zerovalueLtype.func(*"".Alpha) image/color.ModelLtype.func(*"".Alpha) image/color.Modeltype.*"".Alpha,type.image/color.Modelgo.typelink.func(*image.Alpha) color.Model func(*"".Alpha) image/color.ModelLtype.func(*"".Alpha) image/color.ModelNgo.string.hdr."func(*image.Alpha) bool" Fgo.string."func(*image.Alpha) bool"Fgo.string."func(*image.Alpha) bool"00func(*image.Alpha) bool2type.func(*"".Alpha) boolgPO30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.Alpha) bool"pDgo.weak.type.*func(*"".Alpha) bool"runtime.zerovalue2type.func(*"".Alpha) bool2type.func(*"".Alpha) booltype.*"".Alphatype.boolpgo.typelink.func(*image.Alpha) bool func(*"".Alpha) bool2type.func(*"".Alpha) bool`go.string.hdr."func(*image.Alpha, int, int) int" Xgo.string."func(*image.Alpha, int, int) int"Xgo.string."func(*image.Alpha, int, int) int"PBfunc(*image.Alpha, int, int) intDtype.func(*"".Alpha, int, int) intw30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Alpha, int, int) int"pVgo.weak.type.*func(*"".Alpha, int, int) int"runtime.zerovalueDtype.func(*"".Alpha, int, int) intDtype.func(*"".Alpha, int, int) inttype.*"".Alphatype.inttype.inttype.intgo.typelink.func(*image.Alpha, int, int) int func(*"".Alpha, int, int) intDtype.func(*"".Alpha, int, int) intrgo.string.hdr."func(*image.Alpha, int, int, color.Color)" )jgo.string."func(*image.Alpha, int, int, color.Color)"jgo.string."func(*image.Alpha, int, int, color.Color)"`Tfunc(*image.Alpha, int, int, color.Color)btype.func(*"".Alpha, int, int, image/color.Color)}30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Color)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)"runtime.zerovaluebtype.func(*"".Alpha, int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)type.*"".Alphatype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha, int, int, color.Color) func(*"".Alpha, int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)rgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)" )jgo.string."func(*image.Alpha, int, int, color.Alpha)"jgo.string."func(*image.Alpha, int, int, color.Alpha)"`Tfunc(*image.Alpha, int, int, color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)L130 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)"runtime.zerovaluebtype.func(*"".Alpha, int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)type.*"".Alphatype.inttype.int,type.image/color.Alphago.typelink.func(*image.Alpha, int, int, color.Alpha) func(*"".Alpha, int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image" /vgo.string."func(*image.Alpha, image.Rectangle) image.Image"vgo.string."func(*image.Alpha, image.Rectangle) image.Image"``func(*image.Alpha, image.Rectangle) image.ImageVtype.func(*"".Alpha, "".Rectangle) "".Image30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"phgo.weak.type.*func(*"".Alpha, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".Alpha, "".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Imagetype.*"".Alpha"type."".Rectangletype."".Imagego.typelink.func(*image.Alpha, image.Rectangle) image.Image func(*"".Alpha, "".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Image.go.string.hdr."AlphaAt" &go.string."AlphaAt"&go.string."AlphaAt"AlphaAtTgo.string.hdr."func(int, int) color.Alpha" Lgo.string."func(int, int) color.Alpha"Lgo.string."func(int, int) color.Alpha"@6func(int, int) color.AlphaJtype.func(int, int) image/color.Alphat=30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Alpha"p\go.weak.type.*func(int, int) image/color.Alpha"runtime.zerovalueJtype.func(int, int) image/color.AlphaJtype.func(int, int) image/color.Alphatype.inttype.int,type.image/color.Alphago.typelink.func(int, int) color.Alpha func(int, int) image/color.AlphaJtype.func(int, int) image/color.Alpha0go.string.hdr."SetAlpha" (go.string."SetAlpha"(go.string."SetAlpha" SetAlphaVgo.string.hdr."func(int, int, color.Alpha)" Ngo.string."func(int, int, color.Alpha)"Ngo.string."func(int, int, color.Alpha)"@8func(int, int, color.Alpha)Ltype.func(int, int, image/color.Alpha)5CP30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Alpha)"p^go.weak.type.*func(int, int, image/color.Alpha)"runtime.zerovalueLtype.func(int, int, image/color.Alpha)Ltype.func(int, int, image/color.Alpha)type.inttype.int,type.image/color.Alphago.typelink.func(int, int, color.Alpha) func(int, int, image/color.Alpha)Ltype.func(int, int, image/color.Alpha)type.*"".Alpha6 j0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Alpha"p.go.weak.type.**"".Alpha"runtime.zerovaluetype."".Alpha`type.*"".Alphatype.*"".Alpha.go.string.hdr."AlphaAt"Jtype.func(int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alpha&"".(*Alpha).AlphaAt&"".(*Alpha).AlphaAt$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Color"".(*Alpha).At"".(*Alpha).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".Alpha) "".Rectangle$"".(*Alpha).Bounds$"".(*Alpha).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".Alpha) image/color.Model,"".(*Alpha).ColorModel,"".(*Alpha).ColorModel,go.string.hdr."Opaque" type.func() bool2type.func(*"".Alpha) bool$"".(*Alpha).Opaque$"".(*Alpha).Opaque2go.string.hdr."PixOffset".type.func(int, int) intDtype.func(*"".Alpha, int, int) int*"".(*Alpha).PixOffset*"".(*Alpha).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)"".(*Alpha).Set"".(*Alpha).Set0go.string.hdr."SetAlpha"Ltype.func(int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)("".(*Alpha).SetAlpha("".(*Alpha).SetAlpha0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Image("".(*Alpha).SubImage("".(*Alpha).SubImage:go.string.hdr."image.Alpha16" 2go.string."image.Alpha16"2go.string."image.Alpha16" image.Alpha16.go.string.hdr."Alpha16" &go.string."Alpha16"&go.string."Alpha16"Alpha16type."".Alpha16@D{ 0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.Alpha16"p type.*"".Alpha16"runtime.zerovaluetype."".Alpha16&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Alpha16.go.string.hdr."Alpha16""go.importpath."".type."".Alpha16<go.string.hdr."*image.Alpha16" 4go.string."*image.Alpha16"4go.string."*image.Alpha16" *image.Alpha16xgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16" ,pgo.string."func(*image.Alpha16, int, int) color.Alpha16"pgo.string."func(*image.Alpha16, int, int) color.Alpha16"`Zfunc(*image.Alpha16, int, int) color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16i30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Alpha16, int, int) color.Alpha16"pzgo.weak.type.*func(*"".Alpha16, int, int) image/color.Alpha16"runtime.zerovaluehtype.func(*"".Alpha16, int, int) image/color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16 type.*"".Alpha16type.inttype.int0type.image/color.Alpha16go.typelink.func(*image.Alpha16, int, int) color.Alpha16 func(*"".Alpha16, int, int) image/color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16tgo.string.hdr."func(*image.Alpha16, int, int) color.Color" *lgo.string."func(*image.Alpha16, int, int) color.Color"lgo.string."func(*image.Alpha16, int, int) color.Color"`Vfunc(*image.Alpha16, int, int) color.Colordtype.func(*"".Alpha16, int, int) image/color.Color[30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Alpha16, int, int) color.Color"pvgo.weak.type.*func(*"".Alpha16, int, int) image/color.Color"runtime.zerovaluedtype.func(*"".Alpha16, int, int) image/color.Colordtype.func(*"".Alpha16, int, int) image/color.Color type.*"".Alpha16type.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha16, int, int) color.Color func(*"".Alpha16, int, int) image/color.Colordtype.func(*"".Alpha16, int, int) image/color.Colorhgo.string.hdr."func(*image.Alpha16) image.Rectangle" $`go.string."func(*image.Alpha16) image.Rectangle"`go.string."func(*image.Alpha16) image.Rectangle"PJfunc(*image.Alpha16) image.RectangleFtype.func(*"".Alpha16) "".Rectangle^;30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Alpha16) image.Rectangle"pXgo.weak.type.*func(*"".Alpha16) "".Rectangle"runtime.zerovalueFtype.func(*"".Alpha16) "".RectangleFtype.func(*"".Alpha16) "".Rectangle type.*"".Alpha16"type."".Rectanglego.typelink.func(*image.Alpha16) image.Rectangle func(*"".Alpha16) "".RectangleFtype.func(*"".Alpha16) "".Rectangle`go.string.hdr."func(*image.Alpha16) color.Model" Xgo.string."func(*image.Alpha16) color.Model"Xgo.string."func(*image.Alpha16) color.Model"PBfunc(*image.Alpha16) color.ModelPtype.func(*"".Alpha16) image/color.Model#*N30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Alpha16) color.Model"pbgo.weak.type.*func(*"".Alpha16) image/color.Model"runtime.zerovaluePtype.func(*"".Alpha16) image/color.ModelPtype.func(*"".Alpha16) image/color.Model type.*"".Alpha16,type.image/color.Modelgo.typelink.func(*image.Alpha16) color.Model func(*"".Alpha16) image/color.ModelPtype.func(*"".Alpha16) image/color.ModelRgo.string.hdr."func(*image.Alpha16) bool" Jgo.string."func(*image.Alpha16) bool"Jgo.string."func(*image.Alpha16) bool"@4func(*image.Alpha16) bool6type.func(*"".Alpha16) boolbc30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Alpha16) bool"pHgo.weak.type.*func(*"".Alpha16) bool"runtime.zerovalue6type.func(*"".Alpha16) bool6type.func(*"".Alpha16) bool type.*"".Alpha16type.boolxgo.typelink.func(*image.Alpha16) bool func(*"".Alpha16) bool6type.func(*"".Alpha16) booldgo.string.hdr."func(*image.Alpha16, int, int) int" "\go.string."func(*image.Alpha16, int, int) int"\go.string."func(*image.Alpha16, int, int) int"PFfunc(*image.Alpha16, int, int) intHtype.func(*"".Alpha16, int, int) intK30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Alpha16, int, int) int"pZgo.weak.type.*func(*"".Alpha16, int, int) int"runtime.zerovalueHtype.func(*"".Alpha16, int, int) intHtype.func(*"".Alpha16, int, int) int type.*"".Alpha16type.inttype.inttype.intgo.typelink.func(*image.Alpha16, int, int) int func(*"".Alpha16, int, int) intHtype.func(*"".Alpha16, int, int) intvgo.string.hdr."func(*image.Alpha16, int, int, color.Color)" +ngo.string."func(*image.Alpha16, int, int, color.Color)"ngo.string."func(*image.Alpha16, int, int, color.Color)"`Xfunc(*image.Alpha16, int, int, color.Color)ftype.func(*"".Alpha16, int, int, image/color.Color)h30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Alpha16, int, int, color.Color)"pxgo.weak.type.*func(*"".Alpha16, int, int, image/color.Color)"runtime.zerovalueftype.func(*"".Alpha16, int, int, image/color.Color)ftype.func(*"".Alpha16, int, int, image/color.Color) type.*"".Alpha16type.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha16, int, int, color.Color) func(*"".Alpha16, int, int, image/color.Color)ftype.func(*"".Alpha16, int, int, image/color.Color)zgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)" -rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"`\func(*image.Alpha16, int, int, color.Alpha16)jtype.func(*"".Alpha16, int, int, image/color.Alpha16) &30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.Alpha16, int, int, color.Alpha16)"p|go.weak.type.*func(*"".Alpha16, int, int, image/color.Alpha16)"runtime.zerovaluejtype.func(*"".Alpha16, int, int, image/color.Alpha16)jtype.func(*"".Alpha16, int, int, image/color.Alpha16) type.*"".Alpha16type.inttype.int0type.image/color.Alpha16go.typelink.func(*image.Alpha16, int, int, color.Alpha16) func(*"".Alpha16, int, int, image/color.Alpha16)jtype.func(*"".Alpha16, int, int, image/color.Alpha16)go.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image" 1zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"pdfunc(*image.Alpha16, image.Rectangle) image.ImageZtype.func(*"".Alpha16, "".Rectangle) "".Imagei830 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Alpha16, image.Rectangle) image.Image"plgo.weak.type.*func(*"".Alpha16, "".Rectangle) "".Image"runtime.zerovalueZtype.func(*"".Alpha16, "".Rectangle) "".ImageZtype.func(*"".Alpha16, "".Rectangle) "".Image type.*"".Alpha16"type."".Rectangletype."".Imagego.typelink.func(*image.Alpha16, image.Rectangle) image.Image func(*"".Alpha16, "".Rectangle) "".ImageZtype.func(*"".Alpha16, "".Rectangle) "".Image2go.string.hdr."Alpha16At" *go.string."Alpha16At"*go.string."Alpha16At" Alpha16AtXgo.string.hdr."func(int, int) color.Alpha16" Pgo.string."func(int, int) color.Alpha16"Pgo.string."func(int, int) color.Alpha16"@:func(int, int) color.Alpha16Ntype.func(int, int) image/color.Alpha16Ad!30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int) color.Alpha16"p`go.weak.type.*func(int, int) image/color.Alpha16"runtime.zerovalueNtype.func(int, int) image/color.Alpha16Ntype.func(int, int) image/color.Alpha16type.inttype.int0type.image/color.Alpha16go.typelink.func(int, int) color.Alpha16 func(int, int) image/color.Alpha16Ntype.func(int, int) image/color.Alpha164go.string.hdr."SetAlpha16" 2108 ,go.string."SetAlpha16",go.string."SetAlpha16" SetAlpha16Zgo.string.hdr."func(int, int, color.Alpha16)" Rgo.string."func(int, int, color.Alpha16)"Rgo.string."func(int, int, color.Alpha16)"@<func(int, int, color.Alpha16)Ptype.func(int, int, image/color.Alpha16)Z|30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(int, int, color.Alpha16)"pbgo.weak.type.*func(int, int, image/color.Alpha16)"runtime.zerovaluePtype.func(int, int, image/color.Alpha16)Ptype.func(int, int, image/color.Alpha16)type.inttype.int0type.image/color.Alpha16go.typelink.func(int, int, color.Alpha16) func(int, int, image/color.Alpha16)Ptype.func(int, int, image/color.Alpha16) type.*"".Alpha166L6 j0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.Alpha16"p2go.weak.type.**"".Alpha16"runtime.zerovaluetype."".Alpha16` type.*"".Alpha16 type.*"".Alpha162go.string.hdr."Alpha16At"Ntype.func(int, int) image/color.Alpha16htype.func(*"".Alpha16, int, int) image/color.Alpha16."".(*Alpha16).Alpha16At."".(*Alpha16).Alpha16At$go.string.hdr."At"Jtype.func(int, int) image/color.Colordtype.func(*"".Alpha16, int, int) image/color.Color "".(*Alpha16).At "".(*Alpha16).At,go.string.hdr."Bounds"0type.func() "".RectangleFtype.func(*"".Alpha16) "".Rectangle("".(*Alpha16).Bounds("".(*Alpha16).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelPtype.func(*"".Alpha16) image/color.Model0"".(*Alpha16).ColorModel0"".(*Alpha16).ColorModel,go.string.hdr."Opaque" type.func() bool6type.func(*"".Alpha16) bool("".(*Alpha16).Opaque("".(*Alpha16).Opaque2go.string.hdr."PixOffset".type.func(int, int) intHtype.func(*"".Alpha16, int, int) int."".(*Alpha16).PixOffset."".(*Alpha16).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)ftype.func(*"".Alpha16, int, int, image/color.Color)""".(*Alpha16).Set""".(*Alpha16).Set4go.string.hdr."SetAlpha16"Ptype.func(int, int, image/color.Alpha16)jtype.func(*"".Alpha16, int, int, image/color.Alpha16)0"".(*Alpha16).SetAlpha160"".(*Alpha16).SetAlpha160go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageZtype.func(*"".Alpha16, "".Rectangle) "".Image,"".(*Alpha16).SubImage,"".(*Alpha16).SubImage4go.string.hdr."image.Gray" 2109 ,go.string."image.Gray",go.string."image.Gray" image.Gray(go.string.hdr."Gray" go.string."Gray" go.string."Gray" 2110 Graytype."".Gray@a>1 0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.Gray"ptype.*"".Gray"runtime.zerovaluetype."".Gray&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Gray(go.string.hdr."Gray""go.importpath."".type."".Gray6go.string.hdr."*image.Gray" .go.string."*image.Gray".go.string."*image.Gray" *image.Grayngo.string.hdr."func(*image.Gray, int, int) color.Color" 'fgo.string."func(*image.Gray, int, int) color.Color"fgo.string."func(*image.Gray, int, int) color.Color"PPfunc(*image.Gray, int, int) color.Color^type.func(*"".Gray, int, int) image/color.Color9kK30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.Gray, int, int) color.Color"ppgo.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.Colortype.*"".Graytype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Gray, int, int) color.Color func(*"".Gray, int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Colorbgo.string.hdr."func(*image.Gray) image.Rectangle" !Zgo.string."func(*image.Gray) image.Rectangle"Zgo.string."func(*image.Gray) image.Rectangle"PDfunc(*image.Gray) image.Rectangle@type.func(*"".Gray) "".Rectanglee30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Gray) image.Rectangle"pRgo.weak.type.*func(*"".Gray) "".Rectangle"runtime.zerovalue@type.func(*"".Gray) "".Rectangle@type.func(*"".Gray) "".Rectangletype.*"".Gray"type."".Rectanglego.typelink.func(*image.Gray) image.Rectangle func(*"".Gray) "".Rectangle@type.func(*"".Gray) "".RectangleZgo.string.hdr."func(*image.Gray) color.Model" Rgo.string."func(*image.Gray) color.Model"Rgo.string."func(*image.Gray) color.Model"@<func(*image.Gray) color.ModelJtype.func(*"".Gray) image/color.Model30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.Gray) color.Model"p\go.weak.type.*func(*"".Gray) image/color.Model"runtime.zerovalueJtype.func(*"".Gray) image/color.ModelJtype.func(*"".Gray) image/color.Modeltype.*"".Gray,type.image/color.Modelgo.typelink.func(*image.Gray) color.Model func(*"".Gray) image/color.ModelJtype.func(*"".Gray) image/color.Modellgo.string.hdr."func(*image.Gray, int, int) color.Gray" &dgo.string."func(*image.Gray, int, int) color.Gray"dgo.string."func(*image.Gray, int, int) color.Gray"PNfunc(*image.Gray, int, int) color.Gray\type.func(*"".Gray, int, int) image/color.Grayh30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Gray, int, int) color.Gray"pngo.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.Graytype.*"".Graytype.inttype.int*type.image/color.Graygo.typelink.func(*image.Gray, int, int) color.Gray func(*"".Gray, int, int) image/color.Gray\type.func(*"".Gray, int, int) image/color.GrayLgo.string.hdr."func(*image.Gray) bool" Dgo.string."func(*image.Gray) bool"Dgo.string."func(*image.Gray) bool"0.func(*image.Gray) bool0type.func(*"".Gray) boolPdT`30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.Gray) bool"pBgo.weak.type.*func(*"".Gray) bool"runtime.zerovalue0type.func(*"".Gray) bool0type.func(*"".Gray) booltype.*"".Graytype.boollgo.typelink.func(*image.Gray) bool func(*"".Gray) bool0type.func(*"".Gray) bool^go.string.hdr."func(*image.Gray, int, int) int" Vgo.string."func(*image.Gray, int, int) int"Vgo.string."func(*image.Gray, int, int) int"@@func(*image.Gray, int, int) intBtype.func(*"".Gray, int, int) intC030 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.Gray, int, int) int"pTgo.weak.type.*func(*"".Gray, int, int) int"runtime.zerovalueBtype.func(*"".Gray, int, int) intBtype.func(*"".Gray, int, int) inttype.*"".Graytype.inttype.inttype.intgo.typelink.func(*image.Gray, int, int) int func(*"".Gray, int, int) intBtype.func(*"".Gray, int, int) intpgo.string.hdr."func(*image.Gray, int, int, color.Color)" (hgo.string."func(*image.Gray, int, int, color.Color)"hgo.string."func(*image.Gray, int, int, color.Color)"`Rfunc(*image.Gray, int, int, color.Color)`type.func(*"".Gray, int, int, image/color.Color)KNo30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Gray, int, int, color.Color)"prgo.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.*"".Graytype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Gray, int, int, color.Color) func(*"".Gray, int, int, image/color.Color)`type.func(*"".Gray, int, int, image/color.Color)ngo.string.hdr."func(*image.Gray, int, int, color.Gray)" 'fgo.string."func(*image.Gray, int, int, color.Gray)"fgo.string."func(*image.Gray, int, int, color.Gray)"PPfunc(*image.Gray, int, int, color.Gray)^type.func(*"".Gray, int, int, image/color.Gray)hM30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.Gray, int, int, color.Gray)"ppgo.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.*"".Graytype.inttype.int*type.image/color.Graygo.typelink.func(*image.Gray, int, int, color.Gray) func(*"".Gray, int, int, image/color.Gray)^type.func(*"".Gray, int, int, image/color.Gray)|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image" .tgo.string."func(*image.Gray, image.Rectangle) image.Image"tgo.string."func(*image.Gray, image.Rectangle) image.Image"`^func(*image.Gray, image.Rectangle) image.ImageTtype.func(*"".Gray, "".Rectangle) "".Image7I30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.Gray, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".Gray, "".Rectangle) "".Image"runtime.zerovalueTtype.func(*"".Gray, "".Rectangle) "".ImageTtype.func(*"".Gray, "".Rectangle) "".Imagetype.*"".Gray"type."".Rectangletype."".Imagego.typelink.func(*image.Gray, image.Rectangle) image.Image func(*"".Gray, "".Rectangle) "".ImageTtype.func(*"".Gray, "".Rectangle) "".Image,go.string.hdr."GrayAt" $go.string."GrayAt"$go.string."GrayAt"GrayAtRgo.string.hdr."func(int, int) color.Gray" Jgo.string."func(int, int) color.Gray"Jgo.string."func(int, int) color.Gray"@4func(int, int) color.GrayHtype.func(int, int) image/color.Gray30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.Gray"pZgo.weak.type.*func(int, int) image/color.Gray"runtime.zerovalueHtype.func(int, int) image/color.GrayHtype.func(int, int) image/color.Graytype.inttype.int*type.image/color.Graygo.typelink.func(int, int) color.Gray func(int, int) image/color.GrayHtype.func(int, int) image/color.Gray.go.string.hdr."SetGray" &go.string."SetGray"&go.string."SetGray"SetGrayTgo.string.hdr."func(int, int, color.Gray)" Lgo.string."func(int, int, color.Gray)"Lgo.string."func(int, int, color.Gray)"@6func(int, int, color.Gray)Jtype.func(int, int, image/color.Gray)=q30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.Gray)"p\go.weak.type.*func(int, int, image/color.Gray)"runtime.zerovalueJtype.func(int, int, image/color.Gray)Jtype.func(int, int, image/color.Gray)type.inttype.int*type.image/color.Graygo.typelink.func(int, int, color.Gray) func(int, int, image/color.Gray)Jtype.func(int, int, image/color.Gray)type.*"".Gray~6 j0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.Gray"p,go.weak.type.**"".Gray"runtime.zerovaluetype."".Gray`type.*"".Graytype.*"".Gray$go.string.hdr."At"Jtype.func(int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Color"".(*Gray).At"".(*Gray).At,go.string.hdr."Bounds"0type.func() "".Rectangle@type.func(*"".Gray) "".Rectangle""".(*Gray).Bounds""".(*Gray).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelJtype.func(*"".Gray) image/color.Model*"".(*Gray).ColorModel*"".(*Gray).ColorModel,go.string.hdr."GrayAt"Htype.func(int, int) image/color.Gray\type.func(*"".Gray, int, int) image/color.Gray""".(*Gray).GrayAt""".(*Gray).GrayAt,go.string.hdr."Opaque" type.func() bool0type.func(*"".Gray) bool""".(*Gray).Opaque""".(*Gray).Opaque2go.string.hdr."PixOffset".type.func(int, int) intBtype.func(*"".Gray, int, int) int("".(*Gray).PixOffset("".(*Gray).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)`type.func(*"".Gray, int, int, image/color.Color)"".(*Gray).Set"".(*Gray).Set.go.string.hdr."SetGray"Jtype.func(int, int, image/color.Gray)^type.func(*"".Gray, int, int, image/color.Gray)$"".(*Gray).SetGray$"".(*Gray).SetGray0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageTtype.func(*"".Gray, "".Rectangle) "".Image&"".(*Gray).SubImage&"".(*Gray).SubImage8go.string.hdr."image.Gray16" 0go.string."image.Gray16"0go.string."image.Gray16" image.Gray16,go.string.hdr."Gray16" $go.string."Gray16"$go.string."Gray16"Gray16type."".Gray16@jn~% 0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."image.Gray16"ptype.*"".Gray16"runtime.zerovaluetype."".Gray16&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Gray16,go.string.hdr."Gray16""go.importpath."".type."".Gray16:go.string.hdr."*image.Gray16" 2go.string."*image.Gray16"2go.string."*image.Gray16" *image.Gray16rgo.string.hdr."func(*image.Gray16, int, int) color.Color" )jgo.string."func(*image.Gray16, int, int) color.Color"jgo.string."func(*image.Gray16, int, int) color.Color"`Tfunc(*image.Gray16, int, int) color.Colorbtype.func(*"".Gray16, int, int) image/color.ColorI{30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Gray16, int, int) color.Color"ptgo.weak.type.*func(*"".Gray16, int, int) image/color.Color"runtime.zerovaluebtype.func(*"".Gray16, int, int) image/color.Colorbtype.func(*"".Gray16, int, int) image/color.Colortype.*"".Gray16type.inttype.int,type.image/color.Colorgo.typelink.func(*image.Gray16, int, int) color.Color func(*"".Gray16, int, int) image/color.Colorbtype.func(*"".Gray16, int, int) image/color.Colorfgo.string.hdr."func(*image.Gray16) image.Rectangle" #^go.string."func(*image.Gray16) image.Rectangle"^go.string."func(*image.Gray16) image.Rectangle"PHfunc(*image.Gray16) image.RectangleDtype.func(*"".Gray16) "".Rectangle!30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Gray16) image.Rectangle"pVgo.weak.type.*func(*"".Gray16) "".Rectangle"runtime.zerovalueDtype.func(*"".Gray16) "".RectangleDtype.func(*"".Gray16) "".Rectangletype.*"".Gray16"type."".Rectanglego.typelink.func(*image.Gray16) image.Rectangle func(*"".Gray16) "".RectangleDtype.func(*"".Gray16) "".Rectangle^go.string.hdr."func(*image.Gray16) color.Model" Vgo.string."func(*image.Gray16) color.Model"Vgo.string."func(*image.Gray16) color.Model"@@func(*image.Gray16) color.ModelNtype.func(*"".Gray16) image/color.Model<O30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.Gray16) color.Model"p`go.weak.type.*func(*"".Gray16) image/color.Model"runtime.zerovalueNtype.func(*"".Gray16) image/color.ModelNtype.func(*"".Gray16) image/color.Modeltype.*"".Gray16,type.image/color.Modelgo.typelink.func(*image.Gray16) color.Model func(*"".Gray16) image/color.ModelNtype.func(*"".Gray16) image/color.Modeltgo.string.hdr."func(*image.Gray16, int, int) color.Gray16" *lgo.string."func(*image.Gray16, int, int) color.Gray16"lgo.string."func(*image.Gray16, int, int) color.Gray16"`Vfunc(*image.Gray16, int, int) color.Gray16dtype.func(*"".Gray16, int, int) image/color.Gray16K30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Gray16, int, int) color.Gray16"pvgo.weak.type.*func(*"".Gray16, int, int) image/color.Gray16"runtime.zerovaluedtype.func(*"".Gray16, int, int) image/color.Gray16dtype.func(*"".Gray16, int, int) image/color.Gray16type.*"".Gray16type.inttype.int.type.image/color.Gray16go.typelink.func(*image.Gray16, int, int) color.Gray16 func(*"".Gray16, int, int) image/color.Gray16dtype.func(*"".Gray16, int, int) image/color.Gray16Pgo.string.hdr."func(*image.Gray16) bool" Hgo.string."func(*image.Gray16) bool"Hgo.string."func(*image.Gray16) bool"@2func(*image.Gray16) bool4type.func(*"".Gray16) boolw30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*image.Gray16) bool"pFgo.weak.type.*func(*"".Gray16) bool"runtime.zerovalue4type.func(*"".Gray16) bool4type.func(*"".Gray16) booltype.*"".Gray16type.booltgo.typelink.func(*image.Gray16) bool func(*"".Gray16) bool4type.func(*"".Gray16) boolbgo.string.hdr."func(*image.Gray16, int, int) int" !Zgo.string."func(*image.Gray16, int, int) int"Zgo.string."func(*image.Gray16, int, int) int"PDfunc(*image.Gray16, int, int) intFtype.func(*"".Gray16, int, int) intI30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Gray16, int, int) int"pXgo.weak.type.*func(*"".Gray16, int, int) int"runtime.zerovalueFtype.func(*"".Gray16, int, int) intFtype.func(*"".Gray16, int, int) inttype.*"".Gray16type.inttype.inttype.intgo.typelink.func(*image.Gray16, int, int) int func(*"".Gray16, int, int) intFtype.func(*"".Gray16, int, int) inttgo.string.hdr."func(*image.Gray16, int, int, color.Color)" *lgo.string."func(*image.Gray16, int, int, color.Color)"lgo.string."func(*image.Gray16, int, int, color.Color)"`Vfunc(*image.Gray16, int, int, color.Color)dtype.func(*"".Gray16, int, int, image/color.Color)H30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Gray16, int, int, color.Color)"pvgo.weak.type.*func(*"".Gray16, int, int, image/color.Color)"runtime.zerovaluedtype.func(*"".Gray16, int, int, image/color.Color)dtype.func(*"".Gray16, int, int, image/color.Color)type.*"".Gray16type.inttype.int,type.image/color.Colorgo.typelink.func(*image.Gray16, int, int, color.Color) func(*"".Gray16, int, int, image/color.Color)dtype.func(*"".Gray16, int, int, image/color.Color)vgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)" +ngo.string."func(*image.Gray16, int, int, color.Gray16)"ngo.string."func(*image.Gray16, int, int, color.Gray16)"`Xfunc(*image.Gray16, int, int, color.Gray16)ftype.func(*"".Gray16, int, int, image/color.Gray16)]830 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Gray16, int, int, color.Gray16)"pxgo.weak.type.*func(*"".Gray16, int, int, image/color.Gray16)"runtime.zerovalueftype.func(*"".Gray16, int, int, image/color.Gray16)ftype.func(*"".Gray16, int, int, image/color.Gray16)type.*"".Gray16type.inttype.int.type.image/color.Gray16go.typelink.func(*image.Gray16, int, int, color.Gray16) func(*"".Gray16, int, int, image/color.Gray16)ftype.func(*"".Gray16, int, int, image/color.Gray16)go.string.hdr."func(*image.Gray16, image.Rectangle) image.Image" 0xgo.string."func(*image.Gray16, image.Rectangle) image.Image"xgo.string."func(*image.Gray16, image.Rectangle) image.Image"pbfunc(*image.Gray16, image.Rectangle) image.ImageXtype.func(*"".Gray16, "".Rectangle) "".Image<'k)30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Gray16, image.Rectangle) image.Image"pjgo.weak.type.*func(*"".Gray16, "".Rectangle) "".Image"runtime.zerovalueXtype.func(*"".Gray16, "".Rectangle) "".ImageXtype.func(*"".Gray16, "".Rectangle) "".Imagetype.*"".Gray16"type."".Rectangletype."".Imagego.typelink.func(*image.Gray16, image.Rectangle) image.Image func(*"".Gray16, "".Rectangle) "".ImageXtype.func(*"".Gray16, "".Rectangle) "".Image0go.string.hdr."Gray16At" (go.string."Gray16At"(go.string."Gray16At" Gray16AtVgo.string.hdr."func(int, int) color.Gray16" Ngo.string."func(int, int) color.Gray16"Ngo.string."func(int, int) color.Gray16"@8func(int, int) color.Gray16Ltype.func(int, int) image/color.Gray16X}830 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int) color.Gray16"p^go.weak.type.*func(int, int) image/color.Gray16"runtime.zerovalueLtype.func(int, int) image/color.Gray16Ltype.func(int, int) image/color.Gray16type.inttype.int.type.image/color.Gray16go.typelink.func(int, int) color.Gray16 func(int, int) image/color.Gray16Ltype.func(int, int) image/color.Gray162go.string.hdr."SetGray16" *go.string."SetGray16"*go.string."SetGray16" SetGray16Xgo.string.hdr."func(int, int, color.Gray16)" Pgo.string."func(int, int, color.Gray16)"Pgo.string."func(int, int, color.Gray16)"@:func(int, int, color.Gray16)Ntype.func(int, int, image/color.Gray16)SL(30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(int, int, color.Gray16)"p`go.weak.type.*func(int, int, image/color.Gray16)"runtime.zerovalueNtype.func(int, int, image/color.Gray16)Ntype.func(int, int, image/color.Gray16)type.inttype.int.type.image/color.Gray16go.typelink.func(int, int, color.Gray16) func(int, int, image/color.Gray16)Ntype.func(int, int, image/color.Gray16)type.*"".Gray166 j0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.Gray16"p0go.weak.type.**"".Gray16"runtime.zerovaluetype."".Gray16`type.*"".Gray16type.*"".Gray16$go.string.hdr."At"Jtype.func(int, int) image/color.Colorbtype.func(*"".Gray16, int, int) image/color.Color"".(*Gray16).At"".(*Gray16).At,go.string.hdr."Bounds"0type.func() "".RectangleDtype.func(*"".Gray16) "".Rectangle&"".(*Gray16).Bounds&"".(*Gray16).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelNtype.func(*"".Gray16) image/color.Model."".(*Gray16).ColorModel."".(*Gray16).ColorModel0go.string.hdr."Gray16At"Ltype.func(int, int) image/color.Gray16dtype.func(*"".Gray16, int, int) image/color.Gray16*"".(*Gray16).Gray16At*"".(*Gray16).Gray16At,go.string.hdr."Opaque" type.func() bool4type.func(*"".Gray16) bool&"".(*Gray16).Opaque&"".(*Gray16).Opaque2go.string.hdr."PixOffset".type.func(int, int) intFtype.func(*"".Gray16, int, int) int,"".(*Gray16).PixOffset,"".(*Gray16).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)dtype.func(*"".Gray16, int, int, image/color.Color) "".(*Gray16).Set "".(*Gray16).Set2go.string.hdr."SetGray16"Ntype.func(int, int, image/color.Gray16)ftype.func(*"".Gray16, int, int, image/color.Gray16),"".(*Gray16).SetGray16,"".(*Gray16).SetGray160go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageXtype.func(*"".Gray16, "".Rectangle) "".Image*"".(*Gray16).SubImage*"".(*Gray16).SubImage4go.string.hdr."image.CMYK" 2114 ,go.string."image.CMYK",go.string."image.CMYK" image.CMYK(go.string.hdr."CMYK" go.string."CMYK" go.string."CMYK" 2115 CMYKtype."".CMYK@3v 0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.CMYK"ptype.*"".CMYK"runtime.zerovaluetype."".CMYK&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".CMYK(go.string.hdr."CMYK""go.importpath."".type."".CMYK6go.string.hdr."*image.CMYK" .go.string."*image.CMYK".go.string."*image.CMYK" *image.CMYKngo.string.hdr."func(*image.CMYK, int, int) color.Color" 'fgo.string."func(*image.CMYK, int, int) color.Color"fgo.string."func(*image.CMYK, int, int) color.Color"PPfunc(*image.CMYK, int, int) color.Color^type.func(*"".CMYK, int, int) image/color.Color30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.CMYK, int, int) color.Color"ppgo.weak.type.*func(*"".CMYK, int, int) image/color.Color"runtime.zerovalue^type.func(*"".CMYK, int, int) image/color.Color^type.func(*"".CMYK, int, int) image/color.Colortype.*"".CMYKtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.CMYK, int, int) color.Color func(*"".CMYK, int, int) image/color.Color^type.func(*"".CMYK, int, int) image/color.Colorbgo.string.hdr."func(*image.CMYK) image.Rectangle" !Zgo.string."func(*image.CMYK) image.Rectangle"Zgo.string."func(*image.CMYK) image.Rectangle"PDfunc(*image.CMYK) image.Rectangle@type.func(*"".CMYK) "".Rectangle|U@30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.CMYK) image.Rectangle"pRgo.weak.type.*func(*"".CMYK) "".Rectangle"runtime.zerovalue@type.func(*"".CMYK) "".Rectangle@type.func(*"".CMYK) "".Rectangletype.*"".CMYK"type."".Rectanglego.typelink.func(*image.CMYK) image.Rectangle func(*"".CMYK) "".Rectangle@type.func(*"".CMYK) "".Rectanglelgo.string.hdr."func(*image.CMYK, int, int) color.CMYK" &dgo.string."func(*image.CMYK, int, int) color.CMYK"dgo.string."func(*image.CMYK, int, int) color.CMYK"PNfunc(*image.CMYK, int, int) color.CMYK\type.func(*"".CMYK, int, int) image/color.CMYK+30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.CMYK, int, int) color.CMYK"pngo.weak.type.*func(*"".CMYK, int, int) image/color.CMYK"runtime.zerovalue\type.func(*"".CMYK, int, int) image/color.CMYK\type.func(*"".CMYK, int, int) image/color.CMYKtype.*"".CMYKtype.inttype.int*type.image/color.CMYKgo.typelink.func(*image.CMYK, int, int) color.CMYK func(*"".CMYK, int, int) image/color.CMYK\type.func(*"".CMYK, int, int) image/color.CMYKZgo.string.hdr."func(*image.CMYK) color.Model" Rgo.string."func(*image.CMYK) color.Model"Rgo.string."func(*image.CMYK) color.Model"@<func(*image.CMYK) color.ModelJtype.func(*"".CMYK) image/color.ModelU30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.CMYK) color.Model"p\go.weak.type.*func(*"".CMYK) image/color.Model"runtime.zerovalueJtype.func(*"".CMYK) image/color.ModelJtype.func(*"".CMYK) image/color.Modeltype.*"".CMYK,type.image/color.Modelgo.typelink.func(*image.CMYK) color.Model func(*"".CMYK) image/color.ModelJtype.func(*"".CMYK) image/color.ModelLgo.string.hdr."func(*image.CMYK) bool" Dgo.string."func(*image.CMYK) bool"Dgo.string."func(*image.CMYK) bool"0.func(*image.CMYK) bool0type.func(*"".CMYK) bool-YE30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func(*image.CMYK) bool"pBgo.weak.type.*func(*"".CMYK) bool"runtime.zerovalue0type.func(*"".CMYK) bool0type.func(*"".CMYK) booltype.*"".CMYKtype.boollgo.typelink.func(*image.CMYK) bool func(*"".CMYK) bool0type.func(*"".CMYK) bool^go.string.hdr."func(*image.CMYK, int, int) int" Vgo.string."func(*image.CMYK, int, int) int"Vgo.string."func(*image.CMYK, int, int) int"@@func(*image.CMYK, int, int) intBtype.func(*"".CMYK, int, int) int*30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*image.CMYK, int, int) int"pTgo.weak.type.*func(*"".CMYK, int, int) int"runtime.zerovalueBtype.func(*"".CMYK, int, int) intBtype.func(*"".CMYK, int, int) inttype.*"".CMYKtype.inttype.inttype.intgo.typelink.func(*image.CMYK, int, int) int func(*"".CMYK, int, int) intBtype.func(*"".CMYK, int, int) intpgo.string.hdr."func(*image.CMYK, int, int, color.Color)" (hgo.string."func(*image.CMYK, int, int, color.Color)"hgo.string."func(*image.CMYK, int, int, color.Color)"`Rfunc(*image.CMYK, int, int, color.Color)`type.func(*"".CMYK, int, int, image/color.Color)_30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.CMYK, int, int, color.Color)"prgo.weak.type.*func(*"".CMYK, int, int, image/color.Color)"runtime.zerovalue`type.func(*"".CMYK, int, int, image/color.Color)`type.func(*"".CMYK, int, int, image/color.Color)type.*"".CMYKtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.CMYK, int, int, color.Color) func(*"".CMYK, int, int, image/color.Color)`type.func(*"".CMYK, int, int, image/color.Color)ngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)" 'fgo.string."func(*image.CMYK, int, int, color.CMYK)"fgo.string."func(*image.CMYK, int, int, color.CMYK)"PPfunc(*image.CMYK, int, int, color.CMYK)^type.func(*"".CMYK, int, int, image/color.CMYK)j830 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.CMYK, int, int, color.CMYK)"ppgo.weak.type.*func(*"".CMYK, int, int, image/color.CMYK)"runtime.zerovalue^type.func(*"".CMYK, int, int, image/color.CMYK)^type.func(*"".CMYK, int, int, image/color.CMYK)type.*"".CMYKtype.inttype.int*type.image/color.CMYKgo.typelink.func(*image.CMYK, int, int, color.CMYK) func(*"".CMYK, int, int, image/color.CMYK)^type.func(*"".CMYK, int, int, image/color.CMYK)|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image" .tgo.string."func(*image.CMYK, image.Rectangle) image.Image"tgo.string."func(*image.CMYK, image.Rectangle) image.Image"`^func(*image.CMYK, image.Rectangle) image.ImageTtype.func(*"".CMYK, "".Rectangle) "".Image}i30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*image.CMYK, image.Rectangle) image.Image"pfgo.weak.type.*func(*"".CMYK, "".Rectangle) "".Image"runtime.zerovalueTtype.func(*"".CMYK, "".Rectangle) "".ImageTtype.func(*"".CMYK, "".Rectangle) "".Imagetype.*"".CMYK"type."".Rectangletype."".Imagego.typelink.func(*image.CMYK, image.Rectangle) image.Image func(*"".CMYK, "".Rectangle) "".ImageTtype.func(*"".CMYK, "".Rectangle) "".Image,go.string.hdr."CMYKAt" $go.string."CMYKAt"$go.string."CMYKAt"CMYKAtRgo.string.hdr."func(int, int) color.CMYK" Jgo.string."func(int, int) color.CMYK"Jgo.string."func(int, int) color.CMYK"@4func(int, int) color.CMYKHtype.func(int, int) image/color.CMYK30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(int, int) color.CMYK"pZgo.weak.type.*func(int, int) image/color.CMYK"runtime.zerovalueHtype.func(int, int) image/color.CMYKHtype.func(int, int) image/color.CMYKtype.inttype.int*type.image/color.CMYKgo.typelink.func(int, int) color.CMYK func(int, int) image/color.CMYKHtype.func(int, int) image/color.CMYK.go.string.hdr."SetCMYK" &go.string."SetCMYK"&go.string."SetCMYK"SetCMYKTgo.string.hdr."func(int, int, color.CMYK)" Lgo.string."func(int, int, color.CMYK)"Lgo.string."func(int, int, color.CMYK)"@6func(int, int, color.CMYK)Jtype.func(int, int, image/color.CMYK)_30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int, color.CMYK)"p\go.weak.type.*func(int, int, image/color.CMYK)"runtime.zerovalueJtype.func(int, int, image/color.CMYK)Jtype.func(int, int, image/color.CMYK)type.inttype.int*type.image/color.CMYKgo.typelink.func(int, int, color.CMYK) func(int, int, image/color.CMYK)Jtype.func(int, int, image/color.CMYK)type.*"".CMYK`n6 j0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*image.CMYK"p,go.weak.type.**"".CMYK"runtime.zerovaluetype."".CMYK`type.*"".CMYKtype.*"".CMYK$go.string.hdr."At"Jtype.func(int, int) image/color.Color^type.func(*"".CMYK, int, int) image/color.Color"".(*CMYK).At"".(*CMYK).At,go.string.hdr."Bounds"0type.func() "".Rectangle@type.func(*"".CMYK) "".Rectangle""".(*CMYK).Bounds""".(*CMYK).Bounds,go.string.hdr."CMYKAt"Htype.func(int, int) image/color.CMYK\type.func(*"".CMYK, int, int) image/color.CMYK""".(*CMYK).CMYKAt""".(*CMYK).CMYKAt4go.string.hdr."ColorModel":type.func() image/color.ModelJtype.func(*"".CMYK) image/color.Model*"".(*CMYK).ColorModel*"".(*CMYK).ColorModel,go.string.hdr."Opaque" type.func() bool0type.func(*"".CMYK) bool""".(*CMYK).Opaque""".(*CMYK).Opaque2go.string.hdr."PixOffset".type.func(int, int) intBtype.func(*"".CMYK, int, int) int("".(*CMYK).PixOffset("".(*CMYK).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)`type.func(*"".CMYK, int, int, image/color.Color)"".(*CMYK).Set"".(*CMYK).Set.go.string.hdr."SetCMYK"Jtype.func(int, int, image/color.CMYK)^type.func(*"".CMYK, int, int, image/color.CMYK)$"".(*CMYK).SetCMYK$"".(*CMYK).SetCMYK0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageTtype.func(*"".CMYK, "".Rectangle) "".Image&"".(*CMYK).SubImage&"".(*CMYK).SubImage&runtime.gcbits.0101<go.string.hdr."image.Paletted" 4go.string."image.Paletted"4go.string."image.Paletted" image.Paletted.go.string.hdr."Palette" &go.string."Palette"&go.string."Palette"Palette0go.string.hdr."Paletted" (go.string."Paletted"(go.string."Paletted" Paletted type."".PalettedXHL` @$0 runtime.algarray@&runtime.gcbits.0101P<go.string.hdr."image.Paletted"p"type.*"".Paletted"runtime.zerovalue type."".Paletted&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle.go.string.hdr."Palette"0type.image/color.Palette` type."".Paletted0go.string.hdr."Paletted""go.importpath."". type."".Paletted>go.string.hdr."*image.Paletted" 6go.string."*image.Paletted"6go.string."*image.Paletted" *image.Palettedvgo.string.hdr."func(*image.Paletted, int, int) color.Color" +ngo.string."func(*image.Paletted, int, int) color.Color"ngo.string."func(*image.Paletted, int, int) color.Color"`Xfunc(*image.Paletted, int, int) color.Colorftype.func(*"".Paletted, int, int) image/color.Color_|r30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Paletted, int, int) color.Color"pxgo.weak.type.*func(*"".Paletted, int, int) image/color.Color"runtime.zerovalueftype.func(*"".Paletted, int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Color"type.*"".Palettedtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Paletted, int, int) color.Color func(*"".Paletted, int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Colorjgo.string.hdr."func(*image.Paletted) image.Rectangle" %bgo.string."func(*image.Paletted) image.Rectangle"bgo.string."func(*image.Paletted) image.Rectangle"PLfunc(*image.Paletted) image.RectangleHtype.func(*"".Paletted) "".RectanglebO30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted) image.Rectangle"pZgo.weak.type.*func(*"".Paletted) "".Rectangle"runtime.zerovalueHtype.func(*"".Paletted) "".RectangleHtype.func(*"".Paletted) "".Rectangle"type.*"".Paletted"type."".Rectanglego.typelink.func(*image.Paletted) image.Rectangle func(*"".Paletted) "".RectangleHtype.func(*"".Paletted) "".Rectanglejgo.string.hdr."func(*image.Paletted, int, int) uint8" %bgo.string."func(*image.Paletted, int, int) uint8"bgo.string."func(*image.Paletted, int, int) uint8"PLfunc(*image.Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8S)30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted, int, int) uint8"p`go.weak.type.*func(*"".Paletted, int, int) uint8"runtime.zerovalueNtype.func(*"".Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8"type.*"".Palettedtype.inttype.inttype.uint8go.typelink.func(*image.Paletted, int, int) uint8 func(*"".Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8bgo.string.hdr."func(*image.Paletted) color.Model" !Zgo.string."func(*image.Paletted) color.Model"Zgo.string."func(*image.Paletted) color.Model"PDfunc(*image.Paletted) color.ModelRtype.func(*"".Paletted) image/color.Model30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Paletted) color.Model"pdgo.weak.type.*func(*"".Paletted) image/color.Model"runtime.zerovalueRtype.func(*"".Paletted) image/color.ModelRtype.func(*"".Paletted) image/color.Model"type.*"".Paletted,type.image/color.Modelgo.typelink.func(*image.Paletted) color.Model func(*"".Paletted) image/color.ModelRtype.func(*"".Paletted) image/color.ModelTgo.string.hdr."func(*image.Paletted) bool" Lgo.string."func(*image.Paletted) bool"Lgo.string."func(*image.Paletted) bool"@6func(*image.Paletted) bool8type.func(*"".Paletted) boolmk30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*image.Paletted) bool"pJgo.weak.type.*func(*"".Paletted) bool"runtime.zerovalue8type.func(*"".Paletted) bool8type.func(*"".Paletted) bool"type.*"".Palettedtype.bool|go.typelink.func(*image.Paletted) bool func(*"".Paletted) bool8type.func(*"".Paletted) boolfgo.string.hdr."func(*image.Paletted, int, int) int" #^go.string."func(*image.Paletted, int, int) int"^go.string."func(*image.Paletted, int, int) int"PHfunc(*image.Paletted, int, int) intJtype.func(*"".Paletted, int, int) intKL30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Paletted, int, int) int"p\go.weak.type.*func(*"".Paletted, int, int) int"runtime.zerovalueJtype.func(*"".Paletted, int, int) intJtype.func(*"".Paletted, int, int) int"type.*"".Palettedtype.inttype.inttype.intgo.typelink.func(*image.Paletted, int, int) int func(*"".Paletted, int, int) intJtype.func(*"".Paletted, int, int) intxgo.string.hdr."func(*image.Paletted, int, int, color.Color)" ,pgo.string."func(*image.Paletted, int, int, color.Color)"pgo.string."func(*image.Paletted, int, int, color.Color)"`Zfunc(*image.Paletted, int, int, color.Color)htype.func(*"".Paletted, int, int, image/color.Color)q30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Paletted, int, int, color.Color)"pzgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)"runtime.zerovaluehtype.func(*"".Paletted, int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)"type.*"".Palettedtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Paletted, int, int, color.Color) func(*"".Paletted, int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)lgo.string.hdr."func(*image.Paletted, int, int, uint8)" &dgo.string."func(*image.Paletted, int, int, uint8)"dgo.string."func(*image.Paletted, int, int, uint8)"PNfunc(*image.Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Paletted, int, int, uint8)"pbgo.weak.type.*func(*"".Paletted, int, int, uint8)"runtime.zerovaluePtype.func(*"".Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)"type.*"".Palettedtype.inttype.inttype.uint8go.typelink.func(*image.Paletted, int, int, uint8) func(*"".Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image" 2|go.string."func(*image.Paletted, image.Rectangle) image.Image"|go.string."func(*image.Paletted, image.Rectangle) image.Image"pffunc(*image.Paletted, image.Rectangle) image.Image\type.func(*"".Paletted, "".Rectangle) "".Imagem30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"pngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Image"runtime.zerovalue\type.func(*"".Paletted, "".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image"type.*"".Paletted"type."".Rectangletype."".Imagego.typelink.func(*image.Paletted, image.Rectangle) image.Image func(*"".Paletted, "".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image8go.string.hdr."ColorIndexAt" 0go.string."ColorIndexAt"0go.string."ColorIndexAt" ColorIndexAtHgo.string.hdr."func(int, int) uint8" @go.string."func(int, int) uint8"@go.string."func(int, int) uint8"0*func(int, int) uint82type.func(int, int) uint8Jc_30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(int, int) uint8"pDgo.weak.type.*func(int, int) uint8"runtime.zerovalue2type.func(int, int) uint82type.func(int, int) uint8type.inttype.inttype.uint8jgo.typelink.func(int, int) uint8 func(int, int) uint82type.func(int, int) uint8:go.string.hdr."SetColorIndex" 2go.string."SetColorIndex"2go.string."SetColorIndex" SetColorIndexJgo.string.hdr."func(int, int, uint8)" Bgo.string."func(int, int, uint8)"Bgo.string."func(int, int, uint8)"0,func(int, int, uint8)4type.func(int, int, uint8)l30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(int, int, uint8)"pFgo.weak.type.*func(int, int, uint8)"runtime.zerovalue4type.func(int, int, uint8)4type.func(int, int, uint8)type.inttype.inttype.uint8ngo.typelink.func(int, int, uint8) func(int, int, uint8)4type.func(int, int, uint8)"type.*"".PalettedNY6 j0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*image.Paletted"p4go.weak.type.**"".Paletted"runtime.zerovalue type."".Paletted`"type.*"".Paletted"type.*"".Paletted$go.string.hdr."At"Jtype.func(int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Color""".(*Paletted).At""".(*Paletted).At,go.string.hdr."Bounds"0type.func() "".RectangleHtype.func(*"".Paletted) "".Rectangle*"".(*Paletted).Bounds*"".(*Paletted).Bounds8go.string.hdr."ColorIndexAt"2type.func(int, int) uint8Ntype.func(*"".Paletted, int, int) uint86"".(*Paletted).ColorIndexAt6"".(*Paletted).ColorIndexAt4go.string.hdr."ColorModel":type.func() image/color.ModelRtype.func(*"".Paletted) image/color.Model2"".(*Paletted).ColorModel2"".(*Paletted).ColorModel,go.string.hdr."Opaque" type.func() bool8type.func(*"".Paletted) bool*"".(*Paletted).Opaque*"".(*Paletted).Opaque2go.string.hdr."PixOffset".type.func(int, int) intJtype.func(*"".Paletted, int, int) int0"".(*Paletted).PixOffset0"".(*Paletted).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)$"".(*Paletted).Set$"".(*Paletted).Set:go.string.hdr."SetColorIndex"4type.func(int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)8"".(*Paletted).SetColorIndex8"".(*Paletted).SetColorIndex0go.string.hdr."SubImage"@type.func("".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image."".(*Paletted).SubImage."".(*Paletted).SubImage,go.string.hdr."[]bool" $go.string."[]bool"$go.string."[]bool"[]booltype.[]bool0 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."[]bool"p(go.weak.type.*[]bool"runtime.zerovaluetype.bool2go.typelink.[]bool []booltype.[]bool"type..hashfunc256 ,runtime.memhash_varlentype..eqfunc256 .runtime.memequal_varlentype..alg256 "type..hashfunc256type..eqfunc2562go.string.hdr."[256]bool" *go.string."[256]bool"*go.string."[256]bool" [256]booltype.[256]bool'k0type..alg256@runtime.gcbits.P2go.string.hdr."[256]bool"p.go.weak.type.*[256]bool"runtime.zerovaluetype.booltype.[]bool>go.typelink.[256]bool [256]booltype.[256]bool:go.string.hdr."image.Uniform" 2go.string."image.Uniform"2go.string."image.Uniform" image.Uniform"go.string.hdr."C" go.string."C"go.string."C"C.go.string.hdr."Uniform" &go.string."Uniform"&go.string."Uniform"Uniformtype."".Uniform=0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."image.Uniform"p type.*"".Uniform"runtime.zerovaluetype."".Uniform"go.string.hdr."C",type.image/color.Color`type."".Uniform.go.string.hdr."Uniform""go.importpath."".type."".Uniform<go.string.hdr."*image.Uniform" 4go.string."*image.Uniform"4go.string."*image.Uniform" *image.Uniformtgo.string.hdr."func(*image.Uniform, int, int) color.Color" *lgo.string."func(*image.Uniform, int, int) color.Color"lgo.string."func(*image.Uniform, int, int) color.Color"`Vfunc(*image.Uniform, int, int) color.Colordtype.func(*"".Uniform, int, int) image/color.Colorp30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(*image.Uniform, int, int) color.Color"pvgo.weak.type.*func(*"".Uniform, int, int) image/color.Color"runtime.zerovaluedtype.func(*"".Uniform, int, int) image/color.Colordtype.func(*"".Uniform, int, int) image/color.Color type.*"".Uniformtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Uniform, int, int) color.Color func(*"".Uniform, int, int) image/color.Colordtype.func(*"".Uniform, int, int) image/color.Colorhgo.string.hdr."func(*image.Uniform) image.Rectangle" $`go.string."func(*image.Uniform) image.Rectangle"`go.string."func(*image.Uniform) image.Rectangle"PJfunc(*image.Uniform) image.RectangleFtype.func(*"".Uniform) "".Rectangle2[|30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Uniform) image.Rectangle"pXgo.weak.type.*func(*"".Uniform) "".Rectangle"runtime.zerovalueFtype.func(*"".Uniform) "".RectangleFtype.func(*"".Uniform) "".Rectangle type.*"".Uniform"type."".Rectanglego.typelink.func(*image.Uniform) image.Rectangle func(*"".Uniform) "".RectangleFtype.func(*"".Uniform) "".Rectangle`go.string.hdr."func(*image.Uniform) color.Model" Xgo.string."func(*image.Uniform) color.Model"Xgo.string."func(*image.Uniform) color.Model"PBfunc(*image.Uniform) color.ModelPtype.func(*"".Uniform) image/color.Model"30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Uniform) color.Model"pbgo.weak.type.*func(*"".Uniform) image/color.Model"runtime.zerovaluePtype.func(*"".Uniform) image/color.ModelPtype.func(*"".Uniform) image/color.Model type.*"".Uniform,type.image/color.Modelgo.typelink.func(*image.Uniform) color.Model func(*"".Uniform) image/color.ModelPtype.func(*"".Uniform) image/color.Modelzgo.string.hdr."func(*image.Uniform, color.Color) color.Color" -rgo.string."func(*image.Uniform, color.Color) color.Color"rgo.string."func(*image.Uniform, color.Color) color.Color"`\func(*image.Uniform, color.Color) color.Colorvtype.func(*"".Uniform, image/color.Color) image/color.Color@A230 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(*image.Uniform, color.Color) color.Color"pgo.weak.type.*func(*"".Uniform, image/color.Color) image/color.Color"runtime.zerovaluevtype.func(*"".Uniform, image/color.Color) image/color.Colorvtype.func(*"".Uniform, image/color.Color) image/color.Color type.*"".Uniform,type.image/color.Color,type.image/color.Colorgo.typelink.func(*image.Uniform, color.Color) color.Color func(*"".Uniform, image/color.Color) image/color.Colorvtype.func(*"".Uniform, image/color.Color) image/color.ColorRgo.string.hdr."func(*image.Uniform) bool" Jgo.string."func(*image.Uniform) bool"Jgo.string."func(*image.Uniform) bool"@4func(*image.Uniform) bool6type.func(*"".Uniform) bool?30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Uniform) bool"pHgo.weak.type.*func(*"".Uniform) bool"runtime.zerovalue6type.func(*"".Uniform) bool6type.func(*"".Uniform) bool type.*"".Uniformtype.boolxgo.typelink.func(*image.Uniform) bool func(*"".Uniform) bool6type.func(*"".Uniform) boolgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)" 5go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"plfunc(*image.Uniform) (uint32, uint32, uint32, uint32)ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)NV30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Uniform) (uint32, uint32, uint32, uint32)"pgo.weak.type.*func(*"".Uniform) (uint32, uint32, uint32, uint32)"runtime.zerovaluentype.func(*"".Uniform) (uint32, uint32, uint32, uint32)ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32) type.*"".Uniformtype.uint32type.uint32type.uint32type.uint32go.typelink.func(*image.Uniform) (uint32, uint32, uint32, uint32) func(*"".Uniform) (uint32, uint32, uint32, uint32)ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32).go.string.hdr."Convert" &go.string."Convert"&go.string."Convert"ConvertZgo.string.hdr."func(color.Color) color.Color" Rgo.string."func(color.Color) color.Color"Rgo.string."func(color.Color) color.Color"@<func(color.Color) color.Color\type.func(image/color.Color) image/color.Colorr30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(color.Color) color.Color"pngo.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.Colorgo.typelink.func(color.Color) color.Color func(image/color.Color) image/color.Color\type.func(image/color.Color) image/color.Colorngo.string.hdr."func() (uint32, uint32, uint32, uint32)" 'fgo.string."func() (uint32, uint32, uint32, uint32)"fgo.string."func() (uint32, uint32, uint32, uint32)"PPfunc() (uint32, uint32, uint32, uint32)Xtype.func() (uint32, uint32, uint32, uint32)30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func() (uint32, uint32, uint32, uint32)"pjgo.weak.type.*func() (uint32, uint32, uint32, uint32)"runtime.zerovalueXtype.func() (uint32, uint32, uint32, uint32)Xtype.func() (uint32, uint32, uint32, uint32)type.uint32type.uint32type.uint32type.uint32go.typelink.func() (uint32, uint32, uint32, uint32) func() (uint32, uint32, uint32, uint32)Xtype.func() (uint32, uint32, uint32, uint32) type.*"".UniformQ f6L0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*image.Uniform"p2go.weak.type.**"".Uniform"runtime.zerovaluetype."".Uniform` type.*"".Uniform type.*"".Uniform$go.string.hdr."At"Jtype.func(int, int) image/color.Colordtype.func(*"".Uniform, int, int) image/color.Color "".(*Uniform).At "".(*Uniform).At,go.string.hdr."Bounds"0type.func() "".RectangleFtype.func(*"".Uniform) "".Rectangle("".(*Uniform).Bounds("".(*Uniform).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelPtype.func(*"".Uniform) image/color.Model0"".(*Uniform).ColorModel0"".(*Uniform).ColorModel.go.string.hdr."Convert"\type.func(image/color.Color) image/color.Colorvtype.func(*"".Uniform, image/color.Color) image/color.Color*"".(*Uniform).Convert*"".(*Uniform).Convert,go.string.hdr."Opaque" type.func() bool6type.func(*"".Uniform) bool("".(*Uniform).Opaque("".(*Uniform).Opaque(go.string.hdr."RGBA"Xtype.func() (uint32, uint32, uint32, uint32)ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)$"".(*Uniform).RGBA$"".(*Uniform).RGBATgo.string.hdr."*image.YCbCrSubsampleRatio" Lgo.string."*image.YCbCrSubsampleRatio"Lgo.string."*image.YCbCrSubsampleRatio"@6*image.YCbCrSubsampleRatioFgo.string.hdr."YCbCrSubsampleRatio" >go.string."YCbCrSubsampleRatio">go.string."YCbCrSubsampleRatio"0(YCbCrSubsampleRatioTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2ngo.string.hdr."func(*image.YCbCrSubsampleRatio) string" 'fgo.string."func(*image.YCbCrSubsampleRatio) string"fgo.string."func(*image.YCbCrSubsampleRatio) string"PPfunc(*image.YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) stringu!Ad30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"pdgo.weak.type.*func(*"".YCbCrSubsampleRatio) string"runtime.zerovalueRtype.func(*"".YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) string8type.*"".YCbCrSubsampleRatiotype.stringgo.typelink.func(*image.YCbCrSubsampleRatio) string func(*"".YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) string8type.*"".YCbCrSubsampleRatio&60 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."*image.YCbCrSubsampleRatio"pJgo.weak.type.**"".YCbCrSubsampleRatio"runtime.zerovalue6type."".YCbCrSubsampleRatio`8type.*"".YCbCrSubsampleRatio8type.*"".YCbCrSubsampleRatio,go.string.hdr."String"$type.func() stringRtype.func(*"".YCbCrSubsampleRatio) string@"".(*YCbCrSubsampleRatio).String@"".(*YCbCrSubsampleRatio).StringRgo.string.hdr."image.YCbCrSubsampleRatio" Jgo.string."image.YCbCrSubsampleRatio"Jgo.string."image.YCbCrSubsampleRatio"@4image.YCbCrSubsampleRatiolgo.string.hdr."func(image.YCbCrSubsampleRatio) string" &dgo.string."func(image.YCbCrSubsampleRatio) string"dgo.string."func(image.YCbCrSubsampleRatio) string"PNfunc(image.YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) stringO30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(image.YCbCrSubsampleRatio) string"pbgo.weak.type.*func("".YCbCrSubsampleRatio) string"runtime.zerovaluePtype.func("".YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) string6type."".YCbCrSubsampleRatiotype.stringgo.typelink.func(image.YCbCrSubsampleRatio) string func("".YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) string6type."".YCbCrSubsampleRatioX)0 runtime.algarray@runtime.gcbits.PRgo.string.hdr."image.YCbCrSubsampleRatio"p8type.*"".YCbCrSubsampleRatio"runtime.zerovalue`6type."".YCbCrSubsampleRatioFgo.string.hdr."YCbCrSubsampleRatio""go.importpath."".6type."".YCbCrSubsampleRatio,go.string.hdr."String"$type.func() stringPtype.func("".YCbCrSubsampleRatio) string@"".(*YCbCrSubsampleRatio).String:"".YCbCrSubsampleRatio.String"runtime.gcbits.49I6go.string.hdr."image.YCbCr" .go.string."image.YCbCr".go.string."image.YCbCr" image.YCbCr$go.string.hdr."Cb" go.string."Cb"go.string."Cb"Cb$go.string.hdr."Cr" go.string."Cr"go.string."Cr"Cr.go.string.hdr."YStride" &go.string."YStride"&go.string."YStride"YStride.go.string.hdr."CStride" &go.string."CStride"&go.string."CStride"CStride<go.string.hdr."SubsampleRatio" 4go.string."SubsampleRatio"4go.string."SubsampleRatio" SubsampleRatio*go.string.hdr."YCbCr" "go.string."YCbCr""go.string."YCbCr"YCbCrtype."".YCbCr8a0HPX`00 runtime.algarray@"runtime.gcbits.49P6go.string.hdr."image.YCbCr"ptype.*"".YCbCr"runtime.zerovaluetype."".YCbCr"go.string.hdr."Y"type.[]uint8$go.string.hdr."Cb"type.[]uint8$go.string.hdr."Cr"type.[]uint8.go.string.hdr."YStride"type.int.go.string.hdr."CStride"type.int<go.string.hdr."SubsampleRatio"6type."".YCbCrSubsampleRatio(go.string.hdr."Rect""type."".Rectangle`type."".YCbCr*go.string.hdr."YCbCr""go.importpath."".type."".YCbCr8go.string.hdr."*image.YCbCr" 0go.string."*image.YCbCr"0go.string."*image.YCbCr" *image.YCbCrpgo.string.hdr."func(*image.YCbCr, int, int) color.Color" (hgo.string."func(*image.YCbCr, int, int) color.Color"hgo.string."func(*image.YCbCr, int, int) color.Color"`Rfunc(*image.YCbCr, int, int) color.Color`type.func(*"".YCbCr, int, int) image/color.ColorG30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.YCbCr, int, int) color.Color"prgo.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.Colortype.*"".YCbCrtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.YCbCr, int, int) color.Color func(*"".YCbCr, int, int) image/color.Color`type.func(*"".YCbCr, int, int) image/color.Colordgo.string.hdr."func(*image.YCbCr) image.Rectangle" "\go.string."func(*image.YCbCr) image.Rectangle"\go.string."func(*image.YCbCr) image.Rectangle"PFfunc(*image.YCbCr) image.RectangleBtype.func(*"".YCbCr) "".Rectangle5;30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.YCbCr) image.Rectangle"pTgo.weak.type.*func(*"".YCbCr) "".Rectangle"runtime.zerovalueBtype.func(*"".YCbCr) "".RectangleBtype.func(*"".YCbCr) "".Rectangletype.*"".YCbCr"type."".Rectanglego.typelink.func(*image.YCbCr) image.Rectangle func(*"".YCbCr) "".RectangleBtype.func(*"".YCbCr) "".Rectangle`go.string.hdr."func(*image.YCbCr, int, int) int" Xgo.string."func(*image.YCbCr, int, int) int"Xgo.string."func(*image.YCbCr, int, int) int"PBfunc(*image.YCbCr, int, int) intDtype.func(*"".YCbCr, int, int) int?@30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.YCbCr, int, int) int"pVgo.weak.type.*func(*"".YCbCr, int, int) int"runtime.zerovalueDtype.func(*"".YCbCr, int, int) intDtype.func(*"".YCbCr, int, int) inttype.*"".YCbCrtype.inttype.inttype.intgo.typelink.func(*image.YCbCr, int, int) int func(*"".YCbCr, int, int) intDtype.func(*"".YCbCr, int, int) int\go.string.hdr."func(*image.YCbCr) color.Model" Tgo.string."func(*image.YCbCr) color.Model"Tgo.string."func(*image.YCbCr) color.Model"@>func(*image.YCbCr) color.ModelLtype.func(*"".YCbCr) image/color.ModelZp30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.YCbCr) color.Model"p^go.weak.type.*func(*"".YCbCr) image/color.Model"runtime.zerovalueLtype.func(*"".YCbCr) image/color.ModelLtype.func(*"".YCbCr) image/color.Modeltype.*"".YCbCr,type.image/color.Modelgo.typelink.func(*image.YCbCr) color.Model func(*"".YCbCr) image/color.ModelLtype.func(*"".YCbCr) image/color.ModelNgo.string.hdr."func(*image.YCbCr) bool" Fgo.string."func(*image.YCbCr) bool"Fgo.string."func(*image.YCbCr) bool"00func(*image.YCbCr) bool2type.func(*"".YCbCr) bool30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.YCbCr) bool"pDgo.weak.type.*func(*"".YCbCr) bool"runtime.zerovalue2type.func(*"".YCbCr) bool2type.func(*"".YCbCr) booltype.*"".YCbCrtype.boolpgo.typelink.func(*image.YCbCr) bool func(*"".YCbCr) bool2type.func(*"".YCbCr) bool~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image" /vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"``func(*image.YCbCr, image.Rectangle) image.ImageVtype.func(*"".YCbCr, "".Rectangle) "".ImageNY30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"phgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".YCbCr, "".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Imagetype.*"".YCbCr"type."".Rectangletype."".Imagego.typelink.func(*image.YCbCr, image.Rectangle) image.Image func(*"".YCbCr, "".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Imagepgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr" (hgo.string."func(*image.YCbCr, int, int) color.YCbCr"hgo.string."func(*image.YCbCr, int, int) color.YCbCr"`Rfunc(*image.YCbCr, int, int) color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCr30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"prgo.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.YCbCrtype.*"".YCbCrtype.inttype.int,type.image/color.YCbCrgo.typelink.func(*image.YCbCr, int, int) color.YCbCr func(*"".YCbCr, int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCr.go.string.hdr."COffset" &go.string."COffset"&go.string."COffset"COffset.go.string.hdr."YCbCrAt" &go.string."YCbCrAt"&go.string."YCbCrAt"YCbCrAtTgo.string.hdr."func(int, int) color.YCbCr" Lgo.string."func(int, int) color.YCbCr"Lgo.string."func(int, int) color.YCbCr"@6func(int, int) color.YCbCrJtype.func(int, int) image/color.YCbCr30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.YCbCr"p\go.weak.type.*func(int, int) image/color.YCbCr"runtime.zerovalueJtype.func(int, int) image/color.YCbCrJtype.func(int, int) image/color.YCbCrtype.inttype.int,type.image/color.YCbCrgo.typelink.func(int, int) color.YCbCr func(int, int) image/color.YCbCrJtype.func(int, int) image/color.YCbCr.go.string.hdr."YOffset" &go.string."YOffset"&go.string."YOffset"YOffsettype.*"".YCbCr26`0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.YCbCr"p.go.weak.type.**"".YCbCr"runtime.zerovaluetype."".YCbCr`type.*"".YCbCrtype.*"".YCbCr$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".YCbCr, int, int) image/color.Color"".(*YCbCr).At"".(*YCbCr).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".YCbCr) "".Rectangle$"".(*YCbCr).Bounds$"".(*YCbCr).Bounds.go.string.hdr."COffset".type.func(int, int) intDtype.func(*"".YCbCr, int, int) int&"".(*YCbCr).COffset&"".(*YCbCr).COffset4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".YCbCr) image/color.Model,"".(*YCbCr).ColorModel,"".(*YCbCr).ColorModel,go.string.hdr."Opaque" type.func() bool2type.func(*"".YCbCr) bool$"".(*YCbCr).Opaque$"".(*YCbCr).Opaque0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Image("".(*YCbCr).SubImage("".(*YCbCr).SubImage.go.string.hdr."YCbCrAt"Jtype.func(int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCr&"".(*YCbCr).YCbCrAt&"".(*YCbCr).YCbCrAt.go.string.hdr."YOffset".type.func(int, int) intDtype.func(*"".YCbCr, int, int) int&"".(*YCbCr).YOffset&"".(*YCbCr).YOffsetTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Hgo.string.hdr."*image.PalettedImage" @go.string."*image.PalettedImage"@go.string."*image.PalettedImage"0**image.PalettedImage,type.*"".PalettedImage60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*image.PalettedImage"p>go.weak.type.**"".PalettedImage"runtime.zerovalue*type."".PalettedImageFgo.string.hdr."image.PalettedImage" >go.string."image.PalettedImage">go.string."image.PalettedImage"0(image.PalettedImage:go.string.hdr."PalettedImage" 2go.string."PalettedImage"2go.string."PalettedImage" PalettedImage*type."".PalettedImage$0 runtime.algarray@"runtime.gcbits.03PFgo.string.hdr."image.PalettedImage"p,type.*"".PalettedImage"runtime.zerovalue*type."".PalettedImage$go.string.hdr."At"Jtype.func(int, int) image/color.Color,go.string.hdr."Bounds"0type.func() "".Rectangle8go.string.hdr."ColorIndexAt"2type.func(int, int) uint84go.string.hdr."ColorModel":type.func() image/color.Model`*type."".PalettedImage:go.string.hdr."PalettedImage""go.importpath."".*type."".PalettedImage.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bufio" "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio. "go.string."bufio",go.string.hdr."errors" $go.string."errors"$go.string."errors"errors*go.importpath.errors. $go.string."errors"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"6go.string.hdr."image/color" .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color. .go.string."image/color".go.string.hdr."strconv" &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv. &go.string."strconv""".Image.Atf"".Image.At$"".Image.Boundsf"".Image.Bounds,"".Image.ColorModelf&"".Image.ColorModel*"".(*Point).Stringf$"".(*Point).String$"".(*Point).Addf"".(*Point).Add$"".(*Point).Subf"".(*Point).Sub$"".(*Point).Mulf"".(*Point).Mul$"".(*Point).Divf"".(*Point).Div""".(*Point).Inf"".(*Point).In$"".(*Point).Modf"".(*Point).Mod""".(*Point).Eqf"".(*Point).Eq2"".(*Rectangle).Stringf,"".(*Rectangle).String*"".(*Rectangle).Dxf$"".(*Rectangle).Dx*"".(*Rectangle).Dyf$"".(*Rectangle).Dy."".(*Rectangle).Sizef("".(*Rectangle).Size,"".(*Rectangle).Addf&"".(*Rectangle).Add,"".(*Rectangle).Subf&"".(*Rectangle).Sub0"".(*Rectangle).Insetf*"".(*Rectangle).Inset8"".(*Rectangle).Intersectf2"".(*Rectangle).Intersect0"".(*Rectangle).Unionf*"".(*Rectangle).Union0"".(*Rectangle).Emptyf*"".(*Rectangle).Empty*"".(*Rectangle).Eqf$"".(*Rectangle).Eq6"".(*Rectangle).Overlapsf0"".(*Rectangle).Overlaps*"".(*Rectangle).Inf$"".(*Rectangle).In0"".(*Rectangle).Canonf*"".(*Rectangle).Canon*"".(*Rectangle).Atf$"".(*Rectangle).At2"".(*Rectangle).Boundsf,"".(*Rectangle).Bounds:"".(*Rectangle).ColorModelf4"".(*Rectangle).ColorModel.type..hash."".Configf(type..hash."".Config*type..eq."".Configf$type..eq."".Config""".reader.Peekf"".reader.Peek""".reader.Readf"".reader.ReadF"".(*YCbCrSubsampleRatio).Stringf@"".(*YCbCrSubsampleRatio).String,"".PalettedImage.Atf&"".PalettedImage.At4"".PalettedImage.Boundsf."".PalettedImage.Bounds@"".PalettedImage.ColorIndexAtf:"".PalettedImage.ColorIndexAt<"".PalettedImage.ColorModelf6"".PalettedImage.ColorModel"runtime.zerovaluego13ld