Home | History | Annotate | Download | only in darwin_amd64_race
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     27954     `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "b4479f5512ba850e76ecf7c11543fc9c945c8e83"
      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     536210    `
    236 go object darwin amd64 go1.5.1 X:none
    237 
    238 !
    239 go13ldbufio.aerrors.aio.aimage/color.astrconv.a""".RegisterFormateH%HD$H;AHH$H$1H\$`H\$hH\$pH\$xH$H$H$H\$`H$H\$hH$H\$pH$H\$xH$H$H$H$HH$HHH
HH)H}HHH$HT$HHT$HD$HL$XHL$HHD$PHH\$ HT$(HD$0HL$8HHHL$XH9H\$PHHT$HHHD$@Hk0HH$HD$0H\$HHl$@Hk0HHl$`H\$Hl$H-H,$HH$H\$PHH\$XHH\$H=uHHH-H,$H\$.
    243 X
    244 *runtime.racefuncenter"".formats
    245  runtime.raceread"".formats"".formats "".formats type.[]"".format
    246 "runtime.growslice
    247 ,runtime.racewriterangetype."".format
    248 (runtime.typedmemmove"".formats
    249 "runtime.racewrite"".formats "".formats6runtime.writeBarrierEnabled"".formats
    250 (runtime.racefuncexit"".formats
    251 .runtime.writebarrierptr
    252 $runtime.panicslice
    253 0runtime.morestack_noctxt`"".autotmp_0002type.int"".autotmp_0001 type.[]"".format"".autotmp_0000_type."".format"".decodeConfigPNtype.func(io.Reader) ("".Config, error)"".decode@Ltype.func(io.Reader) ("".Image, error)"".magic type.string"".nametype.string1B+0B>Tgclocals61b167ad47cde17c5a09bf89f76e51adTgclocals219d8d154da9b833882f5372d7b1af99Vprebuilts/go/darwin-x86/src/image/format.go"".asReadereH%H$`H;AH H$ H$1H$8H$@1H$H$HH$H$(H\$H$0H\$H$H\$\$ H$HT$pH$HL$xtH$8H$@H H$(H$0H$H$HD$0HD$XHH$H$HL$H$HD$H\$XH\$\$ HL$XHL$@H$HL$@HYHl$0H9|gHHD$PH1H9t"H\$PH$@H$8H HH$HH\$HH\$HD$H\$0H}	HD$0HH$HL$0HD$HD$8HD$HHH$HL$HL$LD$Ht$ Hl$(H$H$H$1HL$L$H$H$H$H$HT$`H$HL$hH$H$H$H\$HH$HD$XH\$HHt,H$H\$Hl$H-H,$HD$8h.
    258 ^
    259 *runtime.racefuncentertype."".reader
    260 $runtime.assertI2I2
    261 (runtime.racefuncexit$type.*bufio.Reader
    262 $runtime.assertI2T2
    263  runtime.raceread>go.itab.*bufio.Reader."".reader
    264 (runtime.racefuncexit$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader
    265  runtime.typ2Itab"type.bufio.Reader
    266 "runtime.newobjecttype.[]uint8
    267 "runtime.makeslice	
    268  runtime.duffzero
    270 ,runtime.racewriterange"type.bufio.Reader
    273 (runtime.typedmemmove
    275 0runtime.morestack_noctxt@""".autotmp_0010$type.*bufio.Reader"".autotmp_0009$type.*bufio.Reader"".autotmp_0008"type.bufio.Reader"".autotmp_0006$type.*bufio.Reader"".autotmp_0004$type.*bufio.Reader"".autotmp_0003type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader
    276 "".rrtype."".reader"".~r1 type."".reader"".rtype.io.Reader*"2XEm\[R4.[9n!C0+.-+Tgclocals68c9fa00f2dd3a035f977db2d5190cf0Tgclocals0318f4fe3c9ebb20c9b242b602ec92a7Vprebuilts/go/darwin-x86/src/image/format.go"".matcheH%H;aH8H\$8H$Ht$XHL$HH9tD$hH8HD$PH\$`H\$01Ht$(Ht$HD$ HL$Hl$H9}qHD$H$LL$HH|$Ht$HT$@.L9s]H:@8t L9sEH:?tD$hH8HHHHHL$Hl$H9|D$hH8
    281 B
    282 *runtime.racefuncentert
    283 (runtime.racefuncexit
    284  runtime.raceread
    285 (runtime.racefuncexit
    286 (runtime.racefuncexit
    287 $runtime.panicindex
    288 $runtime.panicindex
    289 0runtime.morestack_noctxt`p"".autotmp_0018?type.*uint8"".autotmp_0017type.int"".autotmp_0016type.int"".autotmp_0015/type.[]uint8"".autotmp_0014_type.int"".autotmp_0013Otype.int"".~r2Ptype.bool"".b type.[]uint8"".magictype.string$p+opop)op>h
    291 
T"
    293 	 [CRTgclocals9ba22629e9611c66625b3db4800944b7Tgclocals83ead081cd909acab0dcd88a450c1878Vprebuilts/go/darwin-x86/src/image/format.go"".sniffeH%HD$H;AHH$H$1H$H$H$H$ H$(H$0HH$HHHH$1H$HD$8HT$xHHL$@Hl$8H9HD$HH$HD$0H\$HHLH{HsHSHK Hk(L$L$H$H$H$H$H$H$H$H$H$H$H$H\$H$H$H$H[ LD$Hl$HT$ HL$(HD$0LD$`Hl$hHT$pHD$XHL$PHH$HH$HKHL$LD$Hl$HT$ \$(tmH$H$H$H$H$H$H$H$ H$H$(H$H$0HHD$HHL$@H0HHL$@Hl$8H991H$H$H$H$H$H$H$H$ H$H$(H$H$0H
    299 X
    300 *runtime.racefuncenter"".formats
    301  runtime.raceread"".formats"".formats "".formats
    302 *runtime.racereadrange
    303 "".match	
    304 (runtime.racefuncexit
    306 (runtime.racefuncexit
    308 0runtime.morestack_noctxt"".autotmp_0029type."".format"".autotmp_0028_type."".format"".autotmp_0027type.*"".format"".autotmp_0026type.int"".autotmp_0025type.int"".autotmp_0020 type.[]"".format"".errtype.error"".btype.[]uint8"".ftype."".format"".~r1 type."".format"".rtype."".reader(:
2TE`$o
    314 +Tgclocalsf62a41cb78c03c15bed464e78226a130Tgclocalsc29a587d9b6ca82553d1d08ff007a778Vprebuilts/go/darwin-x86/src/image/format.go"".DecodeeH%H$H;AHH$H$1H$H$1H$H$1H$H$H$H$1H\$pH\$x1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$HHL$pHD$xH$H$H$HD$H|$Ht$Hl$ HT$(HL$0HD$8H$8H$@H$HH$PH$`H$X1H9u_HH$1H$H$1H$H$HH$HH$HHH$H$H\$H$H\$H\$HH$HKHL$H$XHHl$HT$HL$ HD$(H$H$H$H$H$8H$H$@H$H$H$H$H$HH$H$H$H$HD$@HD$hHH$H$HL$H$HD$H\$hH\$\$ HL$hHL$PH$HL$PHYHl$@H9|eHHD$`H1H9t HT$`H$HH$HHH$HH\$HH\$HD$H\$@H}	HD$@HH$HL$@HD$HD$HHD$XHH$HL$HL$LD$Ht$ Hl$(H$H$H$h1HL$ L$hH$(H$pH$0H$xH$H$H$H$H$H$H\$XH$HD$XH\$XHt,H$hH\$Hl$H-H,$HD$Hd>
    320 ^
    321 *runtime.racefuncentertype."".reader
    322 $runtime.assertI2I2
    323 "".sniff"".ErrFormat
    324  runtime.raceread"".ErrFormat"".ErrFormat
    325 (runtime.racefuncexittype.io.Reader
    326 runtime.convI2I
    327 
    328 (runtime.racefuncexit$type.*bufio.Reader
    331 $runtime.assertI2T2
    333  runtime.raceread
>go.itab.*bufio.Reader."".reader
$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader
    336  runtime.typ2Itab"type.bufio.Reader
    337 "runtime.newobjecttype.[]uint8
    338 "runtime.makeslice
    339  runtime.duffzero
    340 ,runtime.racewriterange"type.bufio.Reader
    341 (runtime.typedmemmove
    342 0runtime.morestack_noctxt4"".autotmp_0041type."".reader"".autotmp_0040$type.*bufio.Reader"".autotmp_0036$type.*bufio.Reader"".autotmp_0035"type.bufio.Reader"".autotmp_0033$type.*bufio.Reader"".autotmp_0031$type.*bufio.Reader"".autotmp_0030type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader"".~r1type."".reader
    344 "".rrtype."".reader"".rtype.io.Reader"".errtype.error"".mtype."".Image"".ftype."".format
    346 "".rrtype."".reader"".~r3`type.error"".~r2@type.string"".~r1 type."".Image"".rtype.io.Reader*"	D"
6dR`mRD.YeG2n!q
    353 +.-Tgclocals01125e2a5c0350eb923f65fb084fb0beTgclocals89dd7cd510c646dd78bd230190fb8a36Vprebuilts/go/darwin-x86/src/image/format.go"".DecodeConfigeH%H$H;AXHH$H$1H$H$H$H$ 1H$(H$01H$8H$@H$H$1H\$pH\$x1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$*HHL$pHD$xH$H$H$HD$H|$Ht$Hl$ HT$(HL$0HD$8H$hH$pH$xH$H$H$1H91H$HH$PH$XH$`HH$H$HH$H$PH$H$XH$H$`H$ 1H$(H$0HH$8HH$@HHH$H$H\$H$H\$H\$HH$HKHL$H$HH|$Ht$Hl$ HT$(HL$0HD$8H$(H$H$0H$H$8H$H$@H$ H$hH$(H$pH$0H$H$8H$H$@HH$H$H$H$HD$@HD$hHH$H$HL$H$HD$H\$hH\$\$ HL$hHL$PH$HL$PHYHl$@H9|eHHD$`H1H9t HT$`H$HH$H	HH$HH\$HH\$HD$H\$@H}	HD$@HH$HL$@HD$HD$HHD$XHH$HL$HL$LD$Ht$ Hl$(H$H$H$1HL$L$H$H$H$ H$H$H$H$H$H$H$H\$XH$HD$XH\$XHt,H$H\$Hl$H-H,$HD$Hd>
    359 ^
    360 *runtime.racefuncentertype."".reader
    361 $runtime.assertI2I2
    362 "".sniff"".ErrFormat
    363  runtime.raceread"".ErrFormat"".ErrFormat
    364 (runtime.racefuncexit	type.io.Reader	
    365 runtime.convI2I
    366 
    368 (runtime.racefuncexit
$type.*bufio.Reader
    370 $runtime.assertI2T2
    371  runtime.raceread>go.itab.*bufio.Reader."".reader$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader
    372  runtime.typ2Itab"type.bufio.Reader
    373 "runtime.newobjecttype.[]uint8
    374 "runtime.makeslice
    375  runtime.duffzero
    376 ,runtime.racewriterange"type.bufio.Reader
    377 (runtime.typedmemmove
    378 0runtime.morestack_noctxt8"".autotmp_0057type."".Config"".autotmp_0055type."".reader"".autotmp_0054$type.*bufio.Reader"".autotmp_0052type."".Config"".autotmp_0050$type.*bufio.Reader"".autotmp_0049"type.bufio.Reader"".autotmp_0047$type.*bufio.Reader"".autotmp_0045$type.*bufio.Reader"".autotmp_0044type."".readerbufio.r3type.io.Readerbufio.buf2type.[]uint8bufio.b1$type.*bufio.Readerbufio.r6$type.*bufio.Readerbufio.b4$type.*bufio.Readerbufio.size3type.intbufio.rd2type.io.Readerbufio.rd2type.io.Reader"".~r1type."".reader
    380 "".rrtype."".reader"".rtype.io.Reader"".errtype.error"".ctype."".Config"".ftype."".format
    382 "".rrtype."".reader"".~r3type.error"".~r2`type.string"".~r1 type."".Config"".rtype.io.Reader*"@"
Fdj
F.Yu2n!q
    390 +.- Tgclocals404bd706b395d652fac0e702c80086b6Tgclocals3f96fc659bf6a949de7b329a27509890Vprebuilts/go/darwin-x86/src/image/format.go"".Point.StringeH%HD$H;AHH$H$1H$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
    393 X
    394 *runtime.racefuncenter
    395 strconv.Itoa
    396 strconv.Itoago.string."("go.string.","go.string.")"
    397 *runtime.concatstring5
    398 (runtime.racefuncexit
    399 0runtime.morestack_noctxt@"".autotmp_0060?type.string"".autotmp_0059type.string"".~r0 type.string"".ptype."".Point
&B
+KTgclocals124a21249e8861ddbb76c8b0b45d3971Tgclocals4839c181b903023c3ae99be60aaf4271Rprebuilts/go/darwin-x86/src/image/geom.go"".Point.AddeH%H;avNHH\$H$11HL$ Hl$0HD$(HHl$8HHL$HL$@HD$HD$HH
    404 :
    405 *runtime.racefuncenter
    406 (runtime.racefuncexit
    407 0runtime.morestack_noctxt`0"".autotmp_0061type."".Point"".~r1@type."".Point"".q type."".Point"".ptype."".Point0I/0p0:
    409 TTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.SubeH%H;avNHH\$H$11HL$ Hl$0HD$(H)Hl$8H)HL$HL$@HD$HD$HH
    411 :
    412 *runtime.racefuncenter
    413 (runtime.racefuncexit
    414 0runtime.morestack_noctxt`0"".autotmp_0062type."".Point"".~r1@type."".Point"".q type."".Point"".ptype."".Point0I/0p::
    416 TTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.MuleH%H;avKHH\$H$HD$011HL$ H\$(HHHL$HL$8H\$H\$@H
    418 :
    419 *runtime.racefuncenter
    420 (runtime.racefuncexit
    421 0runtime.morestack_noctxtP0"".autotmp_0063type."".Point"".~r10type."".Point"".k type.int"".ptype."".Point0F/0pD2
    423 TTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.DiveH%H;avrHH\$H$HL$011HD$ HtDHHHHD$(HHt&HHHHt$Ht$8H\$H\$@HHHHHu
    425 :
    426 *runtime.racefuncenter
    427 (runtime.racefuncexit
    428 0runtime.morestack_noctxtP0"".autotmp_0064type."".Point"".~r10type."".Point"".k type.int"".ptype."".Point0]/0NY
    430 tTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.IneH%H;avXHH\$H$HL$HD$H\$ H9+Hl$0H9}!H\$(H9Hl$8H9D$@HD$@
    432 :
    433 *runtime.racefuncenter
    434 (runtime.racefuncexit
    435 0runtime.morestack_noctxtp"".~r1`type.bool"".r "type."".Rectangle"".ptype."".PointLpXT	
    437 TTgclocals627bbca91efe935c3ac76737d2026ca6Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.ModeH%HD$H;AcHH$H$H$H$L$L$1L$H$HH$LL$xL)L$H$H$L$L)HH$L$11HD$HLL$(L)LT$PLD$0M)HD$LT$HHHHHHH}HLHtsHHHHH}HH$H$11HL$XLL$8LHD$`LD$@LHL$hHD$pHL$H$HD$ H$H11m{
    439 X
    440 *runtime.racefuncenter
    441 (runtime.racefuncexit
    442 0runtime.morestack_noctxt""".autotmp_0072type."".Point"".autotmp_0071type."".Point"".autotmp_0069type.int"".autotmp_0068type.int"".autotmp_0066type.int"".autotmp_0065type.int"".~r1type."".Point"".qtype."".Point"".ptype."".Point"".~r1type."".Point"".qtype."".Point"".ptype."".Point"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1`type."".Point"".r "type."".Rectangle"".ptype."".Point >f1I8_+Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.EqeH%H;aH8H\$8H$H\$@H\$H\$HH\$ H\$PH\$HD$XHD$HD$H\$H\$(HD$0H$H\$(H$HD$0HLD$(I(H9uEH$H$H\$(H$H$Hl$0H]LD$(IhH9D$`H8D$`
    448 B
    449 *runtime.racefuncenter
    450  runtime.raceread
    451  runtime.raceread
    452  runtime.raceread
    453  runtime.raceread
    454 (runtime.racefuncexit
    455 0runtime.morestack_noctxtPp"".autotmp_0076type.*"".Point"".autotmp_0075type.*"".Point"".autotmp_0074_type."".Point"".autotmp_0073?type."".Point"".~r1@type.bool"".q type."".Point"".ptype."".Pointpop%
    457  Ec(Tgclocals98a935522f11e180b06d5a082b7d09c1Tgclocals21a8f585a14d020f181242c5256583dcRprebuilts/go/darwin-x86/src/image/geom.go
    458 "".PteH%H;av>HH\$H$11HL$ HD$(HL$HL$0HD$HD$8H
    460 :
    461 *runtime.racefuncenter
    462 (runtime.racefuncexit
    463 0runtime.morestack_noctxt@0"".autotmp_0077type."".Point"".~r2 type."".Point"".Ytype.int"".Xtype.int09/0`*
    465 DTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go&"".Rectangle.StringeH%H;aHhH\$hH$1H$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
    471 B
    472 *runtime.racefuncenter
    473 "".Point.String
    474 "".Point.Stringgo.string."-"
    475 *runtime.concatstring3
    476 (runtime.racefuncexit
    477 0runtime.morestack_noctxt`"".autotmp_0079?type.string"".autotmp_0078type.string"".~r0@type.string"".r"type."".Rectangle7 ]T Tgclocalsb2f74c392de0ed28f7e906de7ba4bab4Tgclocals4839c181b903023c3ae99be60aaf4271Rprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.DxeH%H;av.HH\$H$H\$ Hl$H)H\$0H
    480 :
    481 *runtime.racefuncenterh
    482 (runtime.racefuncexit|
    483 0runtime.morestack_noctxtP"".~r0@type.int"".r"type."".Rectangle)P*
    485 4Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.DyeH%H;av.HH\$H$H\$(Hl$H)H\$0H
    487 :
    488 *runtime.racefuncenterh
    489 (runtime.racefuncexit|
    490 0runtime.morestack_noctxtP"".~r0@type.int"".r"type."".Rectangle)P*
    492 4Tgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go""".Rectangle.SizeeH%H;avNHH\$H$11HL$0Hl$ HD$8H)Hl$(H)HL$HL$@HD$HD$HH
    494 :
    495 *runtime.racefuncenter
    496 (runtime.racefuncexit
    497 0runtime.morestack_noctxt`0"".autotmp_0080type."".Point"".~r0@type."".Point"".r"type."".Rectangle0I/0p,
    499 
    500 TTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go "".Rectangle.AddeH%H;avuH(H\$(H$HL$PHD$X11Ht$0HT$8H\$@HHHHH\$HHHt$Ht$`HT$HT$hHL$HL$pH\$ H\$xH(r
    502 :
    503 *runtime.racefuncenter
    504 (runtime.racefuncexit
    505 0runtime.morestack_noctxtP"".autotmp_0081?"type."".Rectangle"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePpOP,
    508 2
    510 tTgclocals63ba92e6c81d2d7bf2207e4076c8b23cTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go "".Rectangle.SubeH%H;avuH(H\$(H$HL$PHD$X11Ht$0HT$8H\$@H)H)H)HH\$HH)Ht$Ht$`HT$HT$hHL$HL$pH\$ H\$xH(r
    512 :
    513 *runtime.racefuncenter
    514 (runtime.racefuncexit
    515 0runtime.morestack_noctxtP"".autotmp_0082?"type."".Rectangle"".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePpOP,
    518 2
    520 tTgclocals63ba92e6c81d2d7bf2207e4076c8b23cTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.InseteH%H;aHHH\$HH$LD$PHt$`H|$XHT$hHD$p1H|$HT$ HHt$LD$L)HHH9LHHH?H)HHHL$(Ht$8HHT$@H|$0H)HHH9}NHHH?H)HHHL$PHL$xH|$XH$Ht$`H$HD$hH$HHHHH)HLHH)q
    522 B
    523 *runtime.racefuncenter
    524 (runtime.racefuncexit
    525 0runtime.morestack_noctxt"".autotmp_0090type.int"".autotmp_0089type.int"".autotmp_0088type.int"".autotmp_0086type.int"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.int"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1P"type."".Rectangle"".n@type.int"".r"type."".Rectangle.H')
    527 %
    528 ;	 Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go,"".Rectangle.IntersecteH%H;aHH\$H$LT$8LL$@LD$HH|$PHt$HT$ HL$(HD$01H\$XH\$`H\$hH\$pL9}LL9}LLL$ L9~LH9~HH|$0Ht$HL$(H9#H9Ht$XHT$`HL$hHD$pHHH$HD$ HH\$XHH\$`HH\$hHH\$pH
    531 B
    532 *runtime.racefuncenter
    533 (runtime.racefuncexit
    534 "".ZR
    535 *runtime.racereadrange
    536 "".ZR
    537 "".ZR 
    538 "".ZR0
    539 "".ZR
    540 (runtime.racefuncexit
    541 0runtime.morestack_noctxt "".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle  R H 6I Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.UnioneH%H;a`HHH\$HH$LT$PLL$XLD$`H|$hHt$pHT$xH$H$1LL$H|$ LT$LD$M9I9@@t*H$H$H$H$HHHT$0HD$@Ht$(HL$8H9H9@@t*L$L$L$H$HHI9~II9~II9}IH9}HLT$PL$LL$XL$LD$`L$H|$hH$HHHfH
    546 B
    547 *runtime.racefuncenter
    548 (runtime.racefuncexit
    549 (runtime.racefuncexit
    550 (runtime.racefuncexit
    551 0runtime.morestack_noctxt"".autotmp_0092type.bool"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle2S]%`&<%* "!* >
 Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.EmptyeH%H;avDHH\$H$H\$Hl$ H9}H\$Hl$(H9D$0HD$0
    559 :
    560 *runtime.racefuncenter
    561 (runtime.racefuncexit
    562 0runtime.morestack_noctxtP"".~r0@type.bool"".r"type."".Rectangle8`@
    565 DTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.EqeH%HD$H;AHH$H$H$H\$hH$H\$pH$H\$xH$H$H$H\$HH$H\$PH$HL$XH$HD$`HD$hHL$HH$HJH$H1H$H$H$H$H$H$HL$I(H9H$H$H$H$H$H$H]L$IhH9<H$HwH$HHZHH$H$H$H$H$H$HL$I(H9H$H$H$H$H$H$H]L$IhH9<H$H$HT$0H$H$HD$@H\$(HL$8H9}pH9<t\H$H$HT$H$H$HD$ H\$HL$H9}H9$HH$H$151 1Z
    569 X
    570 *runtime.racefuncenter
    571  runtime.raceread
    572  runtime.raceread
    573  runtime.raceread
    574  runtime.raceread
    575  runtime.raceread
    576  runtime.raceread
    577  runtime.raceread
    578  runtime.raceread
    579 
    580 (runtime.racefuncexit
    582 0runtime.morestack_noctxt"".autotmp_0102type.bool"".autotmp_0101type.bool"".autotmp_0100type.*"".Point"".autotmp_0099type.*"".Point"".autotmp_0098?type.*"".Point"".autotmp_0097/type.*"".Point"".autotmp_0096$type.*"".Rectangle"".autotmp_0095$type.*"".Rectangle"".autotmp_0094"type."".Rectangle"".autotmp_0093"type."".Rectangle"".r"type."".Rectangle"".r"type."".Rectangle"".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectangleo*01+|Tgclocalsbb62ddeba3b841c3b8407d8da49fbc51Tgclocals406991e81a5d6b9f25174854f4bda0b5Rprebuilts/go/darwin-x86/src/image/geom.go*"".Rectangle.OverlapseH%H;aHHH\$HH$Ll$PLd$XL\$`LT$hLL$pLD$xH$H$Ld$LT$ Ll$L\$M9}dM9<uGLD$0HL$@LL$(Ht$8I9}8I9<u$I9}M9}I9}M9$HH$HH
    585 B
    586 *runtime.racefuncenter
    587 (runtime.racefuncexit
    588 0runtime.morestack_noctxt"".autotmp_0106type.bool"".r?"type."".Rectangle"".r"type."".Rectangle"".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectangle30<2 Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.IneH%H;aH(H\$(H$LL$0LD$8Ht$@HL$HLD$HL$ LL$Ht$I9}UI9<tD$pH(H\$PL9+Hl$`H9!H\$XL9Hl$hH9D$pH(D$pHF
    593 
    594 B
    595 *runtime.racefuncenter
    596 (runtime.racefuncexit
    597 (runtime.racefuncexit
    598 0runtime.morestack_noctxtP"".r?"type."".Rectangle"".~r1type.bool"".s@"type."".Rectangle"".r"type."".RectanglePSOP4OP ("#
    601 	
    602 <	 Tgclocals6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.CanoneH%H;avvHH\$H$H|$ Ht$HL$(HD$1H9}	HHHH9}	HHHHt$Ht$0HD$HD$8H|$ H|$@HL$(HL$HHq
    606 :
    607 *runtime.racefuncenter
    608 (runtime.racefuncexit
    609 0runtime.morestack_noctxt"".autotmp_0109type.int"".~r0@"type."".Rectangle"".r"type."".Rectangleq("
		2
    615 tTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.AteH%H;a\HhH\$hH$1H$H$1H$H$HD$@H\$pH|$xH|$PH$Ht$XH$HT$`H\$HHL$8H9H9H9H9<taHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HhHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$Hh13
    617 B
    618 *runtime.racefuncenter0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque
    619 runtime.convT2I
    620 (runtime.racefuncexit0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent
    621 runtime.convT2I
    622 (runtime.racefuncexit
    623 0runtime.morestack_noctxt"".r?"type."".Rectangle"".p_type."".Point"".~r2`,type.image/color.Color"".yPtype.int"".x@type.int"".r"type."".Rectangle&`,oWa B"Tgclocalsaa63f3db2ec75827f6605d10a5453148Tgclocals69c1753bd5f81501d95132d08af04464Rprebuilts/go/darwin-x86/src/image/geom.go&"".Rectangle.BoundseH%H;avFHH\$H$1H\$H\$0H\$H\$8H\$ H\$@H\$(H\$HH
    627 :
    628 *runtime.racefuncenter
    629 (runtime.racefuncexit
    630 0runtime.morestack_noctxt"".~r0@"type."".Rectangle"".r"type."".RectangleA`2
    634 DTgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go."".Rectangle.ColorModeleH%H;avPHH\$H$1H\$0H\$8HH$HH\$0HH\$8H
    636 :
    637 *runtime.racefuncenter`0image/color.Alpha16Modelr
    638  runtime.raceread0image/color.Alpha16Model0image/color.Alpha16Model
    639 (runtime.racefuncexit
    640 0runtime.morestack_noctxt`"".~r0@,type.image/color.Model"".r"type."".RectangleKp29Tgclocals8c067d5052c60a71dd2787c367bb278bTgclocals69c1753bd5f81501d95132d08af04464Rprebuilts/go/darwin-x86/src/image/geom.go"".RecteH%H;aH(H\$(H$H|$0Ht$@HL$8HD$H1H9~	HHHH9~	HHH1H|$0HL$8Ht$@HD$HH|$H|$PHL$HL$XHt$Ht$`HD$ HD$hH(W
    644 B
    645 *runtime.racefuncenter
    646 (runtime.racefuncexit
    647 0runtime.morestack_noctxtP"".autotmp_0113?"type."".Rectangle"".autotmp_0112type.int"".~r4@"type."".Rectangle
    649 "".y10type.int
    650 "".x1 type.int
    651 "".y0type.int
    652 "".x0type.intPOP("
		H
 Tgclocals895d0569a38a56443b84805daa09d838Tgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go*"".(*RGBA).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
    657 :
    658 *runtime.racefuncenter`*image/color.RGBAModelr
    659  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel
    660 (runtime.racefuncexit
    661 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".RGBAKpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*RGBA).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
    664 
    665 B
    666 *runtime.racefuncenter
    667 *runtime.racereadrange
    668 (runtime.racefuncexit
    669 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".RGBA x 
    671  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@&
    674 B
    675 *runtime.racefuncenter
    676 """.(*RGBA).RGBAAt*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color
    677 runtime.convT2I
    678 (runtime.racefuncexit
    679 0runtime.morestack_noctxtP
    680 "".autotmp_0114*type.image/color.RGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA1 Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*RGBA).RGBAAteH%HD$H;AHH$H$1$$$$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$H%Hw HW(HT$PHO0HL$XHG8HD$`Ht$HL9I9L9I9<uC1@l$@$@l$@$@l$@$@l$@$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HHH\$(1\$\$\$\$H$H$HD$(H$HHHKHkH$HT$pHL$xH9HH$H$HD$(HHlHHNHnH$HT$pHL$xH9?H\$H4$HD$(HH$HHKHkH$HT$pHL$xH9HH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9AHH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9HH$HD$(H$HHtkHHKHkH$HT$pHL$xH9sBHH\$$\$$\$$$H91 %2
    691 X
    692 *runtime.racefuncenter
    693 *runtime.racereadrange
    694 (runtime.racefuncexit
    695  runtime.raceread
    696  runtime.raceread
    697  runtime.raceread
    698  runtime.raceread
    699  runtime.raceread	
    700  runtime.raceread
    702  runtime.raceread
    704  runtime.raceread
    706  runtime.raceread
    707  runtime.raceread
    708  runtime.raceread
    709 (runtime.racefuncexit
    710 $runtime.panicindex
    711 $runtime.panicindex
    712 $runtime.panicindex
    713 $runtime.panicindex
    714 $runtime.panicindex
    715 $runtime.panicindex
    716 $runtime.panicindex
    717 $runtime.panicindex
    718 0runtime.morestack_noctxt@"".autotmp_0119*type.image/color.RGBA"".autotmp_0118type.int"".autotmp_0117type.int"".autotmp_0116*type.image/color.RGBA"".ytype.int"".xtype.int"".p?type.*"".RGBA"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA(n	6
    720 	6+Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go("".(*RGBA).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HK
    722 B
    723 *runtime.racefuncenterh
    724  runtime.raceread
    725  runtime.raceread
    726  runtime.raceread
    727 (runtime.racefuncexit
    728 0runtime.morestack_noctxt@ 
    729 "".autotmp_0136type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA).SeteH%HD$H;A4HH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$HHw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9xI9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$H$HL$H$HD$H\$,H\$\$,\$(\$-\$)\$.\$*\$/\$+H\$@HH\$HH$H$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
    735 HBHjH$H$Hl$HH$H9LH)l$(@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
    737 HBHjH$H$Hl$HH$H9H)l$)@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9)H)H$H$HH
    739 HBHjH$H$Hl$HH$H9H)l$*@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9slH)H$H$HtMHHCHkH$H$Hl$HH$H9sH)l$+@+H5u1;@
    750 X
    751 *runtime.racefuncenter
    752 *runtime.racereadrange
    753 (runtime.racefuncexit
    754  runtime.raceread
    755  runtime.raceread
    756  runtime.raceread*image/color.RGBAModel
    757  runtime.raceread*image/color.RGBAModel*image/color.RGBAModel*type.image/color.RGBA
    758 "runtime.assertI2T	
    759  runtime.raceread
    760 
    761 "runtime.racewrite
    763  runtime.raceread
    765 "runtime.racewrite
    766  runtime.raceread
    767 "runtime.racewrite
    768  runtime.raceread
    769 "runtime.racewrite
    770 (runtime.racefuncexit
    771 $runtime.panicindex
    772 $runtime.panicindex
    773 $runtime.panicindex
    774 $runtime.panicindex
    775 $runtime.panicindex
    776 $runtime.panicindex
    777 $runtime.panicindex
    778 $runtime.panicindex
    779 0runtime.morestack_noctxtP&"".autotmp_0145type.int"".autotmp_0144type.int"".autotmp_0143type.int"".autotmp_0142type.int"".autotmp_0141type.int"".autotmp_0140type.int"".autotmp_0138*type.image/color.RGBA"".autotmp_0137O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".RGBA"".r"type."".Rectangle"".ptype."".Point
    780 "".c1*type.image/color.RGBA"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA(s
    781 Z
	+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go$"".(*RGBA).SetRGBAeH%H;a1HH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9I9~L9uI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9wH)H$H$HQH
    786 HBHjHl$xHL$hHl$(HD$pH9"H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
    788 HBHjHl$xHL$hHl$(HD$pH9qH)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
    790 HBHjHl$xHL$hHl$(HD$pH9H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$(HD$pH9sH)$@+HY1>2
    802 N
    803 *runtime.racefuncenter
    804 *runtime.racereadrange
    805 (runtime.racefuncexit
    806  runtime.raceread
    807  runtime.raceread
    808  runtime.raceread
    809  runtime.raceread
    810 "runtime.racewrite
    811  runtime.raceread	
    812 "runtime.racewrite
    813 
    814  runtime.raceread
    816 "runtime.racewrite
    818  runtime.raceread
    819 "runtime.racewrite
    820 (runtime.racefuncexit
    821 $runtime.panicindex
    822 $runtime.panicindex
    823 $runtime.panicindex
    824 $runtime.panicindex
    825 $runtime.panicindex
    826 $runtime.panicindex
    827 $runtime.panicindex
    828 $runtime.panicindex
    829 0runtime.morestack_noctxt@ "".autotmp_0160type.int"".autotmp_0159type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.int"".ytype.int"".xtype.int"".p?type.*"".RGBA"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA(kT
&Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA).SubImageeH%HD$H;A^HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9JH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H0D
    836 X
    837 *runtime.racefuncenter
    838 *runtime.racereadrange
    839  runtime.duffcopy
    840 ,"".Rectangle.Intersecttype."".RGBA
    841 "runtime.newobject
    842 ,runtime.racewriterange2go.itab.*"".RGBA."".Image
    843 (runtime.racefuncexittype.*"".RGBAtype."".Image2go.itab.*"".RGBA."".Image
    844  runtime.typ2Itab
    845  runtime.raceread
    846  runtime.raceread	
    847  runtime.raceread
    848 
    849  runtime.racereadtype."".RGBA
    852 "runtime.newobject
    854 "runtime.racewrite6runtime.writeBarrierEnabled
    857 "runtime.racewrite
    859  runtime.raceread
    860 ,runtime.racewriterange2go.itab.*"".RGBA."".Image
    861 (runtime.racefuncexittype.*"".RGBAtype."".Image2go.itab.*"".RGBA."".Image
    862  runtime.typ2Itab
    863 .runtime.writebarrierptr
    864 $runtime.panicslice
    865 0runtime.morestack_noctxtp""".autotmp_0180type.*uint8"".autotmp_0179type.*"".RGBA"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0176type.int"".autotmp_0174?type.*"".RGBA"".autotmp_0172type.*"".RGBA"".autotmp_0171/type.[]uint8"".autotmp_0170type.*"".RGBA"".ytype.int"".xtype.int"".pOtype.*"".RGBA"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA(m	jBW7Zt80-	
    870 <+\0/YN0&$Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go""".(*RGBA).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HHw HW(HT$`HO0HG8HD$pHt$XHL$hH9[H9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HHD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9hHD$ HD$(Hl$H9H$H$HHCHkH$HL$xHl$(H$H9
    878 H)H$Ht$(H$HHHAHiH$HT$xH$H9H2t$HHHHD$(Hl$H99H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\${$HHe 
    882 X
    883 *runtime.racefuncenter
    884 *runtime.racereadrange
    885 (runtime.racefuncexit
    886 *runtime.racereadrange
    887  runtime.raceread
    888  runtime.raceread
    889  runtime.raceread
    890  runtime.raceread
    891 (runtime.racefuncexit	
    892  runtime.raceread
    893 
    894  runtime.raceread
    895 
    896 $runtime.panicindex
    898 $runtime.panicindex
    900 (runtime.racefuncexit
    902 0runtime.morestack_noctxt "".autotmp_0190type.int"".autotmp_0189type.int"".autotmp_0188type.int"".autotmp_0186type.int"".autotmp_0185type.int"".autotmp_0184type.int"".autotmp_0183type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
    903 "".i1type.int
    904 "".i0type.int"".~r0type.bool"".ptype.*"".RGBA6.^hbV
    908 11
+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewRGBAeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$g3
    912 X
    913 *runtime.racefuncentertype.[]uint8
    914 "runtime.makeslicetype."".RGBA
    915 "runtime.newobject
    916 "runtime.racewrite6runtime.writeBarrierEnabled
    917 "runtime.racewrite
    918 ,runtime.racewriterange
    919 (runtime.racefuncexit
    920 .runtime.writebarrierptr
    921 0runtime.morestack_noctxtP"".autotmp_0199?type.*"".RGBA"".autotmp_0198type.int"".autotmp_0196type.int"".autotmp_0195type.int"".r"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wtype.int"".~r1@type.*"".RGBA"".r"type."".Rectangle 11Q
 +HkTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go."".(*RGBA64).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
    926 :
    927 *runtime.racefuncenter`.image/color.RGBA64Modelr
    928  runtime.raceread.image/color.RGBA64Model.image/color.RGBA64Model
    929 (runtime.racefuncexit
    930 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".RGBA64Kpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA64).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
    933 
    934 B
    935 *runtime.racefuncenter
    936 *runtime.racereadrange
    937 (runtime.racefuncexit
    938 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".RGBA64 x 
    940  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA64).AteH%H;aH@H\$@H$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@
    943 B
    944 *runtime.racefuncenter
    945 *"".(*RGBA64).RGBA64At.type.image/color.RGBA64,type.image/color.ColorXgo.itab.image/color.RGBA64.image/color.Color
    946 runtime.convT2I
    947 (runtime.racefuncexit
    948 0runtime.morestack_noctxtP
    949 "".autotmp_0200.type.image/color.RGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA641 "Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go*"".(*RGBA64).RGBA64AteH%HD$H;AHH$H$1f$f$f$f$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9NI9EL9<I9<uC1fl$0f$fl$2f$fl$4f$fl$6f$HH$H\$H$H\$H|$hH<$H$ HD$hHX Hl$H)Hl$(H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$(HHH\$ 1f\$0f\$2f\$4f\$6H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$ HH$HHKHkH$HT$pHL$xH9HH$H|$ H$HHHgHHFLFH9LHfHHHHHNLFL$HT$pHL$xH9
H,fmH	f\$0H4$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9YHH$H|$ H$HHH'HHFLFH9HfHHHHHNLFL$HT$pHL$xH9H,fmH	f\$2H4$HD$ H$HHHKHkH$HT$pHL$xH9tHH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H|$ H$HHHHHFLFH9HfHHHHHNLFL$HT$pHL$xH9H,fmH	f\$4H4$HD$ H$HHHKHkH$HT$pHL$xH93HH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$Ht$ HHHHHGLGH9HfHHHHHOLGL$HT$pHL$xH9sNH,fmH	HH\$0f$H\$2f$H\$4f$f$HT1wR
    970 X
    971 *runtime.racefuncenter
    972 *runtime.racereadrange
    973 (runtime.racefuncexit
    974  runtime.raceread
    975  runtime.raceread
    976  runtime.raceread
    977  runtime.raceread
    978  runtime.raceread	
    979  runtime.raceread
    980 
    981  runtime.raceread
    983  runtime.raceread
    985  runtime.raceread
    987  runtime.raceread
    988  runtime.raceread
    989  runtime.raceread
    990  runtime.raceread
    991  runtime.raceread
    992  runtime.raceread
    993  runtime.raceread
    994  runtime.raceread
    995  runtime.raceread
    996  runtime.raceread
    997 (runtime.racefuncexit
    998 $runtime.panicindex
    999 $runtime.panicindex
   1000 $runtime.panicindex
   1001 $runtime.panicindex
   1002 $runtime.panicindex
   1003 $runtime.panicindex
   1004 $runtime.panicindex
   1005 $runtime.panicindex
   1006 $runtime.panicindex
   1007 $runtime.panicindex
   1008 $runtime.panicindex
   1009 $runtime.panicindex
   1010 $runtime.panicindex
   1011 $runtime.panicindex
   1012 $runtime.panicindex
   1013 $runtime.panicindex
   1014 0runtime.morestack_noctxt@"".autotmp_0205.type.image/color.RGBA64"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202.type.image/color.RGBA64"".ytype.int"".xtype.int"".p?type.*"".RGBA64"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64*
   1016 `"6?####	+
   1017 Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go,"".(*RGBA64).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HK
   1019 B
   1020 *runtime.racefuncenterh
   1021  runtime.raceread
   1022  runtime.raceread
   1023  runtime.raceread
   1024 (runtime.racefuncexit
   1025 0runtime.morestack_noctxt@ 
   1026 "".autotmp_0238type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA64   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*RGBA64).Set""eH%HD$H;A_HH$H$1H$H\$XH$H\$`H$H$H$ HD$ LL$XLD$`H$HHw HW(HT$pHO0HL$xHG8H$Ht$hL9I9L9I9<u
HH$H\$0H$H\$(H$H<$H$ H$HX Hl$0H)Hl$HH$H$ H$H$H$H$H$HX(Hl$(H)HHhHHl$HHHH\$8HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f\$Pf\$Rf\$Tf\$VHH$H$HL$H$HD$H\$PH\$H\$Pf\$@H\$Rf\$BH\$Tf\$DH\$Vf\$FH\$8HH\$HH$H$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1032 HBHjH$H$Hl$HH$H9hH)Hl$@f@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1034 HBHjH$H$Hl$HH$H9H)Hl$@@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9?H)H$H$HH
   1036 HBHjH$H$Hl$HH$H9H)Hl$Bf@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9yH)H$H$HSH
   1038 HBHjH$H$Hl$HH$H9H)Hl$B@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1040 HBHjH$H$Hl$HH$H9YH)Hl$Df@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1042 HBHjH$H$Hl$HH$H9H)Hl$D@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9/H)H$H$H	H
   1044 HBHjH$H$Hl$HH$H9H)Hl$Ff@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9smH)H$H$HtNHHCHkH$H$Hl$HH$H9sH)Hl$F@+H.hY1_`
   1063 X
   1064 *runtime.racefuncenter
   1065 *runtime.racereadrange
   1066 (runtime.racefuncexit
   1067  runtime.raceread
   1068  runtime.raceread
   1069  runtime.raceread.image/color.RGBA64Model
   1070  runtime.raceread.image/color.RGBA64Model.image/color.RGBA64Model.type.image/color.RGBA64
   1071 "runtime.assertI2T	
   1072  runtime.raceread
   1073 
   1074 "runtime.racewrite
   1076  runtime.raceread
   1078 "runtime.racewrite
   1079  runtime.raceread
   1080 "runtime.racewrite
   1081  runtime.raceread
   1082 "runtime.racewrite
   1083  runtime.raceread
   1084 "runtime.racewrite
   1085  runtime.raceread
   1086 "runtime.racewrite
   1087  runtime.raceread
   1088 "runtime.racewrite
   1089  runtime.raceread
   1090 "runtime.racewrite
   1091 (runtime.racefuncexit
   1092 $runtime.panicindex
   1093 $runtime.panicindex
   1094 $runtime.panicindex
   1095 $runtime.panicindex
   1096 $runtime.panicindex
   1097 $runtime.panicindex 
   1098 $runtime.panicindex 
   1099 $runtime.panicindex 
   1100 $runtime.panicindex 
   1101 $runtime.panicindex 
   1102 $runtime.panicindex 
   1103 $runtime.panicindex!
   1104 $runtime.panicindex!
   1105 $runtime.panicindex!
   1106 $runtime.panicindex!
   1107 $runtime.panicindex!
   1108 0runtime.morestack_noctxtP."".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".autotmp_0245type.int"".autotmp_0244type.int"".autotmp_0243type.int"".autotmp_0242type.int"".autotmp_0240.type.image/color.RGBA64"".autotmp_0239O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".RGBA64"".r"type."".Rectangle"".ptype."".Point
   1109 "".c1.type.image/color.RGBA64"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64*
	+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go,"".(*RGBA64).SetRGBA64eH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9gI9^L9UI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9WH)H$H$H1H
   1114 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$H{H
   1116 HBHjHl$xHL$hHl$(HD$pH9LH)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1118 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH97H)H$H$HH
   1120 HBHjHl$xHL$hHl$(HD$pH9H)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$H^H
   1122 HBHjHl$xHL$hHl$(HD$pH9/H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1124 HBHjHl$xHL$hHl$(HD$pH9xH)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1126 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sgH)H$H$HtHHHCHkHl$xHL$hHl$(HD$pH9sH)H$@+HR1~1^R
   1145 N
   1146 *runtime.racefuncenter
   1147 *runtime.racereadrange
   1148 (runtime.racefuncexit
   1149  runtime.raceread
   1150  runtime.raceread
   1151  runtime.raceread
   1152  runtime.raceread
   1153 "runtime.racewrite
   1154  runtime.raceread	
   1155 "runtime.racewrite
   1157  runtime.raceread
   1159 "runtime.racewrite
   1161  runtime.raceread
   1162 "runtime.racewrite
   1163  runtime.raceread
   1164 "runtime.racewrite
   1165  runtime.raceread
   1166 "runtime.racewrite
   1167  runtime.raceread
   1168 "runtime.racewrite
   1169  runtime.raceread
   1170 "runtime.racewrite
   1171 (runtime.racefuncexit
   1172 $runtime.panicindex
   1173 $runtime.panicindex
   1174 $runtime.panicindex
   1175 $runtime.panicindex
   1176 $runtime.panicindex
   1177 $runtime.panicindex
   1178 $runtime.panicindex
   1179 $runtime.panicindex
   1180 $runtime.panicindex
   1181 $runtime.panicindex
   1182 $runtime.panicindex
   1183 $runtime.panicindex
   1184 $runtime.panicindex
   1185 $runtime.panicindex
   1186 $runtime.panicindex
   1187 $runtime.panicindex
   1188 0runtime.morestack_noctxt@("".autotmp_0278type.int"".autotmp_0277type.int"".autotmp_0276type.int"".autotmp_0275type.int"".autotmp_0274type.int"".autotmp_0273type.int"".autotmp_0272type.int"".autotmp_0271type.int"".autotmp_0270type.int"".autotmp_0269type.int"".ytype.int"".xtype.int"".p?type.*"".RGBA64"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64*|&Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go*"".(*RGBA64).SubImageeH%HD$H;A^HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9JH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H0D
   1195 X
   1196 *runtime.racefuncenter
   1197 *runtime.racereadrange
   1198  runtime.duffcopy
   1199 ,"".Rectangle.Intersecttype."".RGBA64
   1200 "runtime.newobject
   1201 ,runtime.racewriterange6go.itab.*"".RGBA64."".Image
   1202 (runtime.racefuncexittype.*"".RGBA64type."".Image6go.itab.*"".RGBA64."".Image
   1203  runtime.typ2Itab
   1204  runtime.raceread
   1205  runtime.raceread	
   1206  runtime.raceread
   1207 
   1208  runtime.racereadtype."".RGBA64
   1211 "runtime.newobject
   1213 "runtime.racewrite6runtime.writeBarrierEnabled
   1216 "runtime.racewrite
   1218  runtime.raceread
   1219 ,runtime.racewriterange6go.itab.*"".RGBA64."".Image
   1220 (runtime.racefuncexittype.*"".RGBA64type."".Image6go.itab.*"".RGBA64."".Image
   1221  runtime.typ2Itab
   1222 .runtime.writebarrierptr
   1223 $runtime.panicslice
   1224 0runtime.morestack_noctxtp""".autotmp_0306type.*uint8"".autotmp_0305type.*"".RGBA64"".autotmp_0304type.int"".autotmp_0303type.int"".autotmp_0302type.int"".autotmp_0300?type.*"".RGBA64"".autotmp_0298type.*"".RGBA64"".autotmp_0297/type.[]uint8"".autotmp_0296type.*"".RGBA64"".ytype.int"".xtype.int"".pOtype.*"".RGBA64"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA64(m	jBW7Zt80-	
   1229 <+\0/YN0&$Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA64).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HZHw HW(HT$`HO0HG8HD$pHt$XHL$hH9!H9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HHD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9.HD$ HD$(Hl$H9cH$HD$(H$HHHKHkH$HT$xH$H9HH$H$HD$(HHHHNHnH$HT$xH$H9mH3H4$HD$(HH$HHKHkH$HT$xH$H9HH$H|$(H$HHHH1HQHiH$Ht$xH$H9HHHHD$(Hl$H9H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\$$H\$H'H4(
   1238 X
   1239 *runtime.racefuncenter
   1240 *runtime.racereadrange
   1241 (runtime.racefuncexit
   1242 *runtime.racereadrange
   1243  runtime.raceread
   1244  runtime.raceread
   1245  runtime.raceread
   1246  runtime.raceread
   1247  runtime.raceread	
   1248  runtime.raceread
   1250  runtime.raceread
   1252  runtime.raceread
   1254 (runtime.racefuncexit
   1256 $runtime.panicindex
   1258 $runtime.panicindex
   1260 $runtime.panicindex
   1261 $runtime.panicindex
   1262 (runtime.racefuncexit
   1263 0runtime.morestack_noctxt "".autotmp_0316type.int"".autotmp_0315type.int"".autotmp_0314type.int"".autotmp_0312type.int"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0309type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
   1264 "".i1type.int
   1265 "".i0type.int"".~r0type.bool"".ptype.*"".RGBA644>(^hbV
   1267 11
*+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewRGBA64eH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$g3
   1273 X
   1274 *runtime.racefuncentertype.[]uint8
   1275 "runtime.makeslicetype."".RGBA64
   1276 "runtime.newobject
   1277 "runtime.racewrite6runtime.writeBarrierEnabled
   1278 "runtime.racewrite
   1279 ,runtime.racewriterange
   1280 (runtime.racefuncexit
   1281 .runtime.writebarrierptr
   1282 0runtime.morestack_noctxtP"".autotmp_0331?type.*"".RGBA64"".autotmp_0330type.int"".autotmp_0328type.int"".autotmp_0327type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".RGBA64"".r"type."".Rectangle 11Q
 +HkTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go,"".(*NRGBA).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   1287 :
   1288 *runtime.racefuncenter`,image/color.NRGBAModelr
   1289  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel
   1290 (runtime.racefuncexit
   1291 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".NRGBAKpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go$"".(*NRGBA).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   1294 
   1295 B
   1296 *runtime.racefuncenter
   1297 *runtime.racereadrange
   1298 (runtime.racefuncexit
   1299 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".NRGBA x 
   1301  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*NRGBA).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@&
   1304 B
   1305 *runtime.racefuncenter
   1306 &"".(*NRGBA).NRGBAAt,type.image/color.NRGBA,type.image/color.ColorVgo.itab.image/color.NRGBA.image/color.Color
   1307 runtime.convT2I
   1308 (runtime.racefuncexit
   1309 0runtime.morestack_noctxtP
   1310 "".autotmp_0332,type.image/color.NRGBA"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA1 Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go&"".(*NRGBA).NRGBAAteH%HD$H;AHH$H$1$$$$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$H%Hw HW(HT$PHO0HL$XHG8HD$`Ht$HL9I9L9I9<uC1@l$@$@l$@$@l$@$@l$@$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HHH\$(1\$\$\$\$H$H$HD$(H$HHHKHkH$HT$pHL$xH9HH$H$HD$(HHlHHNHnH$HT$pHL$xH9?H\$H4$HD$(HH$HHKHkH$HT$pHL$xH9HH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9AHH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9HH$HD$(H$HHtkHHKHkH$HT$pHL$xH9sBHH\$$\$$\$$$H91 %2
   1321 X
   1322 *runtime.racefuncenter
   1323 *runtime.racereadrange
   1324 (runtime.racefuncexit
   1325  runtime.raceread
   1326  runtime.raceread
   1327  runtime.raceread
   1328  runtime.raceread
   1329  runtime.raceread	
   1330  runtime.raceread
   1332  runtime.raceread
   1334  runtime.raceread
   1336  runtime.raceread
   1337  runtime.raceread
   1338  runtime.raceread
   1339 (runtime.racefuncexit
   1340 $runtime.panicindex
   1341 $runtime.panicindex
   1342 $runtime.panicindex
   1343 $runtime.panicindex
   1344 $runtime.panicindex
   1345 $runtime.panicindex
   1346 $runtime.panicindex
   1347 $runtime.panicindex
   1348 0runtime.morestack_noctxt@"".autotmp_0337,type.image/color.NRGBA"".autotmp_0336type.int"".autotmp_0335type.int"".autotmp_0334,type.image/color.NRGBA"".ytype.int"".xtype.int"".p?type.*"".NRGBA"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA(n	6
   1350 	6+Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go*"".(*NRGBA).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HK
   1352 B
   1353 *runtime.racefuncenterh
   1354  runtime.raceread
   1355  runtime.raceread
   1356  runtime.raceread
   1357 (runtime.racefuncexit
   1358 0runtime.morestack_noctxt@ 
   1359 "".autotmp_0354type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".NRGBA   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*NRGBA).SeteH%HD$H;A4HH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$HHw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9xI9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$H$HL$H$HD$H\$,H\$\$,\$(\$-\$)\$.\$*\$/\$+H\$@HH\$HH$H$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1365 HBHjH$H$Hl$HH$H9LH)l$(@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1367 HBHjH$H$Hl$HH$H9H)l$)@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9)H)H$H$HH
   1369 HBHjH$H$Hl$HH$H9H)l$*@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9slH)H$H$HtMHHCHkH$H$Hl$HH$H9sH)l$+@+H5u1;@
   1380 X
   1381 *runtime.racefuncenter
   1382 *runtime.racereadrange
   1383 (runtime.racefuncexit
   1384  runtime.raceread
   1385  runtime.raceread
   1386  runtime.raceread,image/color.NRGBAModel
   1387  runtime.raceread,image/color.NRGBAModel,image/color.NRGBAModel,type.image/color.NRGBA
   1388 "runtime.assertI2T	
   1389  runtime.raceread
   1390 
   1391 "runtime.racewrite
   1393  runtime.raceread
   1395 "runtime.racewrite
   1396  runtime.raceread
   1397 "runtime.racewrite
   1398  runtime.raceread
   1399 "runtime.racewrite
   1400 (runtime.racefuncexit
   1401 $runtime.panicindex
   1402 $runtime.panicindex
   1403 $runtime.panicindex
   1404 $runtime.panicindex
   1405 $runtime.panicindex
   1406 $runtime.panicindex
   1407 $runtime.panicindex
   1408 $runtime.panicindex
   1409 0runtime.morestack_noctxtP&"".autotmp_0363type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359type.int"".autotmp_0358type.int"".autotmp_0356,type.image/color.NRGBA"".autotmp_0355O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".NRGBA"".r"type."".Rectangle"".ptype."".Point
   1410 "".c1,type.image/color.NRGBA"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA(s
   1411 Z
	+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA).SetNRGBAeH%H;a1HH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9I9~L9uI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9wH)H$H$HQH
   1416 HBHjHl$xHL$hHl$(HD$pH9"H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1418 HBHjHl$xHL$hHl$(HD$pH9qH)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1420 HBHjHl$xHL$hHl$(HD$pH9H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$(HD$pH9sH)$@+HY1>2
   1432 N
   1433 *runtime.racefuncenter
   1434 *runtime.racereadrange
   1435 (runtime.racefuncexit
   1436  runtime.raceread
   1437  runtime.raceread
   1438  runtime.raceread
   1439  runtime.raceread
   1440 "runtime.racewrite
   1441  runtime.raceread	
   1442 "runtime.racewrite
   1443 
   1444  runtime.raceread
   1446 "runtime.racewrite
   1448  runtime.raceread
   1449 "runtime.racewrite
   1450 (runtime.racefuncexit
   1451 $runtime.panicindex
   1452 $runtime.panicindex
   1453 $runtime.panicindex
   1454 $runtime.panicindex
   1455 $runtime.panicindex
   1456 $runtime.panicindex
   1457 $runtime.panicindex
   1458 $runtime.panicindex
   1459 0runtime.morestack_noctxt@ "".autotmp_0378type.int"".autotmp_0377type.int"".autotmp_0376type.int"".autotmp_0375type.int"".autotmp_0374type.int"".autotmp_0373type.int"".ytype.int"".xtype.int"".p?type.*"".NRGBA"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA(kT
&Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA).SubImageeH%HD$H;A^HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9JH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H0D
   1466 X
   1467 *runtime.racefuncenter
   1468 *runtime.racereadrange
   1469  runtime.duffcopy
   1470 ,"".Rectangle.Intersecttype."".NRGBA
   1471 "runtime.newobject
   1472 ,runtime.racewriterange4go.itab.*"".NRGBA."".Image
   1473 (runtime.racefuncexittype.*"".NRGBAtype."".Image4go.itab.*"".NRGBA."".Image
   1474  runtime.typ2Itab
   1475  runtime.raceread
   1476  runtime.raceread	
   1477  runtime.raceread
   1478 
   1479  runtime.racereadtype."".NRGBA
   1482 "runtime.newobject
   1484 "runtime.racewrite6runtime.writeBarrierEnabled
   1487 "runtime.racewrite
   1489  runtime.raceread
   1490 ,runtime.racewriterange4go.itab.*"".NRGBA."".Image
   1491 (runtime.racefuncexittype.*"".NRGBAtype."".Image4go.itab.*"".NRGBA."".Image
   1492  runtime.typ2Itab
   1493 .runtime.writebarrierptr
   1494 $runtime.panicslice
   1495 0runtime.morestack_noctxtp""".autotmp_0398type.*uint8"".autotmp_0397type.*"".NRGBA"".autotmp_0396type.int"".autotmp_0395type.int"".autotmp_0394type.int"".autotmp_0392?type.*"".NRGBA"".autotmp_0390type.*"".NRGBA"".autotmp_0389/type.[]uint8"".autotmp_0388type.*"".NRGBA"".ytype.int"".xtype.int"".pOtype.*"".NRGBA"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".NRGBA(m	jBW7Zt80-	
   1500 <+\0/YN0&$Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go$"".(*NRGBA).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HHw HW(HT$`HO0HG8HD$pHt$XHL$hH9[H9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HHD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9hHD$ HD$(Hl$H9H$H$HHCHkH$HL$xHl$(H$H9
   1508 H)H$Ht$(H$HHHAHiH$HT$xH$H9H2t$HHHHD$(Hl$H99H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\${$HHe 
   1512 X
   1513 *runtime.racefuncenter
   1514 *runtime.racereadrange
   1515 (runtime.racefuncexit
   1516 *runtime.racereadrange
   1517  runtime.raceread
   1518  runtime.raceread
   1519  runtime.raceread
   1520  runtime.raceread
   1521 (runtime.racefuncexit	
   1522  runtime.raceread
   1523 
   1524  runtime.raceread
   1525 
   1526 $runtime.panicindex
   1528 $runtime.panicindex
   1530 (runtime.racefuncexit
   1532 0runtime.morestack_noctxt "".autotmp_0408type.int"".autotmp_0407type.int"".autotmp_0406type.int"".autotmp_0404type.int"".autotmp_0403type.int"".autotmp_0402type.int"".autotmp_0401type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
   1533 "".i1type.int
   1534 "".i0type.int"".~r0type.bool"".ptype.*"".NRGBA6.^hbV
   1538 11
+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewNRGBAeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$g3
   1542 X
   1543 *runtime.racefuncentertype.[]uint8
   1544 "runtime.makeslicetype."".NRGBA
   1545 "runtime.newobject
   1546 "runtime.racewrite6runtime.writeBarrierEnabled
   1547 "runtime.racewrite
   1548 ,runtime.racewriterange
   1549 (runtime.racefuncexit
   1550 .runtime.writebarrierptr
   1551 0runtime.morestack_noctxtP"".autotmp_0417?type.*"".NRGBA"".autotmp_0416type.int"".autotmp_0414type.int"".autotmp_0413type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".NRGBA"".r"type."".Rectangle 11Q
 +HkTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go0"".(*NRGBA64).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   1556 :
   1557 *runtime.racefuncenter`0image/color.NRGBA64Modelr
   1558  runtime.raceread0image/color.NRGBA64Model0image/color.NRGBA64Model
   1559 (runtime.racefuncexit
   1560 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".p type.*"".NRGBA64Kpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA64).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   1563 
   1564 B
   1565 *runtime.racefuncenter
   1566 *runtime.racereadrange
   1567 (runtime.racefuncexit
   1568 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p type.*"".NRGBA64 x 
   1570  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*NRGBA64).AteH%H;aH@H\$@H$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@
   1573 B
   1574 *runtime.racefuncenter
   1575 ."".(*NRGBA64).NRGBA64At0type.image/color.NRGBA64,type.image/color.ColorZgo.itab.image/color.NRGBA64.image/color.Color
   1576 runtime.convT2I
   1577 (runtime.racefuncexit
   1578 0runtime.morestack_noctxtP
   1579 "".autotmp_04180type.image/color.NRGBA64"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA641 "Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go."".(*NRGBA64).NRGBA64AteH%HD$H;AHH$H$1f$f$f$f$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9NI9EL9<I9<uC1fl$0f$fl$2f$fl$4f$fl$6f$HH$H\$H$H\$H|$hH<$H$ HD$hHX Hl$H)Hl$(H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$(HHH\$ 1f\$0f\$2f\$4f\$6H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$ HH$HHKHkH$HT$pHL$xH9HH$H|$ H$HHHgHHFLFH9LHfHHHHHNLFL$HT$pHL$xH9
H,fmH	f\$0H4$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9YHH$H|$ H$HHH'HHFLFH9HfHHHHHNLFL$HT$pHL$xH9H,fmH	f\$2H4$HD$ H$HHHKHkH$HT$pHL$xH9tHH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H|$ H$HHHHHFLFH9HfHHHHHNLFL$HT$pHL$xH9H,fmH	f\$4H4$HD$ H$HHHKHkH$HT$pHL$xH93HH$H$H$HD$ H$HHHKHkH$HT$pHL$xH9HH$H$Ht$ HHHHHGLGH9HfHHHHHOLGL$HT$pHL$xH9sNH,fmH	HH\$0f$H\$2f$H\$4f$f$HT1wR
   1600 X
   1601 *runtime.racefuncenter
   1602 *runtime.racereadrange
   1603 (runtime.racefuncexit
   1604  runtime.raceread
   1605  runtime.raceread
   1606  runtime.raceread
   1607  runtime.raceread
   1608  runtime.raceread	
   1609  runtime.raceread
   1610 
   1611  runtime.raceread
   1613  runtime.raceread
   1615  runtime.raceread
   1617  runtime.raceread
   1618  runtime.raceread
   1619  runtime.raceread
   1620  runtime.raceread
   1621  runtime.raceread
   1622  runtime.raceread
   1623  runtime.raceread
   1624  runtime.raceread
   1625  runtime.raceread
   1626  runtime.raceread
   1627 (runtime.racefuncexit
   1628 $runtime.panicindex
   1629 $runtime.panicindex
   1630 $runtime.panicindex
   1631 $runtime.panicindex
   1632 $runtime.panicindex
   1633 $runtime.panicindex
   1634 $runtime.panicindex
   1635 $runtime.panicindex
   1636 $runtime.panicindex
   1637 $runtime.panicindex
   1638 $runtime.panicindex
   1639 $runtime.panicindex
   1640 $runtime.panicindex
   1641 $runtime.panicindex
   1642 $runtime.panicindex
   1643 $runtime.panicindex
   1644 0runtime.morestack_noctxt@"".autotmp_04230type.image/color.NRGBA64"".autotmp_0422type.int"".autotmp_0421type.int"".autotmp_04200type.image/color.NRGBA64"".ytype.int"".xtype.int"".p? type.*"".NRGBA64"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r200type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64*
   1646 `"6?####	+
   1647 Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go."".(*NRGBA64).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HK
   1649 B
   1650 *runtime.racefuncenterh
   1651  runtime.raceread
   1652  runtime.raceread
   1653  runtime.raceread
   1654 (runtime.racefuncexit
   1655 0runtime.morestack_noctxt@ 
   1656 "".autotmp_0456type.int"".~r20type.int"".y type.int"".xtype.int"".p type.*"".NRGBA64   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*NRGBA64).Set""eH%HD$H;A_HH$H$1H$H\$XH$H\$`H$H$H$ HD$ LL$XLD$`H$HHw HW(HT$pHO0HL$xHG8H$Ht$hL9I9L9I9<u
HH$H\$0H$H\$(H$H<$H$ H$HX Hl$0H)Hl$HH$H$ H$H$H$H$H$HX(Hl$(H)HHhHHl$HHHH\$8HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f\$Pf\$Rf\$Tf\$VHH$H$HL$H$HD$H\$PH\$H\$Pf\$@H\$Rf\$BH\$Tf\$DH\$Vf\$FH\$8HH\$HH$H$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1662 HBHjH$H$Hl$HH$H9hH)Hl$@f@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1664 HBHjH$H$Hl$HH$H9H)Hl$@@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9?H)H$H$HH
   1666 HBHjH$H$Hl$HH$H9H)Hl$Bf@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9yH)H$H$HSH
   1668 HBHjH$H$Hl$HH$H9H)Hl$B@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1670 HBHjH$H$Hl$HH$H9YH)Hl$Df@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   1672 HBHjH$H$Hl$HH$H9H)Hl$D@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9/H)H$H$H	H
   1674 HBHjH$H$Hl$HH$H9H)Hl$Ff@+H\$8HH\$HH$H$HHCHkH$H$Hl$HH$H9smH)H$H$HtNHHCHkH$H$Hl$HH$H9sH)Hl$F@+H.hY1_`
   1693 X
   1694 *runtime.racefuncenter
   1695 *runtime.racereadrange
   1696 (runtime.racefuncexit
   1697  runtime.raceread
   1698  runtime.raceread
   1699  runtime.raceread0image/color.NRGBA64Model
   1700  runtime.raceread0image/color.NRGBA64Model0image/color.NRGBA64Model0type.image/color.NRGBA64
   1701 "runtime.assertI2T	
   1702  runtime.raceread
   1703 
   1704 "runtime.racewrite
   1706  runtime.raceread
   1708 "runtime.racewrite
   1709  runtime.raceread
   1710 "runtime.racewrite
   1711  runtime.raceread
   1712 "runtime.racewrite
   1713  runtime.raceread
   1714 "runtime.racewrite
   1715  runtime.raceread
   1716 "runtime.racewrite
   1717  runtime.raceread
   1718 "runtime.racewrite
   1719  runtime.raceread
   1720 "runtime.racewrite
   1721 (runtime.racefuncexit
   1722 $runtime.panicindex
   1723 $runtime.panicindex
   1724 $runtime.panicindex
   1725 $runtime.panicindex
   1726 $runtime.panicindex
   1727 $runtime.panicindex 
   1728 $runtime.panicindex 
   1729 $runtime.panicindex 
   1730 $runtime.panicindex 
   1731 $runtime.panicindex 
   1732 $runtime.panicindex 
   1733 $runtime.panicindex!
   1734 $runtime.panicindex!
   1735 $runtime.panicindex!
   1736 $runtime.panicindex!
   1737 $runtime.panicindex!
   1738 0runtime.morestack_noctxtP."".autotmp_0469type.int"".autotmp_0468type.int"".autotmp_0467type.int"".autotmp_0466type.int"".autotmp_0465type.int"".autotmp_0464type.int"".autotmp_0463type.int"".autotmp_0462type.int"".autotmp_0461type.int"".autotmp_0460type.int"".autotmp_04580type.image/color.NRGBA64"".autotmp_0457O,type.image/color.Color"".ytype.int"".xtype.int"".p_ type.*"".NRGBA64"".r"type."".Rectangle"".ptype."".Point
   1739 "".c10type.image/color.NRGBA64"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64*
	+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go0"".(*NRGBA64).SetNRGBA64eH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9gI9^L9UI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9WH)H$H$H1H
   1744 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$H{H
   1746 HBHjHl$xHL$hHl$(HD$pH9LH)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1748 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH97H)H$H$HH
   1750 HBHjHl$xHL$hHl$(HD$pH9H)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$H^H
   1752 HBHjHl$xHL$hHl$(HD$pH9/H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1754 HBHjHl$xHL$hHl$(HD$pH9xH)H$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   1756 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sgH)H$H$HtHHHCHkHl$xHL$hHl$(HD$pH9sH)H$@+HR1~1^R
   1775 N
   1776 *runtime.racefuncenter
   1777 *runtime.racereadrange
   1778 (runtime.racefuncexit
   1779  runtime.raceread
   1780  runtime.raceread
   1781  runtime.raceread
   1782  runtime.raceread
   1783 "runtime.racewrite
   1784  runtime.raceread	
   1785 "runtime.racewrite
   1787  runtime.raceread
   1789 "runtime.racewrite
   1791  runtime.raceread
   1792 "runtime.racewrite
   1793  runtime.raceread
   1794 "runtime.racewrite
   1795  runtime.raceread
   1796 "runtime.racewrite
   1797  runtime.raceread
   1798 "runtime.racewrite
   1799  runtime.raceread
   1800 "runtime.racewrite
   1801 (runtime.racefuncexit
   1802 $runtime.panicindex
   1803 $runtime.panicindex
   1804 $runtime.panicindex
   1805 $runtime.panicindex
   1806 $runtime.panicindex
   1807 $runtime.panicindex
   1808 $runtime.panicindex
   1809 $runtime.panicindex
   1810 $runtime.panicindex
   1811 $runtime.panicindex
   1812 $runtime.panicindex
   1813 $runtime.panicindex
   1814 $runtime.panicindex
   1815 $runtime.panicindex
   1816 $runtime.panicindex
   1817 $runtime.panicindex
   1818 0runtime.morestack_noctxt@("".autotmp_0496type.int"".autotmp_0495type.int"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0492type.int"".autotmp_0491type.int"".autotmp_0490type.int"".autotmp_0489type.int"".autotmp_0488type.int"".autotmp_0487type.int"".ytype.int"".xtype.int"".p? type.*"".NRGBA64"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c00type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64*|&Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go,"".(*NRGBA64).SubImageeH%HD$H;A^HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9JH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H0D
   1825 X
   1826 *runtime.racefuncenter
   1827 *runtime.racereadrange
   1828  runtime.duffcopy
   1829 ,"".Rectangle.Intersecttype."".NRGBA64
   1830 "runtime.newobject
   1831 ,runtime.racewriterange8go.itab.*"".NRGBA64."".Image
   1832 (runtime.racefuncexit type.*"".NRGBA64type."".Image8go.itab.*"".NRGBA64."".Image
   1833  runtime.typ2Itab
   1834  runtime.raceread
   1835  runtime.raceread	
   1836  runtime.raceread
   1837 
   1838  runtime.racereadtype."".NRGBA64
   1841 "runtime.newobject
   1843 "runtime.racewrite6runtime.writeBarrierEnabled
   1846 "runtime.racewrite
   1848  runtime.raceread
   1849 ,runtime.racewriterange8go.itab.*"".NRGBA64."".Image
   1850 (runtime.racefuncexit type.*"".NRGBA64type."".Image8go.itab.*"".NRGBA64."".Image
   1851  runtime.typ2Itab
   1852 .runtime.writebarrierptr
   1853 $runtime.panicslice
   1854 0runtime.morestack_noctxtp""".autotmp_0524type.*uint8"".autotmp_0523 type.*"".NRGBA64"".autotmp_0522type.int"".autotmp_0521type.int"".autotmp_0520type.int"".autotmp_0518? type.*"".NRGBA64"".autotmp_0516 type.*"".NRGBA64"".autotmp_0515/type.[]uint8"".autotmp_0514 type.*"".NRGBA64"".ytype.int"".xtype.int"".pO type.*"".NRGBA64"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NRGBA64(m	jBW7Zt80-	
   1859 <+\0/YN0&$Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA64).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HZHw HW(HT$`HO0HG8HD$pHt$XHL$hH9!H9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HHD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9.HD$ HD$(Hl$H9cH$HD$(H$HHHKHkH$HT$xH$H9HH$H$HD$(HHHHNHnH$HT$xH$H9mH3H4$HD$(HH$HHKHkH$HT$xH$H9HH$H|$(H$HHHH1HQHiH$Ht$xH$H9HHHHD$(Hl$H9H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\$$H\$H'H4(
   1868 X
   1869 *runtime.racefuncenter
   1870 *runtime.racereadrange
   1871 (runtime.racefuncexit
   1872 *runtime.racereadrange
   1873  runtime.raceread
   1874  runtime.raceread
   1875  runtime.raceread
   1876  runtime.raceread
   1877  runtime.raceread	
   1878  runtime.raceread
   1880  runtime.raceread
   1882  runtime.raceread
   1884 (runtime.racefuncexit
   1886 $runtime.panicindex
   1888 $runtime.panicindex
   1890 $runtime.panicindex
   1891 $runtime.panicindex
   1892 (runtime.racefuncexit
   1893 0runtime.morestack_noctxt "".autotmp_0534type.int"".autotmp_0533type.int"".autotmp_0532type.int"".autotmp_0530type.int"".autotmp_0529type.int"".autotmp_0528type.int"".autotmp_0527type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
   1894 "".i1type.int
   1895 "".i0type.int"".~r0type.bool"".p type.*"".NRGBA644>(^hbV
   1897 11
*+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewNRGBA64eH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$g3
   1903 X
   1904 *runtime.racefuncentertype.[]uint8
   1905 "runtime.makeslicetype."".NRGBA64
   1906 "runtime.newobject
   1907 "runtime.racewrite6runtime.writeBarrierEnabled
   1908 "runtime.racewrite
   1909 ,runtime.racewriterange
   1910 (runtime.racefuncexit
   1911 .runtime.writebarrierptr
   1912 0runtime.morestack_noctxtP"".autotmp_0549? type.*"".NRGBA64"".autotmp_0548type.int"".autotmp_0546type.int"".autotmp_0545type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@ type.*"".NRGBA64"".r"type."".Rectangle 11Q
 +HkTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go,"".(*Alpha).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   1917 :
   1918 *runtime.racefuncenter`,image/color.AlphaModelr
   1919  runtime.raceread,image/color.AlphaModel,image/color.AlphaModel
   1920 (runtime.racefuncexit
   1921 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".AlphaKpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go$"".(*Alpha).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   1924 
   1925 B
   1926 *runtime.racefuncenter
   1927 *runtime.racereadrange
   1928 (runtime.racefuncexit
   1929 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Alpha x 
   1931  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Alpha).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@A
   1934 B
   1935 *runtime.racefuncenter
   1936 &"".(*Alpha).AlphaAt,type.image/color.Alpha,type.image/color.ColorVgo.itab.image/color.Alpha.image/color.Color
   1937 runtime.convT2I
   1938 (runtime.racefuncexit
   1939 0runtime.morestack_noctxtP
   1940 "".autotmp_0550,type.image/color.Alpha"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha1z Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go&"".(*Alpha).AlphaAt		eH%HD$H;A0HH$H$1$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9}I9tL9kI9<u1D$$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HH\$(1\$H$H$H$HHCHkH$HL$pHl$(HD$xH9shH)H$H$HtIHHCHkH$HL$pHl$(HD$xH9sH)$H1H
   1949 X
   1950 *runtime.racefuncenter
   1951 *runtime.racereadrange
   1952 (runtime.racefuncexit
   1953  runtime.raceread
   1954  runtime.raceread
   1955  runtime.raceread
   1956  runtime.raceread
   1957  runtime.raceread
   1958 (runtime.racefuncexit
   1959 $runtime.panicindex
   1960 $runtime.panicindex	
   1961 0runtime.morestack_noctxt@"".autotmp_0555,type.image/color.Alpha"".autotmp_0554type.int"".autotmp_0553type.int"".autotmp_0552,type.image/color.Alpha"".ytype.int"".xtype.int"".p?type.*"".Alpha"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha(86
   1963 		
+|Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go*"".(*Alpha).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HH\$0HO
   1966 B
   1967 *runtime.racefuncenterh
   1968  runtime.raceread
   1969  runtime.raceread
   1970  runtime.raceread
   1971 (runtime.racefuncexit
   1972 0runtime.morestack_noctxt@ 
   1973 "".autotmp_0558type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Alpha   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Alpha).SeteH%HD$H;AHH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$H:Hw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9I9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$/HH$H$HL$H$HD$H\$/H\$H$H$H$HHCHkH$H$Hl$@H$H9slH)H$H$HtMHHCHkH$H$Hl$@H$H9sH)l$/@+H1.(
   1985 X
   1986 *runtime.racefuncenter
   1987 *runtime.racereadrange
   1988 (runtime.racefuncexit
   1989  runtime.raceread
   1990  runtime.raceread
   1991  runtime.raceread,image/color.AlphaModel
   1992  runtime.raceread,image/color.AlphaModel,image/color.AlphaModel,type.image/color.Alpha
   1993 "runtime.assertI2T
   1994  runtime.raceread	
   1995 "runtime.racewrite
   1996 
   1997 (runtime.racefuncexit
   1998 
   1999 $runtime.panicindex
   2000 
   2001 $runtime.panicindex
   2003 0runtime.morestack_noctxtP"".autotmp_0563type.int"".autotmp_0562type.int"".autotmp_0560,type.image/color.Alpha"".autotmp_0559O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".Alpha"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha(86
   2004 +~Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha).SetAlphaeH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9eI9\L9SI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HH\$ H$H$H$HHCHkHl$xHL$hHl$ HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$ HD$pH9sH)$@+H1`
   2011 N
   2012 *runtime.racefuncenter
   2013 *runtime.racereadrange
   2014 (runtime.racefuncexit
   2015  runtime.raceread
   2016  runtime.raceread
   2017  runtime.raceread
   2018  runtime.raceread
   2019 "runtime.racewrite
   2020 (runtime.racefuncexit
   2021 $runtime.panicindex
   2022 $runtime.panicindex
   2023 0runtime.morestack_noctxt@"".autotmp_0568type.int"".autotmp_0567type.int"".ytype.int"".xtype.int"".p?type.*"".Alpha"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha(.6
   2024 &vTgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha).SubImageeH%HD$H;AZHH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9FH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H4D
   2028 X
   2029 *runtime.racefuncenter
   2030 *runtime.racereadrange
   2031  runtime.duffcopy
   2032 ,"".Rectangle.Intersecttype."".Alpha
   2033 "runtime.newobject
   2034 ,runtime.racewriterange4go.itab.*"".Alpha."".Image
   2035 (runtime.racefuncexittype.*"".Alphatype."".Image4go.itab.*"".Alpha."".Image
   2036  runtime.typ2Itab
   2037  runtime.raceread
   2038  runtime.raceread	
   2039  runtime.raceread
   2040 
   2041  runtime.racereadtype."".Alpha
   2044 "runtime.newobject
   2046 "runtime.racewrite6runtime.writeBarrierEnabled
   2049 "runtime.racewrite
   2051  runtime.raceread
   2052 ,runtime.racewriterange4go.itab.*"".Alpha."".Image
   2053 (runtime.racefuncexittype.*"".Alphatype."".Image4go.itab.*"".Alpha."".Image
   2054  runtime.typ2Itab
   2055 .runtime.writebarrierptr
   2056 $runtime.panicslice
   2057 0runtime.morestack_noctxtp""".autotmp_0582type.*uint8"".autotmp_0581type.*"".Alpha"".autotmp_0580type.int"".autotmp_0579type.int"".autotmp_0578type.int"".autotmp_0576?type.*"".Alpha"".autotmp_0574type.*"".Alpha"".autotmp_0573/type.[]uint8"".autotmp_0572type.*"".Alpha"".ytype.int"".xtype.int"".pOtype.*"".Alpha"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Alpha(q	jBW7Zt80-	:+\0/YN0&(Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go$"".(*Alpha).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HHw HW(HT$`HO0HG8HD$pHt$XHL$hH9VH9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9gHD$ HD$(Hl$H9H$H$HHCHkH$HL$xHl$(H$H9	H)H$Ht$(H$HHHAHiH$HT$xH$H9H2t$HHHHD$(Hl$H9:H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\$|$HHj 
   2071 X
   2072 *runtime.racefuncenter
   2073 *runtime.racereadrange
   2074 (runtime.racefuncexit
   2075 *runtime.racereadrange
   2076  runtime.raceread
   2077  runtime.raceread
   2078  runtime.raceread
   2079  runtime.raceread
   2080 (runtime.racefuncexit	
   2081  runtime.raceread
   2082 
   2083  runtime.raceread
   2084 
   2085 $runtime.panicindex
   2087 $runtime.panicindex
   2089 (runtime.racefuncexit
   2091 0runtime.morestack_noctxt "".autotmp_0591type.int"".autotmp_0590type.int"".autotmp_0588type.int"".autotmp_0587type.int"".autotmp_0586type.int"".autotmp_0585type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
   2092 "".i1type.int
   2093 "".i0type.int"".~r0type.bool"".ptype.*"".Alpha63^h^V
   2097 11
+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewAlphaeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$k;
   2101 X
   2102 *runtime.racefuncentertype.[]uint8
   2103 "runtime.makeslicetype."".Alpha
   2104 "runtime.newobject
   2105 "runtime.racewrite6runtime.writeBarrierEnabled
   2106 "runtime.racewrite
   2107 ,runtime.racewriterange
   2108 (runtime.racefuncexit
   2109 .runtime.writebarrierptr
   2110 0runtime.morestack_noctxtP"".autotmp_0600?type.*"".Alpha"".autotmp_0599type.int"".autotmp_0597type.int"".autotmp_0596type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Alpha"".r"type."".Rectangle(11M +HgTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go0"".(*Alpha16).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   2114 :
   2115 *runtime.racefuncenter`0image/color.Alpha16Modelr
   2116  runtime.raceread0image/color.Alpha16Model0image/color.Alpha16Model
   2117 (runtime.racefuncexit
   2118 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".p type.*"".Alpha16Kp	p9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha16).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   2121 
   2122 B
   2123 *runtime.racefuncenter
   2124 *runtime.racereadrange
   2125 (runtime.racefuncexit
   2126 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p type.*"".Alpha16 x 
   2128 	 Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*Alpha16).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@?
   2131 B
   2132 *runtime.racefuncenter
   2133 ."".(*Alpha16).Alpha16At0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color
   2134 runtime.convT2I
   2135 (runtime.racefuncexit
   2136 0runtime.morestack_noctxtP
   2137 "".autotmp_06010type.image/color.Alpha16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16	1| #Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go."".(*Alpha16).Alpha16AteH%HD$H;AHH$H$1f$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HPHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9I9L9
   2142 I9<u1fD$f$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HHH\$(1f\$H$H$HD$(H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$(HH$HHKHkH$HT$pHL$xH9HH$H$Ht$(HHHtsHHGLGH9s\HfHHHHHOLGL$HT$pHL$xH9s!H,fmH	f$H1"
   2147 X
   2148 *runtime.racefuncenter
   2149 *runtime.racereadrange
   2150 (runtime.racefuncexit
   2151  runtime.raceread
   2152  runtime.raceread
   2153  runtime.raceread
   2154  runtime.raceread
   2155  runtime.raceread
   2156  runtime.raceread
   2157  runtime.raceread
   2158 
   2159 (runtime.racefuncexit
   2160 
   2161 $runtime.panicindex
   2163 $runtime.panicindex
   2165 $runtime.panicindex
   2167 $runtime.panicindex
   2169 0runtime.morestack_noctxt@"".autotmp_06060type.image/color.Alpha16"".autotmp_0605type.int"".autotmp_0604type.int"".autotmp_06030type.image/color.Alpha16"".ytype.int"".xtype.int"".p? type.*"".Alpha16"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r200type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16(F6	
   2171 	
   2172 +Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go."".(*Alpha16).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HL
   2174 B
   2175 *runtime.racefuncenterh
   2176  runtime.raceread
   2177  runtime.raceread
   2178  runtime.raceread
   2179 (runtime.racefuncexit
   2180 0runtime.morestack_noctxt@ 
   2181 "".autotmp_0615type.int"".~r20type.int"".y type.int"".xtype.int"".p type.*"".Alpha16  	 Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Alpha16).SeteH%HD$H;AHH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$HHw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9I9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$H$HL$H$HD$H\$.H\$H\$.f\$,H\$@HH\$HH$H$H$HHCHkH$H$Hl$HH$H9.H)H$H$HH
   2187 HBHjH$H$Hl$HH$H9H)Hl$,f@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9smH)H$H$HtNHHCHkH$H$Hl$HH$H9sH)Hl$,@+H1(K0
   2194 X
   2195 *runtime.racefuncenter
   2196 *runtime.racereadrange
   2197 (runtime.racefuncexit
   2198  runtime.raceread
   2199  runtime.raceread
   2200  runtime.raceread0image/color.Alpha16Model
   2201  runtime.raceread0image/color.Alpha16Model0image/color.Alpha16Model0type.image/color.Alpha16
   2202 "runtime.assertI2T
   2203  runtime.raceread	
   2204 "runtime.racewrite
   2206  runtime.raceread
   2208 "runtime.racewrite
   2210 (runtime.racefuncexit
   2212 $runtime.panicindex
   2213 $runtime.panicindex
   2214 $runtime.panicindex
   2215 $runtime.panicindex
   2216 0runtime.morestack_noctxtP""".autotmp_0622type.int"".autotmp_0621type.int"".autotmp_0620type.int"".autotmp_0619type.int"".autotmp_06170type.image/color.Alpha16"".autotmp_0616O,type.image/color.Color"".ytype.int"".xtype.int"".p_ type.*"".Alpha16"".r"type."".Rectangle"".ptype."".Point
   2217 "".c10type.image/color.Alpha16"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16(JF			+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go0"".(*Alpha16).SetAlpha16eH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$H\Hw HW(HT$HHO0HL$PHG8HD$XHt$@L9(I9L9I9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   2225 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sgH)H$H$HtHHHCHkHl$xHL$hHl$(HD$pH9sH)H$@+H1"
   2232 N
   2233 *runtime.racefuncenter
   2234 *runtime.racereadrange
   2235 (runtime.racefuncexit
   2236  runtime.raceread
   2237  runtime.raceread
   2238  runtime.raceread
   2239  runtime.raceread
   2240 "runtime.racewrite
   2241  runtime.raceread	
   2242 "runtime.racewrite
   2243 
   2244 (runtime.racefuncexit
   2245 
   2246 $runtime.panicindex
   2247 
   2248 $runtime.panicindex
   2250 $runtime.panicindex
   2252 $runtime.panicindex
   2254 0runtime.morestack_noctxt@"".autotmp_0631type.int"".autotmp_0630type.int"".autotmp_0629type.int"".autotmp_0628type.int"".ytype.int"".xtype.int"".p? type.*"".Alpha16"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c00type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16(@@		
   2256 &Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go,"".(*Alpha16).SubImageeH%HD$H;A]HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9IH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H1D
   2261 X
   2262 *runtime.racefuncenter
   2263 *runtime.racereadrange
   2264  runtime.duffcopy
   2265 ,"".Rectangle.Intersecttype."".Alpha16
   2266 "runtime.newobject
   2267 ,runtime.racewriterange8go.itab.*"".Alpha16."".Image
   2268 (runtime.racefuncexit type.*"".Alpha16type."".Image8go.itab.*"".Alpha16."".Image
   2269  runtime.typ2Itab
   2270  runtime.raceread
   2271  runtime.raceread	
   2272  runtime.raceread
   2273 
   2274  runtime.racereadtype."".Alpha16
   2277 "runtime.newobject
   2279 "runtime.racewrite6runtime.writeBarrierEnabled
   2282 "runtime.racewrite
   2284  runtime.raceread
   2285 ,runtime.racewriterange8go.itab.*"".Alpha16."".Image
   2286 (runtime.racefuncexit type.*"".Alpha16type."".Image8go.itab.*"".Alpha16."".Image
   2287  runtime.typ2Itab
   2288 .runtime.writebarrierptr
   2289 $runtime.panicslice
   2290 0runtime.morestack_noctxtp""".autotmp_0647type.*uint8"".autotmp_0646 type.*"".Alpha16"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643type.int"".autotmp_0641? type.*"".Alpha16"".autotmp_0639 type.*"".Alpha16"".autotmp_0638/type.[]uint8"".autotmp_0637 type.*"".Alpha16"".ytype.int"".xtype.int"".pO type.*"".Alpha16"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".Alpha16(n	j	BW7Zt80-	<+\0/YN0&%Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha16).OpaqueeH%HD$H;AHH$H$H$H$H$ HD$ H$HYHw HW(HT$`HO0HG8HD$pHt$XHL$hH9 H9<t$HH<$H$ HD$ H$HHJ Hj(Hl$@HZ0Hj8Hl$PH\$HHL$8H)HHD$ H\$H$H$ H$H$Hi(Hl$H$H$ H$H$H$HY8Hl$H9.HD$ HD$(Hl$H9cH$HD$(H$HHHKHkH$HT$xH$H9HH$H$HD$(HHHHNHnH$HT$xH$H9mH3H4$HD$(HH$HHKHkH$HT$xH$H9HH$H|$(H$HHHH1HQHiH$Ht$xH$H9HHHHD$(Hl$H9H\$ H\$0H$H$H$HXHl$0HH\$ H\$H\$0H$H$H$HYHl$0HH\$H\$HH\$$H\$H(H5(
   2304 X
   2305 *runtime.racefuncenter
   2306 *runtime.racereadrange
   2307 (runtime.racefuncexit
   2308 *runtime.racereadrange
   2309  runtime.raceread
   2310  runtime.raceread
   2311  runtime.raceread
   2312  runtime.raceread
   2313  runtime.raceread	
   2314  runtime.raceread
   2316  runtime.raceread
   2318  runtime.raceread
   2320 (runtime.racefuncexit
   2322 $runtime.panicindex
   2324 $runtime.panicindex
   2326 $runtime.panicindex
   2327 $runtime.panicindex
   2328 (runtime.racefuncexit
   2329 0runtime.morestack_noctxt "".autotmp_0657type.int"".autotmp_0656type.int"".autotmp_0655type.int"".autotmp_0653type.int"".autotmp_0652type.int"".autotmp_0651type.int"".autotmp_0650type.int"".r"type."".Rectangle"".ro"type."".Rectangle"".itype.int"".ytype.int
   2330 "".i1type.int
   2331 "".i0type.int"".~r0type.bool"".p type.*"".Alpha164>)^
   2333 haV
   2334 11
*+Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals790e5cc5051fc0affc980ade09e929ecTprebuilts/go/darwin-x86/src/image/image.go"".NewAlpha16eH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$h5
   2340 X
   2341 *runtime.racefuncentertype.[]uint8
   2342 "runtime.makeslicetype."".Alpha16
   2343 "runtime.newobject
   2344 "runtime.racewrite6runtime.writeBarrierEnabled
   2345 "runtime.racewrite
   2346 ,runtime.racewriterange
   2347 (runtime.racefuncexit
   2348 .runtime.writebarrierptr
   2349 0runtime.morestack_noctxtP"".autotmp_0672? type.*"".Alpha16"".autotmp_0671type.int"".autotmp_0669type.int"".autotmp_0668type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@ type.*"".Alpha16"".r"type."".Rectangle"
   2352 11P +HjTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   2354 :
   2355 *runtime.racefuncenter`*image/color.GrayModelr
   2356  runtime.raceread*image/color.GrayModel*image/color.GrayModel
   2357 (runtime.racefuncexit
   2358 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".GrayKp
   2360 p9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   2362 
   2363 B
   2364 *runtime.racefuncenter
   2365 *runtime.racereadrange
   2366 (runtime.racefuncexit
   2367 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Gray x 
   2369 
   2370  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@A
   2373 B
   2374 *runtime.racefuncenter
   2375 """.(*Gray).GrayAt*type.image/color.Gray,type.image/color.ColorTgo.itab.image/color.Gray.image/color.Color
   2376 runtime.convT2I
   2377 (runtime.racefuncexit
   2378 0runtime.morestack_noctxtP
   2379 "".autotmp_0673*type.image/color.Gray"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray
   2382 1z Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).GrayAt		eH%HD$H;A0HH$H$1$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9}I9tL9kI9<u1D$$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HH\$(1\$H$H$H$HHCHkH$HL$pHl$(HD$xH9shH)H$H$HtIHHCHkH$HL$pHl$(HD$xH9sH)$H1H
   2389 X
   2390 *runtime.racefuncenter
   2391 *runtime.racereadrange
   2392 (runtime.racefuncexit
   2393  runtime.raceread
   2394  runtime.raceread
   2395  runtime.raceread
   2396  runtime.raceread
   2397  runtime.raceread
   2398 (runtime.racefuncexit
   2399 $runtime.panicindex
   2400 $runtime.panicindex	
   2401 0runtime.morestack_noctxt@"".autotmp_0678*type.image/color.Gray"".autotmp_0677type.int"".autotmp_0676type.int"".autotmp_0675*type.image/color.Gray"".ytype.int"".xtype.int"".p?type.*"".Gray"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray(86
   2403 
   2404 		
+|Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go("".(*Gray).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HH\$0HO
   2407 B
   2408 *runtime.racefuncenterh
   2409  runtime.raceread
   2410  runtime.raceread
   2411  runtime.raceread
   2412 (runtime.racefuncexit
   2413 0runtime.morestack_noctxt@ 
   2414 "".autotmp_0681type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray  
   2416  Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray).SeteH%HD$H;AHH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$H:Hw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9I9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$/HH$H$HL$H$HD$H\$/H\$H$H$H$HHCHkH$H$Hl$@H$H9slH)H$H$HtMHHCHkH$H$Hl$@H$H9sH)l$/@+H1.(
   2427 X
   2428 *runtime.racefuncenter
   2429 *runtime.racereadrange
   2430 (runtime.racefuncexit
   2431  runtime.raceread
   2432  runtime.raceread
   2433  runtime.raceread*image/color.GrayModel
   2434  runtime.raceread*image/color.GrayModel*image/color.GrayModel*type.image/color.Gray
   2435 "runtime.assertI2T
   2436  runtime.raceread	
   2437 "runtime.racewrite
   2438 
   2439 (runtime.racefuncexit
   2440 
   2441 $runtime.panicindex
   2442 
   2443 $runtime.panicindex
   2445 0runtime.morestack_noctxtP"".autotmp_0686type.int"".autotmp_0685type.int"".autotmp_0683*type.image/color.Gray"".autotmp_0682O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".Gray"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray(86
   2446 
   2447 +~Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go$"".(*Gray).SetGrayeH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9eI9\L9SI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HH\$ H$H$H$HHCHkHl$xHL$hHl$ HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$ HD$pH9sH)$@+H1`
   2454 N
   2455 *runtime.racefuncenter
   2456 *runtime.racereadrange
   2457 (runtime.racefuncexit
   2458  runtime.raceread
   2459  runtime.raceread
   2460  runtime.raceread
   2461  runtime.raceread
   2462 "runtime.racewrite
   2463 (runtime.racefuncexit
   2464 $runtime.panicindex
   2465 $runtime.panicindex
   2466 0runtime.morestack_noctxt@"".autotmp_0691type.int"".autotmp_0690type.int"".ytype.int"".xtype.int"".p?type.*"".Gray"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray(.6
   2468 &vTgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray).SubImageeH%HD$H;AZHH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9FH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H4D
   2472 X
   2473 *runtime.racefuncenter
   2474 *runtime.racereadrange
   2475  runtime.duffcopy
   2476 ,"".Rectangle.Intersecttype."".Gray
   2477 "runtime.newobject
   2478 ,runtime.racewriterange2go.itab.*"".Gray."".Image
   2479 (runtime.racefuncexittype.*"".Graytype."".Image2go.itab.*"".Gray."".Image
   2480  runtime.typ2Itab
   2481  runtime.raceread
   2482  runtime.raceread	
   2483  runtime.raceread
   2484 
   2485  runtime.racereadtype."".Gray
   2488 "runtime.newobject
   2490 "runtime.racewrite6runtime.writeBarrierEnabled
   2493 "runtime.racewrite
   2495  runtime.raceread
   2496 ,runtime.racewriterange2go.itab.*"".Gray."".Image
   2497 (runtime.racefuncexittype.*"".Graytype."".Image2go.itab.*"".Gray."".Image
   2498  runtime.typ2Itab
   2499 .runtime.writebarrierptr
   2500 $runtime.panicslice
   2501 0runtime.morestack_noctxtp""".autotmp_0705type.*uint8"".autotmp_0704type.*"".Gray"".autotmp_0703type.int"".autotmp_0702type.int"".autotmp_0701type.int"".autotmp_0699?type.*"".Gray"".autotmp_0697type.*"".Gray"".autotmp_0696/type.[]uint8"".autotmp_0695type.*"".Gray"".ytype.int"".xtype.int"".pOtype.*"".Gray"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray(q	jBW7Zt80-	:+\0/YN0&(Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).OpaqueneH%H;av!HH\$H$D$H
   2508 :
   2509 *runtime.racefuncenterN
   2510 (runtime.racefuncexitb
   2511 0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".Gray@
   2514 $Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewGrayeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$k;
   2516 X
   2517 *runtime.racefuncentertype.[]uint8
   2518 "runtime.makeslicetype."".Gray
   2519 "runtime.newobject
   2520 "runtime.racewrite6runtime.writeBarrierEnabled
   2521 "runtime.racewrite
   2522 ,runtime.racewriterange
   2523 (runtime.racefuncexit
   2524 .runtime.writebarrierptr
   2525 0runtime.morestack_noctxtP"".autotmp_0714?type.*"".Gray"".autotmp_0713type.int"".autotmp_0711type.int"".autotmp_0710type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Gray"".r"type."".Rectangle(11M +HgTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go."".(*Gray16).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   2530 :
   2531 *runtime.racefuncenter`.image/color.Gray16Modelr
   2532  runtime.raceread.image/color.Gray16Model.image/color.Gray16Model
   2533 (runtime.racefuncexit
   2534 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".Gray16Kpp9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray16).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   2538 
   2539 B
   2540 *runtime.racefuncenter
   2541 *runtime.racereadrange
   2542 (runtime.racefuncexit
   2543 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".Gray16 x 
   2545  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray16).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@?
   2549 B
   2550 *runtime.racefuncenter
   2551 *"".(*Gray16).Gray16At.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color
   2552 runtime.convT2I
   2553 (runtime.racefuncexit
   2554 0runtime.morestack_noctxtP
   2555 "".autotmp_0715.type.image/color.Gray16"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray161| #Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray16).Gray16AteH%HD$H;AHH$H$1f$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$HPHw HW(HT$PHO0HL$XHG8HD$`Ht$HL9I9L9
   2561 I9<u1fD$f$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HHH\$(1f\$H$H$HD$(H$HHHKHkH$HT$pHL$xH9HH$H$H$HD$(HH$HHKHkH$HT$pHL$xH9HH$H$Ht$(HHHtsHHGLGH9s\HfHHHHHOLGL$HT$pHL$xH9s!H,fmH	f$H1"
   2566 X
   2567 *runtime.racefuncenter
   2568 *runtime.racereadrange
   2569 (runtime.racefuncexit
   2570  runtime.raceread
   2571  runtime.raceread
   2572  runtime.raceread
   2573  runtime.raceread
   2574  runtime.raceread
   2575  runtime.raceread
   2576  runtime.raceread
   2577 
   2578 (runtime.racefuncexit
   2579 
   2580 $runtime.panicindex
   2582 $runtime.panicindex
   2584 $runtime.panicindex
   2586 $runtime.panicindex
   2588 0runtime.morestack_noctxt@"".autotmp_0720.type.image/color.Gray16"".autotmp_0719type.int"".autotmp_0718type.int"".autotmp_0717.type.image/color.Gray16"".ytype.int"".xtype.int"".p?type.*"".Gray16"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16(F6
   2591 	
   2592 +Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go,"".(*Gray16).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HL
   2594 B
   2595 *runtime.racefuncenterh
   2596  runtime.raceread
   2597  runtime.raceread
   2598  runtime.raceread
   2599 (runtime.racefuncexit
   2600 0runtime.morestack_noctxt@ 
   2601 "".autotmp_0729type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray16   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*Gray16).SeteH%HD$H;AHH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$HHw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9I9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$H$HL$H$HD$H\$.H\$H\$.f\$,H\$@HH\$HH$H$H$HHCHkH$H$Hl$HH$H9.H)H$H$HH
   2608 HBHjH$H$Hl$HH$H9H)Hl$,f@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9smH)H$H$HtNHHCHkH$H$Hl$HH$H9sH)Hl$,@+H1(K0
   2615 X
   2616 *runtime.racefuncenter
   2617 *runtime.racereadrange
   2618 (runtime.racefuncexit
   2619  runtime.raceread
   2620  runtime.raceread
   2621  runtime.raceread.image/color.Gray16Model
   2622  runtime.raceread.image/color.Gray16Model.image/color.Gray16Model.type.image/color.Gray16
   2623 "runtime.assertI2T
   2624  runtime.raceread	
   2625 "runtime.racewrite
   2627  runtime.raceread
   2629 "runtime.racewrite
   2631 (runtime.racefuncexit
   2633 $runtime.panicindex
   2634 $runtime.panicindex
   2635 $runtime.panicindex
   2636 $runtime.panicindex
   2637 0runtime.morestack_noctxtP""".autotmp_0736type.int"".autotmp_0735type.int"".autotmp_0734type.int"".autotmp_0733type.int"".autotmp_0731.type.image/color.Gray16"".autotmp_0730O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".Gray16"".r"type."".Rectangle"".ptype."".Point
   2638 "".c1.type.image/color.Gray16"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16(JF		+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go,"".(*Gray16).SetGray16eH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$H\Hw HW(HT$HHO0HL$PHG8HD$XHt$@L9(I9L9I9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   2647 HBHjHl$xHL$hHl$(HD$pH9H)H$f@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sgH)H$H$HtHHHCHkHl$xHL$hHl$(HD$pH9sH)H$@+H1"
   2654 N
   2655 *runtime.racefuncenter
   2656 *runtime.racereadrange
   2657 (runtime.racefuncexit
   2658  runtime.raceread
   2659  runtime.raceread
   2660  runtime.raceread
   2661  runtime.raceread
   2662 "runtime.racewrite
   2663  runtime.raceread	
   2664 "runtime.racewrite
   2665 
   2666 (runtime.racefuncexit
   2667 
   2668 $runtime.panicindex
   2669 
   2670 $runtime.panicindex
   2672 $runtime.panicindex
   2674 $runtime.panicindex
   2676 0runtime.morestack_noctxt@"".autotmp_0745type.int"".autotmp_0744type.int"".autotmp_0743type.int"".autotmp_0742type.int"".ytype.int"".xtype.int"".p?type.*"".Gray16"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16(@@	
   2679 &Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray16).SubImageeH%HD$H;A]HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9IH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H1D
   2684 X
   2685 *runtime.racefuncenter
   2686 *runtime.racereadrange
   2687  runtime.duffcopy
   2688 ,"".Rectangle.Intersecttype."".Gray16
   2689 "runtime.newobject
   2690 ,runtime.racewriterange6go.itab.*"".Gray16."".Image
   2691 (runtime.racefuncexittype.*"".Gray16type."".Image6go.itab.*"".Gray16."".Image
   2692  runtime.typ2Itab
   2693  runtime.raceread
   2694  runtime.raceread	
   2695  runtime.raceread
   2696 
   2697  runtime.racereadtype."".Gray16
   2700 "runtime.newobject
   2702 "runtime.racewrite6runtime.writeBarrierEnabled
   2705 "runtime.racewrite
   2707  runtime.raceread
   2708 ,runtime.racewriterange6go.itab.*"".Gray16."".Image
   2709 (runtime.racefuncexittype.*"".Gray16type."".Image6go.itab.*"".Gray16."".Image
   2710  runtime.typ2Itab
   2711 .runtime.writebarrierptr
   2712 $runtime.panicslice
   2713 0runtime.morestack_noctxtp""".autotmp_0761type.*uint8"".autotmp_0760type.*"".Gray16"".autotmp_0759type.int"".autotmp_0758type.int"".autotmp_0757type.int"".autotmp_0755?type.*"".Gray16"".autotmp_0753type.*"".Gray16"".autotmp_0752/type.[]uint8"".autotmp_0751type.*"".Gray16"".ytype.int"".xtype.int"".pOtype.*"".Gray16"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray16(n	jBW7Zt80-	<+\0/YN0&%Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray16).OpaqueneH%H;av!HH\$H$D$H
   2721 :
   2722 *runtime.racefuncenterN
   2723 (runtime.racefuncexitb
   2724 0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".Gray16@
   2727 $Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewGray16eH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$h5
   2729 X
   2730 *runtime.racefuncentertype.[]uint8
   2731 "runtime.makeslicetype."".Gray16
   2732 "runtime.newobject
   2733 "runtime.racewrite6runtime.writeBarrierEnabled
   2734 "runtime.racewrite
   2735 ,runtime.racewriterange
   2736 (runtime.racefuncexit
   2737 .runtime.writebarrierptr
   2738 0runtime.morestack_noctxtP"".autotmp_0770?type.*"".Gray16"".autotmp_0769type.int"".autotmp_0767type.int"".autotmp_0766type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r1@type.*"".Gray16"".r"type."".Rectangle"11P +HjTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go*"".(*CMYK).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   2743 :
   2744 *runtime.racefuncenter`*image/color.CMYKModelr
   2745  runtime.raceread*image/color.CMYKModel*image/color.CMYKModel
   2746 (runtime.racefuncexit
   2747 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".CMYKKp
p9Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*CMYK).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   2751 
   2752 B
   2753 *runtime.racefuncenter
   2754 *runtime.racereadrange
   2755 (runtime.racefuncexit
   2756 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".CMYK x 
   2758 
 Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*CMYK).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$<H\$HD$ H\$(H\$`H\$0H\$hH@&
   2762 B
   2763 *runtime.racefuncenter
   2764 """.(*CMYK).CMYKAt*type.image/color.CMYK,type.image/color.ColorTgo.itab.image/color.CMYK.image/color.Color
   2765 runtime.convT2I
   2766 (runtime.racefuncexit
   2767 0runtime.morestack_noctxtP
   2768 "".autotmp_0771*type.image/color.CMYK"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK
1 Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go""".(*CMYK).CMYKAteH%HD$H;AHH$H$1$$$$1H$H\$8H$H\$@H$H$H$ HD$ LL$8LD$@H$H%Hw HW(HT$PHO0HL$XHG8HD$`Ht$HL9I9L9I9<uC1@l$@$@l$@$@l$@$@l$@$HH$H\$ H$H\$H|$hH<$H$ HD$hHX Hl$ H)Hl$0H$H$ H$H\$hH$H$HD$hHX(Hl$H)HHhHHl$0HHH\$(1\$\$\$\$H$H$HD$(H$HHHKHkH$HT$pHL$xH9HH$H$HD$(HHlHHNHnH$HT$pHL$xH9?H\$H4$HD$(HH$HHKHkH$HT$pHL$xH9HH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9AHH$H$HD$(HHHHNHnH$HT$pHL$xH9H\$H4$HD$(H$HHHKHkH$HT$pHL$xH9HH$HD$(H$HHtkHHKHkH$HT$pHL$xH9sBHH\$$\$$\$$$H91 %2
   2780 X
   2781 *runtime.racefuncenter
   2782 *runtime.racereadrange
   2783 (runtime.racefuncexit
   2784  runtime.raceread
   2785  runtime.raceread
   2786  runtime.raceread
   2787  runtime.raceread
   2788  runtime.raceread	
   2789  runtime.raceread
   2791  runtime.raceread
   2793  runtime.raceread
   2795  runtime.raceread
   2796  runtime.raceread
   2797  runtime.raceread
   2798 (runtime.racefuncexit
   2799 $runtime.panicindex
   2800 $runtime.panicindex
   2801 $runtime.panicindex
   2802 $runtime.panicindex
   2803 $runtime.panicindex
   2804 $runtime.panicindex
   2805 $runtime.panicindex
   2806 $runtime.panicindex
   2807 0runtime.morestack_noctxt@"".autotmp_0776*type.image/color.CMYK"".autotmp_0775type.int"".autotmp_0774type.int"".autotmp_0773*type.image/color.CMYK"".ytype.int"".xtype.int"".p?type.*"".CMYK"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK(n	6
   2810 	6+Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go("".(*CMYK).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HHH\$0HK
   2812 B
   2813 *runtime.racefuncenterh
   2814  runtime.raceread
   2815  runtime.raceread
   2816  runtime.raceread
   2817 (runtime.racefuncexit
   2818 0runtime.morestack_noctxt@ 
   2819 "".autotmp_0793type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".CMYK  
 Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*CMYK).SeteH%HD$H;A4HH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$HHw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9xI9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHHH\$@HH$H$H\$H$H\$HH$HH[ HL$HD$ 1\$,\$-\$.\$/HH$H$HL$H$HD$H\$,H\$\$,\$(\$-\$)\$.\$*\$/\$+H\$@HH\$HH$H$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   2826 HBHjH$H$Hl$HH$H9LH)l$(@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9H)H$H$HH
   2828 HBHjH$H$Hl$HH$H9H)l$)@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9)H)H$H$HH
   2830 HBHjH$H$Hl$HH$H9H)l$*@+H\$@HH\$HH$H$HHCHkH$H$Hl$HH$H9slH)H$H$HtMHHCHkH$H$Hl$HH$H9sH)l$+@+H5u1;@
   2841 X
   2842 *runtime.racefuncenter
   2843 *runtime.racereadrange
   2844 (runtime.racefuncexit
   2845  runtime.raceread
   2846  runtime.raceread
   2847  runtime.raceread*image/color.CMYKModel
   2848  runtime.raceread*image/color.CMYKModel*image/color.CMYKModel*type.image/color.CMYK
   2849 "runtime.assertI2T	
   2850  runtime.raceread
   2851 
   2852 "runtime.racewrite
   2854  runtime.raceread
   2856 "runtime.racewrite
   2857  runtime.raceread
   2858 "runtime.racewrite
   2859  runtime.raceread
   2860 "runtime.racewrite
   2861 (runtime.racefuncexit
   2862 $runtime.panicindex
   2863 $runtime.panicindex
   2864 $runtime.panicindex
   2865 $runtime.panicindex
   2866 $runtime.panicindex
   2867 $runtime.panicindex
   2868 $runtime.panicindex
   2869 $runtime.panicindex
   2870 0runtime.morestack_noctxtP&"".autotmp_0802type.int"".autotmp_0801type.int"".autotmp_0800type.int"".autotmp_0799type.int"".autotmp_0798type.int"".autotmp_0797type.int"".autotmp_0795*type.image/color.CMYK"".autotmp_0794O,type.image/color.Color"".ytype.int"".xtype.int"".p_type.*"".CMYK"".r"type."".Rectangle"".ptype."".Point
   2871 "".c1*type.image/color.CMYK"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK(s
   2872 Z

	+Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals524aafe7d1228e5424d64f5d94771fbfTprebuilts/go/darwin-x86/src/image/image.go$"".(*CMYK).SetCMYKeH%H;a1HH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9I9~L9uI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HHH\$ HH\$(H$H$H$HHCHkHl$xHL$hHl$(HD$pH9wH)H$H$HQH
   2878 HBHjHl$xHL$hHl$(HD$pH9"H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   2880 HBHjHl$xHL$hHl$(HD$pH9qH)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9H)H$H$HH
   2882 HBHjHl$xHL$hHl$(HD$pH9H)$@+H\$ HH\$(H$H$HHCHkHl$xHL$hHl$(HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$(HD$pH9sH)$@+HY1>2
   2894 N
   2895 *runtime.racefuncenter
   2896 *runtime.racereadrange
   2897 (runtime.racefuncexit
   2898  runtime.raceread
   2899  runtime.raceread
   2900  runtime.raceread
   2901  runtime.raceread
   2902 "runtime.racewrite
   2903  runtime.raceread	
   2904 "runtime.racewrite
   2905 
   2906  runtime.raceread
   2908 "runtime.racewrite
   2910  runtime.raceread
   2911 "runtime.racewrite
   2912 (runtime.racefuncexit
   2913 $runtime.panicindex
   2914 $runtime.panicindex
   2915 $runtime.panicindex
   2916 $runtime.panicindex
   2917 $runtime.panicindex
   2918 $runtime.panicindex
   2919 $runtime.panicindex
   2920 $runtime.panicindex
   2921 0runtime.morestack_noctxt@ "".autotmp_0817type.int"".autotmp_0816type.int"".autotmp_0815type.int"".autotmp_0814type.int"".autotmp_0813type.int"".autotmp_0812type.int"".ytype.int"".xtype.int"".p?type.*"".CMYK"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK(kT

&Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go&"".(*CMYK).SubImageeH%HD$H;A^HH$H$1H$H$H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9JH9<HH$HD$H$H$HD$@H$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$H$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHHH\$pH$H$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H1H9t%H$H$H$HHH$HH\$HH\$HD$0H$Hl$H0D
   2929 X
   2930 *runtime.racefuncenter
   2931 *runtime.racereadrange
   2932  runtime.duffcopy
   2933 ,"".Rectangle.Intersecttype."".CMYK
   2934 "runtime.newobject
   2935 ,runtime.racewriterange2go.itab.*"".CMYK."".Image
   2936 (runtime.racefuncexittype.*"".CMYKtype."".Image2go.itab.*"".CMYK."".Image
   2937  runtime.typ2Itab
   2938  runtime.raceread
   2939  runtime.raceread	
   2940  runtime.raceread
   2941 
   2942  runtime.racereadtype."".CMYK
   2945 "runtime.newobject
   2947 "runtime.racewrite6runtime.writeBarrierEnabled
   2950 "runtime.racewrite
   2952  runtime.raceread
   2953 ,runtime.racewriterange2go.itab.*"".CMYK."".Image
   2954 (runtime.racefuncexittype.*"".CMYKtype."".Image2go.itab.*"".CMYK."".Image
   2955  runtime.typ2Itab
   2956 .runtime.writebarrierptr
   2957 $runtime.panicslice
   2958 0runtime.morestack_noctxtp""".autotmp_0837type.*uint8"".autotmp_0836type.*"".CMYK"".autotmp_0835type.int"".autotmp_0834type.int"".autotmp_0833type.int"".autotmp_0831?type.*"".CMYK"".autotmp_0829type.*"".CMYK"".autotmp_0828/type.[]uint8"".autotmp_0827type.*"".CMYK"".ytype.int"".xtype.int"".pOtype.*"".CMYK"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".CMYK(m	j
BW7Zt80-	
   2964 <+\0/YN0&$Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go""".(*CMYK).OpaqueneH%H;av!HH\$H$D$H
   2966 :
   2967 *runtime.racefuncenterN
   2968 (runtime.racefuncexitb
   2969 0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".CMYK@
   2971 $Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewCMYKeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HHhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$HH$Hl$g3
   2973 X
   2974 *runtime.racefuncentertype.[]uint8
   2975 "runtime.makeslicetype."".CMYK
   2976 "runtime.newobject
   2977 "runtime.racewrite6runtime.writeBarrierEnabled
   2978 "runtime.racewrite
   2979 ,runtime.racewriterange
   2980 (runtime.racefuncexit
   2981 .runtime.writebarrierptr
   2982 0runtime.morestack_noctxtP"".autotmp_0846?type.*"".CMYK"".autotmp_0845type.int"".autotmp_0843type.int"".autotmp_0842type.int"".r"type."".Rectangle"".r"type."".Rectangle"".buf/type.[]uint8"".wtype.int"".~r1@type.*"".CMYK"".r"type."".Rectangle 11Q
 +HkTgclocals8c4115247b3638c79e08e0e295c9b378Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go2"".(*Paletted).ColorModeleH%H;aH8H\$8H$1H\$HH\$PHH$HH\$HH\$H\$@H\$H|$t2HD$@HD$ H\$(H\$HH\$0H\$PH8%U
   2987 B
   2988 *runtime.racefuncenterh0type.image/color.Palette~,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model
   2989 runtime.convT2I
   2990 (runtime.racefuncexit
   2991 0runtime.morestack_noctxt0p"".~r0,type.image/color.Model"".p"type.*"".Palettedpop
   2993  n"Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/image.go*"".(*Paletted).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$ HD$ H\$Ht.Hk Hl$ Hk(Hl$(Hk0Hl$0Hk8Hl$8Hb
   2995 
   2996 B
   2997 *runtime.racefuncenter
   2998 *runtime.racereadrange
   2999 (runtime.racefuncexit
   3000 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".p"type.*"".Paletted x 
   3002  Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Paletted).AteH%HD$H;AHH$H$1H$H$H$H$H$@H$HiHHu1H$H$H1H$H\$0H$H\$8H$H$ HD$ LL$0LD$8H$HHHy Hq(Ht$HHQ0HT$PHA8HD$XH|$@L9I9L9I9<H$H$@H$HK@HCHHkPH$H$HH$vpH$H$HtUHK@HCHHkPH$H$HH$v$H)H$HiH$HH$H\$H$H\$HL$`H$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HH\$ H$H$H$@H$H$H$HHCHkHl$xHL$hHl$ HD$pH9MH)H$H$H
   3013 HBHjHl$xHL$hHl$ HD$pH9	H)+HHHR@HKHHkPH$HH$H$H9HHH$H$HH
   3014 HBHjHl$xHL$hHl$ HD$pH9snH)+HHHR@HKHHkPH$HH$H$H9s+HHH+H$HkH$H`10
   3020 X
   3021 *runtime.racefuncenter
   3022  runtime.raceread
   3023 (runtime.racefuncexit
   3024 *runtime.racereadrange
   3025  runtime.raceread
   3026  runtime.raceread
   3027 (runtime.racefuncexit
   3028 $runtime.panicindex
   3029 $runtime.panicindex
   3030  runtime.raceread
   3031  runtime.raceread	
   3032  runtime.raceread
   3033 
   3034  runtime.raceread
   3035 
   3036  runtime.raceread
   3038  runtime.raceread
   3040  runtime.raceread
   3041 (runtime.racefuncexit
   3042 $runtime.panicindex
   3043 $runtime.panicindex
   3044 $runtime.panicindex
   3045 $runtime.panicindex
   3046 $runtime.panicindex
   3047 0runtime.morestack_noctxtP"".autotmp_0850type.int"".autotmp_0849type.int"".autotmp_0847type.int"".ytype.int"".xtype.int"".po"type.*"".Paletted"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted4iQH(.+Q;
:{
QTgclocals9bafea7b2a19e2cc3d593c51cce7c661Tgclocalsf7103403aec01e4990bdf6681d1baac8Tprebuilts/go/darwin-x86/src/image/image.go0"".(*Paletted).PixOffseteH%H;aHH\$H$H\$H$H$ HD$HX Hl$ H)Hl$H$H$ H$H\$H$H$HD$HX(Hl$(H)HHhHHl$HH\$0HO
   3054 B
   3055 *runtime.racefuncenterh
   3056  runtime.raceread
   3057  runtime.raceread
   3058  runtime.raceread
   3059 (runtime.racefuncexit
   3060 0runtime.morestack_noctxt@ 
   3061 "".autotmp_0860type.int"".~r20type.int"".y type.int"".xtype.int"".p"type.*"".Paletted   Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go$"".(*Paletted).SeteH%HD$H;AHH$H$1H$H\$PH$H\$XH$H$H$ HD$ LL$PLD$XH$H)Hw HW(HT$hHO0HL$pHG8HD$xHt$`L9I9L9I9<u
HH$H\$8H$H\$0H$H<$H$ H$HX Hl$8H)Hl$HH$H$ H$H$H$H$H$HX(Hl$0H)HHhHHl$HHH\$@H$H$H$@H$HH^@HH$HKHL$HKHL$H$H\$H$H\$ H\$(H\$HH$H$H$HHCHkH$H$Hl$@H$H9slH)H$H$HtMHHCHkH$H$Hl$@H$H9sH)Hl$H@+H1?
   3074 X
   3075 *runtime.racefuncenter
   3076 *runtime.racereadrange
   3077 (runtime.racefuncexit
   3078  runtime.raceread
   3079  runtime.raceread
   3080  runtime.raceread
   3081  runtime.raceread
   3082 2image/color.Palette.Index
   3083  runtime.raceread
   3084 "runtime.racewrite
   3085 
   3086 (runtime.racefuncexit
   3087 
   3088 $runtime.panicindex
   3089 
   3090 $runtime.panicindex
   3091 
   3092 0runtime.morestack_noctxtP"".autotmp_0864type.int"".autotmp_0863type.int"".autotmp_0861type.int"".ytype.int"".xtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted(@6
   3093 +Tgclocals1b19623ccfd3351b9464338f230e8b94Tgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go6"".(*Paletted).ColorIndexAt	eH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9mI9dL9[I9<u$HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HH\$ H$H$H$HHCHkHl$xHL$hHl$ HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$ HD$pH9sH)+@$H1X
   3099 N
   3100 *runtime.racefuncenter
   3101 *runtime.racereadrange
   3102 (runtime.racefuncexit
   3103  runtime.raceread
   3104  runtime.raceread
   3105  runtime.raceread
   3106  runtime.raceread
   3107  runtime.raceread
   3108 (runtime.racefuncexit
   3109 $runtime.panicindex
   3110 $runtime.panicindex
   3111 0runtime.morestack_noctxt@"".autotmp_0869type.int"".autotmp_0868type.int"".ytype.int"".xtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".ptype."".Point"".itype.int"".~r20type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted(62
   3113 &vTgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go8"".(*Paletted).SetColorIndexeH%H;aHH$H$1H$H\$0H$H\$8H$H$H$ HD$ LL$0LD$8H$HHw HW(HT$HHO0HL$PHG8HD$XHt$@L9eI9\L9SI9<u
HH$H\$H$H\$H|$`H<$H$ HD$`HX Hl$H)Hl$(H$H$ H$H\$`H$H$HD$`HX(Hl$H)HHhHHl$(HH\$ H$H$H$HHCHkHl$xHL$hHl$ HD$pH9sfH)H$H$HtGHHCHkHl$xHL$hHl$ HD$pH9sH)$@+H1`
   3120 N
   3121 *runtime.racefuncenter
   3122 *runtime.racereadrange
   3123 (runtime.racefuncexit
   3124  runtime.raceread
   3125  runtime.raceread
   3126  runtime.raceread
   3127  runtime.raceread
   3128 "runtime.racewrite
   3129 (runtime.racefuncexit
   3130 $runtime.panicindex
   3131 $runtime.panicindex
   3132 0runtime.morestack_noctxt@"".autotmp_0874type.int"".autotmp_0873type.int"".ytype.int"".xtype.int"".p?"type.*"".Paletted"".r"type."".Rectangle"".ptype."".Point"".itype.int"".index0type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted(.6
   3133 &vTgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/image.go."".(*Paletted).SubImageeH%HD$H;AHH$H$1H$H$ H$H$H$ HD$ H$H$H$H\$H$H\$H$H\$H$HoH^ H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$H$H$H$H9H9<@HH$HD$H$H$HD$XH$HH1HH$H$@H$H$H$@H$HHk@H$HLC@LD$Hl$H-H,$H$H$H1H9t%H$H$ H$HHH$HH\$HH\$HD$iLH$Ht$hHT$`H$H$H$ H$HX Hl$hH)Hl$xH$H$ H$H$H$H$H$HX(Hl$`H)HHhHHl$xHH\$pH$H$H$Hl$pL@LHL9LI)I)ItM*L$L$L$H$H$ HD$ H$H{H^ HHH$H\$ H$H\$(H$H\$0H$H\$8H\$@H$H\$HH$H\$PH$H\$XH$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$H$H$HIL$IhHhH$H$ HD$ H$H$Hh H$Hh(H$Hh0H$Hh8H$H$@H$H$H$@H$HHk@H$HLC@LD$Hl$H-H,$H$H$H1H9t%H$H$ H$HHH$HH\$HH\$HD$iLH$Hl$_~H
   3138 \
   3139 X
   3140 *runtime.racefuncenter
   3141 *runtime.racereadrange
   3142  runtime.duffcopy
   3143 ,"".Rectangle.Intersect type."".Paletted
   3144 "runtime.newobject
   3145 ,runtime.racewriterange
   3146  runtime.duffzero
   3147 "runtime.racewrite
   3148  runtime.raceread0type.image/color.Palette
   3149 (runtime.typedmemmove:go.itab.*"".Paletted."".Image
   3150 (runtime.racefuncexit"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image	
   3151  runtime.typ2Itab
   3152 
   3153  runtime.raceread
   3154 
   3155  runtime.raceread
   3157  runtime.raceread
   3159  runtime.raceread
   3161 *runtime.racereadrange
   3162  runtime.duffcopy
   3163 ,"".Rectangle.Intersect type."".Paletted
   3164 "runtime.newobject
   3165 "runtime.racewrite6runtime.writeBarrierEnabled
   3166 "runtime.racewrite
   3167  runtime.raceread
   3168 ,runtime.racewriterange
   3169 "runtime.racewrite
   3170  runtime.raceread0type.image/color.Palette
   3171 (runtime.typedmemmove:go.itab.*"".Paletted."".Image
   3172 (runtime.racefuncexit"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image
   3173  runtime.typ2Itab
   3174 .runtime.writebarrierptr
   3175 $runtime.panicslice
   3176 0runtime.morestack_noctxtp&"".autotmp_0889type.*uint8"".autotmp_0888"type.*"".Paletted"".autotmp_0887type.int"".autotmp_0886type.int"".autotmp_0885type.int"".autotmp_0883?"type.*"".Paletted"".autotmp_0881"type.*"".Paletted"".autotmp_0880"type."".Rectangle"".autotmp_0879/type.[]uint8"".autotmp_0878"type.*"".Paletted"".autotmp_0877"type."".Rectangle"".ytype.int"".xtype.int"".pO"type.*"".Paletted"".r"type."".Rectangle"".itype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".p"type.*"".Paletted*BW-Zt80 -
>+0D`N0;.Tgclocalsbeaeb9c48e230c42df709f19dd51c03bTgclocals6303a5fef1b34377e043c222d45020fcTprebuilts/go/darwin-x86/src/image/image.go*"".(*Paletted).OpaqueeH%H$H;AHH$H$H|$`1H$H$H$ HD$ H$H&HJ Hj(Hl$HHZ0Hj8Hl$XH\$PHL$@H)HD$(H\$ H$H$ H$H$Hi(Hl$H$H$ H$H$H$HX8Hl$H9VH$H$Hl$(LD$ LKM9'L9LI)I)ItM*L$L$L$L$1L$LD$0L$LHL$8Hl$0H9}FH$hH$H$h(H\$`@H+HHL$8HHL$8Hl$0H9|H\$(H\$8H$H$H$H$HXHl$8HH\$(H\$ H\$8H$H$H$HYHl$8HH\$ H\$HH\$H$H$@H$HHS@HCHHkPH$1H$HD$0H$HHL$8Hl$0H9H$`H$H$`HHHKHD$8H$H$pH$H$xH\$`H=ssHu<H$`HL$8HHHL$8Hl$0H9q$HH$HZ \$t$HFY$
   3186 ^
   3187 *runtime.racefuncenterv
   3188  runtime.duffzero
   3189 *runtime.racereadrange
   3190  runtime.raceread
   3191  runtime.raceread
   3192  runtime.raceread
   3193  runtime.raceread
   3194  runtime.raceread
   3195  runtime.raceread	
   3196 $runtime.panicslice	
   3197  runtime.raceread
   3198 
   3199  runtime.raceread
   3201 (runtime.racefuncexit

   3204 (runtime.racefuncexit
   3205 $runtime.panicindex
   3206 0runtime.morestack_noctxt ."".autotmp_0908,type.image/color.Color"".autotmp_0907.type.*image/color.Color"".autotmp_0906type.int"".autotmp_0905type.int"".autotmp_0903type.*uint8"".autotmp_0902type.int"".autotmp_0901type.int"".autotmp_0900type.int"".autotmp_0899type.int"".autotmp_08970type.image/color.Palette"".autotmp_0896type.int"".autotmp_0895type.int"".autotmp_0894type.int"".autotmp_0893_type.[]uint8"".autotmp_0892/type.[]uint8"".r"type."".Rectangle"".c,type.image/color.Color"".ytype.int
   3207 "".i1type.int
   3208 "".i0type.int"".presenttype.[256]bool"".~r0type.bool"".p"type.*"".Paletted&"*/l"&#fV91	'		(.U<Tgclocalsf7309186bf9eeb0f8ece2eb16f2dc110Tgclocals12b8aeecac339c1231ec601931927febTprebuilts/go/darwin-x86/src/image/image.go"".NewPalettedeH%HD$H;AHH$H$L$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$HT$HL$ HD$(H$H$H$HH$HD$HD$xH$H\$xH$HkH$HkH$=H+H\$xH$H$HD$xHl$0HhH$H$ HD$ HD$xH$Hh H$Hh(H$Hh0H$Hh8H$H$@H\$xH$HkHH$HkPH$=uHk@H\$xH$HLC@L$Hl$H$Hl$ 
   3213 X
   3214 *runtime.racefuncentertype.[]uint8
   3215 "runtime.makeslice type."".Paletted
   3216 "runtime.newobject
   3217 "runtime.racewrite6runtime.writeBarrierEnabled
   3218 "runtime.racewrite
   3219 ,runtime.racewriterange
   3220 "runtime.racewrite6runtime.writeBarrierEnabled
   3221 (runtime.racefuncexit
   3222 .runtime.writebarrierptr
   3223 .runtime.writebarrierptr
   3224 0runtime.morestack_noctxt"".autotmp_0915?"type.*"".Paletted"".autotmp_0914type.int"".autotmp_0912type.int"".autotmp_0911type.int"".r"type."".Rectangle"".r"type."".Rectangle"".pix/type.[]uint8"".wtype.int"".~r2p"type.*"".Paletted"".p@0type.image/color.Palette"".r"type."".Rectangle311M"+H&Tgclocals258ffe3b59f2d561d15d8bf865a43785Tgclocals85b708e0eb749713cb73a30a27c2999cTprebuilts/go/darwin-x86/src/image/image.go$"".(*Uniform).RGBAeH%H;avtH(H\$(H$H\$0H$H\$0HtEHHkHl$ H,$HL$HY l$T$L$D$l$8T$<L$@D$DH(s
   3232 :
   3233 *runtime.racefuncenterV
   3234  runtime.raceread
   3235 (runtime.racefuncexit
   3236 0runtime.morestack_noctxt0P
   3237 "".a(type.uint32"".b type.uint32"".gtype.uint32"".rtype.uint32"".c type.*"".UniformPkOP:p
   3239 tTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/names.go0"".(*Uniform).ColorModeleH%H;av~H(H\$(H$1H\$8H\$@H\$0H\$ H1H9tH\$ H\$@HD$8H(HH$HH\$HH\$HD$i
   3241 :
   3242 *runtime.racefuncentertJgo.itab.*"".Uniform.image/color.Model
   3243 (runtime.racefuncexit type.*"".Uniform,type.image/color.ModelJgo.itab.*"".Uniform.image/color.Model
   3244  runtime.typ2Itab
   3245 0runtime.morestack_noctxt0P"".autotmp_0925 type.*"".Uniform"".~r0,type.image/color.Model"".c type.*"".UniformPJOPBB-'48-Tgclocals27f94a2fe0ff5b305b2385471201b6d7Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349Tprebuilts/go/darwin-x86/src/image/names.go*"".(*Uniform).ConverteH%H;avVHH\$H$1H\$(H\$0H\$H$H\$HtH+Hl$(HkHl$0H
   3248 
   3249 :
   3250 *runtime.racefuncentern
   3251  runtime.raceread
   3252 (runtime.racefuncexit
   3253 0runtime.morestack_noctxtP"".~r10,type.image/color.Color"".c type.*"".UniformMpJ8;Tgclocalsb9e2f210c3a206b5352d33144c6a1618Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/names.go("".(*Uniform).BoundseH%H;avdH(H\$(H$11H6eH6eH;H;Hl$Hl$8HT$HT$@HL$HL$HHD$ HD$PH(
   3258 :
   3259 *runtime.racefuncenter
   3260 (runtime.racefuncexit
   3261 0runtime.morestack_noctxtPP"".autotmp_0928?"type."".Rectangle"".~r0"type."".Rectangle"".c type.*"".UniformP_OP
R
   3264 dTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/names.go "".(*Uniform).AteH%H;avVHH\$H$1H\$(H\$0H\$H$H\$HtH+Hl$(HkHl$0H
   3266 
   3267 :
   3268 *runtime.racefuncentern
   3269  runtime.raceread
   3270 (runtime.racefuncexit
   3271 0runtime.morestack_noctxtP"".~r20,type.image/color.Color"".y type.int"".xtype.int"".c type.*"".UniformMpVp;Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/names.go("".(*Uniform).OpaqueeH%H;avcH(H\$(H$H\$0H$H\$0Ht4HHkHl$ H,$HL$HY \$D$8H(
   3276 :
   3277 *runtime.racefuncenterV
   3278  runtime.raceread
   3279 (runtime.racefuncexit
   3280 0runtime.morestack_noctxt P"".~r0type.bool"".c type.*"".UniformPZOP\8
   3282 dTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/names.go"".NewUniformeH%H;av|HH\$H$HH$HD$HD$H$H\$Hl$ H+Hl$(=uHkH\$H\$0HLCL$Hl$k
   3284 :
   3285 *runtime.racefuncenterHtype."".UniformZ
   3286 "runtime.newobject
   3287 "runtime.racewrite6runtime.writeBarrierEnabled
   3288 (runtime.racefuncexit
   3289 .runtime.writebarrierptr
   3290 0runtime.morestack_noctxt00"".autotmp_0931 type.*"".Uniform"".~r1  type.*"".Uniform"".c,type.image/color.Color0c/0)fx#.Tgclocalsfb59fd9ce9376dfcd2105aa0993acf24Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349Tprebuilts/go/darwin-x86/src/image/names.go:"".YCbCrSubsampleRatio.StringeH%H;a HH\$H$1HD$HHuHH\$HD$ HHuHH\$HD$ HHuHH\$HD$ HHH\$HD$ HHuHH\$HD$ HHuHH\$HD$ HHuHH\$HD$ H"
   3293 B
   3294 *runtime.racefuncenter~Dgo.string."YCbCrSubsampleRatio444"
   3295 (runtime.racefuncexitDgo.string."YCbCrSubsampleRatio422"
   3296 (runtime.racefuncexitDgo.string."YCbCrSubsampleRatio420"
   3297 (runtime.racefuncexitLgo.string."YCbCrSubsampleRatioUnknown"
   3298 (runtime.racefuncexitDgo.string."YCbCrSubsampleRatio440"
   3299 (runtime.racefuncexitDgo.string."YCbCrSubsampleRatio411"
   3300 (runtime.racefuncexitDgo.string."YCbCrSubsampleRatio410"
   3301 (runtime.racefuncexit
   3302 0runtime.morestack_noctxt0"".~r0type.string"".s6type."".YCbCrSubsampleRatioBC$$$$$
z0

 1Tgclocalsbcdfbcd04eb70526d9504e97d9ef703dTgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/ycbcr.go,"".(*YCbCr).ColorModeleH%H;avPHH\$H$1H\$H\$ HH$HH\$HH\$ H
   3310 :
   3311 *runtime.racefuncenter`,image/color.YCbCrModelr
   3312  runtime.raceread,image/color.YCbCrModel,image/color.YCbCrModel
   3313 (runtime.racefuncexit
   3314 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".ptype.*"".YCbCrKp~29Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/ycbcr.go$"".(*YCbCr).BoundseH%H;aHH\$H$1H\$ H\$(H\$0H\$8H\$H$H$`HD$ H\$Ht.Hk`Hl$ HkhHl$(HkpHl$0HkxHl$8Hb
   3318 
   3319 B
   3320 *runtime.racefuncenter
   3321 *runtime.racereadrange
   3322 (runtime.racefuncexit
   3323 0runtime.morestack_noctxtP "".~r0"type."".Rectangle"".ptype.*"".YCbCr x Y Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go"".(*YCbCr).AteH%H;aH@H\$@H$1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$=\$\$>\$\$?HH$HH\$HH\$H\$=H\$HD$ H\$(H\$`H\$0H\$hH@/
   3328 B
   3329 *runtime.racefuncenter
   3330 &"".(*YCbCr).YCbCrAt,type.image/color.YCbCr,type.image/color.ColorVgo.itab.image/color.YCbCr.image/color.Color
   3331 runtime.convT2I
   3332 (runtime.racefuncexit
   3333 0runtime.morestack_noctxtP
   3334 "".autotmp_0933,type.image/color.YCbCr"".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".YCbCr1 #Tgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals69c1753bd5f81501d95132d08af04464Tprebuilts/go/darwin-x86/src/image/ycbcr.go&"".(*YCbCr).YCbCrAteH%HD$H;A$HH$H$1$$$1H$H\$HH$H\$PH$H$H$`HD$ LL$HLD$PH$HHw`HWhHT$`HOpHL$hHGxHD$pHt$XL9cI9ZL9QI9<u01T$%$T$&$T$'$HH$H\$8H$H\$0H|$xH<$H$`H$H\$xH$H$HH\$xH$H$`HD$xHXhHl$0H)HHhHHHh`LD$8I)LH\$(H$H$H$H\$H$H\$H\$H\$@1\$%\$&\$'H$H$H$HHCHkH$H$Hl$(H$H9H)H$H$HH
   3338 HBHjH$H$Hl$(H$H9H)\$%H$H$H$HKHC Hk(H$H$Hl$@H$H9CH)H$H$HHJHB Hj(H$H$Hl$@H$H9H)\$&H$H$0H$HK0HC8Hk@H$H$Hl$@H$H9H)H$H$HtkHK0HC8Hk@H$H$Hl$@H$H9s6H)H\$%$\$&$$H$1b,
   3345 X
   3346 *runtime.racefuncenter
   3347 *runtime.racereadrange
   3348 (runtime.racefuncexit
   3349  runtime.raceread
   3350  runtime.raceread
   3351  runtime.raceread
   3352 &"".(*YCbCr).COffset
   3353  runtime.raceread
   3354  runtime.raceread
   3355 
   3356  runtime.raceread
   3358  runtime.raceread
   3360  runtime.raceread
   3362  runtime.raceread
   3363 (runtime.racefuncexit
   3364 $runtime.panicindex
   3365 $runtime.panicindex
   3366 $runtime.panicindex
   3367 $runtime.panicindex
   3368 $runtime.panicindex
   3369 $runtime.panicindex
   3370 0runtime.morestack_noctxt@"".autotmp_0938,type.image/color.YCbCr"".autotmp_0936,type.image/color.YCbCr"".autotmp_0934type.int"".ytype.int"".xtype.int"".p?type.*"".YCbCr"".r"type."".Rectangle"".ptype."".Point
   3371 "".citype.int
   3372 "".yitype.int"".~r20,type.image/color.YCbCr"".y type.int"".xtype.int"".ptype.*"".YCbCr(^Z#5,+Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals83ead081cd909acab0dcd88a450c1878Tprebuilts/go/darwin-x86/src/image/ycbcr.go&"".(*YCbCr).YOffseteH%H;aHH\$H$H\$H$H$`H$H\$H$H$HH\$H$H$`HD$HXhHl$ H)HHhHHHh`LD$I)LH\$(HY
   3376 B
   3377 *runtime.racefuncenterr
   3378  runtime.raceread
   3379  runtime.raceread
   3380  runtime.raceread
   3381 (runtime.racefuncexit
   3382 0runtime.morestack_noctxt@"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go&"".(*YCbCr).COffseteH%H;aDHH\$H$H\$ H$H$XHL$ HiXHHH$H$`HD$ Hh`Hl$H$H$`H$H\$ H$H$PHT$ LL$LD$(HZhHl$0H)HHjPHLH?I)LHMI?M)MIL)HH\$8HHH$H$`H$HD$ HhhHl$H$H$`HD$ Hh`Hl$H$H$PLD$Hl$0HL$(LL$HH?H)HHLH?I)LLD$ HH)IhPHHH?II)LHMI?M)MIL)HH\$8HH$H$`H$H\$ H$H$PH\$ H$H$`HD$ HXhHl$0H)HHhPHHh`LD$(I)LH\$8HHH$H$`H$HD$ HhhHl$H$H$PH\$ H$H$`HT$ Hl$0LD$HH?H)HHLH?I)LHH)HjPHHj`LD$(I)LH\$8HHH$H$`HD$ Hh`Hl$H$H$`H$H\$ H$H$PHT$ HL$(HD$HZhHl$0H)HHjPHHH?H>HHII?I>IIL)HH\$8HH4H$H$`H$HD$ HhhHl$H$H$`HD$ Hh`Hl$H$H$PHt$Hl$0HL$(LD$HH?H)HHLH?I)LLD$ HH)IhPHHH?H>HHII?I>IIL)HH\$8H8
   3392 B
   3393 *runtime.racefuncenterh
   3394  runtime.raceread
   3395  runtime.raceread
   3396  runtime.raceread
   3397  runtime.raceread
   3398 (runtime.racefuncexit
   3399  runtime.raceread
   3400  runtime.raceread
   3401  runtime.raceread
   3402 (runtime.racefuncexit
   3403  runtime.raceread
   3404  runtime.raceread
   3405  runtime.raceread
   3406 (runtime.racefuncexit	
   3407  runtime.raceread	
   3408  runtime.raceread	
   3409  runtime.raceread
   3411 (runtime.racefuncexit
   3413  runtime.raceread
   3415  runtime.raceread
   3417  runtime.raceread
   3419 (runtime.racefuncexit
   3420  runtime.raceread
   3421  runtime.raceread
   3422  runtime.raceread
   3423 (runtime.racefuncexit
   3424 0runtime.morestack_noctxt@0"".autotmp_0952type.int"".autotmp_0951type.int"".autotmp_0950type.int"".autotmp_0949type.int"".autotmp_0948type.int"".autotmp_0947type.int"".autotmp_0946type.int"".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCrD0/0/0r/0/0/0/0r&
   3426 
   3427 s
   3428 
   3430 
   3431 	
   3432  Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go("".(*YCbCr).SubImageeH%HD$H;AHH$H$1H$(H$0H$H$H$`HD$ H$H$H$H\$H$H\$H$ H\$H$HTH^`H|$ HHt$@HT$HHL$PHD$XH$H$H$H$H$ H$H$H$H9H9<HH$HD$H$H$HD$H$HH1H$H$XH$H$H$XH$HtzL$IhXHhXH$H1H9t%H$H$0H$(HHH$HH\$HH\$HD$BH$Ht$pHT$hH$H$H$`H$H$H$H$HH$H$H$`H$HXhHl$hH)HHhHHHh`LD$pI)LH\$`H$H$H$H\$H$H\$H\$H\$xH$H$H$Hl$`L@LHL9LI)I)ItM*L$L$L$H$H$H$Hl$xL@ LH(L9pLPI)I)ItM*L$L$L$H$H$0H$Hl$xLC8LK@L9LS0I)I)ItM*L$L$L$HH$HD$H$H$H$H$HkH$HkH$=wH+H$H$H$H$H$Hk H$Hk(H$=HkH$H$H$0H$H$Hk8H$Hk@H$=Hk0H$H$H$XH$H$H$XH$HcL$IhXHhXH$H$HH$H$H$HH$HL$IhHHhHH$H$PH$H$H$PH$HL$IhPHhPH$H$`HD$ H$H$Hh`H$HhhH$HhpH$ HhxH$H1H9t%H$H$0H$(HHH$HH\$HH\$HD$0LC0L$Hl$ALCL$Hl$H$Hl$yH%h
   3440 X
   3441 *runtime.racefuncenter
   3442 *runtime.racereadrange
   3443  runtime.duffcopy
   3444 ,"".Rectangle.Intersecttype."".YCbCr
   3445 "runtime.newobject
   3446 ,runtime.racewriterange
   3447  runtime.duffzero
   3448 "runtime.racewrite
   3449  runtime.raceread4go.itab.*"".YCbCr."".Image
   3450 (runtime.racefuncexittype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image
   3451  runtime.typ2Itab	
   3452  runtime.raceread	
   3453  runtime.raceread	
   3454  runtime.raceread
   3456 &"".(*YCbCr).COffset
   3458  runtime.raceread
   3460  runtime.raceread
   3461  runtime.racereadtype."".YCbCr
   3462 "runtime.newobject
   3463 "runtime.racewrite6runtime.writeBarrierEnabled
   3464 "runtime.racewrite6runtime.writeBarrierEnabled
   3465 "runtime.racewrite6runtime.writeBarrierEnabled
   3466 "runtime.racewrite
   3467  runtime.raceread
   3468 "runtime.racewrite
   3469  runtime.raceread
   3470 "runtime.racewrite
   3471  runtime.raceread
   3472 ,runtime.racewriterange4go.itab.*"".YCbCr."".Image
   3473 (runtime.racefuncexittype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image
   3474  runtime.typ2Itab
   3475 .runtime.writebarrierptr
   3476 .runtime.writebarrierptr
   3477 .runtime.writebarrierptr
   3478 $runtime.panicslice
   3479 $runtime.panicslice
   3480 $runtime.panicslice
   3481 0runtime.morestack_noctxtp&"".autotmp_0966type.*uint8"".autotmp_0965type.*"".YCbCr"".autotmp_0964type.int"".autotmp_0961type.*"".YCbCr"".autotmp_0959type.*"".YCbCr"".autotmp_0958type.[]uint8"".autotmp_0957_type.[]uint8"".autotmp_0956/type.[]uint8"".autotmp_0955type.int"".autotmp_0954type.*"".YCbCr"".ytype.int"".xtype.int"".ptype.*"".YCbCr"".r"type."".Rectangle
   3482 "".citype.int
   3483 "".yitype.int"".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".YCbCr*BW-5ZXX8880'(-AV+0?rXZNOO0E
   3487 7Tgclocals7c5c95b88edaaa4fc9b93df09fd4a209Tgclocalsc18700852ad91ab4d108572c607cfe30Tprebuilts/go/darwin-x86/src/image/ycbcr.go$"".(*YCbCr).OpaqueneH%H;av!HH\$H$D$H
   3489 :
   3490 *runtime.racefuncenterN
   3491 (runtime.racefuncexitb
   3492 0runtime.morestack_noctxt "".~r0type.bool"".ptype.*"".YCbCr@
   3494 $Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go"".NewYCbCreH%HD$H;AGHH$H$L$L$ H$H$LT$`LL$pHHL$hH|$XH)H|$xH$LL$L$H$(L)HH{HHH?H)HHH?II)LHH)HHHHH\$HHHHHHH\$@HHt$0HHHL$PHHHHHH$HD$HD$8HD$H|$HHt$@HL$HT$ HD$(H$H9H$H$H$HH9H9H)IHtM8H$H$L$Hl$8H$H9BH99H)IH$HtM0H$H$L$HH$HD$H$H$H$H$HkH$HkH$=H+H$H$H$H$H$Hk H$Hk(H$=6HkH$H$H$0H$H$Hk8H$Hk@H$=Hk0H$H$H$XH$H$(HhXH$H$HH$Hl$0HhHH$H$PH$Hl$PHhPH$H$`HD$ H$H$Hh`H$HhhH$HhpH$ HhxH$0HLC0L$Hl$LCL$Hl$H$Hl$UHuTHHH?H)HHH?II)LHH)LHHH?H)HLH?MI)LHH)THHIHu1HLHHH?H)HLH?MI)LHH)Hu3HHH?H>HHHH?H>HHH)HH{HHH?H>HHHH?H>HHH)HLHHH?H)HLH?MI)LHH)s0
   3499 X
   3500 *runtime.racefuncentertype.[]uint8
   3501 "runtime.makeslicetype."".YCbCr
   3502 "runtime.newobject
   3503 "runtime.racewrite	6runtime.writeBarrierEnabled	
   3504 "runtime.racewrite
   3505 6runtime.writeBarrierEnabled
   3507 "runtime.racewrite6runtime.writeBarrierEnabled
   3510 "runtime.racewrite
   3512 "runtime.racewrite
   3514 "runtime.racewrite
   3516 ,runtime.racewriterange
   3517 (runtime.racefuncexit
   3518 .runtime.writebarrierptr
   3519 .runtime.writebarrierptr
   3520 .runtime.writebarrierptr
   3521 $runtime.panicslice
   3522 $runtime.panicslice
   3523 $runtime.panicslice
   3524 0runtime.morestack_noctxt`@"".autotmp_0992type.*"".YCbCr"".autotmp_0991type.int"".autotmp_0990type.int"".autotmp_0989type.int"".autotmp_0988type.int"".autotmp_0987type.int"".autotmp_0986type.int"".autotmp_0985type.int"".autotmp_0984type.int"".autotmp_0983type.int"".autotmp_0982type.int"".autotmp_0981type.int"".autotmp_0980type.int"".autotmp_0979type.int"".autotmp_0978type.int"".autotmp_0975type.int"".autotmp_0974type.int"".autotmp_0972type.[]uint8"".autotmp_0971_type.[]uint8"".autotmp_0970type.[]uint8"".autotmp_0969/type.[]uint8"".r"type."".Rectangle"".r"type."".Rectangle"".btype.[]uint8
   3525 "".i2type.int
   3526 "".i1type.int
   3527 "".i0type.int
   3528 "".cwtype.int"".wtype.int"".~r2Ptype.*"".YCbCr""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle
   3530 P:
   3531 
   3532 &$!@!=OEFA+&))+
   3533 .)-8+NOO
   3535 Tgclocals9bee0e0ddef505094e228c547e28a753Tgclocals1aecd0363e705c5bd33e230135d399c2Tprebuilts/go/darwin-x86/src/image/ycbcr.go"".initeH%H;aHPH\$PH$HH$t-HH$u
   3537 HPHH$HH$HD$H\$H\$@H\$H\$HHH$H\$@HH\$H=HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$H\$8HH$H\$8=
HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$H\$8HH$H\$8=iHHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$H\$8HH$H\$8=HHH$HH\$HH\$HH\$HD$ H\$(HH$HKHL$H\$H\$8HH$H\$8=u(HHH$HPH-H,$H\$H-H,$H\$(H-H,$H\$H-H,$H\$H-H,$H\$<7
   3548 B
   3549 *runtime.racefuncenterP"".initdoneb
   3550  runtime.racereadp"".initdone"".initdone
   3551  runtime.raceread"".initdone
   3552 (runtime.racefuncexit
   3553 "runtime.throwinit"".initdone
   3554 "runtime.racewrite"".initdone
   3555 bufio.init
   3556 io.init
   3557  image/color.init
   3558 strconv.initBgo.string."image: unknown format"
   3559 errors.New"".ErrFormat
   3560 "runtime.racewrite"".ErrFormat6runtime.writeBarrierEnabled"".ErrFormat.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.Black
   3561 runtime.convT2I
   3562 "".NewUniform"".Black
   3563 "runtime.racewrite6runtime.writeBarrierEnabled"".Black.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.White
   3564 runtime.convT2I
   3565 "".NewUniform"".White
   3566 "runtime.racewrite6runtime.writeBarrierEnabled"".White0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent	
   3567 runtime.convT2I	
   3568 "".NewUniform	"".Transparent	
   3569 "runtime.racewrite
   3570 6runtime.writeBarrierEnabled
   3571 "".Transparent
   3572 0type.image/color.Alpha16
   3573 ,type.image/color.Color
   3574 Zgo.itab.image/color.Alpha16.image/color.Color
   3575 $image/color.Opaque
   3577 runtime.convT2I
   3579 "".NewUniform"".Opaque
   3582 "runtime.racewrite6runtime.writeBarrierEnabled"".Opaque"".initdone
   3587 "runtime.racewrite"".initdone
   3590 (runtime.racefuncexit
"".Opaque
   3593 .runtime.writebarrierptr
"".Transparent
   3596 .runtime.writebarrierptr
"".White
   3598 .runtime.writebarrierptr"".Black
   3599 .runtime.writebarrierptr"".ErrFormat
   3600 .runtime.writebarrierptr
   3601 0runtime.morestack_noctxt
   3602 "".autotmp_0997 type.*"".Uniform"".autotmp_0996 type.*"".Uniform"".autotmp_0995 type.*"".Uniform"".autotmp_0994/ type.*"".Uniform"".autotmp_0993type.error(O.b!Nbb!6 b4V4V4V4%Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocals6910e19bd0d31b4222b21d8d53042f42Tprebuilts/go/darwin-x86/src/image/ycbcr.goVprebuilts/go/darwin-x86/src/image/format.goTprebuilts/go/darwin-x86/src/image/names.go"".Image.AteH%H;aH8HY Ht
H|$@H9;uH#H\$8H$1H\$`H\$hH\$PH\$H\$XH\$H\$HH$H\$@H[ HL$HD$ HL$(HL$`HD$0HD$hH8_
   3605 
   3606 n
   3607 *runtime.racefuncenter
   3608 (runtime.racefuncexit
   3609 0runtime.morestack_noctxt`p
   3610 "".autotmp_0998,type.image/color.Color"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".Imagepop6W#Tgclocalsb6338434a483b71ecf7a1963213f75e2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Image.BoundseH%H;aHHHY Ht
H|$PH9;uH#H\$HH$1H\$`H\$hH\$pH\$xH\$XH$H\$PH[(Hl$HT$HL$HD$ Hl$(Hl$`HT$0HT$hHL$8HL$pHD$@HD$xHHK
   3614 
   3615 n
   3616 *runtime.racefuncenter
   3617 (runtime.racefuncexit
   3618 0runtime.morestack_noctxt`"".autotmp_0999?"type."".Rectangle"".~r0 "type."".Rectangle""..thistype."".Image6Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".Image.ColorModeleH%H;avpH(HY Ht
H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[0HL$HD$HL$HL$@HD$ HD$HH(w
   3623 
   3624 f
   3625 *runtime.racefuncenter
   3626 (runtime.racefuncexit
   3627 0runtime.morestack_noctxt@P"".autotmp_1000,type.image/color.Model"".~r0 ,type.image/color.Model""..thistype."".ImagePkOP2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".(*Point).StringeH%H;aH@HY Ht
H|$HH9;uH#H\$@H$1H\$PH\$XH\$H1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$HH$HD$Ht$HHH$HNHL$HL$HD$HL$0HL$PHD$8HD$XH@
   3633 n
   3634 *runtime.racefuncenter"go.string."image""go.string."Point"$go.string."String"
   3635 "runtime.panicwrap
   3636 *runtime.racereadrange
   3637 "".Point.String
   3638 (runtime.racefuncexit
   3639 0runtime.morestack_noctxt0"".autotmp_1001type.string"".~r0type.string""..thistype.*"".Point
   3641 6Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".(*Point).AddeH%H;aHpHY Ht
H|$xH9;uH#H\$pH$1H$H$H\$x1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$xH$HD$H\$xHtlH3HSH$H$11HHt$PHL$@HHHHT$XHD$HHHL$`H\$hHL$0H$H\$8H$Hp
   3645 n
   3646 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Add"
   3647 "runtime.panicwrap
   3648 *runtime.racereadrange
   3649 (runtime.racefuncexit
   3650 0runtime.morestack_noctxtP"".autotmp_1002type."".Point"".~r1type."".Point"".q_type."".Point"".p?type."".Point"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point6Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).SubeH%H;aHpHY Ht
H|$xH9;uH#H\$pH$1H$H$H\$x1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$xH$HD$H\$xHtlH3HSH$H$11HHt$PHL$@H)HHHT$XHD$HH)HL$`H\$hHL$0H$H\$8H$Hp
   3658 n
   3659 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Sub"
   3660 "runtime.panicwrap
   3661 *runtime.racereadrange
   3662 (runtime.racefuncexit
   3663 0runtime.morestack_noctxtP"".autotmp_1003type."".Point"".~r1type."".Point"".q_type."".Point"".p?type."".Point"".~r10type."".Point"".qtype."".Point""..thistype.*"".Point6Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).MuleH%H;aH`HY Ht
H|$hH9;uH#H\$`H$1H\$xH$H\$h1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$hH$HD$H\$hHtVHHSHD$p11HHL$@HHHHT$HHHL$PH\$XHL$0HL$xH\$8H$H`
   3671 n
   3672 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Mul"
   3673 "runtime.panicwrap
   3674 *runtime.racereadrange
   3675 (runtime.racefuncexit
   3676 0runtime.morestack_noctxt@"".autotmp_1004type."".Point"".~r1_type."".Point"".p?type."".Point"".~r1 type."".Point"".ktype.int""..thistype.*"".Point6Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).DiveH%H;a%H`HY Ht
H|$hH9;uH#H\$`H$1H\$xH$H\$h1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$hH$HD$H\$hHtwHH{HL$p11HD$@HtTHHHHH|$HHHt3HHHHt$PH\$XHt$0Ht$xH\$8H$H`HHHH
   3684 n
   3685 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Div"
   3686 "runtime.panicwrap
   3687 *runtime.racereadrange
   3688 (runtime.racefuncexit
   3689 0runtime.morestack_noctxt@"".autotmp_1005type."".Point"".~r1_type."".Point"".p?type."".Point"".~r1 type."".Point"".ktype.int""..thistype.*"".Point,6Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).IneH%H;aH`HY Ht
H|$hH9;uH#H\$`H$H\$h1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$hH$HD$H\$hHtiHHCHD$8H\$pH|$xH|$HH$Ht$PH$HT$XH\$@HL$0H9!H9}H9H9$H`1
   3698 n
   3699 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."In"
   3700 "runtime.panicwrap
   3701 *runtime.racereadrange
   3702 (runtime.racefuncexit
   3703 0runtime.morestack_noctxt`
   3704 "".r?"type."".Rectangle"".p_type."".Point"".~r1Ptype.bool"".r"type."".Rectangle""..thistype.*"".Point6Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).ModeH%H;aHPHY Ht
H|$XH9;uH#H\$PH$1H$H$H\$X1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$XH$HD$Ht$XHH$HNHL$H\$`H\$H\$hH\$H\$pH\$ H\$xH\$(HL$0HD$8HL$@H$HD$HH$HP
   3711 n
   3712 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Mod"
   3713 "runtime.panicwrap
   3714 *runtime.racereadrange
   3715 "".Point.Mod
   3716 (runtime.racefuncexit
   3717 0runtime.morestack_noctxtp"".autotmp_1007type."".Point"".~r1Ptype."".Point"".r"type."".Rectangle""..thistype.*"".Point6Tgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".(*Point).EqeH%H;aHHY HtH$H9;uH#H$H$H$1H9uEHH$HD$HH\$HD$HH\$ HD$(H$H$HD$H$HH3HkH$H$Ht$@Ht$`Hl$HHl$hHL$0HL$PHD$8HD$XH\$`HH\$PH\$pHD$xH$H\$pH$HD$xHLD$pI(H9uMH$H$H\$pH$H$Hl$xH]LD$pIhH9$H1&X
   3723 
   3724 *runtime.racefuncenter"go.string."image""go.string."Point"go.string."Eq"
   3725 "runtime.panicwrap
   3726 *runtime.racereadrange
   3727  runtime.raceread
   3728  runtime.raceread
   3729  runtime.raceread
   3730  runtime.raceread
   3731 (runtime.racefuncexit
   3732 0runtime.morestack_noctxt@"".autotmp_1012type.*"".Point"".autotmp_1011type.*"".Point"".autotmp_1009_type."".Point"".autotmp_1008?type."".Point"".qtype."".Point"".ptype."".Point"".~r10type.bool"".qtype."".Point""..thistype.*"".Point?h*Tgclocalsf47057354ec566066f8688a4970cff5aTgclocals21a8f585a14d020f181242c5256583dc<autogenerated>,"".(*Rectangle).StringeH%H;aH@HY Ht
H|$HH9;uH#H\$@H$1H\$PH\$XH\$H1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$HH$HD$ Ht$HHt5HHL$ HD$(HL$0HL$PHD$8HD$XH@
   3737 n
   3738 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"$go.string."String"
   3739 "runtime.panicwrap
   3740 *runtime.racereadrange
   3741  runtime.duffcopy
   3742 &"".Rectangle.String
   3743 (runtime.racefuncexit
   3744 0runtime.morestack_noctxt0"".autotmp_1013type.string"".~r0type.string""..this$type.*"".Rectangle6Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>$"".(*Rectangle).DxeH%H;aHPHY Ht
H|$XH9;uH#H\$PH$H\$X1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$XH$HD$ H\$XHt8HHkHl$8HCHkHl$HHHD$@HL$0H)H\$`HP
   3751 n
   3752 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."Dx"
   3753 "runtime.panicwrap
   3754 *runtime.racereadrange
   3755 (runtime.racefuncexit
   3756 0runtime.morestack_noctxt "".r?"type."".Rectangle"".~r0type.int""..this$type.*"".Rectangle6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).DyeH%H;aHPHY Ht
H|$XH9;uH#H\$PH$H\$X1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$XH$HD$ H\$XHt5H+Hl$0HKHkHl$@H[H\$HHL$8H)H\$`HP
   3762 n
   3763 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."Dy"
   3764 "runtime.panicwrap
   3765 *runtime.racereadrange
   3766 (runtime.racefuncexit
   3767 0runtime.morestack_noctxt "".r?"type."".Rectangle"".~r0type.int""..this$type.*"".Rectangle6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>("".(*Rectangle).SizeeH%H;aHpHY Ht
H|$xH9;uH#H\$pH$1H$H$H\$x1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$xH$HD$ H\$xHtdH3HSHKHC11HHL$`Ht$PH)HHHD$hHT$XH)HL$@H\$HHL$0H$H\$8H$Hp
   3773 n
   3774 *runtime.racefuncenter"go.string."image"*go.string."Rectangle" go.string."Size"
   3775 "runtime.panicwrap
   3776 *runtime.racereadrange
   3777 (runtime.racefuncexit
   3778 0runtime.morestack_noctxt0
   3779 "".autotmp_1016_type."".Point"".~r0type."".Point"".r?"type."".Rectangle"".~r0type."".Point""..this$type.*"".Rectangle 6Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".(*Rectangle).AddeH%HD$H;AHHY HtH$H9;uH#H$H$1H$H$H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HH3HSLCH{H$H$11HHt$`HHHHT$hHHLLD$pHL$0HHHH|$xHD$8HH$H$H$H$Ht$@H$HT$HH$HL$PH$H\$XH$H6A
   3785 
   3786 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."Add"
   3787 "runtime.panicwrap
   3788 *runtime.racereadrange
   3789 (runtime.racefuncexit
   3790 0runtime.morestack_noctxtp"".autotmp_1017?"type."".Rectangle"".~r1"type."".Rectangle"".ptype."".Point"".r"type."".Rectangle"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle"DTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".(*Rectangle).SubeH%HD$H;AHHY HtH$H9;uH#H$H$1H$H$H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HH3HSLCH{H$H$11HHt$`H)HHHT$hH)HLLD$pHL$0H)HHH|$xHD$8H)H$H$H$H$Ht$@H$HT$HH$HL$PH$H\$XH$H6A
   3796 
   3797 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."Sub"
   3798 "runtime.panicwrap
   3799 *runtime.racereadrange
   3800 (runtime.racefuncexit
   3801 0runtime.morestack_noctxtp"".autotmp_1018?"type."".Rectangle"".~r1"type."".Rectangle"".ptype."".Point"".r"type."".Rectangle"".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle$DTgclocalsa041240a37ce609efec56707c330d1a4Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).InseteH%H;a*HhHY Ht
H|$pH9;uH#H\$hH$1H$H$H$H$H\$p1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$pH$HD$ Ht$pHtiHH\$xH\$ Hl$(HT$0HL$8HD$@Hl$HH$HT$PH$HL$XH$HD$`H$Hh
   3808 n
   3809 *runtime.racefuncenter"go.string."image"*go.string."Rectangle""go.string."Inset"
   3810 "runtime.panicwrap
   3811 *runtime.racereadrange
   3812  runtime.duffcopy
   3813 $"".Rectangle.Inset
   3814 (runtime.racefuncexit
   3815 0runtime.morestack_noctxt`"".autotmp_1019?"type."".Rectangle"".~r1 "type."".Rectangle"".ntype.int""..this$type.*"".Rectangle&6Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*Rectangle).IntersecteH%H;apHHY HtH$H9;uH#H$H$1H$H$H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(	H$H$HD$ H$HHH$H\$ H$H\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XHl$`H$HT$hH$HL$pH$HD$xH$Hcs
   3820 
   3821 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"*go.string."Intersect"
   3822 "runtime.panicwrap
   3823 *runtime.racereadrange
   3824  runtime.duffcopy
   3825 ,"".Rectangle.Intersect
   3826 (runtime.racefuncexit
   3827 0runtime.morestack_noctxt"".autotmp_1020?"type."".Rectangle"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle(?Tgclocals4d8bed7e4976e3d095a9230e496231afTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).UnioneH%H;apHHY HtH$H9;uH#H$H$1H$H$H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HHH$H\$ H$H\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XHl$`H$HT$hH$HL$pH$HD$xH$Hcs
   3832 
   3833 *runtime.racefuncenter"go.string."image"*go.string."Rectangle""go.string."Union"
   3834 "runtime.panicwrap
   3835 *runtime.racereadrange
   3836  runtime.duffcopy
   3837 $"".Rectangle.Union
   3838 (runtime.racefuncexit
   3839 0runtime.morestack_noctxt"".autotmp_1021?"type."".Rectangle"".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle*?Tgclocals4d8bed7e4976e3d095a9230e496231afTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).EmptyeH%H;aHPHY Ht
H|$XH9;uH#H\$PH$H\$X1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$XH$HD$ H\$XHtEH3HSHT$8HKHCHD$HHt$0HL$@H9}H9D$`HPH
   3845 n
   3846 *runtime.racefuncenter"go.string."image"*go.string."Rectangle""go.string."Empty"
   3847 "runtime.panicwrap
   3848 *runtime.racereadrange
   3849 (runtime.racefuncexit
   3850 0runtime.morestack_noctxt "".r?"type."".Rectangle"".~r0type.bool""..this$type.*"".Rectangle&,6Tgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).EqeH%H$pH;AHHY HtH$H9;uH#H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HLLCH{HsH$ H$(H$0H$8LL$pL$LD$xL$H$H$H$H$Hl$0H$HT$8H$HL$@H$HD$HH$H$HH$H$H=H$H$H$H$H$H$H$H$HL$I(H9H$H$H$H$H$H$H]L$IhH9<H$HjH$HHMHH$H$H$H$H$H$HL$I(H9H$H$H$H$H$H$H]L$IhH9<H\$pHT$xHT$XH$H$HD$hH\$PHL$`H9}jH9<t\H\$0HT$8H$HL$@HD$HH$H$H$H9}H9$@HH1HH1B1-1g"
   3856 
   3857 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."Eq"
   3858 "runtime.panicwrap
   3859 *runtime.racereadrange
   3860  runtime.raceread
   3861  runtime.raceread
   3862  runtime.raceread
   3863  runtime.raceread	
   3864  runtime.raceread
   3865 
   3866  runtime.raceread
   3867 
   3868  runtime.raceread
   3870  runtime.raceread
   3872 (runtime.racefuncexit
   3873 0runtime.morestack_noctxt`""".autotmp_1033type.bool"".autotmp_1032type.bool"".autotmp_1031type.*"".Point"".autotmp_1030type.*"".Point"".autotmp_1029?type.*"".Point"".autotmp_1028/type.*"".Point"".autotmp_1027$type.*"".Rectangle"".autotmp_1026$type.*"".Rectangle"".autotmp_1024"type."".Rectangle"".autotmp_1023"type."".Rectangle"".r"type."".Rectangle"".r"type."".Rectangle"".s"type."".Rectangle"".r"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle"n.G{Tgclocalsadb3347b296419e60da36d67f8b7ce43Tgclocals406991e81a5d6b9f25174854f4bda0b5<autogenerated>0"".(*Rectangle).OverlapseH%H;aHHHY Ht
H|$PH9;uH#H\$HH$H\$P1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$PH$HD$ Ht$PHtHHH\$XH\$ H\$`H\$(H\$hH\$0H\$pH\$8\$@\$xHH
   3878 n
   3879 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"(go.string."Overlaps"
   3880 "runtime.panicwrap
   3881 *runtime.racereadrange
   3882  runtime.duffcopy
   3883 *"".Rectangle.Overlaps
   3884 (runtime.racefuncexit
   3885 0runtime.morestack_noctxt`"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle06Tgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).IneH%HD$H;AwHHY HtH$H9;uH#H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HH;HsHSHKL$Ll$0L$Ld$8L$L\$@L$LT$HH|$PHt$XHt$xHT$`HL$hH$H|$pH$H9}@H9<tH$HI9L9
I9L91H:g
   3891 
   3892 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."In"
   3893 "runtime.panicwrap
   3894 *runtime.racereadrange
   3895 (runtime.racefuncexit
   3896 0runtime.morestack_noctxt`"".autotmp_1038type.bool"".r?"type."".Rectangle"".s"type."".Rectangle"".r"type."".Rectangle"".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle<2DTgclocals6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".(*Rectangle).CanoneH%H;aCHpHY Ht
H|$xH9;uH#H\$pH$1H$H$H$H$H\$x1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$xH$HD$ H\$xHtH3HSHKHC1H9}	HHHH9}	HHHHt$PHT$XHL$`HD$hHt$0H$HT$8H$HL$@H$HD$HH$Hpz
   3902 n
   3903 *runtime.racefuncenter"go.string."image"*go.string."Rectangle""go.string."Canon"
   3904 "runtime.panicwrap
   3905 *runtime.racereadrange
   3906 (runtime.racefuncexit
   3907 0runtime.morestack_noctxtP
   3908 "".autotmp_1040type.int"".~r0"type."".Rectangle"".r?"type."".Rectangle"".~r0"type."".Rectangle""..this$type.*"".Rectangle46Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>$"".(*Rectangle).At		eH%HD$H;ABHHY HtH$H9;uH#H$H$1H$H$H$1H9uEHH$HD$HH\$HD$	HH\$ HD$(H$H$HD$ H$HxLH{HsHSH$H$1H$H$1HD$@LD$hH|$pH|$PHt$xHt$XH$HT$`LD$HHL$8I9H9H9H9<HH$HH\$HH\$HH\$HD$ HL$(HD$0H$H$H$H$H$H$HHH$HH\$HH\$HH\$HD$ HL$(HD$0H$H$w1&
   3914 
   3915 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"go.string."At"
   3916 "runtime.panicwrap
   3917 *runtime.racereadrange0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque
   3918 runtime.convT2I
   3919 (runtime.racefuncexit0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent
   3920 runtime.convT2I	
   3921 0runtime.morestack_noctxtP"".autotmp_1043,type.image/color.Color"".autotmp_1042,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.*"".Rectangle6DEHTgclocals762ef64d066b6f51173413f25bf7cca5Tgclocals64ca935d1a2110a30e2d604686188539<autogenerated>,"".(*Rectangle).BoundseH%H;a$HpHY Ht
H|$xH9;uH#H\$pH$1H$H$H$H$H\$x1H9uEHH$HD$HH\$HD$	HH\$ HD$(H\$xH$HD$ H\$xHtcH3HSHKHC1Ht$PHT$XHL$`HD$hHt$0H$HT$8H$HL$@H$HD$HH$Hp
   3927 n
   3928 *runtime.racefuncenter"go.string."image"*go.string."Rectangle"$go.string."Bounds"
   3929 "runtime.panicwrap
   3930 *runtime.racereadrange
   3931 (runtime.racefuncexit
   3932 0runtime.morestack_noctxtP"".~r0"type."".Rectangle"".r?"type."".Rectangle"".~r0"type."".Rectangle""..this$type.*"".Rectangle86Tgclocals89fe65749ce0afc971c0982226501ff0Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>4"".(*Rectangle).ColorModeleH%H;aH`HY Ht
H|$hH9;uH#H\$`H$1H\$pH\$xH\$h1H9uEHH$HD$HH\$HD$	HH\$ HD$(
   3938 H\$hH$HD$ H\$hHtkH+Hl$0HkHl$8HkHl$@HkHl$H1H\$PH\$XHH$H
HHL$PHL$pHD$XHD$xH`
   3941 n
   3942 *runtime.racefuncenter"go.string."image"*go.string."Rectangle",go.string."ColorModel"
   3943 "runtime.panicwrap
   3944 *runtime.racereadrange0image/color.Alpha16Model
   3945  runtime.raceread0image/color.Alpha16Model0image/color.Alpha16Model
   3946 (runtime.racefuncexit
   3947 0runtime.morestack_noctxt0"".~r0,type.image/color.Model"".r_"type."".Rectangle"".~r0,type.image/color.Model""..this$type.*"".Rectangle:6%Tgclocalscad14e25fd48dddd762418d02c031d67Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>(type..hash."".ConfigeH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$H\$(H$H<$t6H$HD$0HD$HD$HD$HD$0HD$8H %%U
   3952 B
   3953 *runtime.racefuncenter
   3954 "runtime.interhash
   3955 runtime.memhash
   3956 (runtime.racefuncexit
   3957 0runtime.morestack_noctxt0@"".autotmp_1045type.uintptr"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Config@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/darwin-x86/src/image/format.go$type..eq."".ConfigeH%H;afHHH\$HH$H\$XH$H\$XH0H+Hl$8HkHl$@H\$PH$HT$8H\$PHHHKHL$0HD$(H9H$HL$HT$Hl$@Hl$\$ H\$PH$H$H\$XH$H$HD$PHXLD$XIhH9tD$`HHH$H$H\$XH$H$Hl$PH]LD$XIhH9tD$`HHD$`HHD$`HH}
   3961 B
   3962 *runtime.racefuncenter^
   3963  runtime.raceread
   3964  runtime.raceread
   3965 runtime.ifaceeq
   3966  runtime.raceread
   3967  runtime.raceread
   3968 (runtime.racefuncexit
   3969  runtime.raceread
   3970  runtime.raceread
   3971 (runtime.racefuncexit
   3972 (runtime.racefuncexit
   3973 (runtime.racefuncexit
   3974 0runtime.morestack_noctxt0
   3975 "".autotmp_1047?,type.image/color.Model"".autotmp_1046,type.image/color.Model"".~r2 type.bool"".qtype.*"".Config"".ptype.*"".Config>F% <KTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Vprebuilts/go/darwin-x86/src/image/format.go"".reader.PeekeH%H;aH`HY Ht
H|$hH9;uH#H\$`H$1H$H$H$1H$H$H\$xH\$H\$pH$H\$hH[ Ht$Hl$HT$ HL$(HD$0Ht$HH$Hl$PH$HT$XH$HL$8H$HD$@H$H`
   3980 
   3981 n
   3982 *runtime.racefuncenter
   3983 (runtime.racefuncexit
   3984 0runtime.morestack_noctxt"".autotmp_1049Otype.error"".autotmp_1048/type.[]uint8"".~r2`type.error"".~r10type.[]uint8""..anon0 type.int""..thistype."".reader<6!Tgclocalsdbd89ae4a4266b5bfeafd78285762b2aTgclocals98a935522f11e180b06d5a082b7d09c1<autogenerated>"".reader.ReadeH%H;aHHHY Ht
H|$PH9;uH#H\$HH$11H$H$H\$`H\$H\$hH\$H\$pH\$H\$XH$H\$PH[(HD$ HT$(HL$0HD$xHT$8H$HL$@H$HH=
   3990 
   3991 n
   3992 *runtime.racefuncenter
   3993 (runtime.racefuncexit
   3994 0runtime.morestack_noctxt
   3995 "".autotmp_1053type.errorio.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".reader>6y!Tgclocalsd2fd9951e910becfd07ba7f8ff7b525aTgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>@"".(*YCbCrSubsampleRatio).StringeH%H;aH@HY Ht
H|$HH9;uH#H\$@H$1H\$PH\$XH\$H1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$HH$H\$HH+H,$HL$HD$HL$0HL$PHD$8HD$XH@
   4000 n
   4001 *runtime.racefuncenter"go.string."image">go.string."YCbCrSubsampleRatio"$go.string."String"
   4002 "runtime.panicwrap
   4003  runtime.raceread
   4004 :"".YCbCrSubsampleRatio.String
   4005 (runtime.racefuncexit
   4006 0runtime.morestack_noctxt0"".autotmp_1056type.string"".~r0type.string""..this8type.*"".YCbCrSubsampleRatio@6Tgclocals69076ee43f1cead0792b9f36906b1b56Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>&"".PalettedImage.AteH%H;aH8HY Ht
H|$@H9;uH#H\$8H$1H\$`H\$hH\$PH\$H\$XH\$H\$HH$H\$@H[ HL$HD$ HL$(HL$`HD$0HD$hH8_
   4010 
   4011 n
   4012 *runtime.racefuncenter
   4013 (runtime.racefuncexit
   4014 0runtime.morestack_noctxt`p
   4015 "".autotmp_1057,type.image/color.Color"".~r2@,type.image/color.Color"".y0type.int"".x type.int""..this*type."".PalettedImagepopB6W#Tgclocalsb6338434a483b71ecf7a1963213f75e2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>."".PalettedImage.BoundseH%H;aHHHY Ht
H|$PH9;uH#H\$HH$1H\$`H\$hH\$pH\$xH\$XH$H\$PH[(Hl$HT$HL$HD$ Hl$(Hl$`HT$0HT$hHL$8HL$pHD$@HD$xHHK
   4019 
   4020 n
   4021 *runtime.racefuncenter
   4022 (runtime.racefuncexit
   4023 0runtime.morestack_noctxt`"".autotmp_1058?"type."".Rectangle"".~r0 "type."".Rectangle""..this*type."".PalettedImageD6Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>:"".PalettedImage.ColorIndexAteH%H;avcH HY Ht
H|$(H9;uH#H\$ H$H\$8H\$H\$@H\$H\$0H$H\$(H[0\$\$HH 
   4028 
   4029 f
   4030 *runtime.racefuncenter
   4031 (runtime.racefuncexit
   4032 0runtime.morestack_noctxtP@"".~r2@type.uint8"".y0type.int"".x type.int""..this*type."".PalettedImage@^?@F
   4034 2NTgclocals1347047f6245a35b91e9a4f213167d52Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>6"".PalettedImage.ColorModeleH%H;avpH(HY Ht
H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[8HL$HD$HL$HL$@HD$ HD$HH(w
   4037 
   4038 f
   4039 *runtime.racefuncenter
   4040 (runtime.racefuncexit
   4041 0runtime.morestack_noctxt@P"".autotmp_1060,type.image/color.Model"".~r0 ,type.image/color.Model""..this*type."".PalettedImagePkOPH2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>Tgclocals219d8d154da9b833882f5372d7b1af9900	Tgclocals61b167ad47cde17c5a09bf89f76e51ad0055550>go.itab.*bufio.Reader."".readerTgclocals0318f4fe3c9ebb20c9b242b602ec92a7``
   4043 `dTgclocals68c9fa00f2dd3a035f977db2d5190cf0``
   4044 Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocals9ba22629e9611c66625b3db4800944b7  Tgclocalsc29a587d9b6ca82553d1d08ff007a77800jTgclocalsf62a41cb78c03c15bed464e78226a13000Tgclocals89dd7cd510c646dd78bd230190fb8a36/@
Tgclocals01125e2a5c0350eb923f65fb084fb0beppTgclocals3f96fc659bf6a949de7b329a27509890
5dPTgclocals404bd706b395d652fac0e702c80086b6xx
   4050 O"go.string.hdr."("  go.string."("go.string."("("go.string.hdr.","  go.string.","go.string.",","go.string.hdr.")"  go.string.")"go.string.")")Tgclocals4839c181b903023c3ae99be60aaf4271((Tgclocals124a21249e8861ddbb76c8b0b45d3971((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals627bbca91efe935c3ac76737d2026ca6Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals21a8f585a14d020f181242c5256583dc  Tgclocals98a935522f11e180b06d5a082b7d09c1  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440"go.string.hdr."-"  go.string."-"go.string."-"-Tgclocals4839c181b903023c3ae99be60aaf4271((Tgclocalsb2f74c392de0ed28f7e906de7ba4bab4((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals709a14768fab2805a378215c02f0d27fTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals63ba92e6c81d2d7bf2207e4076c8b23c
   4051 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals63ba92e6c81d2d7bf2207e4076c8b23c
   4052 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals12fc1489b12fcdedb8fc818b7369b5d9Tgclocals406991e81a5d6b9f25174854f4bda0b5((Tgclocalsbb62ddeba3b841c3b8407d8da49fbc51((	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals6d07ab0a37c299682f1d85b92cb6cfd1	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d8380Zgo.itab.image/color.Alpha16.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocalsaa63f3db2ec75827f6605d10a5453148  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals8c067d5052c60a71dd2787c367bb278b  0Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals895d0569a38a56443b84805daa09d838Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.RGBA.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  02go.itab.*"".RGBA."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.RGBA64.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  06go.itab.*"".RGBA64."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.NRGBA.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  04go.itab.*"".NRGBA."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Zgo.itab.image/color.NRGBA64.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  08go.itab.*"".NRGBA64."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.Alpha.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  04go.itab.*"".Alpha."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  08go.itab.*"".Alpha16."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals790e5cc5051fc0affc980ade09e929ecTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.Gray.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  02go.itab.*"".Gray."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.Gray16.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  06go.itab.*"".Gray16."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b37888Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.CMYK.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals524aafe7d1228e5424d64f5d94771fbf  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  02go.itab.*"".CMYK."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals8c4115247b3638c79e08e0e295c9b378880Zgo.itab.image/color.Palette.image/color.ModelTgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocalsf7103403aec01e4990bdf6681d1baac8((Tgclocals9bafea7b2a19e2cc3d593c51cce7c661((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocals1b19623ccfd3351b9464338f230e8b94  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  0:go.itab.*"".Paletted."".ImageTgclocals6303a5fef1b34377e043c222d45020fc@@Tgclocalsbeaeb9c48e230c42df709f19dd51c03b@@aTgclocals12b8aeecac339c1231ec601931927feb((Tgclocalsf7309186bf9eeb0f8ece2eb16f2dc110((Tgclocals85b708e0eb749713cb73a30a27c2999c88Tgclocals258ffe3b59f2d561d15d8bf865a4378588Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals0b86ef39f3fed835f14ba5f4d7c62fa20Jgo.itab.*"".Uniform.image/color.ModelTgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocals27f94a2fe0ff5b305b2385471201b6d7((Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalsb9e2f210c3a206b5352d33144c6a1618  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff0Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocalsf891aedf0f80c97cb1c7cc75a7fd6349((Tgclocalsfb59fd9ce9376dfcd2105aa0993acf24((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"@6YCbCrSubsampleRatioUnknownTgclocals69c1753bd5f81501d95132d08af04464Tgclocalsbcdfbcd04eb70526d9504e97d9ef703d  Tgclocals69c1753bd5f81501d95132d08af04464Tgclocalscad14e25fd48dddd762418d02c031d67  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.YCbCr.image/color.ColorTgclocals69c1753bd5f81501d95132d08af04464Tgclocals762ef64d066b6f51173413f25bf7cca5  Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocalsf47057354ec566066f8688a4970cff5a  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae7204go.itab.*"".YCbCr."".ImageTgclocalsc18700852ad91ab4d108572c607cfe30``
   4055  $&&Tgclocals7c5c95b88edaaa4fc9b93df09fd4a209``
   4057 aTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals1aecd0363e705c5bd33e230135d399c2HH
Tgclocals9bee0e0ddef505094e228c547e28a753HH Jgo.string.hdr."image: unknown format"  Bgo.string."image: unknown format"Bgo.string."image: unknown format"0,image: unknown formatTgclocals6910e19bd0d31b4222b21d8d53042f42((Tgclocals7d2d5fca80364273fb07d5820a76fef4."".ErrFormat type.error."".formats0 type.[]"".format0
   4059 "".ZP type."".Point0
   4060 "".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
   4061 "".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"".initTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsb6338434a483b71ecf7a1963213f75e2  3Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals19b49d53e9c11805652fa4c0885cbb29  "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"StringTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals69076ee43f1cead0792b9f36906b1b56  &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"EqTgclocals21a8f585a14d020f181242c5256583dc  Tgclocalsf47057354ec566066f8688a4970cff5a  vgo.string.hdr."func(*image.Point, image.Point) image.Point"  +ngo.string."func(*image.Point, image.Point) image.Point"ngo.string."func(*image.Point, image.Point) image.Point"`Xfunc(*image.Point, image.Point) image.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) bool30 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" RectangleTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals69076ee43f1cead0792b9f36906b1b56  $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"
   4069 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"EmptyTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3f5c1f818fa7055d0400cecd34057162Tgclocals406991e81a5d6b9f25174854f4bda0b5((Tgclocalsadb3347b296419e60da36d67f8b7ce43((0go.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"AtTgclocals64ca935d1a2110a30e2d604686188539  Tgclocals762ef64d066b6f51173413f25bf7cca5  ,go.string.hdr."Bounds"  $go.string."Bounds"$go.string."Bounds"BoundsTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals89fe65749ce0afc971c0982226501ff04go.string.hdr."ColorModel"  
   4074 ,go.string."ColorModel",go.string."ColorModel" ColorModelTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalscad14e25fd48dddd762418d02c031d67  go.string.hdr."func(*image.Rectangle, image.Point) image.Rectangle"  3~go.string."func(*image.Rectangle, image.Point) image.Rectangle"~go.string."func(*image.Rectangle, image.Point) image.Rectangle"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"  
   4076 ,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
   4079 *"".(*Rectangle).Inset
   4080 2go.string.hdr."Intersect"
   4081 Htype.func("".Rectangle) "".Rectangle
   4082 ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle
   4083 2"".(*Rectangle).Intersect
   4084 2"".(*Rectangle).Intersect
   4085 0go.string.hdr."Overlaps"8type.func("".Rectangle) boolVtype.func(*"".Rectangle, "".Rectangle) bool0"".(*Rectangle).Overlaps0"".(*Rectangle).Overlaps(go.string.hdr."Size"(type.func() "".PointBtype.func(*"".Rectangle) "".Point("".(*Rectangle).Size("".(*Rectangle).Size,go.string.hdr."String"$type.func() string>type.func(*"".Rectangle) string,"".(*Rectangle).String
,"".(*Rectangle).String
&go.string.hdr."Sub"
@type.func("".Point) "".Rectangle
^type.func(*"".Rectangle, "".Point) "".Rectangle
&"".(*Rectangle).Sub
&"".(*Rectangle).Sub
*go.string.hdr."Union"Htype.func("".Rectangle) "".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
   4106 "".Rectangle.Eq
   4107 $go.string.hdr."In"
   4108 8type.func("".Rectangle) bool
   4109 Ttype.func("".Rectangle, "".Rectangle) bool
   4110 $"".(*Rectangle).In
   4111 "".Rectangle.In
   4112 *go.string.hdr."Inset"6type.func(int) "".RectangleRtype.func("".Rectangle, int) "".Rectangle*"".(*Rectangle).Inset$"".Rectangle.Inset2go.string.hdr."Intersect"Htype.func("".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".Rectangle2"".(*Rectangle).Intersect,"".Rectangle.Intersect0go.string.hdr."Overlaps"8type.func("".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool0"".(*Rectangle).Overlaps
*"".Rectangle.Overlaps
(go.string.hdr."Size"
(type.func() "".Point
@type.func("".Rectangle) "".Point
("".(*Rectangle).Size
""".Rectangle.Size
,go.string.hdr."String"$type.func() string<type.func("".Rectangle) string,"".(*Rectangle).String&"".Rectangle.String&go.string.hdr."Sub"@type.func("".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle&"".(*Rectangle).Sub "".Rectangle.Sub*go.string.hdr."Union"Htype.func("".Rectangle) "".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.*"".ImageCL60 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)Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  0type..hashfunc."".Config(type..hash."".Config,type..eqfunc."".Config$type..eq."".Config&type..alg."".Config  0type..hashfunc."".Config,type..eqfunc."".Config:go.string.hdr."*image.Config"  
2go.string."*image.Config"2go.string."*image.Config" *image.Configtype.*"".Config`y60 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@M60 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"
   4145 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{10 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p2go.weak.type.*[]"".format"runtime.zerovaluetype."".formatLgo.typelink.[]image.format	[]"".format type.[]"".formatTgclocals98a935522f11e180b06d5a082b7d09c1  Tgclocalsdbd89ae4a4266b5bfeafd78285762b2a  Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsd2fd9951e910becfd07ba7f8ff7b525a  .go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 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.*"".reader60 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"
   4153 Peek(go.string.hdr."Read"   go.string."Read" go.string."Read"
   4154 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"  
   4155 ,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"
   4156 Rect(go.string.hdr."RGBA"   go.string."RGBA" go.string."RGBA"
   4157 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) "".Image30 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.Color30 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"  
   4168 ,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) "".Imagei830 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"  
   4175 ,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"  
   4176 ,go.string."image.Gray",go.string."image.Gray" image.Gray(go.string.hdr."Gray"   go.string."Gray" go.string."Gray"
   4177 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"  
   4181 ,go.string."image.CMYK",go.string."image.CMYK" image.CMYK(go.string.hdr."CMYK"   go.string."CMYK" go.string."CMYK"
   4182 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.[]bool0 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(YCbCrSubsampleRatioTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals69076ee43f1cead0792b9f36906b1b56  ngo.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).YOffsetTgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsb6338434a483b71ecf7a1963213f75e2  3Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1347047f6245a35b91e9a4f213167d52Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals19b49d53e9c11805652fa4c0885cbb29  Hgo.string.hdr."*image.PalettedImage"  @go.string."*image.PalettedImage"@go.string."*image.PalettedImage"0**image.PalettedImage,type.*"".PalettedImage60 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